/* ========================================================================== */
/* 🌐 PREMIUM NEURAL HEADER (DASHBOARD STYLE)                                 */
/* ========================================================================== */

.premium-header {
    position: relative;
    background: #02040a;
    border-bottom: 1px solid rgba(34, 211, 238, 0.2);
    
    /* DE FIX: Zorg dat de header maximaal 800px is en perfect in het midden staat */
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    /* Subtiele afgeronde hoeken onderaan voor een zwevend 'dashboard' effect */
    border-radius: 0 0 16px 16px;
    
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    padding-bottom: 25px;
    overflow: hidden;
    z-index: 10;
}

/* De Video Achtergrond */
.header-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.6; /* Subtiel gedimd voor de cyberpunk sfeer */
    pointer-events: none; /* Voorkomt dat je per ongeluk op de video klikt */
}

/* Een donkere overgang (gradient) zodat de cijfers perfect leesbaar blijven */
.header-video-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(2,4,10,0.2) 0%, rgba(2,4,10,0.95) 100%);
    z-index: 0;
    pointer-events: none;
}

/* Zorgt dat inhoud bóven de video blijft */
.premium-header-content {
    position: relative;
    z-index: 1;
}

/* 🛑 De Nieuwe LOGOUT Button */
.btn-logout {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #ff4d4d;
    font-family: monospace;
    font-size: 11px;
    font-weight: 900;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    background: rgba(239, 68, 68, 0.15);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
    color: #fff;
}

/* --- Central Dashboard Elements --- */
.dashboard-center-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5px;
}

