:root {
    /* Cosmic Galaxy Theme */
    --bg-void: #030014;
    --bg-deep: #0a0520;
    --bg-nebula: #120a2e;

    /* Cosmic Colors */
    --cosmic-cyan: #00f5ff;
    --cosmic-cyan-glow: rgba(0, 245, 255, 0.5);
    --cosmic-purple: #bf00ff;
    --cosmic-purple-glow: rgba(191, 0, 255, 0.5);
    --cosmic-pink: #ff00aa;
    --cosmic-pink-glow: rgba(255, 0, 170, 0.4);
    --cosmic-blue: #4d4dff;
    --cosmic-gold: #ffd700;
    --cosmic-gold-glow: rgba(255, 215, 0, 0.5);

    /* Nebula gradients */
    --nebula-1: linear-gradient(135deg, #bf00ff 0%, #00f5ff 100%);
    --nebula-2: linear-gradient(135deg, #ff00aa 0%, #bf00ff 100%);

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #b8c5d6;
    --text-muted: #6b7a8f;

    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ===== COSMIC BACKGROUND ===== */
body {
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--bg-void);
    color: var(--text-primary);
}

.app-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background:
        /* Top-left corner - soft purple bloom */
        radial-gradient(ellipse 50% 40% at 5% 5%, rgba(191, 0, 255, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 35% 30% at 15% 10%, rgba(0, 245, 255, 0.08) 0%, transparent 50%),
        /* Bottom-right corner - soft cyan bloom */
        radial-gradient(ellipse 45% 35% at 95% 95%, rgba(0, 245, 255, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 30% 25% at 85% 90%, rgba(191, 0, 255, 0.06) 0%, transparent 50%),
        /* Center subtle glow */
        radial-gradient(ellipse 60% 40% at 50% 50%, rgba(255, 0, 170, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, #030014 0%, #0a0520 50%, #120a2e 100%);
}

/* Static Cosmic Nebula - No Animation */
.app-container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        /* Soft nebula clouds */
        radial-gradient(ellipse 400px 350px at 25% 30%, rgba(191, 0, 255, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 350px 300px at 75% 70%, rgba(0, 245, 255, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse 300px 250px at 50% 50%, rgba(255, 0, 170, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Static Stars - Small + Big Stars */
.app-container::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        /* Big transparent stars */
        radial-gradient(circle 80px at 8% 15%, rgba(255, 255, 255, 0.04), transparent 60%),
        radial-gradient(circle 120px at 92% 25%, rgba(0, 245, 255, 0.03), transparent 60%),
        radial-gradient(circle 100px at 75% 85%, rgba(191, 0, 255, 0.03), transparent 60%),
        radial-gradient(circle 90px at 20% 75%, rgba(0, 245, 255, 0.025), transparent 60%),
        radial-gradient(circle 70px at 50% 10%, rgba(255, 255, 255, 0.035), transparent 60%),
        radial-gradient(circle 110px at 35% 55%, rgba(191, 0, 255, 0.02), transparent 60%),
        /* Small stars */
        radial-gradient(1.5px 1.5px at 10% 20%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 25% 45%, rgba(0, 245, 255, 0.4), transparent),
        radial-gradient(2px 2px at 40% 10%, rgba(255, 255, 255, 0.45), transparent),
        radial-gradient(1.5px 1.5px at 55% 70%, rgba(191, 0, 255, 0.4), transparent),
        radial-gradient(1px 1px at 70% 30%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(2px 2px at 85% 55%, rgba(0, 245, 255, 0.35), transparent),
        radial-gradient(1.5px 1.5px at 15% 80%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 90% 15%, rgba(191, 0, 255, 0.35), transparent),
        radial-gradient(1.5px 1.5px at 60% 40%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 30% 25%, rgba(0, 245, 255, 0.3), transparent),
        radial-gradient(2px 2px at 80% 70%, rgba(255, 255, 255, 0.35), transparent),
        radial-gradient(1px 1px at 45% 90%, rgba(191, 0, 255, 0.3), transparent);
    background-size: 100% 100%;
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}

/* Static Central Glow - No Animation */
body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse 50% 50% at 50% 50%,
        rgba(191, 0, 255, 0.06) 0%,
        rgba(0, 245, 255, 0.03) 30%,
        transparent 70%);
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

/* ===== LUNAR ECLIPSE - COSMIC PURPLE/CYAN STYLE ===== */
.lunar-eclipse {
    position: fixed;
    top: -100px;
    left: -100px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    animation: moonFloat 50s ease-in-out infinite;
}

@keyframes moonFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5px, 8px); }
}

/* The eclipsed moon surface - cosmic purple tones */
.eclipse-moon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background:
        /* Base moon color - cosmic purple/dark */
        radial-gradient(circle at 35% 35%,
            #2a1a4a 0%,
            #221540 20%,
            #1a1035 40%,
            #120a28 60%,
            #0a051a 80%,
            #05020d 100%
        );
    box-shadow:
        inset -40px -40px 80px rgba(0, 0, 0, 0.7),
        inset 20px 20px 40px rgba(191, 0, 255, 0.1);
    overflow: hidden;
}

/* Moon craters and surface detail */
.eclipse-moon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background:
        /* Large maria (dark patches) */
        radial-gradient(ellipse 25% 20% at 30% 35%, rgba(0, 0, 0, 0.3) 0%, transparent 70%),
        radial-gradient(ellipse 20% 25% at 55% 25%, rgba(0, 0, 0, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse 30% 20% at 65% 55%, rgba(0, 0, 0, 0.28) 0%, transparent 70%),
        radial-gradient(ellipse 15% 18% at 25% 60%, rgba(0, 0, 0, 0.22) 0%, transparent 70%),
        /* Smaller craters */
        radial-gradient(circle 8px at 40% 30%, rgba(0, 0, 0, 0.35) 0%, transparent 70%),
        radial-gradient(circle 12px at 60% 40%, rgba(0, 0, 0, 0.3) 0%, transparent 70%),
        radial-gradient(circle 6px at 35% 55%, rgba(0, 0, 0, 0.25) 0%, transparent 70%),
        radial-gradient(circle 10px at 70% 65%, rgba(0, 0, 0, 0.3) 0%, transparent 70%),
        radial-gradient(circle 5px at 50% 70%, rgba(0, 0, 0, 0.2) 0%, transparent 70%),
        radial-gradient(circle 7px at 25% 45%, rgba(0, 0, 0, 0.28) 0%, transparent 70%),
        /* Subtle cosmic highlights */
        radial-gradient(circle 4px at 45% 35%, rgba(191, 0, 255, 0.15) 0%, transparent 80%),
        radial-gradient(circle 3px at 55% 50%, rgba(0, 245, 255, 0.12) 0%, transparent 80%);
}

/* Cosmic purple/cyan corona during eclipse */
.eclipse-corona {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    border-radius: 50%;
    background: radial-gradient(circle at center,
        transparent 35%,
        rgba(191, 0, 255, 0.12) 40%,
        rgba(150, 0, 200, 0.2) 45%,
        rgba(0, 245, 255, 0.25) 50%,
        rgba(150, 0, 200, 0.2) 55%,
        rgba(191, 0, 255, 0.12) 65%,
        transparent 75%
    );
    animation: cosmicCoronaPulse 10s ease-in-out infinite;
}

@keyframes cosmicCoronaPulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

/* Outer atmospheric glow - cosmic colors */
.eclipse-glow {
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    border-radius: 50%;
    background: radial-gradient(circle at center,
        transparent 25%,
        rgba(191, 0, 255, 0.06) 35%,
        rgba(0, 245, 255, 0.1) 45%,
        rgba(191, 0, 255, 0.06) 55%,
        rgba(100, 0, 150, 0.03) 70%,
        transparent 85%
    );
    animation: glowPulse 12s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.05); }
}

/* Shadow edge on moon - cosmic glow effect */
.eclipse-rim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    box-shadow:
        /* Inner shadow */
        inset 30px 30px 60px rgba(0, 0, 0, 0.6),
        /* Cosmic rim glow */
        0 0 30px rgba(191, 0, 255, 0.35),
        0 0 60px rgba(0, 245, 255, 0.25),
        0 0 100px rgba(191, 0, 255, 0.15),
        0 0 150px rgba(0, 245, 255, 0.1);
}

/* Atmospheric refraction ring - cosmic colors */
.eclipse-atmosphere {
    position: absolute;
    top: -2%;
    left: -2%;
    width: 104%;
    height: 104%;
    border-radius: 50%;
    background: transparent;
    box-shadow:
        inset 0 0 20px rgba(191, 0, 255, 0.15),
        inset 0 0 40px rgba(0, 245, 255, 0.1),
        0 0 15px rgba(191, 0, 255, 0.2),
        0 0 30px rgba(0, 245, 255, 0.12);
    animation: atmosphereShimmer 8s ease-in-out infinite;
}

@keyframes atmosphereShimmer {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Star field and cosmic dust around eclipse */
.eclipse-dust {
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background:
        /* Nearby stars */
        radial-gradient(1.5px 1.5px at 15% 20%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1px 1px at 85% 15%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(2px 2px at 80% 80%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 20% 85%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1.5px 1.5px at 90% 50%, rgba(255, 255, 255, 0.55), transparent),
        radial-gradient(1px 1px at 10% 55%, rgba(255, 255, 255, 0.5), transparent),
        /* Cosmic-tinted dust */
        radial-gradient(1px 1px at 30% 25%, rgba(191, 0, 255, 0.4), transparent),
        radial-gradient(1px 1px at 70% 30%, rgba(0, 245, 255, 0.35), transparent),
        radial-gradient(1.5px 1.5px at 65% 70%, rgba(191, 0, 255, 0.3), transparent),
        radial-gradient(1px 1px at 35% 75%, rgba(0, 245, 255, 0.35), transparent);
    animation: dustDrift 30s linear infinite;
}

@keyframes dustDrift {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive lunar eclipse */
@media (max-width: 1200px) {
    .lunar-eclipse {
        width: 320px;
        height: 320px;
        top: -80px;
        left: -80px;
    }
}

@media (max-width: 768px) {
    .lunar-eclipse {
        width: 250px;
        height: 250px;
        top: -60px;
        left: -60px;
    }
}

@media (max-width: 480px) {
    .lunar-eclipse {
        width: 180px;
        height: 180px;
        top: -45px;
        left: -45px;
    }
}

/* ===== PLANET EARTH ===== */
.planet-earth {
    position: fixed;
    bottom: -100px;
    right: -100px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    animation: earthFloat 40s ease-in-out infinite;
}

@keyframes earthFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-3px, -5px) rotate(1deg); }
}

/* Atmospheric glow around Earth */
.earth-glow {
    position: absolute;
    top: -8%;
    left: -8%;
    width: 116%;
    height: 116%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%,
        rgba(135, 206, 250, 0.3) 0%,
        rgba(70, 130, 180, 0.15) 40%,
        rgba(30, 80, 150, 0.08) 60%,
        transparent 75%
    );
    filter: blur(8px);
    animation: atmosphereGlow 8s ease-in-out infinite;
}

