:root {
    --bg: #020308;
    --cyan: #58E6FF;
    --blue: #4B7CFF;
    --purple: #A35CFF;
    --pink: #FF62D6;
    --text: #EAF2FF;
    --muted: rgba(234, 242, 255, .65);
    --glass: rgba(255, 255, 255, .03);
    --border: rgba(255, 255, 255, .1);
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    /* Deep Space Background */
    background-image:
        radial-gradient(circle at 10% 20%, rgba(75, 124, 255, 0.08), transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(163, 92, 255, 0.08), transparent 30%);
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
    width: 10px;
    background: #020308;
}

::-webkit-scrollbar-track {
    background: rgba(88, 230, 255, 0.05);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--cyan), var(--purple));
    border-radius: 10px;
    border: 2px solid #020308;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--purple), var(--cyan));
}

/* --- STARS ANIMATION --- */
.stars {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image: radial-gradient(1.5px 1.5px at 50% 50%, white, transparent);
    background-size: 300px 300px;
    opacity: 0.3;
    animation: starMove 120s linear infinite;
}

@keyframes starMove {
    to {
        transform: translateY(-1000px)
    }
}

/* AUDIO WAVE ANIMATION */
.audio-visualizer {
    display: flex;
    gap: 6px;
    height: 60px;
    align-items: center;
    margin-bottom: 20px;
}

.wave-bar {
    width: 8px;
    background: var(--cyan);
    border-radius: 99px;
    animation: wave 1s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(88, 230, 255, 0.5);
}

@keyframes wave {

    0%,
    100% {
        height: 10%;
        opacity: 0.5;
    }

    50% {
        height: 80%;
        opacity: 1;
    }
}

/* --- EDGE-TO-EDGE LAYOUT --- */
section {
    min-height: 100vh;
    width: 100vw;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 60px 5vw;
    /* Side padding is relative to viewport width */
}

/* --- HERO: SPLIT LAYOUT --- */
.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
}

.hero-left {
    width: 50%;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 10;
}

.hero-right {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* TYPOGRAPHY */
.orbitron {
    font-family: 'Orbitron', sans-serif;
}

.giant-text {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(64px, 7vw, 140px);
    /* Massive Text */
    font-weight: 800;
    line-height: 1.05;
    background: linear-gradient(120deg, #fff, rgba(255, 255, 255, 0.6));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0 0 30px 0;
    letter-spacing: -3px;
    filter: drop-shadow(0 0 40px rgba(88, 230, 255, 0.2));
}

.sub-text {
    font-size: clamp(18px, 1.2vw, 24px);
    color: var(--muted);
    max-width: 90%;
    margin-bottom: 50px;
    line-height: 1.6;
    font-weight: 300;
}

/* MASCOT & PLANET */
.planet-glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(88, 230, 255, 0.08), transparent 60%);
    filter: blur(80px);
    z-index: 0;
}

.mascot {
    width: min(380px, 70%);
    /* Padding'siz yeni görsele göre küçültüldü */
    height: auto;
    max-height: 55vh;
    /* Taşkınlığı önlemek için sınırlandırıldı */
    object-fit: contain;
    z-index: 5;
    filter: drop-shadow(0 0 50px rgba(163, 92, 255, 0.3));
    animation: floaty 6s ease-in-out infinite;
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* --- BENTO GRID SYSTEM --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 24px;
    width: 100%;
}

.card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.005);
    z-index: 2;
}

.card h3 {
    color: var(--cyan);
    margin: 0 0 10px;
    font-size: 28px;
}

.card p {
    color: var(--muted);
    font-size: 18px;
    margin: 0;
    line-height: 1.5;
}

.card-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
}

/* Grid Spans */
.col-3 {
    grid-column: span 3;
}

.col-4 {
    grid-column: span 4;
}

.col-5 {
    grid-column: span 5;
}

.col-6 {
    grid-column: span 6;
}

.col-7 {
    grid-column: span 7;
}

.col-12 {
    grid-column: span 12;
}

.row-2 {
    grid-row: span 2;
}

/* Gradients */
.grad-1 {
    background: radial-gradient(circle at top right, rgba(88, 230, 255, 0.1), transparent);
}