/* Top: ID & Status Pill */
.dashboard-id-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(20, 241, 149, 0.05);
    border: 1px solid rgba(20, 241, 149, 0.2);
    padding: 6px 18px;
    border-radius: 20px;
    color: #14F195;
    font-family: monospace;
    font-size: 10px;
    font-weight: bold;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #14F195;
    border-radius: 50%;
    box-shadow: 0 0 8px #14F195;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(0.95); box-shadow: 0 0 5px #14F195; }
    50% { transform: scale(1.1); box-shadow: 0 0 15px #14F195; }
    100% { transform: scale(0.95); box-shadow: 0 0 5px #14F195; }
}

/* Middle: Big Balance */
.dashboard-balance {
    font-size: 38px;
    font-weight: 900;
    color: #22d3ee;
    font-family: 'Courier New', Courier, monospace;
    text-shadow: 0 0 25px rgba(34, 211, 238, 0.6);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

/* Bottom: Rank & Capacity */
.dashboard-capacity-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; /* Voorkomt dat het breekt op kleine telefoons */
}

.dashboard-rank {
    color: #14F195;
    border: 1px solid rgba(20, 241, 149, 0.4);
    padding: 6px 12px;
    border-radius: 4px;
    background: rgba(20, 241, 149, 0.05);
    font-family: monospace;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
}

.dashboard-capacity-text {
    color: #14F195;
    font-family: monospace;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
}

.dashboard-progress-track {
    width: 140px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.dashboard-progress-fill {
    height: 100%;
    background: #14F195;
    box-shadow: 0 0 10px #14F195;
    transition: width 0.5s ease;
}

/* ========================================================================== */
/* 📱 ULTRA-COMPACT MOBILE OVERRIDES (MAX RENDER EFFICIENCY)                 */
/* ========================================================================== */

@media (max-width: 600px) {
    .premium-header {
        padding-bottom: 12px; /* Flink platter gemaakt */
        border-radius: 0 0 12px 12px;
    }

    /* Top Bar (Logo & Logout) compacter maken */
    .premium-header .premium-header-content > div:first-child {
        padding: 8px 12px !important;
    }

    /* Schaal het logo en verberg de v1.1.2 subtekst voor ruimtebesparing */
    .app-logo-wrapper {
        width: 28px !important;
        height: 28px !important;
    }
    .app-neural-logo {
        width: 16px !important;
    }
    .app-brand-main {
        font-size: 13px !important;
    }
    .app-brand-tagline {
        display: none; /* Slokt te veel verticale ruimte op op mobiel */
    }

    /* Slankere Logout knop */
    .btn-logout {
        padding: 5px 10px !important;
        font-size: 9px !important;
        gap: 4px !important;
    }
    .btn-logout svg {
        width: 12px !important;
        height: 12px !important;
    }

    /* Dashboard data dichter op elkaar drukken */
    .dashboard-center-wrapper {
        margin-top: 0px !important;
    }

    /* ID Pill gematigder */
    .dashboard-id-pill {
        padding: 4px 12px !important;
        font-size: 9px !important;
        margin-bottom: 6px !important;
    }
    .status-dot {
        width: 6px !important;
        height: 6px !important;
    }

    /* De grote MND teller substantieel verkleind voor mobiel */
    .dashboard-balance {
        font-size: 22px !important; /* Van 38px naar 22px voor optimale chatruimte */
        margin-bottom: 8px !important;
        letter-spacing: 1px !important;
    }

    /* Rank & Capacity row compacter */
    .dashboard-capacity-row {
        gap: 8px !important;
    }

    .dashboard-rank {
        padding: 4px 8px !important;
        font-size: 9px !important;
        letter-spacing: 0.5px !important;
    }

    .dashboard-capacity-text {
        font-size: 9px !important;
    }

    /* Kortere en dunnere progress bar */
    .dashboard-progress-track {
        width: 80px !important; 
        height: 3px !important;
    }
}

/* CHECKBOX CUSTOM STYLING FOR DEPOSIT */
.deposit-checkbox-wrapper input[type="checkbox"] {
    appearance: none;
    background-color: rgba(5, 11, 26, 0.8);
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 1px solid #ff4d4d;
    border-radius: 0.15em;
    display: grid;
    place-content: center;
    cursor: pointer;
    margin-top: 2px;
}

.deposit-checkbox-wrapper input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #14F195;
    transform-origin: bottom left;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.deposit-checkbox-wrapper input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.deposit-checkbox-wrapper input[type="checkbox"]:checked {
    border-color: #14F195;
}




/* ========================================================================== */
/* 🌟 MNDSET AI - CHAT CORE & INPUT FOUNDATION (SOLANA STYLE)                 */
/* ========================================================================== */

/* --- 0. BACKGROUND & GRID (Solana Web3 Vibe) --- */
.main-content-area {
    position: relative;
    flex: 1;
    overflow-y: auto;
    /* Diepe dark-mode achtergrond */
    background-color: #02040a;
    /* Subtiele Solana-gloed vanuit de hoeken */
    background-image: 
        radial-gradient(circle at 15% 0%, rgba(153, 69, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 100%, rgba(20, 241, 149, 0.05) 0%, transparent 40%);
}

/* Het Terminal Raster (Grid) op de achtergrond */
.main-content-area::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 25px 25px;
    z-index: 0;
    pointer-events: none;
}

/* --- 1. CHAT CONTAINER & BERICHTEN --- */
#chat-container {
    position: relative;
    z-index: 1; /* Zorgt dat de chat BOVEN het grid ligt */
    flex: 1;
    padding: 25px 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    
    /* Strak in het midden, uitgelijnd met je modules */
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    box-sizing: border-box;

    /* De randen van het chat-scherm zelf (Glassmorphism paneel) */
    background: rgba(5, 11, 26, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-left: 1px solid rgba(153, 69, 255, 0.15); /* Purple accent rand links */
    border-right: 1px solid rgba(20, 241, 149, 0.15); /* Green accent rand rechts */
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}
#chat-container::-webkit-scrollbar { display: none; }

/* Basis bericht */
.message {
    max-width: 85%;
    line-height: 1.6;
    font-size: 13px;
    position: relative;
    animation: fadeInMessage 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeInMessage {
    from { opacity: 0; transform: translateY(15px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* AI Bericht (Solana Groen) */
.message.ai {
    align-self: flex-start;
    font-family: 'Inter', sans-serif;
    color: #e2e8f0;
    padding: 14px 18px;
    
    /* De AI heeft de groene Solana vibe */
    border-left: 3px solid #14F195;
    background: linear-gradient(90deg, rgba(20, 241, 149, 0.08) 0%, rgba(20, 241, 149, 0.01) 100%);
    border-radius: 4px 12px 12px 4px;
    box-shadow: -2px 0 10px rgba(20, 241, 149, 0.05);
}

.message.ai strong, .message.ai span {
    font-family: monospace;
    letter-spacing: 0.5px;
}

/* User Bericht (Solana Paars) */
.message.user {
    align-self: flex-end;
    font-family: monospace;
    color: #fff;
    
    /* De User krijgt de paarse Solana vibe voor perfect contrast */
    background: linear-gradient(270deg, rgba(153, 69, 255, 0.12) 0%, rgba(153, 69, 255, 0.02) 100%);
    border-right: 3px solid #9945FF;
    padding: 14px 18px;
    border-radius: 12px 4px 4px 12px;
    box-shadow: 2px 0 10px rgba(153, 69, 255, 0.05);
}

/* --- 2. INPUT WRAPPER (De Bodem Balk) --- */
.input-wrapper {
    position: sticky;
    bottom: 0;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    
    background: rgba(2, 4, 10, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    /* DE FIX: Een duidelijk kader rondom de hele container */
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-bottom: none; /* Strak op de bodem */
    border-radius: 16px 16px 0 0; 
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    
    /* Padding iets compacter gemaakt */
    padding: 12px 15px; 
    box-sizing: border-box;
    z-index: 100;
}

.input-container {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%;
}

/* --- 3. TEKST INVOER VELD --- */
#userInput {
    flex: 1;
    background: rgba(0, 0, 0, 0.6);
    /* Iets lichtere border zodat de pil-vorm goed zichtbaar is */
    border: 1px solid rgba(255, 255, 255, 0.15); 
    color: #fff;
    /* Compacter invoerveld */
    padding: 12px 16px; 
    border-radius: 30px; 
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    transition: all 0.3s ease;
}

#userInput:focus {
    outline: none;
    border-color: #9945FF; 
    box-shadow: 0 0 15px rgba(153, 69, 255, 0.2);
    background: rgba(0, 0, 0, 0.8);
}

#userInput::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-family: monospace;
}

/* --- Fix voor de Dropdown Opties --- */
select.cyber-input option {
    background-color: #050b1a; /* Diepe donkerblauwe terminal achtergrond */
    color: #fff;               /* Witte tekst */
    font-family: monospace;
    padding: 10px;
}


/* --- 4. SOLANA TRANSMIT BUTTON --- */
.solana-send-btn {
    background: linear-gradient(90deg, #9945FF, #14F195);
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 12px; /* Kleinere font-size */
    font-weight: 900;
    letter-spacing: 1px;
    /* DE FIX: Knop is nu flink slanker en minder breed */
    padding: 10px 18px; 
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(20, 241, 149, 0.2);
    white-space: nowrap; /* Voorkomt dat de tekst op 2 regels breekt */
}

.solana-send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 241, 149, 0.4);
    color: #fff;
}

.solana-send-btn:disabled {
    background: rgba(255,255,255,0.05);
    color: #555;
    box-shadow: none;
    transform: none;
    cursor: not-allowed;
}

/* --- UX WAVEFORM BARS VOOR MICROFOON --- */
.neural-visualizer {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-left: 10px;
}

.neural-visualizer .bar {
    width: 4px;
    background: #14F195; /* Solana Green in plaats van browser-blauw */
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(20, 241, 149, 0.5);
    transition: height 0.05s ease;
}

/* --- 5. NEURAL AI MICROPHONE --- */
.ai-mic-btn {
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8892b0;
    transition: all 0.3s ease;
}

.neural-mic-svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.ai-mic-btn:hover .neural-mic-svg {
    color: #14F195;
    filter: drop-shadow(0 0 8px rgba(20, 241, 149, 0.6));
    transform: scale(1.1);
}

.ai-mic-btn.mic-active .neural-mic-svg {
    color: #ff4d4d;
    filter: drop-shadow(0 0 10px #ff4d4d);
    animation: micPulse 1.5s infinite;
}

@keyframes micPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}


/* Gebruik dit voor je Profiel Container */
.profile-dashboard { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    
    /* Responsive breedte: 95% op mobiel, max 650px op desktop */
    width: 95%;
    max-width: 800px; 
    margin: 0px auto; 
    
    /* Visuele look */
    background: rgba(5, 11, 26, 0.75); 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 10px; 
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    position: relative;
    box-sizing: border-box;
}

/* Zorg dat de inputs binnen de container niet breken */
.profile-dashboard input, 
.profile-dashboard textarea {
    width: 100%;
    box-sizing: border-box;
}

/* Responsive aanpassing */
@media (max-width: 480px) {
    .profile-dashboard {
        padding: 15px;
        margin: 10px auto;
    }
}
    

/* HEADER: Strakke donkere balk met zachte gradient */
.profile-header { 
    display: flex; 
    align-items: center; 
    gap: 24px; 
    padding: 24px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.05) 0%, rgba(5, 11, 26, 0.8) 100%);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 16px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

/* AVATAR: Perfect rond, zachte glow, hover effect */
.avatar-large { 
    width: 120px; 
    height: 120px; 
    border-radius: 50%; 
    border: 2px solid var(--primary-cyan); 
    background-color: rgba(5, 11, 26, 0.9);
    background-size: cover; 
    background-position: center; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 36px; 
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.4), inset 0 0 10px rgba(34, 211, 238, 0.2);
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.avatar-large:hover {
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.6), inset 0 0 15px rgba(34, 211, 238, 0.4);
    transform: scale(1.05);
}

/* Avatar Edit Potloodje */
.avatar-container { position: relative; cursor: pointer; }

.avatar-edit-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-cyan);
    color: #000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    border: 2px solid #050b1a;
    transition: transform 0.2s;
}