@keyframes atmosphereGlow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Thin blue atmosphere line */
.earth-atmosphere {
    position: absolute;
    top: -1%;
    left: -1%;
    width: 102%;
    height: 102%;
    border-radius: 50%;
    background: transparent;
    box-shadow:
        inset 0 0 30px rgba(135, 206, 250, 0.4),
        inset 0 0 60px rgba(70, 130, 180, 0.2),
        0 0 20px rgba(135, 206, 250, 0.3),
        0 0 40px rgba(70, 130, 180, 0.15);
}

/* Earth surface - realistic ocean and land */
.earth-surface {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background:
        /* Deep ocean with realistic color variation */
        radial-gradient(circle at 30% 30%,
            #1e5799 0%,
            #155a8a 20%,
            #0e4a6f 40%,
            #0a3d5c 60%,
            #072f47 80%,
            #041f2d 100%
        );
    box-shadow:
        inset -60px -60px 100px rgba(0, 0, 0, 0.5),
        inset 30px 30px 60px rgba(135, 206, 250, 0.15);
    overflow: hidden;
}

/* Continents - more realistic shapes and colors */
.earth-surface::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    border-radius: 50%;
    background:
        /* North America - brown/green tones */
        radial-gradient(ellipse 18% 22% at 18% 28%, #5d7a3d 0%, #4a6b32 40%, transparent 70%),
        radial-gradient(ellipse 8% 10% at 12% 35%, #6b8a45 0%, transparent 60%),
        /* South America */
        radial-gradient(ellipse 10% 20% at 25% 58%, #4a7a35 0%, #3d6830 50%, transparent 70%),
        radial-gradient(ellipse 6% 8% at 28% 52%, #5a8a40 0%, transparent 60%),
        /* Europe */
        radial-gradient(ellipse 12% 8% at 48% 26%, #6a7a50 0%, #5a6a45 50%, transparent 70%),
        /* Africa */
        radial-gradient(ellipse 14% 22% at 50% 45%, #8b7355 0%, #7a6348 40%, #6a5540 60%, transparent 75%),
        radial-gradient(ellipse 8% 6% at 52% 38%, #9a8060 0%, transparent 60%),
        /* Asia */
        radial-gradient(ellipse 22% 18% at 72% 30%, #7a8a55 0%, #6a7a4a 40%, #5a6a40 60%, transparent 75%),
        radial-gradient(ellipse 10% 8% at 80% 35%, #6b7b48 0%, transparent 60%),
        /* Australia */
        radial-gradient(ellipse 10% 8% at 82% 58%, #9a7a50 0%, #8a6a45 50%, transparent 70%),
        /* Antarctica hint */
        radial-gradient(ellipse 30% 8% at 50% 92%, rgba(255, 255, 255, 0.6) 0%, rgba(220, 235, 250, 0.3) 50%, transparent 70%),
        /* Greenland */
        radial-gradient(ellipse 6% 8% at 38% 18%, rgba(255, 255, 255, 0.7) 0%, rgba(200, 220, 240, 0.4) 50%, transparent 70%),
        /* Ice caps - North */
        radial-gradient(ellipse 20% 6% at 50% 5%, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
    animation: earthRotate 200s linear infinite;
}

@keyframes earthRotate {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Cloud layer - wispy realistic clouds */
.earth-clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    border-radius: 50%;
    background:
        /* Tropical storm patterns */
        radial-gradient(ellipse 8% 8% at 15% 45%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.3) 40%, transparent 70%),
        /* Cloud bands */
        radial-gradient(ellipse 25% 4% at 30% 25%, rgba(255, 255, 255, 0.5) 0%, transparent 70%),
        radial-gradient(ellipse 20% 3% at 60% 35%, rgba(255, 255, 255, 0.45) 0%, transparent 70%),
        radial-gradient(ellipse 30% 5% at 45% 55%, rgba(255, 255, 255, 0.4) 0%, transparent 70%),
        radial-gradient(ellipse 18% 4% at 75% 45%, rgba(255, 255, 255, 0.5) 0%, transparent 70%),
        /* Scattered clouds */
        radial-gradient(ellipse 6% 4% at 20% 60%, rgba(255, 255, 255, 0.55) 0%, transparent 60%),
        radial-gradient(ellipse 8% 5% at 55% 20%, rgba(255, 255, 255, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 10% 3% at 80% 65%, rgba(255, 255, 255, 0.45) 0%, transparent 60%),
        radial-gradient(ellipse 5% 6% at 40% 70%, rgba(255, 255, 255, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse 12% 4% at 25% 40%, rgba(255, 255, 255, 0.35) 0%, transparent 60%);
    animation: cloudsRotate 150s linear infinite;
    opacity: 0.85;
}

@keyframes cloudsRotate {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Sun illumination - realistic day/night terminator */
.earth-highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background:
        /* Bright sunlit side */
        radial-gradient(circle at 20% 25%,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 240, 0.1) 25%,
            transparent 50%
        ),
        /* Day/night gradient */
        linear-gradient(135deg,
            transparent 0%,
            transparent 40%,
            rgba(0, 0, 30, 0.3) 60%,
            rgba(0, 0, 20, 0.5) 75%,
            rgba(0, 0, 10, 0.6) 100%
        );
}

/* City lights on dark side (subtle) */
.earth-highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background:
        radial-gradient(1px 1px at 70% 35%, rgba(255, 200, 100, 0.6), transparent),
        radial-gradient(1px 1px at 75% 40%, rgba(255, 220, 120, 0.5), transparent),
        radial-gradient(1.5px 1.5px at 68% 45%, rgba(255, 200, 100, 0.4), transparent),
        radial-gradient(1px 1px at 80% 50%, rgba(255, 210, 110, 0.5), transparent),
        radial-gradient(1px 1px at 72% 55%, rgba(255, 200, 100, 0.4), transparent),
        radial-gradient(1.5px 1.5px at 85% 38%, rgba(255, 220, 120, 0.3), transparent);
    opacity: 0.7;
}

/* Responsive Earth */
@media (max-width: 1200px) {
    .planet-earth {
        width: 350px;
        height: 350px;
        bottom: -80px;
        right: -80px;
    }
}

@media (max-width: 768px) {
    .planet-earth {
        width: 280px;
        height: 280px;
        bottom: -70px;
        right: -70px;
    }
}

@media (max-width: 480px) {
    .planet-earth {
        width: 200px;
        height: 200px;
        bottom: -50px;
        right: -50px;
    }
}

.hidden {
    display: none !important;
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
    z-index: 10;

    background: linear-gradient(180deg, rgba(10, 5, 32, 0.95), rgba(3, 0, 20, 0.9));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 245, 255, 0.1);
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.5),
        0 1px 0 rgba(191, 0, 255, 0.2) inset;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -1px;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #b8c5d6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo .highlight {
    background: var(--nebula-1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    animation: logoGlow 6s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: brightness(1) drop-shadow(0 0 8px var(--cosmic-cyan-glow)); }
    50% { filter: brightness(1.1) drop-shadow(0 0 12px var(--cosmic-purple-glow)); }
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.balance-container {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;

    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(191, 0, 255, 0.05));
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 50px;
    box-shadow:
        0 0 20px rgba(0, 245, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: balanceGlow 8s ease-in-out infinite;
}

@keyframes balanceGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(0, 245, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1); }
    50% { box-shadow: 0 0 20px rgba(0, 245, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12); }
}

.coin-icon {
    font-size: 1.3rem;
    animation: coinFloat 5s ease-in-out infinite;
}

@keyframes coinFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

#coin-balance {
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--cosmic-cyan), var(--cosmic-gold));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-variant-numeric: tabular-nums;
}

.profile {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.4rem;
    padding-right: 0.8rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
}

#user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--cosmic-purple);
    box-shadow: 0 0 15px var(--cosmic-purple-glow);
    transition: all 0.3s ease;
    animation: avatarRing 8s ease-in-out infinite;
}

@keyframes avatarRing {
    0%, 100% { border-color: var(--cosmic-purple); box-shadow: 0 0 10px var(--cosmic-purple-glow); }
    50% { border-color: var(--cosmic-cyan); box-shadow: 0 0 12px var(--cosmic-cyan-glow); }
}

#user-avatar:hover {
    transform: scale(1.15);
    box-shadow: 0 0 30px var(--cosmic-cyan-glow);
}

#user-name {
    font-weight: 600;
    color: var(--text-primary);
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-discord,
.btn-logout {
    padding: 0.7rem 1.4rem;
    border-radius: 12px;
    border: none;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--nebula-1);
    color: white;
    box-shadow: 0 4px 20px var(--cosmic-purple-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--cosmic-cyan-glow);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-logout {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
}

.btn-logout:hover {
    background: rgba(255, 0, 100, 0.15);
    border-color: rgba(255, 0, 100, 0.4);
    color: #ff6b9d;
    box-shadow: 0 0 20px rgba(255, 0, 100, 0.2);
}

.btn-discord {
    background: linear-gradient(135deg, #5865F2 0%, #4752c4 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
}

.btn-discord:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.5);
}

