
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #0a0e27;
            position: relative;
            overflow-x: hidden;
        }

        body::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: deplacementGrille 20s linear infinite;
        }

        @keyframes deplacementGrille {
            0% { background-position: 0 0; }
            100% { background-position: 50px 50px; }
        }

        .formes-arriere-plan {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .forme {
            position: absolute;
        }

        .forme:nth-child(1) {
            width: 2px;
            height: 100%;
            background: linear-gradient(180deg, transparent, #00ffff, transparent);
            left: 15%;
            animation: ligneScan 4s infinite;
            opacity: 0.3;
        }

        .forme:nth-child(2) {
            width: 2px;
            height: 100%;
            background: linear-gradient(180deg, transparent, #00ff88, transparent);
            right: 25%;
            animation: ligneScan 6s infinite;
            animation-delay: 1s;
            opacity: 0.3;
        }

        .forme:nth-child(3) {
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #ff00ff, transparent);
            top: 30%;
            animation: ligneScanHorizontale 5s infinite;
            opacity: 0.2;
        }

        @keyframes ligneScan {
            0%, 100% { transform: translateY(-100%); }
            50% { transform: translateY(100%); }
        }

        @keyframes ligneScanHorizontale {
            0%, 100% { transform: translateX(-100%); }
            50% { transform: translateX(100%); }
        }

        .pluie-code {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .colonne-code {
            position: absolute;
            top: -100%;
            font-family: 'Courier New', monospace;
            font-size: 14px;
            color: #00ffff;
            opacity: 0.15;
            animation: chute linear infinite;
            white-space: nowrap;
        }

        @keyframes chute {
            to { top: 100%; }
        }

        .container {
            position: relative;
            z-index: 10;
            width: 90%;
            max-width: 800px;
            padding: 20px;
        }

        .carte {
            background: rgba(15, 20, 40, 0.85);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 50px 45px;
            box-shadow: 
                0 0 80px rgba(0, 255, 255, 0.15),
                0 25px 50px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(0, 255, 255, 0.1);
            border: 1px solid rgba(0, 255, 255, 0.1);
            transform: translateY(0);
            transition: all 0.3s ease;
        }

        .carte:hover {
            box-shadow: 
                0 0 100px rgba(0, 255, 255, 0.25),
                0 30px 60px rgba(0, 0, 0, 0.6),
                inset 0 1px 0 rgba(0, 255, 255, 0.2);
            transform: translateY(-5px);
            border-color: rgba(0, 255, 255, 0.2);
        }

        header {
            text-align: center;
            margin-bottom: 40px;
        }

        .logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 25px;
        }

        .logo {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #00ffff 0%, #00ff88 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: #0a0e27;
            font-weight: bold;
            box-shadow: 0 0 40px rgba(0, 255, 255, 0.6);
            position: relative;
            overflow: hidden;
        }

        .logo::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            transform: translateX(-100%);
            animation: brillance 3s infinite;
        }

        @keyframes brillance {
            to { transform: translateX(100%); }
        }

        .logo::after {
            content: '</>';
            font-family: monospace;
        }

        .logo-image {
            width: 90px;
            height: 90px;
            border-radius: 20px;
            object-fit: cover;
            box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
            border: 2px solid rgba(0, 255, 136, 0.3);
        }

        h1 {
            color: #ffffff;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
            line-height: 1.3;
        }

        .sous-titre {
            color: #00ffff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .description {
            color: #8b9dc3;
            font-size: 15px;
            font-weight: 500;
        }

        main {
            margin-top: 30px;
        }

        .contenu-principal {
            background: rgba(10, 15, 30, 0.4);
            border-radius: 16px;
            padding: 30px;
            margin-bottom: 35px;
            border: 1px solid rgba(0, 255, 255, 0.1);
            line-height: 1.8;
        }

        .contenu-principal p {
            color: #a0b4d5;
            font-size: 15px;
            text-align: justify;
        }

        .contenu-principal strong {
            color: #00ffff;
            font-weight: 600;
        }

        .avantages {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin: 25px 0;
        }

        .avantage-item {
            background: rgba(0, 255, 255, 0.05);
            padding: 15px;
            border-radius: 12px;
            border-left: 3px solid #00ffff;
            transition: all 0.3s ease;
        }

        .avantage-item:hover {
            background: rgba(0, 255, 255, 0.1);
            transform: translateX(5px);
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
        }

        .avantage-item::before {
            content: '✓';
            color: #00ff88;
            font-weight: bold;
            margin-right: 10px;
            font-size: 18px;
        }

        .avantage-item span {
            color: #a0b4d5;
            font-size: 14px;
        }

        .buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 16px 45px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: linear-gradient(135deg, #00ffff 0%, #00ff88 100%);
            color: #0a0e27;
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 40px rgba(0, 255, 255, 0.8);
        }

        .btn-secondary {
            background: rgba(20, 30, 50, 0.8);
            color: #00ffff;
            border: 2px solid #00ffff;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
        }

        .btn-secondary:hover {
            background: rgba(0, 255, 255, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
        }

        .btn:active {
            transform: translateY(0);
        }

        footer {
            text-align: center;
            margin-top: 30px;
            padding-top: 25px;
            border-top: 1px solid rgba(0, 255, 255, 0.1);
        }

        .footer-text {
            color: #8b9dc3;
            font-size: 13px;
        }

        .footer-text strong {
            color: #00ffff;
        }

        @media (max-width: 600px) {
            .carte {
                padding: 35px 25px;
            }

            h1 {
                font-size: 26px;
            }

            .logo-container {
                flex-direction: column;
                gap: 15px;
            }

            .buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .avantages {
                grid-template-columns: 1fr;
            }
        }