.grad-2 {
    background: radial-gradient(circle at bottom left, rgba(163, 92, 255, 0.1), transparent);
}

/* BUTTONS */
.btn {
    padding: 18px 40px;
    border-radius: 99px;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Orbitron';
    text-transform: uppercase;
    transition: transform 0.2s;
    display: inline-block;
    margin-right: 20px;
}

.btn-primary {
    background: white;
    color: black;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.5);
}

.btn-glass {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* NAV - Now with Branding */
.nav-float {
    position: absolute;
    top: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Split logo and links */
    padding: 0 5vw;
    /* Match Section Padding */
    z-index: 100;
}

.brand-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;

    /* SMOOTH NEON DARK GRADIENT */
    background: linear-gradient(135deg, #7F00FF 0%, #E100FF 50%, #00D2FF 100%);
    /* Violet -> Pink -> Cyan */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    /* Soft Glow */
    filter: drop-shadow(0 0 20px rgba(127, 0, 255, 0.5));
}

.nav-links-container {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
}

.nav-link:hover {
    color: white;
}

/* AUTH BUTTONS */
.auth-container {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-login {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-login:hover {
    color: var(--cyan);
    border-color: rgba(88, 230, 255, 0.3);
    border-radius: 8px;
    background: rgba(88, 230, 255, 0.05);
}

.btn-register {
    background: linear-gradient(90deg, var(--purple), var(--cyan));
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 28px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(163, 92, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-register:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 40px rgba(88, 230, 255, 0.6);
}

/* --- PREMIUM UNIVERSE BUTTON --- */
.btn-universe {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: white;
    text-decoration: none;
    background: rgba(88, 230, 255, 0.05);
    border: 1px solid rgba(88, 230, 255, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    cursor: pointer;
    box-shadow: 0 0 20px rgba(88, 230, 255, 0.1);
}

.btn-universe::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(88, 230, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-universe:hover {
    background: rgba(88, 230, 255, 0.15);
    border-color: var(--cyan);
    box-shadow: 0 0 40px rgba(88, 230, 255, 0.4);
    transform: translateY(-3px) scale(1.02);
    letter-spacing: 4px;
}

.btn-universe:hover::before {
    transform: translateX(100%);
}

/* Animated Border Gradient */
.btn-universe::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg,
            transparent 0%,
            transparent 30%,
            var(--cyan) 50%,
            transparent 70%,
            transparent 100%);
    animation: rotate-border 4s linear infinite;
    opacity: 0.3;
    z-index: -1;
}

@keyframes rotate-border {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Internal Glow Pulse */
.btn-universe-glow {
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 15px rgba(88, 230, 255, 0.2);
    animation: internal-pulse 2s infinite alternate;
    pointer-events: none;
}

@keyframes internal-pulse {
    from {
        opacity: 0.3;
    }

    to {
        opacity: 0.7;
    }
}

/* Scanline Effect */
.btn-scanline {
    position: absolute;
    width: 100%;
    height: 2px;
    background: rgba(88, 230, 255, 0.4);
    top: 0;
    left: 0;
    box-shadow: 0 0 10px var(--cyan);
    animation: btn-scan 2.5s infinite linear;
    opacity: 0.5;
    pointer-events: none;
}

@keyframes btn-scan {
    0% {
        top: -5%;
    }

    100% {
        top: 105%;
    }
}

/* BETA BADGE */
.beta-badge {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid var(--cyan);
    background: rgba(88, 230, 255, 0.1);
    color: var(--cyan);
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 24px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(88, 230, 255, 0.2);
    backdrop-filter: blur(5px);
}

/* MOBILE */
@media(max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    /* --- AGGRESSIVE HEADER RESET --- */
    /* --- REAL MOBILE HEADER FIX --- */
    /* Original HTML uses <nav class="nav-float">, NOT <header> */

    .nav-float {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        padding: 30px 20px !important;
        background: transparent !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;

        transform: none !important;
        left: auto !important;
    }

    /* 1. LOGO */
    .brand-logo {
        position: static !important;
        transform: none !important;
        margin: 0 !important;
        font-size: 32px !important;
        text-align: center;
        display: block !important;
    }

    /* 2. CENTER LINKS (The problematic absolute div) */
    .nav-links-container {
        position: static !important;
        /* Override inline style */
        transform: none !important;
        /* Override inline style */
        left: auto !important;

        display: flex !important;
        flex-direction: row !important;
        /* Keep side-by-side but wrapped */
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 20px !important;
        width: 100% !important;
    }

    .nav-link {
        font-size: 14px !important;
        color: rgba(255, 255, 255, 0.7) !important;
        margin: 0 !important;
    }


    /* ------------------------------ */

    /* HERO FIXES */
    .hero-split {
        flex-direction: column-reverse;
        justify-content: flex-end;
        padding-top: 20px;
        min-height: auto;
        gap: 60px;
        /* HUGE GAP */
        margin-top: 40px;
    }

    .hero-left {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .hero-right {
        width: 100%;
        height: auto;
        min-height: auto;
        margin: 0;
        display: flex;
        justify-content: center;
    }

    .hero-right img {
        width: 80%;
        /* Smaller image on mobile */
        max-width: 250px;
        height: auto;
        object-fit: contain;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-12 {
        grid-column: span 1;
    }

    /* Force Vertical Layout for Special Cards on Mobile */
    .card[style*="flex-direction: row"] {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px !important;
        padding: 30px !important;
        height: auto !important;
        text-align: left;
    }

    /* Specific fix for the row-2 card (Audio) height */
    .row-2 {
        grid-row: span 1;
        height: auto !important;
        /* Allow it to grow */
    }

    .big-spectrum {
        width: 100%;
        justify-content: center;
        margin-top: 20px;
    }

    .card.col-12 div[style*="font-size: 150px"] {
        display: none;
    }

    .giant-text {
        font-size: 40px !important;
    }

    /* Fix Actions Buttons Gap */
    .actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    /* Ensure buttons are full width in this stack */
    .actions .btn {
        width: 100% !important;
        display: block !important;
        text-align: center !important;
    }
}



/* --- FEATURE CARD ANIMATIONS --- */

.radar-container {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--red);
    /* Red for live broadcast */
    border-radius: 50%;
    opacity: 0;
    animation: radar-ping 2s infinite;
}

.radar-ring:nth-child(2) {
    animation-delay: 0.5s;
    width: 60%;
    height: 60%;
}

@keyframes radar-ping {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.tray-dots {
    display: flex;
    gap: 4px;
    margin-top: 5px;
}

.tray-dot {
    width: 6px;
    height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    animation: tray-pulse 1.5s infinite;
}

.tray-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.tray-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes tray-pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.shield-glow {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 0 15px var(--gold);
    animation: shield-breathe 3s infinite ease-in-out;
    z-index: -1;
}

@keyframes shield-breathe {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.9);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.neon-palette {
    animation: hue-rotate 5s infinite linear;
    text-shadow: 0 0 10px currentColor;
}

@keyframes hue-rotate {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

.typing-indicator {
    display: inline-flex;
    gap: 3px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 12px;
    margin-top: 10px;
}

.type-dot {
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
    animation: typing-bounce 1.4s infinite ease-in-out;
}

.type-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.type-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff00;
    display: inline-block;
    margin-left: 10px;
    animation: blink-status 2s infinite;
}

@keyframes blink-status {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.fire-anim {
    display: inline-block;
    animation: flame-flicker 0.1s infinite alternate;
    transform-origin: center bottom;
}

@keyframes flame-flicker {
    0% {
        transform: scale(1) rotate(-2deg);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.05) rotate(2deg);
        opacity: 1;
        text-shadow: 0 0 20px orangered;
    }
}

.lock-pulse {
    animation: lock-beat 3s infinite;
    display: inline-block;
}

@keyframes lock-beat {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0px var(--cyan));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 10px var(--cyan));
    }
}


@keyframes ghost-float {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-5px);
        opacity: 0.6;
    }
}

/* --- ADVANCED CARD ANIMATIONS --- */

/* 1. MATRIX RAIN (Encrypted) */
.matrix-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 255, 0, 0), rgba(0, 255, 0, 0.1));
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.3;
}