/* ===== GAME CONTAINER ===== */
.game-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* ===== SLOT MACHINE - COSMIC PORTAL ===== */
.slot-machine {
    width: 95%;
    max-width: 900px;

    /* Cosmic Glass Cabinet */
    background: linear-gradient(180deg,
        rgba(18, 10, 46, 0.95) 0%,
        rgba(10, 5, 32, 0.98) 50%,
        rgba(3, 0, 20, 0.99) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 2px solid transparent;
    border-radius: 30px;
    background-clip: padding-box;
    position: relative;

    /* Cosmic glow effect */
    box-shadow:
        0 0 0 2px rgba(0, 245, 255, 0.3),
        0 0 60px rgba(191, 0, 255, 0.2),
        0 0 100px rgba(0, 245, 255, 0.15),
        0 30px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem;

    animation: machineFloat 12s ease-in-out infinite;
}

@keyframes machineFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Cosmic energy lines */
.slot-machine::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg,
        transparent,
        var(--cosmic-cyan) 20%,
        var(--cosmic-purple) 50%,
        var(--cosmic-cyan) 80%,
        transparent
    );
    border-radius: 0 0 10px 10px;
    box-shadow: 0 0 30px var(--cosmic-cyan-glow);
    animation: energyLine 6s ease-in-out infinite;
}