.avatar-edit-icon:hover { transform: scale(1.1); }

/* Status Bio Styling */
.status-bio {
    margin-top: 10px;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: var(--text-dim);
    font-style: italic;
    border-left: 2px solid var(--primary-cyan);
    padding-left: 10px;
    background: rgba(0,0,0,0.2);
    padding: 8px;
    border-radius: 0 4px 4px 0;
}


/* NICKNAME INPUT: Flexibele groep voor input + knop */
.profile-identity { 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
    flex: 1;
}

.profile-identity label {
    font-family: monospace;
    font-size: 11px;
    color: var(--primary-cyan);
    letter-spacing: 1px;
}

.nick-edit-group {
    display: flex;
    gap: 12px;
    width: 100%;
}
/* --- DYNAMISCHE & COMPACTE INPUT VELDEN --- */
.input-with-icon {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.input-with-icon i {
    position: absolute;
    left: 10px;
    font-size: 10px;
    color: var(--primary-cyan);
    opacity: 0.6;
}

.nick-edit {
    flex: 1;
    background: transparent; /* Doorzichtig totdat je klikt */
    border: 1px solid rgba(34, 211, 238, 0.15); 
    color: #fff; 
    padding: 6px 10px 6px 28px; /* Kleiner, met ruimte voor het icoon links */
    border-radius: 4px;
    font-size: 11px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.nick-edit:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.4);
    border-color: var(--primary-cyan);
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.1);
}

