* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --gray-50: #f9f9f9;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-600: #525252;
    --gray-800: #262626;
    --gray-900: #171717;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #a0a0a0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--black);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Barre de défilement */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--white);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #f1f1f1;
}

/* Curseur personnalisé */
* {
    cursor: none !important;
}

.custom-cursor {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%);
}

.custom-cursor.hover {
    width: 60px;
    height: 60px;
    border-color: rgba(255, 255, 255, 0.8);
}

/*button:hover ~ .custom-cursor,*/
/*a:hover ~ .custom-cursor,*/
/*input:hover ~ .custom-cursor,*/
/*.upload-zone:hover ~ .custom-cursor {*/
/*    width: 60px;*/
/*    height: 60px;*/
/*    background-color: rgba(255, 255, 255, 0.1);*/
/*    border-color: rgba(255, 255, 255, 0.8);*/
/*}*/

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--medium-gray);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 64px;
    background-color: transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s infinite;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.space {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #ffffff 0%, #d0d0d0 100%);
    padding: 10px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.space:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.25);
}

.space::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='12' cy='7' r='4'%3E%3C/circle%3E%3C/svg%3E");
    display: flex;
    align-items: center;
}

.space.connected::before {
    display: none;
}

.space.connected {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 6px 16px 6px 8px;
}

.space.connected:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    position: relative;
}