@keyframes energyLine {
    0%, 100% { opacity: 0.7; filter: brightness(1); }
    50% { opacity: 0.85; filter: brightness(1.15); }
}

.slot-machine::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg,
        transparent,
        var(--cosmic-pink) 30%,
        var(--cosmic-purple) 50%,
        var(--cosmic-pink) 70%,
        transparent
    );
    border-radius: 10px 10px 0 0;
    box-shadow: 0 0 25px var(--cosmic-pink-glow);
    animation: energyLine 6s ease-in-out infinite reverse;
}

/* ===== REELS ===== */
.reels-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    width: 100%;

    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(3, 0, 20, 0.7) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    border-radius: 20px;
    border: 1px solid rgba(0, 245, 255, 0.15);
    box-shadow:
        inset 0 0 40px rgba(0, 0, 0, 0.6),
        inset 0 0 80px rgba(191, 0, 255, 0.05),
        0 0 30px rgba(0, 245, 255, 0.1);
    position: relative;
}

.reel-window {
    width: 200px;
    height: 540px;
    overflow: hidden;
    position: relative;

    background: linear-gradient(180deg,
        rgba(3, 0, 20, 0.95) 0%,
        rgba(10, 5, 32, 0.9) 50%,
        rgba(3, 0, 20, 0.95) 100%
    );
    border-radius: 18px;
    border: 2px solid rgba(0, 245, 255, 0.25);

    box-shadow:
        inset 0 10px 40px rgba(0, 0, 0, 0.6),
        inset 0 -10px 40px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(0, 245, 255, 0.15),
        0 0 60px rgba(191, 0, 255, 0.1);

    animation: reelGlow 8s ease-in-out infinite;
}