.matrix-char {
    position: absolute;
    color: #0f0;
    font-family: monospace;
    font-size: 10px;
    animation: matrix-fall 2s infinite linear;
    opacity: 0;
}

@keyframes matrix-fall {
    0% {
        top: -10%;
        opacity: 1;
    }

    100% {
        top: 110%;
        opacity: 0;
    }
}

/* 2. DYNAMIC FRIENDS (Popping Avatars) */
.friend-badge-container {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
}

.mini-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #1a1a2e;
    background: #444;
    margin-left: -10px;
    animation: avatar-pop 4s infinite;
}

.mini-avatar:nth-child(1) {
    background: #ff5f5f;
    animation-delay: 0s;
}

.mini-avatar:nth-child(2) {
    background: #5fafff;
    animation-delay: 1s;
}

.mini-avatar:nth-child(3) {
    background: #5fff8f;
    animation-delay: 2s;
}

@keyframes avatar-pop {

    0%,
    10% {
        transform: scale(0);
        opacity: 0;
    }

    20%,
    80% {
        transform: scale(1);
        opacity: 1;
    }

    90%,
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

/* 3. MODERATION (Scanning) */
.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
    animation: scan-vertical 3s infinite ease-in-out;
    opacity: 0.5;
}

@keyframes scan-vertical {
    0% {
        top: 0%;
    }

    50% {
        top: 100%;
    }

    100% {
        top: 0%;
    }
}