.nick-edit::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* --- ULTIEME FIX VOOR BROWSER AUTOFILL (Voorkomt onzichtbare tekst) --- */
.nick-edit:-webkit-autofill,
.nick-edit:-webkit-autofill:hover, 
.nick-edit:-webkit-autofill:focus, 
.nick-edit:-webkit-autofill:active {
    /* Forceert een donkere achtergrond van binnenuit, passend bij je app-stijl */
    -webkit-box-shadow: 0 0 0px 1000px #050b1a inset !important;
    
    /* Forceert de letters om altijd strak wit te blijven */
    -webkit-text-fill-color: #fff !important;
    
    /* Extra back-up voor oudere browsers */
    transition: background-color 5000s ease-in-out 0s;
    font-family: 'Inter', sans-serif;
}

/* STATS GRID: Donkere glazen panelen met groene/cyan text */
.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 16px; 
}

.stat-card { 
    background: linear-gradient(180deg, rgba(5, 11, 26, 0.8) 0%, rgba(10, 20, 35, 0.9) 100%);
    padding: 16px; 
    border: 1px solid rgba(74, 222, 128, 0.2); 
    border-radius: 12px;
    text-align: center; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 222, 128, 0.15);
    border-color: rgba(74, 222, 128, 0.5);
}

.stat-card span { 
    display: block; 
    font-size: 10px; 
    color: rgba(255, 255, 255, 0.6); 
    margin-bottom: 8px;
    letter-spacing: 1px;
    font-family: monospace;
    text-transform: uppercase;
}

.stat-card div {
    font-size: 18px;
    font-weight: 900;
    color: #4ade80; 
    font-family: 'Inter', sans-serif;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.3);
}

/* BIO SECTIE: Netjes opgemaakt paneel */
.bio-section { 
    background: rgba(5, 11, 26, 0.5);
    padding: 20px; 
    border-radius: 12px;
    border: 1px dashed rgba(34, 211, 238, 0.3);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bio-section label {
    font-family: monospace;
    font-size: 12px;
    color: var(--primary-cyan);
    letter-spacing: 1px;
}

.bio-section textarea { 
    width: 100%; 
    height: 90px; 
    background: rgba(0, 0, 0, 0.4); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    color: #fff; 
    padding: 12px; 
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    resize: none;
    transition: all 0.3s ease;
}

.bio-section textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: inset 0 0 10px rgba(34, 211, 238, 0.1);
}

/* REFERRAL BOX: Hero-paneel met prominente acties */
.referral-box { 
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.05) 0%, rgba(5, 11, 26, 0.9) 100%);
    border: 1px solid var(--primary-cyan); 
    padding: 24px; 
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.1);
    position: relative;
    overflow: hidden;
}

.referral-box h3 {
    color: #fff;
    font-family: monospace;
    margin: 0 0 10px 0;
    font-size: 15px;
    letter-spacing: 2px;
}

.referral-box p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.4;
}

.referral-box p strong {
    color: #4ade80;
}

.ref-link-area { 
    display: flex; 
    gap: 12px; 
    margin-bottom: 20px; 
}

#ref-link-output { 
    flex: 1; 
    background: rgba(0, 0, 0, 0.7); 
    border: 1px solid rgba(34, 211, 238, 0.4); 
    color: var(--primary-cyan); 
    padding: 12px 16px; 
    border-radius: 8px;
    font-family: monospace;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.share-actions { 
    display: flex; 
    gap: 12px; 
}