@keyframes reelGlow {
    0%, 100% {
        border-color: rgba(0, 245, 255, 0.2);
        box-shadow: inset 0 10px 40px rgba(0, 0, 0, 0.6), inset 0 -10px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 245, 255, 0.1), 0 0 40px rgba(191, 0, 255, 0.05);
    }
    50% {
        border-color: rgba(191, 0, 255, 0.25);
        box-shadow: inset 0 10px 40px rgba(0, 0, 0, 0.6), inset 0 -10px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(191, 0, 255, 0.12), 0 0 50px rgba(0, 245, 255, 0.08);
    }
}

.reel-window:nth-child(2) {
    animation-delay: 0.5s;
}

.reel-window:nth-child(3) {
    animation-delay: 1s;
}

/* Shine effect on reel windows */
.reel-window::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(180deg,
        rgba(0, 245, 255, 0.08) 0%,
        transparent 100%
    );
    border-radius: 15px 15px 0 0;
    pointer-events: none;
    z-index: 2;
}

/* Gradient masks for smooth edges */
.reel-window::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        rgba(3, 0, 20, 0.9) 0%,
        transparent 15%,
        transparent 85%,
        rgba(3, 0, 20, 0.9) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.reel {
    display: flex;
    flex-direction: column;
    transition: transform 0.1s linear;
}