/* 4. CAPTAIN SHIELD (Rotating & Locked) */
.captain-ring {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border: 2px dashed var(--gold);
    border-radius: 50%;
    animation: spin-slow 10s infinite linear;
}

.captain-lock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
}

@keyframes spin-slow {
    to {
        transform: rotate(360deg);
    }
}

/* 5. INCOMING MESSAGE (Fly In) */
.msg-incoming {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--purple);
    color: white;
    padding: 5px 12px;
    border-radius: 12px 12px 0 12px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: msg-fly-in 3s infinite ease-in-out;
}

@keyframes msg-fly-in {
    0% {
        transform: translateX(20px) scale(0.8);
        opacity: 0;
    }

    20% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }

    80% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateY(-10px);
        opacity: 0;
    }
}

/* 6. VOICE FADER (Slider Moving) */
.voice-fader {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.voice-knob {
    width: 12px;
    height: 12px;
    background: var(--cyan);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    box-shadow: 0 0 10px var(--cyan);
    animation: fader-slide 2s infinite ease-in-out alternate;
}

@keyframes fader-slide {
    0% {
        left: 0%;
    }

    100% {
        left: 80%;
    }
}

/* 7. DYNAMIC AVATAR (Morphing) */
.morph-avatar {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid white;
    background: url('https://i.pravatar.cc/150?img=12');
    /* Fallback/Placeholder */
    background-size: cover;
    animation: avatar-morph 4s infinite;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

@keyframes avatar-morph {
    0% {
        border-color: #ff0055;
        transform: rotate(0deg);
    }

    33% {
        border-color: #00ff55;
        border-radius: 8px;
    }

    66% {
        border-color: #0055ff;
        border-radius: 50%;
    }

    100% {
        border-color: #ff0055;
        transform: rotate(360deg);
    }
}

/* 8. POLLS (Bar Chart) */
.poll-container {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 20px;
}

.poll-bar {
    width: 6px;
    background: var(--cyan);
    border-radius: 2px;
    animation: bar-grow 2s infinite ease-in-out;
}

.poll-bar:nth-child(1) {
    height: 40%;
    animation-delay: 0s;
}

.poll-bar:nth-child(2) {
    height: 80%;
    animation-delay: 0.5s;
    background: var(--purple);
}

.poll-bar:nth-child(3) {
    height: 60%;
    animation-delay: 1s;
}

@keyframes bar-grow {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(1.5);
    }
}

/* 9. EVENTS (Calendar Flip) */
.event-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #222;
    border: 1px solid #444;
    border-radius: 6px;
    padding: 4px;
    text-align: center;
    width: 30px;
}

.event-month {
    font-size: 8px;
    color: var(--red);
    text-transform: uppercase;
    font-weight: bold;
}

.event-day {
    font-size: 14px;
    font-weight: bold;
    color: white;
    animation: date-bounce 3s infinite;
}

@keyframes date-bounce {

    0%,
    90% {
        transform: scale(1);
    }

    95% {
        transform: scale(1.3);
        color: var(--cyan);
    }

    100% {
        transform: scale(1);
    }
}