/* UNIVERSELE KNOPPEN (Ronde hoeken, hover glow) */
/* --- COMPACTE PREMIUM KNOPPEN --- */
.cyber-btn-small {
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid var(--primary-cyan);
    color: var(--primary-cyan);
    padding: 6px 14px; /* COMPACTER */
    border-radius: 6px;
    font-family: monospace;
    font-weight: 900;
    font-size: 10px; /* COMPACTER */
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cyber-btn-small:hover {
    background: var(--primary-cyan);
    color: #000;
    box-shadow: 0 0 10px var(--primary-cyan);
}

/* Status Bio in de header */
.status-bio {
    margin-top: 8px;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: var(--text-dim);
    border-left: 2px solid var(--primary-purple);
    padding-left: 10px;
    font-style: italic;
}

/* Accent kleuren voor knoppen */
.btn-save { border-color: #ffd700 !important; color: #ffd700 !important; }
.btn-save:hover { background: #ffd700 !important; color: #000 !important; }

.btn-sync { border-color: #ab9ff2 !important; color: #ab9ff2 !important; }
.btn-sync:hover { background: #ab9ff2 !important; color: #000 !important; }
.btn-social {
    flex: 1; /* Laat knoppen de ruimte vullen */
}

.btn-tg {
    border-color: #4ade80;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
}

.btn-tg:hover {
    background: #4ade80;
    color: #050b1a;
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.4);
}

/* Animaties */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ========================================================= */
/* --- SIDEBAR HEADER & PROFILE GATE (PREMIUM STYLE) --- */
/* ========================================================= */

/*.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(180deg, rgba(5, 11, 26, 0.9) 0%, rgba(5, 11, 26, 0.4) 100%);
    border-bottom: 1px solid rgba(34, 211, 238, 0.15);
    position: relative;
}*/

/* De klikbare profiel container */
.profile-gate {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    padding: 10px 15px 10px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    flex: 1;
    margin-right: 15px; /* Ruimte voor de X knop */
}

/* Hover effect voor de hele kaart */
.profile-gate:hover {
    background: rgba(34, 211, 238, 0.05);
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 0 4px 15px rgba(34, 211, 238, 0.1);
    transform: translateX(5px);
}

/* De Avatar Cirkel */
.avatar-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--primary-cyan);
    background-color: rgba(0, 0, 0, 0.5);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.2);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Avatar glow bij hover */
.profile-gate:hover .avatar-circle {
    box-shadow: 0 0 15px var(--primary-cyan);
    transform: scale(1.05);
}

/* Tekst container */
.profile-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

/* Nickname Styling */
.nickname {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.5px;
    margin: 0;
    transition: color 0.3s ease;
}

.profile-gate:hover .nickname {
    color: var(--primary-cyan);
    text-shadow: 0 0 8px rgba(74, 222, 128, 0.4);
}

/* De "NEURAL_PROFILE" tag */
.profile-link {
    color: var(--accent-blue, #22d3ee);
    font-family: 'Courier New', monospace;
    font-size: 9px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.profile-gate:hover .profile-link {
    letter-spacing: 2px;
}

/* De sluit-knop in de hoek */
.close-sidebar {
    background: transparent;
    border: none;
    color: var(--text-dim);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.close-sidebar:hover {
    color: #ff4d4d;
    background: rgba(255, 77, 77, 0.1);
    text-shadow: 0 0 10px #ff4d4d;
    transform: rotate(90deg); /* Coole draai-animatie */
}

/* --- REFERRAL PROTOCOL TEKST --- */
.protocol-details {
    font-size: 11px;
    color: var(--text-dim);
    line-height: 1.4;
    margin-bottom: 15px;
}

.protocol-details p { margin: 0 0 8px 0; }

.protocol-list {
    margin: 0;
    padding-left: 20px;
    color: var(--text-dim);
}

.protocol-list li { margin-bottom: 4px; }
.protocol-list strong { color: #4ade80; font-weight: 900; }

/* --- SOCIAL SHARE KNOPPEN --- */
.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1; /* Zorgt dat de knoppen de breedte netjes verdelen */
}

/* X (Twitter) Styling - Zwart/Wit */
.btn-x { 
    border-color: rgba(255, 255, 255, 0.4); 
    color: #fff; 
}
.btn-x:hover { 
    background: #fff; 
    color: #000; 
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); 
}

/* Telegram Styling - Officieel Blauw */
.btn-tg { 
    border-color: #0088cc; 
    color: #0088cc; 
}
.btn-tg:hover { 
    background: #0088cc; 
    color: #fff; 
    box-shadow: 0 0 10px rgba(0, 136, 204, 0.5); 
}

/* E-mail Share Styling */
.btn-email { 
    border-color: var(--primary-purple); 
    color: var(--primary-purple); 
}
.btn-email:hover { 
    background: var(--primary-purple); 
    color: #000; 
    box-shadow: 0 0 10px var(--primary-purple); 
}

/* --- BIO WOLK STYLING --- */
#bio-popup {
    position: absolute;
    background: rgba(5, 11, 26, 0.95);
    border: 1px solid var(--primary-cyan);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    font-size: 11px;
    max-width: 200px;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    display: none; /* Standaard onzichtbaar */
    pointer-events: none; /* Zorgt dat het de muis niet blokkeert */
}

/* ================================================= */
/* REFERRAL MODULE UX UPGRADES (RONDE JUPITER STIJL) */
/* ================================================= */

/* Strak afgerond veld met geïntegreerde knop */
.invite-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px; /* Perfect rond */
    padding: 4px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}
.invite-input-wrapper:focus-within {
    border-color: var(--primary-cyan);
}
.invite-input-wrapper.tg-theme:focus-within {
    border-color: #4ade80;
}

/* Onzichtbare input binnen de wrapper */
.invite-input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px 15px;
    font-family: monospace;
    font-size: 11px;
    outline: none;
    width: 100%;
}

/* Ronde Copy Knoppen */
.invite-copy-btn {
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.5);
    color: #22d3ee;
    padding: 8px 20px;
    border-radius: 20px;
    font-family: monospace;
    font-weight: 900;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.invite-copy-btn:hover {
    background: rgba(34, 211, 238, 0.25);
    color: #fff;
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.5);
    transform: translateY(-1px);
}