.reel.blur {
    filter: blur(10px) brightness(1.2);
}

.symbol {
    height: 180px;
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 7rem;

    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

/* Symbol - No animation for cleaner look */

/* Payline overlay - hidden */
.payline-overlay {
    display: none;
}

/* ===== CONTROLS ===== */
.controls-area {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1.2rem 1.5rem;

    background: linear-gradient(135deg,
        rgba(0, 245, 255, 0.03) 0%,
        rgba(191, 0, 255, 0.03) 100%
    );
    border: 1px solid rgba(0, 245, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.bet-controls {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
}

.bet-controls label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.bet-input-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bet-adjust {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(0, 245, 255, 0.2);
    background: rgba(0, 245, 255, 0.05);
    color: var(--cosmic-cyan);
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bet-adjust:hover {
    background: var(--cosmic-cyan);
    border-color: var(--cosmic-cyan);
    color: var(--bg-void);
    box-shadow: 0 0 25px var(--cosmic-cyan-glow);
    transform: scale(1.1);
}

.bet-adjust:active {
    transform: scale(0.95);
}

#bet-amount {
    width: 120px;
    padding: 0.8rem 1rem;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    font-variant-numeric: tabular-nums;

    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 245, 255, 0.2);
    border-radius: 12px;
    color: var(--cosmic-cyan);

    transition: all 0.3s ease;
}

#bet-amount:focus {
    outline: none;
    border-color: var(--cosmic-cyan);
    box-shadow: 0 0 25px var(--cosmic-cyan-glow);
}

.quick-bets {
    display: flex;
    gap: 0.4rem;
}

.quick-bets button {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;

    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-muted);

    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-bets button:hover {
    background: rgba(0, 245, 255, 0.1);
    border-color: var(--cosmic-cyan);
    color: var(--cosmic-cyan);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.2);
}