.user-avatar::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: #22c55e;
    border: 2px solid var(--black);
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.user-name-header {
    font-size: 14px;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 600;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Sélecteur de langue */
.language-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lang-btn {
    padding: 8px 16px;
    background-color: transparent;
    border: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-btn:not(.active) {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn:hover:not(.active) {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    color: var(--black);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* ======== STYLES POUR LA SECTION AIDE (CTA) ======== */

.help-cta {
    padding: 200px 0;
    margin-bottom: 200px;
    background: var(--black);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* Séparation */
}

.help-cta h2 {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #808080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

/* Style de bouton réutilisé (similaire aux boutons d'action) */
.btn-cta {
    display: inline-block;
    /* Nécessaire pour un tag <a> */
    text-decoration: none;
    padding: 18px 48px;
    background: linear-gradient(135deg, #ffffff 0%, #d0d0d0 100%);
    color: var(--black);
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 48px rgba(255, 255, 255, 0.4);
}

.btn-cta:active {
    transform: translateY(-2px) scale(1.02);
}

@media (max-width: 768px) {
    .help-cta {
        padding: 80px 24px;
    }

    .help-cta h2 {
        font-size: 38px;
    }

    .btn-cta {
        padding: 16px 32px;
        font-size: 14px;
    }
}

/* Main */
main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 100px;
    background: radial-gradient(ellipse at top, #1a1a1a 0%, #000000 60%);
    position: relative;
}

main::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(0deg,
            transparent 0px,
            transparent 1px,
            rgba(255, 255, 255, 0.03) 1px,
            rgba(255, 255, 255, 0.03) 2px);
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.upload-container,
.email-verification,
.code-verification,
.success-section {
    text-align: center;
    max-width: 600px;
    width: 100%;
    animation: fadeIn 0.5s ease;
    position: relative;
    z-index: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Upload Zone */
.upload-zone {
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 80px 48px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.upload-zone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.upload-zone:hover::before {
    opacity: 1;
}

.upload-zone:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.upload-zone.dragover {
    border-color: var(--white);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    transform: scale(1.03);
    box-shadow: 0 32px 80px rgba(255, 255, 255, 0.2);
}

.upload-zone svg {
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

.upload-zone:hover svg {
    color: var(--white);
    transform: translateY(-8px) rotate(5deg);
}

.upload-zone h2 {
    font-size: 32px;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -1px;
}

.upload-zone p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    font-weight: 300;
}

/* Styles pour la barre de progression */
.progress-container {
    width: 90%;
    /* Largeur augmentée */
    max-width: 550px;
    /* Largeur maximale augmentée */
    height: 15px !important;
    /* Hauteur augmentée */
    background-color: rgba(255, 255, 255, 0.15);
    /* Fond un peu plus visible */
    border-radius: 10px;
    margin: 30px auto;
    /* Plus d'espace vertical */
    padding: 0;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Ajout d'une bordure fine */
}

.progress-bar {
    width: 0%;
    height: 100% !important;
    background-color: #ffffff !important;
    background: #ffffff !important;
    border-radius: 8px;
    transition: width 0.4s ease;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}


.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    /* Taille légèrement augmentée */
    font-weight: 700;
    /* Plus gras */
    color: var(--black);
    /* Texte noir pour contraster sur le blanc */
    mix-blend-mode: normal;
    /* Pas besoin de blend-mode si la barre est blanche */
    line-height: 20px;
    /* Aligner verticalement avec la nouvelle hauteur */
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
    /* Ombre légère pour lisibilité */
}

/* Ajustements pour le conteneur principal */
.upload-container {
    /* ... (styles existants) ... */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.upload-zone {
    /* ... (styles existants) ... */
    margin-bottom: 30px;
    /* Augmenter l'espace avant la barre */
}

/* Sections */
.email-verification h2,
.code-verification h2,
.success-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.email-verification p,
.code-verification p,
.success-section p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Inputs */
input[type="email"],
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    color: var(--white);
    font-size: 16px;
    margin-bottom: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

input[type="email"]::placeholder,
input[type="text"]::placeholder,
input[type="password"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

input[type="email"]:focus,
input[type="text"]:focus,
input[type="password"]:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

/* Buttons */
button {
    padding: 18px 48px;
    /* background: linear-gradient(135deg, #ffffff 0%, #d0d0d0 100%); */
    color: var(--black);
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

button:hover::before {
    left: 100%;
}

button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 48px rgba(255, 255, 255, 0.4);
}

button:active {
    transform: translateY(-2px) scale(1.02);
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Code Inputs */
.code-inputs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.code-input {
    width: 60px;
    height: 70px;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
}

.code-input:focus {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

/* Link Container */
.link-container {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 8px;
    transition: all 0.3s ease;
}

.link-container:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.07);
}

.link-container input {
    flex: 1;
    margin-bottom: 0;
    background: transparent;
    border: none;
    padding: 12px 16px;
}

.link-container input:focus {
    background: transparent;
    box-shadow: none;
    transform: none;
}

.link-container button {
    padding: 12px 24px;
    margin: 0;
}

/* Erreur 404 */

.error-container {
    text-align: center;
}

.error-code {
    font-size: 160px;
}

/* Download Container */
.download-container {
    text-align: center;
    max-width: 600px;
    width: 100%;
    animation: fadeIn 0.5s ease;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    align-content: center;
    padding: 80px 48px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.download-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.download-container:hover::before {
    opacity: 1;
}

.download-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

.download-container svg {
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

.download-container:hover svg {
    color: var(--white);
    transform: translateY(-8px);
    animation: downloadPulse 1.5s ease-in-out infinite;
}

@keyframes downloadPulse {

    0%,
    100% {
        transform: translateY(-8px);
    }

    50% {
        transform: translateY(-2px);
    }
}

.download-container h2 {
    font-size: 32px;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--white);
}

.download-container p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 32px;
}

.download-container button {
    background: linear-gradient(135deg, #ffffff 0%, #d0d0d0 100%);
    margin-top: 24px;
}

/* Responsive pour download-container */
@media (max-width: 768px) {
    .download-container {
        padding: 56px 32px;
    }

    .download-container h2 {
        font-size: 24px;
    }

    .download-container p {
        font-size: 16px;
    }
}

/* ===== File List (page de téléchargement) ===== */
.file-list-container {
    display: none;
    width: 100%;
    margin-top: 24px;
    text-align: left;
    animation: fadeIn 0.4s ease;
}

.file-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.file-list-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.file-list-count {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
    padding: 2px 8px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.file-list-scroll {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 156px; /* Environ 3 fichiers (52px par fichier) */
    overflow-y: auto;
    overflow-x: hidden;
}

.file-list-scroll::-webkit-scrollbar {
    width: 4px;
}

.file-list-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.file-list-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.file-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease;
}

.file-list-item:last-child {
    border-bottom: none;
}

.file-list-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.file-download-btn {
    padding: 8px !important;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.6) !important;
    border-radius: 8px !important;
    font-size: 0 !important;
    width: 34px !important;
    height: 34px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: unset !important;
    text-transform: none !important;
    box-shadow: none !important;
    cursor: pointer;
}

.file-download-btn:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: white !important;
    transform: scale(1.1) !important;
}

.file-download-btn:active {
    transform: scale(0.95) !important;
}

.file-download-btn svg {
    margin: 0 !important;
    filter: none !important;
}


.file-list-icon {
    font-size: 18px;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}

.file-list-name {
    flex: 1;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13.5px;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-list-size {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.35);
    font-size: 12px;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 6px;
}

/* Overlay de mot de passe (Centered & Blurred) */
.password-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f0f0f; /* Fond totalement opaque pour masquer le contenu */
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 24px;
    border-radius: 24px;
    animation: fadeIn 0.4s ease;
}

.password-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 32px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.password-icon {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
}

.password-text {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    font-weight: 500;
    font-size: 16px;
}

.password-input {
    width: 100% !important;
    padding: 16px 20px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 14px !important;
    color: white !important;
    font-size: 16px !important;
    margin-bottom: 0 !important;
    text-align: center;
    transition: all 0.3s ease;
}

.password-input:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05) !important;
}

.btn-verify {
    background: white !important;
    color: black !important;
    padding: 14px 24px !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-verify:hover {
    background: #e0e0e0 !important;
    transform: translateY(-2px);
}

.btn-verify:active {
    transform: translateY(0);
}




/* Success Icon */
.success-section svg {
    margin-bottom: 32px;
    filter: drop-shadow(0 0 20px rgba(76, 175, 80, 0.5));
    animation: successPulse 2s ease-in-out infinite;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 100px 40px 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    font-weight: 300;
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    font-weight: 300;
    position: relative;
    width: fit-content;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-link:hover::after {
    width: 100%;
}

.footer-bottom {
    align-items: center;
    align-content: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer-bottom p {
    width: 330px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

@keyframes successPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 20px 24px;
    }

    .logo {
        font-size: 24px;
    }

    main {
        padding: 100px 24px 24px;
    }

    .upload-zone {
        padding: 56px 32px;
    }

    .upload-zone h2 {
        font-size: 24px;
    }

    .upload-zone p {
        font-size: 16px;
    }

    .code-inputs {
        gap: 0.5rem;
    }

    .code-input {
        width: 50px;
        height: 60px;
        font-size: 1.5rem;
    }

    .link-container {
        flex-direction: column;
    }

    .link-container button {
        width: 100%;
    }

    button {
        padding: 16px 32px;
        font-size: 14px;
    }

    .language-switcher {
        gap: 4px;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* Curseur personnalisé */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
    mix-blend-mode: difference;
}

.cursor.hover {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.6);
}

/* Container pour features */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Features */
.features {
    padding: 140px 0;
    background: var(--black);
    position: relative;
}

.features h2 {
    text-align: center;
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #808080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 80px;
    letter-spacing: -2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    padding: 48px 36px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--white), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.feature-card:hover::before {
    transform: translateX(100%);
}

.feature-card:hover {
    transform: translateY(-16px) scale(1.03);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon,
.drive-icon {
    font-size: 56px;
    margin-bottom: 24px;
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
    filter: grayscale(0);
}

.feature-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 300;
}

@media (max-width: 768px) {
    header {
        padding: 20px 24px;
    }

    .logo {
        font-size: 24px;
    }

    main {
        padding: 100px 24px 24px;
    }

    .upload-zone {
        padding: 56px 32px;
    }

    .upload-zone h2 {
        font-size: 24px;
    }

    .upload-zone p {
        font-size: 16px;
    }

    .code-inputs {
        gap: 0.5rem;
    }

    .code-input {
        width: 50px;
        height: 60px;
        font-size: 1.5rem;
    }

    .link-container {
        flex-direction: column;
    }

    .link-container button {
        width: 100%;
    }

    button {
        padding: 16px 32px;
        font-size: 14px;
    }

    .language-switcher {
        gap: 4px;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 11px;
    }

    .container {
        padding: 0 24px;
    }

    .features {
        padding: 80px 0;
    }

    .features h2 {
        font-size: 38px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

}

.footer-section {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    font-weight: 300;
    position: relative;
    width: fit-content;
}

.footer-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.3s ease;
}

.footer-section:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-section:hover::after {
    width: 100%;
}

/* ... (Tous vos styles existants) ... */

/* ======== STYLES POUR LE MODAL CGU ======== */
.hidden {
    display: none !important;
}

.cgu-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    /* Fond plus opaque */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9990;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.cgu-modal-content {
    background-color: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 24px;
    max-width: 600px;
    width: 90%;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 9991;
}

.cgu-modal-content h2 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--white);
    text-align: center;
}

.cgu-text-box {
    height: 300px;
    overflow-y: auto;
    background: var(--black);
    border: 1px solid var(--gray-800);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}

.cgu-text-box p {
    margin-bottom: 1rem;
}

.cgu-text-box p:last-child {
    margin-bottom: 0;
}

.cgu-modal-content .btn-cta {
    width: 100%;
    margin-top: 1rem;
}

/* Désactive l'upload lorsque le modal est actif */
body.modal-active main {
    pointer-events: none;
    filter: blur(5px);
}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}



/* Pricing */

.pricing {
    padding: 140px 0;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #000000 70%);
    position: relative;
}

.pricing h2 {
    text-align: center;
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #808080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 80px;
    letter-spacing: -2px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;


}

.price-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 56px 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: visible;
}

.price-card::after {
    content: '';
    position: absolute;
    /*inset: 0;*/
    border-radius: 32px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.price-card:hover::after {
    opacity: 1;
}

.price-card:hover {
    transform: translateY(-16px) scale(1.03);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

.price-card.featured {
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffffff 0%, #d0d0d0 100%);
    color: var(--black);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    z-index: inherit;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.05);
    }
}

.price-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.price {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #808080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    line-height: 1;
    letter-spacing: -2px;
}

.price span {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.price-card ul {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.price-card li {
    padding: 16px 0;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding-left: 36px;
    font-weight: 300;
    font-size: 15px;
    transition: all 0.3s ease;
}

.price-card li:hover {
    color: var(--white);
    transform: translateX(4px);
}

.price-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}

/* Style du bouton/lien de la carte de prix */
.btn-outline,
.a-outline {
    /* AJOUT DE .a-outline ICI */
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 18px 40px;
    border-radius: 16px;
    font-weight: 700;
    /* CURSOR NONE RETIRÉ ICI */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    /* Pour .a-outline */
    display: block;
    /* Pour .a-outline */
}

.btn-outline::before,
.a-outline::before {
    /* AJOUT DE .a-outline::before ICI */
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-outline:hover::before,
.a-outline:hover::before {
    /* AJOUT DE .a-outline:hover::before ICI */
    transform: translateY(0);
}

.btn-outline:hover,
.a-outline:hover {
    /* AJOUT DE .a-outline:hover ICI */
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(255, 255, 255, 0.3);
}

.price-card .btn-primary {
    width: 100%;
}

/* Ajoutez ces styles à votre fichier style.css existant */

/* Liste des fichiers sélectionnés */
.selected-files {
    width: 100%;
    max-width: 600px;
    margin: 2rem auto;
    padding: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.selected-files h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.selected-files ul {
    list-style: none;
    margin-bottom: 24px;
    max-height: 300px;
    overflow-x: hidden;
    overflow-y: auto;
}


.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.file-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

.file-name {
    flex: 1;
    color: var(--white);
    font-weight: 500;
    margin-right: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-size {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-right: 16px;
}

.remove-file {
    width: 32px;
    height: 32px;
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 50%;
    color: #ff6b6b;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-file:hover {
    background: rgba(255, 0, 0, 0.3);
    border-color: #ff6b6b;
    transform: scale(1.1);
}

/* Actions des fichiers */
.files-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.btn-secondary {
    flex: 1;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-primary {
    flex: 1;
    padding: 16px 32px;
    background: linear-gradient(135deg, #ffffff 0%, #d0d0d0 100%);
    border: none;
    border-radius: 16px;
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 48px rgba(255, 255, 255, 0.4);
}

/* Barre de progression mise à jour */
/*.progress-container {*/
/*    width: 90%;*/
/*    max-width: 550px;*/
/*    margin: 30px auto;*/
/*    padding: 24px;*/
/*    background: rgba(255, 255, 255, 0.05);*/
/*    border: 1px solid rgba(255, 255, 255, 0.1);*/
/*    border-radius: 16px;*/
/*    backdrop-filter: blur(10px);*/
/*    -webkit-backdrop-filter: blur(10px);*/
/*}*/

/*.progress-info {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*    margin-bottom: 16px;*/
/*    color: var(--white);*/
/*    font-size: 14px;*/
/*    font-weight: 600;*/
/*}*/

#currentFileInfo {
    color: rgba(255, 255, 255, 0.7);
}



/* Compteur de fichiers dans la section succès */
.files-count {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .selected-files {
        padding: 24px;
    }

    .files-actions {
        flex-direction: column;
    }

    .btn-secondary,
    .btn-primary {
        width: 100%;
    }

    .file-item {
        flex-wrap: wrap;
    }

    .file-name {
        flex: 1 1 100%;
        margin-bottom: 8px;
    }
}

/* Style pour la section mot de passe sur la page download */
#passwordSection input[type="password"] {
    transition: all 0.3s ease;
}

#passwordSection input[type="password"]:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

#passwordSection svg {
    display: block;
    margin: 0 auto 16px;
}

/* Animation pour afficher la section mot de passe */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#passwordSection {
    animation: fadeInUp 0.5s ease;
}

/* Section Drive */
.drive-section {
    padding: 60px 0;
    padding-top: 148px;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #000000 70%);
    position: relative;
    overflow: hidden;
}

.drive-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(0deg,
            transparent 0px,
            transparent 1px,
            rgba(255, 255, 255, 0.02) 1px,
            rgba(255, 255, 255, 0.02) 2px);
    pointer-events: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.drive-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.drive-text {
    animation: fadeInLeft 0.8s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.drive-text h2 {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #808080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 32px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.drive-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.8;
    font-weight: 300;
}

.drive-features {
    margin: 40px 0;
}

.drive-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.drive-feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
}

.drive-icon {
    font-size: 24px;
    min-width: 24px;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.feature-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.drive-cta {
    margin-top: 48px;
}

.btn-drive {
    display: inline-block;
    text-decoration: none;
    padding: 20px 48px;
    background: linear-gradient(135deg, #ffffff 0%, #d0d0d0 100%);
    color: #000000;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-drive::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-drive:hover::before {
    left: 100%;
}

.btn-drive:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 48px rgba(255, 255, 255, 0.4);
}

/* Image Container */
.drive-image {
    position: relative;
    animation: fadeInRight 0.8s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.image-wrapper:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    /* Changé de 16/10 à 16/9 */
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.4);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    padding: 0;
    /* Ajouté pour éviter tout padding */
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Changé de cover à contain */
    border-radius: 16px;
    filter: contrast(0.4);
    transition: filter 0.5s ease;
}

.image-wrapper:hover .image-placeholder img {
    filter: contrast(1);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    to {
        left: 100%;
    }
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.image-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .drive-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .drive-text h2 {
        font-size: 42px;
    }

    .drive-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .drive-section {
        padding: 80px 0;
    }

    .container {
        padding: 0 24px;
    }

    .drive-text h2 {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .drive-text p {
        font-size: 16px;
    }

    .drive-features {
        margin: 32px 0;
    }

    .drive-feature-item {
        padding: 16px;
    }

    .feature-text h4 {
        font-size: 16px;
    }

    .btn-drive {
        width: 100%;
        text-align: center;
        padding: 18px 32px;
    }

    .image-wrapper {
        padding: 16px;
    }
}

/* ============================================
   ADDITIONS CSS - Nouvelles fonctionnalités
   À ajouter à la fin de style.css
   ============================================ */

/* ===== UTILISATEUR CONNECTÉ (header) ===== */
.space.connected {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 6px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.space.connected:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.12) 100%);
    transform: scale(1.03);
}

.user-avatar {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #d0d0d0 100%);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
}

.user-email-short {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ===== PARTAGE PAR EMAIL ===== */
.share-emails-section {
    margin: 16px 0;
    text-align: left;
}

.share-emails-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    cursor: default;
}

.optional-badge {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 2px 8px;
    border-radius: 20px;
}

.email-tags-container {
    min-height: 54px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: text;
    backdrop-filter: blur(10px);
}

.email-tags-container {
    min-height: 54px;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: text;
    backdrop-filter: blur(10px);
}

.email-tags-container:focus-within {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.email-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.email-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    /* Fond transparent/subtil */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 6px 12px 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    animation: tagAppear 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.2s ease;
}

.email-tag:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.email-tag-remove {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.email-tag-remove:hover {
    background: #ff4b4b;
    color: #fff;
}

.email-tags-input {
    flex: 1;
    min-width: 150px;
    background: transparent !important;
    border: none !important;
    padding: 6px 0 !important;
    font-size: 14px !important;
    color: #fff !important;
    margin-bottom: 0 !important;
    box-shadow: none !important;
}

.email-tags-input::placeholder {
    color: rgba(255, 255, 255, 0.2) !important;
}

.share-emails-hint {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 12px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 300;
}

.share-emails-hint::before {
    content: '';
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

/* ===== CHOIX DE VÉRIFICATION ===== */
.verification-choice {
    text-align: center;
    max-width: 520px;
    width: 100%;
    animation: fadeIn 0.4s ease;
    position: relative;
    z-index: 1;
}

.verification-choice .choice-icon {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.3);
}

.verification-choice h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.verification-choice p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
    font-weight: 300;
}

.choice-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.choice-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #fff;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.choice-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.choice-card:hover::before {
    opacity: 1;
}

.choice-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.choice-card:active {
    transform: translateY(0);
}

.choice-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.choice-card:hover .choice-card-icon {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.choice-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.choice-card-content strong {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.choice-card-content span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.choice-arrow {
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.choice-card:hover .choice-arrow {
    color: rgba(255, 255, 255, 0.7);
    transform: translateX(4px);
}

/* ===== VÉRIFICATION MATH ===== */
.math-verification {
    text-align: center;
    max-width: 480px;
    width: 100%;
    animation: fadeIn 0.4s ease;
    position: relative;
    z-index: 1;
}

.math-verification .math-icon {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.3);
}

.math-verification h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.math-verification p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
    font-weight: 300;
}

.math-question-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 30px 40px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.math-question {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: #fff;
    opacity: 0.9;
}

.math-equals {
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
}

.math-input {
    text-align: center;
    font-size: 3rem !important;
    font-weight: 700;
    max-width: 110px;
    background: transparent !important;
    border: none !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 0 !important;
    transition: all 0.3s ease !important;
    color: #fff !important;
    padding: 0 !important;
    margin: 0 !important;
}

.math-input:focus {
    border-bottom-color: #fff !important;
    transform: scale(1.05);
}

.shake {
    animation: shake 0.4s cubic-bezier(.36, .07, .19, .97) both;
}

@keyframes shake {

    10%,
    90% {
        transform: translate3d(-2px, 0, 0);
    }

    30%,
    70% {
        transform: translate3d(4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(-4px, 0, 0);
    }
}

/* Masquer les flèches du input number */
.math-input::-webkit-outer-spin-button,
.math-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.math-input[type=number] {
    -moz-appearance: textfield;
}

.link-back {
    display: block;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.link-back:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== INFO DESTINATAIRES (succès) ===== */
.recipient-info {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 16px;
    line-height: 1.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .math-question {
        font-size: 2.5rem;
    }

    .math-question-box {
        padding: 24px 32px;
    }

    .choice-card {
        padding: 16px 18px;
    }

    .choice-card-icon {
        width: 44px;
        height: 44px;
    }
}

/* ===== SECTION BINAT HOSTING ===== */
.binat-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.binat-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.binat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.binat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.01) 0%, transparent 70%);
    pointer-events: none;
}

.binat-content {
    flex: 1;
    z-index: 1;
}

.binat-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.0467);
    color: #ffffff;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.binat-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.binat-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 300;
}

.btn-binat {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #000;
    padding: 16px 36px;
    border-radius: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-binat:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

.binat-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hosting-nodes {
    display: flex;
    gap: 20px;
}

.node {
    width: 100px;
    height: 140px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    padding: 15px;
    gap: 10px;
    animation: nodePulse 3s infinite ease-in-out;
}

.node:nth-child(2) {
    animation-delay: 1s;
}

.node:nth-child(3) {
    animation-delay: 2s;
}

.node-light {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 10px #ffffff;
}

.node-line {
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

@keyframes nodePulse {

    0%,
    100% {
        transform: translateY(0);
        border-color: rgba(255, 255, 255, 0.1);
    }

    50% {
        transform: translateY(-10px);
        border-color: rgba(66, 133, 244, 0.4);
    }
}

/* =========================================
    CSS BINAT BENTO - À COPIER DANS STYLE.CSS
    ========================================= */

.binat-section {
    padding: 160px 0;
    background: #000000;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

/* Halo de lumière en arrière-plan */
.binat-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.binat-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
    animation: fadeInDown 0.8s ease;
}

.binat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.binat-badge-dot {
    width: 6px;
    height: 6px;
    background-color: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 10px #4ade80;
    animation: pulseDot 2s infinite;
}

.binat-header h2 {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #808080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 16px 0;
    letter-spacing: -2px;
    line-height: 1.1;
}

.binat-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
}

/* --- BENTO GRID --- */
.binat-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 24px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.bento-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #fff;
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.bento-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.bento-card:hover::before {
    opacity: 1;
}

/* Configuration de la grille */
.bento-uptime {
    grid-column: span 2;
}

.bento-nvme {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-network {
    grid-column: span 1;
}

.bento-cta {
    grid-column: span 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.bento-cta:hover {
    background: #ffffff;
    color: #000000;
}

/* --- Contenu des cartes --- */
.b-icon {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: auto;
}

.bento-cta:hover .b-icon {
    color: #000000;
}

.b-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 8px;
    margin-top: 24px;
}

.b-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    line-height: 1.5;
}

.bento-cta:hover .b-desc {
    color: rgba(0, 0, 0, 0.7);
}

/* Visuels abstraits dans les cartes */

/* Box 1 : Uptime */
.uptime-visual {
    position: absolute;
    right: -20px;
    bottom: -40px;
    font-size: 180px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    letter-spacing: -8px;
}

.uptime-chart {
    position: absolute;
    top: 40px;
    right: 40px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 40px;
}

.u-bar {
    width: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    animation: barPulse 1.5s infinite alternate ease-in-out;
}

.u-bar.active {
    background: #4ade80;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.u-bar:nth-child(1) {
    height: 60%;
    animation-delay: 0.1s;
}

.u-bar:nth-child(2) {
    height: 80%;
    animation-delay: 0.2s;
}

.u-bar:nth-child(3) {
    height: 100%;
    animation-delay: 0.3s;
}

.u-bar:nth-child(4) {
    height: 70%;
    animation-delay: 0.4s;
}

.u-bar:nth-child(5) {
    height: 90%;
    animation-delay: 0.5s;
}

/* Box 2 : NVMe */
.nvme-visual {
    position: relative;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.nvme-disk {
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);
    position: relative;
    overflow: hidden;
    transform: perspective(500px) rotateX(20deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.nvme-disk::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: diskSweep 3s infinite;
}

.nvme-disk:nth-child(2)::after {
    animation-delay: 0.2s;
}

.nvme-disk:nth-child(3)::after {
    animation-delay: 0.4s;
}

/* Box 3 : Network */
.network-visual {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 100px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.n-line {
    height: 2px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.n-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    animation: dataFlow 1.5s linear infinite;
}

.n-line:nth-child(2)::after {
    animation-duration: 2s;
    animation-direction: reverse;
}

.n-line:nth-child(3)::after {
    animation-duration: 1.2s;
    animation-delay: 0.5s;
}

/* --- Animations Clés --- */
@keyframes pulseDot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}

@keyframes barPulse {
    0% {
        transform: scaleY(0.8);
    }

    100% {
        transform: scaleY(1.1);
    }
}

@keyframes diskSweep {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 200%;
    }
}

@keyframes dataFlow {
    0% {
        left: -50%;
    }

    100% {
        left: 150%;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .binat-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .bento-uptime {
        grid-column: span 2;
    }

    .bento-nvme {
        grid-column: span 2;
        grid-row: auto;
    }

    .bento-network {
        grid-column: span 1;
    }

    .bento-cta {
        grid-column: span 1;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .binat-section {
        padding: 100px 0;
    }

    .binat-header h2 {
        font-size: 40px;
    }

    .binat-bento {
        grid-template-columns: 1fr;
    }

    .bento-uptime,
    .bento-nvme,
    .bento-network,
    .bento-cta {
        grid-column: span 1;
    }

    .bento-card {
        padding: 32px;
        min-height: 240px;
    }

    .uptime-visual {
        font-size: 120px;
        right: -10px;
        bottom: -20px;
    }
}

/* ===== AD SECTION ===== */
#adVideoSection {
    background: #171717;
    border: 1px solid #262626;
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    color: #fff;
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

#adVideoSection h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 1rem;
}

#skipAdBtn {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

#skipAdBtn:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
}

/* ===== PREMIUM AD DESIGN ===== */
.adsense-glass-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px 20px;
    margin: 2.5rem auto;
    max-width: 760px;
    width: 100%;
    min-height: 320px;
    position: relative;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.adsense-glass-container:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.ad-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    font-weight: 700;
}

.ad-placeholder-content {
    width: 100%;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}