/* Groene Telegram Variant */
.invite-copy-btn.tg {
    background: rgba(74, 222, 128, 0.1);
    border-color: rgba(74, 222, 128, 0.5);
    color: #4ade80;
}
.invite-copy-btn.tg:hover {
    background: rgba(74, 222, 128, 0.25);
    color: #fff;
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.5);
}

/* Massive Share Button */
.btn-massive-share {
    width: 100%;
    background: linear-gradient(90deg, #14F195, #0ea5e9);
    color: #050b1a;
    padding: 16px;
    font-weight: 900;
    border: none;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: 30px; /* Jupiter Rond */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(20, 241, 149, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.btn-massive-share:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(20, 241, 149, 0.4);
}


/* ================================================= */
/* QUANTUM CACHE HEADER ICON (MYSTERY BOX)           */
/* ================================================= */

.header-cache-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 15px; /* Afstand tot de EXIT knop */
}

.quantum-cache-btn {
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.15) 0%, rgba(168, 85, 247, 0.02) 100%);
    border: 1px solid rgba(168, 85, 247, 0.5);
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    animation: epic-pulse 2s infinite;
    color: #c084fc;
    font-family: monospace;
    font-size: 10px;
    font-weight: 900;
    text-decoration: none;
}

.quantum-cache-btn:hover {
    background: rgba(168, 85, 247, 0.3);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
    transform: translateY(-1px);
    color: #fff;
}

.cache-icon {
    font-size: 16px;
    display: inline-block;
    filter: drop-shadow(0 0 5px rgba(168, 85, 247, 0.8));
    animation: float-cache 3s ease-in-out infinite;
}

/* De rode notificatie stip */
.cache-notification {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ef4444;
    color: #fff;
    font-size: 9px;
    font-family: Arial, sans-serif;
    font-weight: 900;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #000;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.8);
    z-index: 10;
}

@keyframes float-cache {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(2deg); }
}

@keyframes epic-pulse {
    0% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(168, 85, 247, 0); }
    100% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0); }
}


/* ================================================= */
/* MYSTERY BOX ANIMATIONS                            */
/* ================================================= */

.box-sprite {
    font-size: 64px;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.5));
    transition: all 0.3s ease;
}

/* De Decryptie Tril Animatie */
.decrypting-shake {
    animation: hardcore-shake 0.1s infinite, box-glow-pulse 0.5s infinite alternate;
}

@keyframes hardcore-shake {
    0% { transform: translate(2px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-2deg); }
    20% { transform: translate(-3px, 0px) rotate(2deg); }
    30% { transform: translate(0px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(2deg); }
    50% { transform: translate(-1px, 2px) rotate(-2deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(2px, 1px) rotate(-2deg); }
    80% { transform: translate(-1px, -1px) rotate(2deg); }
    90% { transform: translate(2px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-2deg); }
}

@keyframes box-glow-pulse {
    0% { filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.5)) brightness(1); }
    100% { filter: drop-shadow(0 0 30px rgba(34, 211, 238, 1)) brightness(1.5); }
}

/* De Witte Flits bij het openen */
.box-flash {
    animation: flash-bang 0.5s ease-out forwards;
}