/* 10. ANNOUNCEMENT (Megaphone Shake) */
.megaphone-anim {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    animation: mega-shake 3s infinite;
}

@keyframes mega-shake {

    0%,
    90% {
        transform: rotate(0deg);
    }

    92% {
        transform: rotate(-15deg);
    }

    94% {
        transform: rotate(15deg);
    }

    96% {
        transform: rotate(-15deg);
    }

    98% {
        transform: rotate(15deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* 11. LITE MODE (Toggle) */
.lite-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 16px;
    background: #333;
    border-radius: 99px;
    border: 1px solid #555;
}

.lite-knob {
    width: 12px;
    height: 12px;
    background: #0f0;
    border-radius: 50%;
    position: absolute;
    top: 1px;
    left: 2px;
    animation: toggle-switch 4s infinite ease-in-out;
}

@keyframes toggle-switch {

    0%,
    45% {
        left: 2px;
        background: #0f0;
    }

    /* ON */
    50%,
    95% {
        left: 14px;
        background: #666;
    }

    /* OFF */
    100% {
        left: 2px;
        background: #0f0;
    }
}

/* 12. VIP ROOM (Crown Shine) */
.vip-crown {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    filter: drop-shadow(0 0 5px gold);
    animation: vip-flash 2s infinite alternate;
}

@keyframes vip-flash {
    from {
        opacity: 0.6;
        transform: scale(1);
    }

    to {
        opacity: 1;
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px gold);
    }
}

/* 13. REPORTING (Red Flag) */
.report-flag {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    color: var(--red);
    animation: flag-wave 2s infinite ease-in-out;
    transform-origin: bottom left;
}

@keyframes flag-wave {

    0%,
    100% {
        transform: skewX(0deg) rotate(0deg);
    }

    50% {
        transform: skewX(-10deg) rotate(5deg);
    }
}


/* --- NAV BETA BADGE --- */
.nav-beta-badge {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #00ff00;
    letter-spacing: 0.5px;
    margin-top: 6px;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
    border-bottom: 1px solid rgba(0, 255, 0, 0.3);
    padding-bottom: 2px;
    animation: pulse-green 2s infinite;
    white-space: nowrap;
}



@media (max-width: 768px) {
    .nav-beta-badge {
        font-size: 9px;
        white-space: nowrap;
    }
}

/* ==============================
   DOWNLOAD SECTION
   ============================== */

/* Download Buttons Container */
.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

/* Base Download Button */
.dl-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 28px;
    border-radius: 16px;
    text-decoration: none;
    color: white;
    font-family: 'Orbitron', sans-serif;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 210px;
    overflow: hidden;
    cursor: pointer;
}

/* PRIMARY - Windows (active) */
.dl-btn-primary {
    background: linear-gradient(135deg, rgba(88, 230, 255, 0.15), rgba(75, 124, 255, 0.2));
    border: 1px solid rgba(88, 230, 255, 0.5);
    box-shadow: 0 0 30px rgba(88, 230, 255, 0.15);
}

.dl-btn-primary:hover {
    background: linear-gradient(135deg, rgba(88, 230, 255, 0.25), rgba(75, 124, 255, 0.3));
    border-color: var(--cyan);
    box-shadow: 0 0 50px rgba(88, 230, 255, 0.3);
    transform: translateY(-4px) scale(1.03);
}

/* Glow effect for primary button */
.dl-btn-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% -20%, rgba(88, 230, 255, 0.15), transparent 70%);
    pointer-events: none;
}

/* SECONDARY - Mac / Linux (coming soon, muted) */
.dl-btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
    opacity: 0.75;
}

.dl-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Icon inside button */
.dl-icon {
    color: var(--cyan);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(88, 230, 255, 0.08);
    border-radius: 12px;
}

/* Feature pills */
.dl-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 55px;
}

.dl-pill {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.6);
    padding: 8px 18px;
    border-radius: 99px;
    font-size: 13px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
}

.dl-pill:hover {
    border-color: rgba(88, 230, 255, 0.4);
    color: white;
    background: rgba(88, 230, 255, 0.07);
}

/* Responsive */
@media (max-width: 768px) {
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .dl-btn {
        width: 100%;
        max-width: 300px;
    }
}