.action-controls {
    display: flex;
    gap: 1rem;
}

/* Auto Spin Button */
.btn-auto {
    padding: 0.9rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;

    background: transparent;
    border: 2px solid var(--cosmic-purple);
    border-radius: 12px;
    color: var(--cosmic-purple);

    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-auto:hover {
    background: var(--cosmic-purple);
    color: white;
    box-shadow: 0 0 25px var(--cosmic-purple-glow);
}

.btn-auto.active {
    background: linear-gradient(135deg, #ff0066 0%, #ff0099 100%);
    border-color: #ff0066;
    color: white;
    animation: autoPulse 2s ease-in-out infinite;
}

@keyframes autoPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 0, 102, 0.3); }
    50% { box-shadow: 0 0 25px rgba(255, 0, 102, 0.45); }
}

/* Main Spin Button - COSMIC STYLE */
.btn-spin {
    padding: 1rem 2.5rem;
    font-size: 1.3rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;

    background: linear-gradient(135deg,
        var(--cosmic-cyan) 0%,
        var(--cosmic-purple) 50%,
        var(--cosmic-pink) 100%
    );
    background-size: 200% 200%;
    border: none;
    border-radius: 14px;
    color: white;

    cursor: pointer;
    position: relative;
    overflow: hidden;

    box-shadow:
        0 0 30px var(--cosmic-cyan-glow),
        0 0 60px var(--cosmic-purple-glow);

    transition: all 0.3s ease;
    animation: spinButtonGlow 6s ease-in-out infinite;
}

@keyframes spinButtonGlow {
    0%, 100% {
        background-position: 0% 50%;
        box-shadow: 0 0 20px var(--cosmic-cyan-glow), 0 0 40px var(--cosmic-purple-glow);
    }
    50% {
        background-position: 100% 50%;
        box-shadow: 0 0 25px var(--cosmic-purple-glow), 0 0 50px var(--cosmic-cyan-glow);
    }
}

.btn-spin::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    transition: left 0.6s ease;
}

.btn-spin:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow:
        0 0 50px var(--cosmic-cyan-glow),
        0 0 100px var(--cosmic-purple-glow);
}

.btn-spin:hover:not(:disabled)::before {
    left: 100%;
}

.btn-spin:active:not(:disabled) {
    transform: scale(0.98);
}

.btn-spin:disabled {
    background: linear-gradient(135deg, #1a1a2e 0%, #16162a 100%);
    color: #4a4a6a;
    box-shadow: none;
    cursor: not-allowed;
    animation: none;
}

/* ===== MESSAGE DISPLAY ===== */
.message-display {
    min-height: 1.5rem;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

/* ===== NAVBAR RIGHT ===== */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ===== PAYTABLE DROPDOWN ===== */
.paytable-wrapper {
    position: relative;
}

.paytable-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;

    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(191, 0, 255, 0.05));
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 12px;

    color: var(--cosmic-cyan);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;

    cursor: pointer;
    transition: all 0.3s ease;
}

.paytable-toggle:hover {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.2), rgba(191, 0, 255, 0.1));
    box-shadow: 0 0 25px var(--cosmic-cyan-glow);
    transform: translateY(-2px);
}