@keyframes flash-bang {
    0% { filter: brightness(1); transform: scale(1); }
    50% { filter: brightness(10) drop-shadow(0 0 100px #fff); transform: scale(1.2); }
    100% { filter: brightness(1); transform: scale(1); opacity: 0; }
}

/* De tekst die omhoog vliegt (De Loot) */
.loot-text {
    position: absolute;
    font-size: 28px;
    font-weight: 900;
    color: #4ade80;
    font-family: monospace;
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.8), 0 0 5px #fff;
    opacity: 0;
    transform: translateY(20px) scale(0.5);
}

.loot-reveal-anim {
    animation: loot-fly-up 2.5s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
}

@keyframes loot-fly-up {
    0% { opacity: 0; transform: translateY(20px) scale(0.5); }
    20% { opacity: 1; transform: translateY(-30px) scale(1.2); }
    80% { opacity: 1; transform: translateY(-40px) scale(1); }
    100% { opacity: 0; transform: translateY(-60px) scale(0.8); }
}

/* ================================================= */
/* PRO-MODE: CYBERPUNK MYSTERY BOXES (5 TIERS)       */
/* ================================================= */

/* ================================================= */
/* COMPACT PRO-MODE: CYBERPUNK MYSTERY BOXES         */
/* ================================================= */

.cyber-box {
    position: relative;
    width: 60px;  /* Was 90px */
    height: 60px; /* Was 90px */
    margin: 0 auto;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 4px, rgba(255,255,255,0.03) 4px, rgba(255,255,255,0.03) 5px), 
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05), #02040a 80%);
    border: 2px solid;
    clip-path: polygon(25% 0%, 100% 0, 100% 75%, 75% 100%, 0 100%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.box-ring {
    position: absolute;
    width: 40px;  /* Was 60px */
    height: 40px; /* Was 60px */
    border: 1px dashed; /* Dunner gemaakt voor kleine box */
    border-radius: 50%;
    animation: box-spin 6s linear infinite;
}
.box-ring-inner {
    position: absolute;
    width: 20px;  /* Was 35px */
    height: 20px; /* Was 35px */
    border: 1px dotted;
    border-radius: 50%;
    opacity: 0.6;
    animation: box-spin-reverse 4s linear infinite;
}
.box-core {
    position: absolute;
    width: 8px;   /* Was 14px */
    height: 8px;  /* Was 14px */
    border-radius: 50%;
    animation: box-pulse 1s alternate infinite;
}
/* De rest van je tier kleuren (.tier-COMMON etc.) en animaties (keyframes) blijven gewoon staan! */
.box-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fff;
    opacity: 0.8;
    filter: blur(2px);
    animation: box-scan 2.5s infinite linear;
}

/* ================================================= */
/* MOBILE OPTIMIZATION FOR MYSTERY BOXES             */
/* ================================================= */

@media (max-width: 480px) {
    /* Maak de winkel grid items iets smaller op telefoons */
    #mysterybox-module .data-box > div[style*="grid"] {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)) !important;
        gap: 8px !important;
    }
    
    /* Verklein de padding in de inventaris kaarten */
    #box-inventory-display > div > div {
        min-width: 100px !important;
        padding: 10px 5px !important;
    }
    
    /* Zorg dat de unboxing animatie perfect binnen het scherm valt */
    #unboxing-stage {
        height: 150px !important;
    }
}

/* --- DE 5 KLEUR THEMAS --- */

