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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            min-height: 100vh;
            background: #0a0e27;
            position: relative;
            overflow-x: hidden;
            padding: 20px;
        }

        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;
            top: 0;
            left: 0;
        }

        .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%; }
        }

        .conteneur-principal {
            position: relative;
            z-index: 10;
            max-width: 1200px;
            margin: 0 auto;
        }

        .en-tete-page {
            text-align: center;
            margin-bottom: 40px;
        }

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

        .logo-page::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-page::after {
            content: '</>';
            font-family: monospace;
        }

        .titre-page {
            color: #ffffff;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 8px;
            text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
        }

        .sous-titre-page {
            color: #8b9dc3;
            font-size: 15px;
        }

        .nav-retour {
            margin-bottom: 30px;
        }

        .btn-retour {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: rgba(20, 30, 50, 0.6);
            color: #00ffff;
            border: 1px solid rgba(0, 255, 255, 0.3);
            border-radius: 10px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-retour:hover {
            background: rgba(0, 255, 255, 0.1);
            border-color: #00ffff;
            transform: translateX(-3px);
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
        }

        .btn-retour::before {
            content: '←';
            font-size: 18px;
        }

        .grille-cartes {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
            margin-bottom: 30px;
        }

        .carte {
            background: rgba(15, 20, 40, 0.85);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 
                0 0 60px rgba(0, 255, 255, 0.1),
                0 20px 40px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(0, 255, 255, 0.1);
            border: 1px solid rgba(0, 255, 255, 0.15);
            transition: all 0.3s ease;
        }

        .carte:hover {
            box-shadow: 
                0 0 80px rgba(0, 255, 255, 0.2),
                0 25px 50px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(0, 255, 255, 0.2);
            transform: translateY(-5px);
            border-color: rgba(0, 255, 255, 0.3);
        }

        .en-tete-carte {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(0, 255, 255, 0.1);
        }

        .icone-carte {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(0, 255, 136, 0.2));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            border: 1px solid rgba(0, 255, 255, 0.3);
        }

        .carte h3 {
            color: #ffffff;
            font-size: 20px;
            font-weight: 700;
            text-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
        }

        .groupe-formulaire {
            margin-bottom: 20px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            color: #a0b4d5;
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        input {
            width: 100%;
            padding: 12px 14px;
            border: 2px solid rgba(0, 255, 255, 0.2);
            border-radius: 10px;
            font-size: 14px;
            transition: all 0.3s ease;
            background: rgba(20, 30, 50, 0.5);
            color: #ffffff;
        }

        input:focus {
            outline: none;
            border-color: #00ffff;
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
            background: rgba(20, 30, 50, 0.7);
        }

        input:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        input::placeholder {
            color: #5a6b8c;
        }

        .section-filleuls {
            margin-top: 30px;
        }

        .carte-filleul {
            background: rgba(15, 20, 40, 0.85);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 
                0 0 60px rgba(0, 255, 255, 0.1),
                0 20px 40px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(0, 255, 255, 0.1);
            border: 1px solid rgba(0, 255, 255, 0.15);
            transition: all 0.3s ease;
            margin-bottom: 20px;
        }

        .carte-filleul:hover {
            box-shadow: 
                0 0 80px rgba(0, 255, 255, 0.2),
                0 25px 50px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(0, 255, 255, 0.2);
            transform: translateY(-5px);
            border-color: rgba(0, 255, 255, 0.3);
        }

        .profil-filleul {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(0, 255, 255, 0.1);
        }

        .photo-profil {
            width: 80px;
            height: 80px;
            border-radius: 16px;
            object-fit: cover;
            border: 3px solid rgba(0, 255, 255, 0.4);
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(0, 255, 136, 0.2));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 35px;
            color: #00ffff;
        }

        .info-profil h4 {
            color: #ffffff;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 5px;
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
        }

        .badge-statut {
            display: inline-block;
            padding: 4px 12px;
            background: rgba(0, 255, 136, 0.15);
            color: #00ff88;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: 1px solid rgba(0, 255, 136, 0.3);
        }

        .grille-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }

        .aucun-filleul {
            text-align: center;
            padding: 60px 20px;
            background: rgba(15, 20, 40, 0.5);
            border-radius: 20px;
            border: 2px dashed rgba(0, 255, 255, 0.2);
        }

        .aucun-filleul-icone {
            font-size: 60px;
            margin-bottom: 15px;
            opacity: 0.3;
        }

        .aucun-filleul-texte {
            color: #8b9dc3;
            font-size: 16px;
            margin-bottom: 10px;
        }

        .aucun-filleul-sous-texte {
            color: #5a6b8c;
            font-size: 13px;
        }

        .actions-carte {
            display: flex;
            gap: 10px;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 255, 255, 0.1);
        }

        .btn-action {
            flex: 1;
            padding: 10px 20px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-modifier {
            background: rgba(0, 255, 255, 0.1);
            color: #00ffff;
            border: 1px solid rgba(0, 255, 255, 0.3);
        }

        .btn-modifier:hover {
            background: rgba(0, 255, 255, 0.2);
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
        }

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

        .btn-sauvegarder:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
        }

        @media (max-width: 768px) {
            .grille-cartes {
ssh parrainage-codi@207.180.219.231 -p 8443                grid-template-columns: 1fr;
            }

            .titre-page {
                font-size: 26px;
            }

            .profil-filleul {
                flex-direction: column;
                text-align: center;
            }

            .grille-info {
                grid-template-columns: 1fr;
            }

            .actions-carte {
                flex-direction: column;
            }
        }
p{
    color: #00ffff;
    font-weight: bold;
 }

 img{
    border-radius: 5px;
    width: 45px;
    height: 45px;
 }

 .icone-carte img{
    width: 100%;
    height: 100%;
 }
.photo-profil img{
    width: 100%;
    height: 100%;
 }
.icone-carte,.photo-profil,img{
border-radius: 100%;
}