.paytable-icon {
    font-size: 1.1rem;
    animation: coinFloat 5s ease-in-out infinite;
}

.paytable-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 280px;

    background: linear-gradient(180deg,
        rgba(18, 10, 46, 0.98) 0%,
        rgba(3, 0, 20, 0.99) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 16px;

    box-shadow:
        0 0 0 1px rgba(191, 0, 255, 0.1),
        0 10px 50px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(0, 245, 255, 0.1);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    z-index: 100;
    overflow: hidden;
}

.paytable-wrapper:hover .paytable-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.paytable-header {
    padding: 1rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(191, 0, 255, 0.05));
    border-bottom: 1px solid rgba(0, 245, 255, 0.1);
}

.paytable-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: var(--nebula-1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.paytable-grid {
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
    gap: 0.3rem;
}

.pay-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1rem;

    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 1px solid transparent;

    transition: all 0.2s ease;
}

.pay-item:hover {
    background: rgba(0, 245, 255, 0.08);
    border-color: rgba(0, 245, 255, 0.2);
    transform: translateX(5px);
}

.pay-item .sym {
    font-size: 1.6rem;
    width: 35px;
    text-align: center;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.pay-item .pay-label {
    flex: 1;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.pay-item .mult {
    font-size: 1rem;
    font-weight: 800;
    background: var(--nebula-1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0.3rem 0.6rem;
    background-color: rgba(0, 245, 255, 0.1);
    border-radius: 6px;
}

/* ===== MODAL ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 0, 20, 0.9);
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: linear-gradient(180deg,
        rgba(18, 10, 46, 0.98) 0%,
        rgba(10, 5, 32, 0.99) 100%
    );
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    max-width: 420px;

    border: 1px solid rgba(0, 245, 255, 0.2);
    box-shadow:
        0 0 0 1px rgba(191, 0, 255, 0.2),
        0 0 80px rgba(0, 245, 255, 0.15),
        0 0 120px rgba(191, 0, 255, 0.1),
        0 30px 80px rgba(0, 0, 0, 0.7);

    transform: translateY(20px) scale(0.95);
    animation: modalCosmicIn 0.5s ease forwards;
}

@keyframes modalCosmicIn {
    to {
        transform: translateY(0) scale(1);
    }
}

.modal-content h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--nebula-1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1rem;
}

.modal-content .btn-discord {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .game-container {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .navbar-right {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 0.8rem;
    }

    .paytable-toggle span:not(.paytable-icon) {
        display: none;
    }

    .paytable-toggle {
        padding: 0.5rem 0.8rem;
    }

    .paytable-dropdown {
        width: 260px;
    }

    .slot-machine {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .reels-container {
        gap: 0.5rem;
        padding: 1rem;
    }

    .reel-window {
        width: 110px;
        height: 330px;
    }

    .symbol {
        width: 110px;
        height: 110px;
        font-size: 4rem;
    }

    .controls-area {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .bet-controls {
        flex-wrap: wrap;
        justify-content: center;
    }

    .quick-bets {
        width: 100%;
        justify-content: center;
    }

    .btn-spin {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

    .balance-container {
        padding: 0.4rem 0.8rem;
    }

    #coin-balance {
        font-size: 0.95rem;
    }

    .reel-window {
        width: 85px;
        height: 255px;
    }

    .symbol {
        width: 85px;
        height: 85px;
        font-size: 3rem;
    }

    #bet-amount {
        width: 100px;
        font-size: 1.1rem;
    }
}

/* ===== WIN ANIMATION - COSMIC EXPLOSION ===== */
@keyframes winPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px var(--cosmic-cyan-glow));
    }
    25% {
        transform: scale(1.2);
        filter: drop-shadow(0 0 30px var(--cosmic-purple-glow));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 40px var(--cosmic-pink-glow));
    }
    75% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 35px var(--cosmic-cyan-glow));
    }
}

.symbol.winning {
    animation: winPulse 0.6s ease-in-out 4;
}

/* ===== COSMIC PARTICLES OVERLAY ===== */
@keyframes floatingParticle {
    0%, 100% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(80vh) translateX(10px) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(10vh) translateX(-10px) scale(1);
    }
    100% {
        transform: translateY(-10vh) translateX(0) scale(0);
        opacity: 0;
    }
}