/* 1. COMMON (Wit/Cyaan) */
.tier-COMMON { border-color: #94a3b8; box-shadow: 0 0 15px rgba(148, 163, 184, 0.2); }
.tier-COMMON .box-ring, .tier-COMMON .box-ring-inner { border-color: #94a3b8; }
.tier-COMMON .box-core { background: #94a3b8; box-shadow: 0 0 20px 5px #94a3b8; }

/* 2. UNCOMMON (Groen) */
.tier-UNCOMMON { border-color: #4ade80; box-shadow: 0 0 15px rgba(74, 222, 128, 0.2); }
.tier-UNCOMMON .box-ring, .tier-UNCOMMON .box-ring-inner { border-color: #4ade80; }
.tier-UNCOMMON .box-core { background: #4ade80; box-shadow: 0 0 20px 5px #4ade80; }

/* 3. RARE (Blauw) */
.tier-RARE { border-color: #3b82f6; box-shadow: 0 0 15px rgba(59, 130, 246, 0.2); }
.tier-RARE .box-ring, .tier-RARE .box-ring-inner { border-color: #3b82f6; }
.tier-RARE .box-core { background: #3b82f6; box-shadow: 0 0 20px 5px #3b82f6; }

/* 4. EPIC (Paars) */
.tier-EPIC { border-color: #c084fc; box-shadow: 0 0 20px rgba(168, 85, 247, 0.2); }
.tier-EPIC .box-ring, .tier-EPIC .box-ring-inner { border-color: #c084fc; }
.tier-EPIC .box-core { background: #c084fc; box-shadow: 0 0 20px 5px #c084fc; }

/* 5. LEGENDARY (Goud) */
.tier-LEGENDARY { border-color: #ffd700; box-shadow: 0 0 25px rgba(255, 215, 0, 0.3); }
.tier-LEGENDARY .box-ring, .tier-LEGENDARY .box-ring-inner { border-color: #ffd700; }
.tier-LEGENDARY .box-core { background: #ffd700; box-shadow: 0 0 20px 5px #ffd700; }

/* --- ANIMATIES --- */
@keyframes box-spin { 100% { transform: rotate(360deg); } }
@keyframes box-spin-reverse { 100% { transform: rotate(-360deg); } }
@keyframes box-scan { 0% { top: -10%; } 100% { top: 110%; } }
@keyframes box-pulse { 
    0% { transform: scale(0.8); opacity: 0.8; filter: brightness(1); } 
    100% { transform: scale(1.3); opacity: 1; filter: brightness(1.5); } 
}

//* ================================================= */
/* SIDEBAR MYSTERY BOX LINK (COMPACT & ANIMATED)     */
/* ================================================= */

.special-box-link {
    border: 1px solid rgba(192, 132, 252, 0.4) !important;
    background: rgba(192, 132, 252, 0.08) !important;
    animation: boxNavPulse 3s infinite alternate;
    
    /* Layout Fixes: Geen zij-marges, strakker tegen de lijn */
    display: flex !important;
    align-items: center !important;
    padding: 10px 15px !important; 
    margin: -5px 0 15px 0 !important; 
    border-radius: 8px;
    cursor: pointer;
    box-sizing: border-box;
}

.special-box-link:hover {
    background: rgba(192, 132, 252, 0.2) !important;
    box-shadow: 0 0 10px rgba(192, 132, 252, 0.2);
}

@keyframes boxNavPulse {
    0% { box-shadow: inset 0 0 5px rgba(192, 132, 252, 0.05); }
    100% { box-shadow: inset 0 0 20px rgba(192, 132, 252, 0.2); }
}

/* De rest van de .mini-cyber-box styling uit het vorige bericht blijft hetzelfde! */

/* --- HET MINI CYBER DOOSJE IN HET MENU --- */
.mini-cyber-box {
    position: relative;
    width: 16px;
    height: 16px;
    border: 1px solid #c084fc;
    clip-path: polygon(25% 0%, 100% 0, 100% 75%, 75% 100%, 0 100%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    box-shadow: 0 0 5px rgba(192, 132, 252, 0.5);
}

.mini-box-ring {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 1px dashed #c084fc;
    border-radius: 50%;
    animation: box-spin 4s linear infinite;
}

.mini-box-core {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #c084fc;
    box-shadow: 0 0 4px 1px #c084fc;
    border-radius: 50%;
    animation: box-pulse 1s alternate infinite;
}


/* ================================================= */
/* DAILY SUPPLY DROP ANIMATIONS                      */
/* ================================================= */

/* Flits-effect voor de container */
.daily-drop-success {
    animation: drop-flash 1s ease-out forwards;
}

@keyframes drop-flash {
    0% { box-shadow: 0 0 0 rgba(74, 222, 128, 0); border-color: #4ade80; background: linear-gradient(90deg, rgba(74, 222, 128, 0.05) 0%, transparent 100%); }
    20% { box-shadow: inset 0 0 30px rgba(74, 222, 128, 0.4), 0 0 20px rgba(74, 222, 128, 0.6); border-color: #fff; background: linear-gradient(90deg, rgba(74, 222, 128, 0.3) 0%, transparent 100%); }
    100% { box-shadow: inset 0 0 5px rgba(74, 222, 128, 0.1); border-color: rgba(74, 222, 128, 0.3); background: linear-gradient(90deg, rgba(74, 222, 128, 0.05) 0%, transparent 100%); }
}

/* Zwevende tekst die omhoog schiet uit de knop */
.claim-float-text {
    position: absolute;
    top: -10px;
    right: 20px;
    color: #fff;
    font-family: monospace;
    font-weight: 900;
    font-size: 14px;
    text-shadow: 0 0 10px #4ade80, 0 0 20px #4ade80;
    pointer-events: none;
    z-index: 100;
    animation: float-up-fade 2s ease-out forwards;
}

@keyframes float-up-fade {
    0% { opacity: 1; transform: translateY(0) scale(0.8); }
    20% { opacity: 1; transform: translateY(-20px) scale(1.1); }
    100% { opacity: 0; transform: translateY(-50px) scale(1); }
}

