/* ========================================
   PROJECT X — KIRMES COMMUNITY THEME
   Nachtkirmes-Atmosphäre mit Neon & Lichtern
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Russo+One&family=Inter:wght@400;500;600;700;800&display=swap');

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

:root {
    /* Kirmes Night Sky */
    --bg-dark: #080b14;
    --bg-mid: #0d1120;
    --bg-card: #111627;
    --bg-card-hover: #161d33;

    /* Neon Kirmes Farben */
    --neon-pink: #ff2d78;
    --neon-pink-glow: rgba(255, 45, 120, 0.3);
    --neon-blue: #00d4ff;
    --neon-blue-glow: rgba(0, 212, 255, 0.3);
    --neon-yellow: #ffe03d;
    --neon-yellow-glow: rgba(255, 224, 61, 0.25);
    --neon-green: #39ff14;
    --neon-green-glow: rgba(57, 255, 20, 0.2);
    --neon-orange: #ff6b2b;
    --neon-orange-glow: rgba(255, 107, 43, 0.25);
    --neon-purple: #bf5af2;
    --neon-purple-glow: rgba(191, 90, 242, 0.25);

    /* Primary accent = neon pink (Kirmes-Rot/Pink) */
    --accent: var(--neon-pink);
    --accent-glow: var(--neon-pink-glow);
    --accent-light: #ff5a9e;
    --accent2: var(--neon-blue);
    --accent2-glow: var(--neon-blue-glow);

    /* Text */
    --text: #c8cee0;
    --text-muted: #6b7394;
    --text-heading: #f0f2ff;

    /* Borders */
    --border: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(255, 45, 120, 0.15);

    /* Utility */
    --steam-blue: #1b2838;
    --success: var(--neon-green);
    --warning: var(--neon-yellow);
    --info: var(--neon-blue);
    --ride-available: var(--neon-green);
    --ride-planned: var(--neon-blue);
    --ride-onhold: #6b7394;

    /* Shapes */
    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Kirmes Nacht-Himmel Hintergrund */
body::before {
    content: '';
    position: fixed; inset: 0; z-index: -2;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(255,45,120,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 10%, rgba(0,212,255,0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(255,107,43,0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 10% 80%, rgba(191,90,242,0.03) 0%, transparent 40%);
}

a { color: var(--neon-blue); text-decoration: none; transition: all var(--transition); }
a:hover { color: var(--neon-pink); text-shadow: 0 0 8px var(--neon-pink-glow); }

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(8,11,20,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
}
/* Subtle bottom glow line */
.navbar::after {
    content: '';
    position: absolute; bottom: -1px; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--neon-pink) 20%,
        var(--neon-blue) 50%,
        var(--neon-yellow) 80%,
        transparent 100%
    );
    opacity: 0.4;
}
.nav-container {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center;
    justify-content: space-between; height: 68px;
}
.nav-logo {
    font-family: 'Russo One', 'Segoe UI', sans-serif;
    font-size: 1.4rem; font-weight: 400;
    color: var(--text-heading);
    display: flex; align-items: center; gap: 0.3rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.nav-logo .logo-x {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink-glow), 0 0 30px rgba(255,45,120,0.15);
    font-size: 1.6rem;
}
.nav-logo:hover { color: var(--neon-pink); }
.nav-logo:hover .logo-x { text-shadow: 0 0 15px var(--neon-pink-glow), 0 0 40px rgba(255,45,120,0.3); }

.nav-links { display: flex; gap: 0.25rem; }
.nav-links a {
    color: var(--text-muted); padding: 0.5rem 1rem;
    border-radius: var(--radius-sm); font-size: 0.9rem;
    font-weight: 600; transition: all var(--transition);
}
.nav-links a:hover {
    color: var(--text-heading); background: rgba(255,45,120,0.08);
    text-shadow: none;
}
.nav-links a.active {
    color: var(--neon-pink); background: rgba(255,45,120,0.1);
    box-shadow: 0 0 15px rgba(255,45,120,0.08);
}
.nav-toggle {
    display: none; background: none; border: none;
    color: var(--text); font-size: 1.5rem; cursor: pointer;
}

/* ========================================
   HERO
   ======================================== */
.hero {
    padding: 130px 2rem 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
/* Kirmes Lichtstreifen Hintergrund */
.hero::before {
    content: '';
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 500px;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(255,45,120,0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(0,212,255,0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 30%, rgba(255,224,61,0.06) 0%, transparent 50%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
    0% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}
.hero-content { position: relative; z-index: 1; }
.hero h1 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.8rem; font-weight: 400;
    color: var(--text-heading);
    margin-bottom: 0.6rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.hero h1 i {
    color: var(--neon-yellow);
    text-shadow: 0 0 12px var(--neon-yellow-glow);
    margin-right: 0.3rem;
}
.hero p {
    font-size: 1.15rem; color: var(--text-muted);
    max-width: 550px; margin: 0 auto;
}
/* Hero mit Hintergrundbild */
.hero-image {
    background-size: cover; background-position: center;
    padding: 160px 2rem 80px;
}
.hero-image::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(8,11,20,0.7) 0%,
        rgba(8,11,20,0.5) 50%,
        rgba(8,11,20,0.95) 100%
    );
    z-index: 0;
}

/* ========================================
   FAQ PAGE
   ======================================== */
.faq-container { max-width: 900px; margin: 0 auto; padding: 2rem; padding-bottom: 4rem; }

.faq-category { margin-bottom: 3rem; }
.faq-category h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem; font-weight: 400;
    color: var(--text-heading);
    margin-bottom: 1rem; padding-bottom: 0.75rem;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--neon-pink), var(--neon-blue), transparent) 1;
    display: flex; align-items: center; gap: 0.5rem;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.faq-category h2 i {
    color: var(--neon-yellow);
    text-shadow: 0 0 8px var(--neon-yellow-glow);
    font-size: 1.1rem;
}

/* Legal / Static Content Boxes */
.legal-content {
    margin-bottom: 1rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card-bg);
    color: var(--text-body);
    line-height: 1.7;
}
.legal-content p { margin-bottom: 0.75rem; }
.legal-content p:last-child { margin-bottom: 0; }
.legal-content ul { padding-left: 1.25rem; margin-bottom: 0.75rem; }
.legal-content li { margin-bottom: 0.4rem; }
.legal-content h3 { color: var(--text-heading); margin: 1rem 0 0.5rem; font-size: 1.05rem; }
.legal-content a { color: var(--neon-blue); text-decoration: underline; }
.legal-content a:hover { color: var(--neon-pink); }

/* FAQ Items */
.faq-item {
    margin-bottom: 0.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    background: var(--bg-card);
}
.faq-item:hover {
    border-color: rgba(0,212,255,0.15);
    box-shadow: 0 0 20px rgba(0,212,255,0.05);
}
.faq-item.open {
    border-color: var(--neon-pink);
    box-shadow:
        0 0 20px var(--neon-pink-glow),
        0 0 40px rgba(255,45,120,0.08),
        0 8px 32px rgba(0,0,0,0.3);
}
.faq-question {
    width: 100%; display: flex; align-items: center;
    justify-content: space-between; padding: 1rem 1.25rem;
    background: transparent; border: none; color: var(--text-heading);
    font-size: 1rem; font-weight: 600; font-family: inherit;
    cursor: pointer; transition: all var(--transition); text-align: left;
}
.faq-question:hover { background: rgba(255,255,255,0.02); }
.faq-question i {
    color: var(--neon-pink);
    transition: transform var(--transition);
    flex-shrink: 0; margin-left: 1rem;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    border-top: 0 solid transparent;
}
.faq-item.open .faq-answer {
    max-height: 1200px; padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid var(--border);
}
.faq-answer p { margin-bottom: 0.75rem; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul { padding-left: 1.25rem; margin-bottom: 0.75rem; }
.faq-answer li { margin-bottom: 0.4rem; }
.faq-answer h4 { color: var(--text-heading); margin: 1rem 0 0.5rem; font-size: 0.95rem; }

/* Feature List */
.feature-list { list-style: none; padding: 0; }
.feature-list li {
    padding: 0.65rem 0; display: flex; align-items: flex-start;
    gap: 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.03);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li i {
    color: var(--neon-yellow);
    text-shadow: 0 0 6px var(--neon-yellow-glow);
    font-size: 1.1rem; margin-top: 0.15rem;
}

/* Ride Tags */
.ride-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.75rem 0; }
.ride-tag {
    padding: 0.35rem 0.85rem; border-radius: 20px;
    font-size: 0.85rem; font-weight: 600;
}
.ride-tag.available {
    background: rgba(57,255,20,0.08); color: var(--neon-green);
    border: 1px solid rgba(57,255,20,0.2);
    text-shadow: 0 0 6px rgba(57,255,20,0.2);
}
.ride-tag.planned {
    background: rgba(0,212,255,0.08); color: var(--neon-blue);
    border: 1px solid rgba(0,212,255,0.2);
    text-shadow: 0 0 6px rgba(0,212,255,0.2);
}
.ride-tag.onhold {
    background: rgba(107,115,148,0.1); color: var(--ride-onhold);
    border: 1px solid rgba(107,115,148,0.2);
}
.ride-tag.small { font-size: 0.75rem; padding: 0.2rem 0.6rem; }
.ride-legend {
    display: flex; gap: 0.75rem; margin-top: 1rem;
    padding-top: 0.75rem; border-top: 1px solid var(--border);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-steam {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--steam-blue); color: white;
    padding: 0.6rem 1.25rem; border-radius: var(--radius-sm);
    font-weight: 600; transition: all var(--transition);
}
.btn-steam:hover {
    background: #2a475e; color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(27,40,56,0.5);
    text-shadow: none;
}
.link-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.5rem; }
.btn-link {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1rem; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.9rem; transition: all var(--transition);
}
.btn-link.steam { background: rgba(27,40,56,0.5); color: #c6d4df; border: 1px solid rgba(27,40,56,0.7); }
.btn-link.steam:hover { background: var(--steam-blue); color: white; text-shadow: none; }
.btn-link.discord { background: rgba(88,101,242,0.1); color: #7289da; border: 1px solid rgba(88,101,242,0.25); }
.btn-link.discord:hover { background: rgba(88,101,242,0.2); color: #8ea1f8; text-shadow: none; }
.btn-link.website { background: rgba(255,45,120,0.08); color: var(--neon-pink); border: 1px solid rgba(255,45,120,0.2); }
.btn-link.website:hover { background: rgba(255,45,120,0.15); color: var(--accent-light); text-shadow: none; }

kbd {
    background: #141a2e; border: 1px solid rgba(0,212,255,0.15);
    border-radius: 4px; padding: 0.15rem 0.5rem; font-size: 0.85rem;
    font-family: 'Consolas', monospace; color: var(--neon-blue);
    box-shadow: 0 2px 0 #0a0e1a, 0 0 8px rgba(0,212,255,0.05);
}

/* ========================================
   ROADMAP PAGE
   ======================================== */
.roadmap-container { max-width: 1100px; margin: 0 auto; padding: 2rem; padding-bottom: 4rem; }
.roadmap-disclaimer {
    background: rgba(255,224,61,0.04); border: 1px solid rgba(255,224,61,0.12);
    border-radius: var(--radius); padding: 1rem 1.25rem;
    margin-bottom: 2rem; color: var(--text-muted); font-size: 0.9rem;
}
.roadmap-disclaimer i { color: var(--neon-yellow); margin-right: 0.5rem; }

.roadmap-section { margin-bottom: 2.5rem; }
.roadmap-section h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem; color: var(--text-heading); margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--neon-pink), var(--neon-blue), transparent) 1;
    display: flex; align-items: center; gap: 0.5rem;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.roadmap-section h2 i {
    color: var(--neon-yellow);
    text-shadow: 0 0 8px var(--neon-yellow-glow);
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem; margin-top: 1rem;
}
.roadmap-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
/* Neon top-border stripe per type */
.roadmap-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    transition: opacity var(--transition);
}
.roadmap-card.type-dlc::before { background: linear-gradient(90deg, var(--neon-pink), var(--neon-orange)); }
.roadmap-card.type-update::before { background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple)); }
.roadmap-card.type-accepted::before { background: linear-gradient(90deg, var(--neon-green), var(--neon-yellow)); }
.roadmap-card.type-onhold::before { background: linear-gradient(90deg, #6b7394, #4a5170); }

.roadmap-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.roadmap-card.type-dlc:hover { border-color: rgba(255,45,120,0.2); box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 20px var(--neon-pink-glow); }
.roadmap-card.type-update:hover { border-color: rgba(0,212,255,0.2); box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 20px var(--neon-blue-glow); }
.roadmap-card.type-accepted:hover { border-color: rgba(57,255,20,0.2); box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 20px var(--neon-green-glow); }

.roadmap-card h3 { color: var(--text-heading); font-size: 1rem; margin-top: 0.35rem; }
.roadmap-card p { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.25rem; }
.card-icon {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.roadmap-note {
    background: rgba(255,45,120,0.04); border: 1px solid rgba(255,45,120,0.12);
    border-radius: var(--radius); padding: 1rem 1.25rem;
    margin-bottom: 1.5rem; color: var(--text-muted); font-size: 0.9rem;
}
.roadmap-note i { color: var(--accent); margin-right: 0.5rem; }
.last-edited { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 2rem; }

/* ========================================
   CONTROLS PAGE
   ======================================== */
.controls-container { max-width: 900px; margin: 0 auto; padding: 2rem; padding-bottom: 4rem; }
.controls-container h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.2rem; color: var(--text-heading); margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--neon-pink), var(--neon-blue), transparent) 1;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.controls-container h3 {
    color: var(--neon-yellow); margin: 2rem 0 0.75rem;
    display: flex; align-items: center; gap: 0.5rem;
    text-shadow: 0 0 8px var(--neon-yellow-glow);
}
.controls-container h3 i { font-size: 1.1rem; }

.tab-buttons { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.tab-btn {
    padding: 0.55rem 1.1rem; border-radius: var(--radius-sm);
    border: 1px solid var(--border); background: var(--bg-card);
    color: var(--text-muted); font-size: 0.9rem; font-weight: 700;
    cursor: pointer; transition: all var(--transition); font-family: inherit;
}
.tab-btn:hover { border-color: rgba(0,212,255,0.2); color: var(--text-heading); }
.tab-btn.active {
    background: rgba(255,45,120,0.08);
    border-color: var(--neon-pink);
    color: var(--neon-pink);
    box-shadow: 0 0 15px rgba(255,45,120,0.08);
    text-shadow: 0 0 6px var(--neon-pink-glow);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

.controls-note {
    background: rgba(0,212,255,0.04); border: 1px solid rgba(0,212,255,0.12);
    border-radius: var(--radius); padding: 1rem 1.25rem;
    margin-bottom: 2rem; color: var(--text-muted); font-size: 0.9rem;
}
.controls-note i { color: var(--neon-blue); margin-right: 0.5rem; }

.controls-table {
    width: 100%; border-collapse: separate; border-spacing: 0;
    margin: 0.75rem 0 1.5rem; border-radius: var(--radius);
    overflow: hidden; border: 1px solid var(--border);
}
.controls-table thead th {
    background: var(--bg-card-hover);
    color: var(--neon-pink);
    text-shadow: 0 0 6px var(--neon-pink-glow);
    font-weight: 700; text-align: left; padding: 0.75rem 1rem;
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px;
}
.controls-table tbody td {
    padding: 0.6rem 1rem; border-top: 1px solid var(--border);
    background: var(--bg-card);
}
.controls-table tbody tr:hover td { background: var(--bg-card-hover); }

/* ========================================
   JINGLES PAGE
   ======================================== */
.jingles-container { max-width: 1000px; margin: 0 auto; padding: 2rem; padding-bottom: 4rem; }
.jingles-info {
    background: rgba(0,212,255,0.04); border: 1px solid rgba(0,212,255,0.12);
    border-radius: var(--radius); padding: 1rem 1.25rem;
    margin-bottom: 1rem; color: var(--text-muted); font-size: 0.9rem;
}
.jingles-info i { color: var(--neon-blue); margin-right: 0.5rem; }

.jingles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem; margin-top: 1.5rem;
}
.jingle-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.25rem;
    transition: all var(--transition); display: flex;
    flex-direction: column; gap: 0.5rem;
    position: relative; overflow: hidden;
}
.jingle-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink));
}
.jingle-card:hover {
    border-color: rgba(191,90,242,0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2), 0 0 15px var(--neon-purple-glow);
}
.jingle-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}
.jingle-card h3 { color: var(--text-heading); font-size: 1rem; }
.jingle-artist { color: var(--text-muted); font-size: 0.85rem; }
.jingle-format {
    background: rgba(255,45,120,0.08); color: var(--neon-pink);
    padding: 0.15rem 0.5rem; border-radius: 8px;
    font-weight: 700; font-size: 0.75rem;
    align-self: flex-start;
}
.btn-download {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(191,90,242,0.08); color: var(--neon-purple);
    border: 1px solid rgba(191,90,242,0.2); padding: 0.5rem 1rem;
    border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9rem;
    transition: all var(--transition); text-decoration: none; align-self: flex-start;
}
.btn-download:hover {
    background: rgba(191,90,242,0.15); color: #d88aff;
    transform: translateY(-1px); text-shadow: none;
    box-shadow: 0 0 12px var(--neon-purple-glow);
}

.jingles-howto {
    margin-top: 3rem; background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.5rem;
}
.jingles-howto h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.1rem; color: var(--text-heading); margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.5rem;
    text-transform: uppercase;
}
.jingles-howto h2 i {
    color: var(--neon-yellow);
    text-shadow: 0 0 8px var(--neon-yellow-glow);
}
.jingles-howto ol { padding-left: 1.5rem; }
.jingles-howto li { margin-bottom: 0.5rem; color: var(--text); }

/* ========================================
   NEWS SECTION
   ======================================== */
.news-section { margin-top: 3rem; }
.news-section h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem; color: var(--text-heading);
    margin-bottom: 1rem; padding-bottom: 0.75rem;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--neon-orange), var(--neon-yellow), transparent) 1;
    display: flex; align-items: center; gap: 0.5rem;
    text-transform: uppercase;
}
.news-section h2 i {
    color: var(--neon-orange);
    text-shadow: 0 0 8px var(--neon-orange-glow);
}
.news-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.25rem; margin-bottom: 1rem;
    transition: all var(--transition);
}
.news-card:hover {
    border-color: rgba(255,107,43,0.2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2), 0 0 12px var(--neon-orange-glow);
}
.news-card h3 { color: var(--text-heading); font-size: 1rem; margin-bottom: 0.5rem; }
.news-meta { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.news-meta i { color: var(--neon-orange); }
.news-card p { color: var(--text); font-size: 0.9rem; }
.news-card .btn-readmore {
    display: inline-flex; align-items: center; gap: 0.4rem;
    color: var(--neon-orange); font-weight: 600; font-size: 0.85rem;
    margin-top: 0.75rem; transition: all var(--transition);
}
.news-card .btn-readmore:hover { color: var(--neon-yellow); text-shadow: 0 0 8px var(--neon-yellow-glow); }

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: rgba(8,11,20,0.95);
    border-top: 1px solid var(--border);
    padding: 2.5rem 2rem; text-align: center;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute; top: -1px; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg,
        transparent 0%, var(--neon-pink) 25%,
        var(--neon-blue) 50%, var(--neon-yellow) 75%,
        transparent 100%
    );
    opacity: 0.3;
}
.footer-content { max-width: 900px; margin: 0 auto; }
.footer-brand {
    font-family: 'Russo One', sans-serif;
    font-size: 1.1rem; font-weight: 400;
    color: var(--text-heading); margin-bottom: 1rem;
    letter-spacing: 1px; text-transform: uppercase;
}
.footer-brand .logo-x {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink-glow);
}
.footer-links { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--neon-pink); text-shadow: 0 0 6px var(--neon-pink-glow); }
.footer-copy { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 0.25rem; }
.footer-legal { font-size: 0.75rem; }
.footer-legal a { color: var(--text-muted); }

/* ========================================
   NAV RIGHT (Admin)
   ======================================== */
.nav-right { display: flex; align-items: center; gap: 0.5rem; }

/* Language Switcher */
.lang-switcher { position: relative; }
.btn-lang {
    background: none; border: 1px solid var(--border); border-radius: var(--radius-sm);
    color: var(--text-muted); padding: 0.4rem 0.65rem; cursor: pointer;
    font-size: 1rem; transition: all var(--transition);
}
.btn-lang:hover { color: var(--neon-blue); border-color: rgba(0,212,255,0.2); }
.lang-dropdown {
    display: none; position: absolute; top: calc(100% + 8px); right: 0;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 0.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5); z-index: 9999;
    min-width: 180px;
}
.lang-dropdown.show { display: block; }
/* Google Translate overrides */
.goog-te-gadget { font-family: inherit !important; color: var(--text) !important; }
.goog-te-gadget-simple {
    background: var(--bg-mid) !important; border: 1px solid var(--border) !important;
    border-radius: var(--radius-sm) !important; padding: 0.35rem 0.6rem !important;
    font-size: 0.85rem !important; line-height: 1.4 !important;
}
.goog-te-gadget-simple span { color: var(--text) !important; }
.goog-te-gadget-simple:hover { border-color: rgba(0,212,255,0.3) !important; }
.goog-te-gadget .goog-te-gadget-icon { display: none !important; }
.goog-te-gadget-simple .goog-te-menu-value { color: var(--text) !important; }
/* Hide Google Translate top bar */
.goog-te-banner-frame, #goog-gt-tt { display: none !important; }
body { top: 0 !important; }

.btn-admin {
    background: none; border: 1px solid var(--border); border-radius: var(--radius-sm);
    color: var(--text-muted); padding: 0.4rem 0.65rem; cursor: pointer;
    font-size: 1rem; transition: all var(--transition);
}
.btn-admin:hover { color: var(--neon-pink); border-color: rgba(255,45,120,0.2); }
.btn-admin.admin-active {
    color: var(--neon-green); border-color: rgba(57,255,20,0.2);
    background: rgba(57,255,20,0.04);
    text-shadow: 0 0 8px var(--neon-green-glow);
}

/* Admin Toolbar */
.admin-toolbar {
    background: rgba(57,255,20,0.04); border: 1px solid rgba(57,255,20,0.15);
    border-radius: var(--radius); padding: 0.75rem 1.25rem; margin-bottom: 1.5rem;
}
.admin-toolbar-inner {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 0.75rem;
}
.admin-toolbar span {
    color: var(--neon-green); font-weight: 600; font-size: 0.9rem;
    text-shadow: 0 0 6px var(--neon-green-glow);
}
.admin-toolbar-actions { display: flex; gap: 0.5rem; }
.btn-admin-reset, .btn-admin-logout {
    background: none; border: 1px solid var(--border); border-radius: var(--radius-sm);
    color: var(--text-muted); padding: 0.35rem 0.75rem; cursor: pointer;
    font-size: 0.8rem; font-family: inherit; transition: all var(--transition);
}
.btn-admin-reset:hover { color: var(--neon-yellow); border-color: rgba(255,224,61,0.2); }
.btn-admin-logout:hover { color: var(--neon-pink); border-color: rgba(255,45,120,0.2); }

/* Card admin actions */
.card-admin-actions {
    position: absolute; top: 0.5rem; right: 0.5rem;
    display: flex; gap: 0.25rem; opacity: 0; transition: opacity var(--transition);
}
.roadmap-card:hover .card-admin-actions { opacity: 1; }
.card-admin-actions button {
    background: var(--bg-dark); border: 1px solid var(--border); border-radius: 6px;
    color: var(--text-muted); padding: 0.25rem 0.45rem; cursor: pointer;
    font-size: 0.8rem; transition: all var(--transition);
}
.card-admin-actions button:hover { color: var(--neon-pink); border-color: rgba(255,45,120,0.2); }
.btn-admin-add {
    background: none; border: none; color: var(--neon-green); cursor: pointer;
    font-size: 1.1rem; margin-left: 0.5rem; transition: all var(--transition);
    text-shadow: 0 0 6px var(--neon-green-glow);
}
.btn-admin-add:hover { color: var(--neon-yellow); transform: scale(1.2); }

/* ========================================
   MODALS
   ======================================== */
.modal-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.75); backdrop-filter: blur(10px);
    display: flex; align-items: flex-start; justify-content: center;
    overflow-y: auto; padding: 2rem 0;
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.modal-overlay.show { opacity: 1; pointer-events: all; }
.modal-box {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 2rem; width: 90%; max-width: 420px;
    position: relative; text-align: center;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 40px var(--neon-pink-glow);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
    margin: auto;
    flex-shrink: 0;
}
.modal-overlay.show .modal-box { transform: translateY(0) scale(1); }
.modal-wide { max-width: 520px; text-align: left; }
.modal-close {
    position: absolute; top: 1rem; right: 1rem;
    background: none; border: none; color: var(--text-muted);
    font-size: 1.2rem; cursor: pointer; transition: color var(--transition);
}
.modal-close:hover { color: var(--neon-pink); }
.modal-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}
.modal-box h2 { color: var(--text-heading); font-size: 1.25rem; margin-bottom: 0.25rem; }
.modal-subtitle { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.25rem; }
.modal-form { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1rem; }
.modal-form label { color: var(--text-muted); font-size: 0.85rem; font-weight: 600; margin-bottom: -0.25rem; }
.modal-form input, .modal-form textarea, .modal-form select {
    background: var(--bg-dark); border: 1px solid var(--border); border-radius: var(--radius-sm);
    color: var(--text); padding: 0.65rem 0.85rem; font-size: 0.95rem; font-family: inherit;
    transition: border-color var(--transition); width: 100%;
}
.modal-form input:focus, .modal-form textarea:focus {
    outline: none; border-color: var(--neon-pink);
    box-shadow: 0 0 15px var(--neon-pink-glow);
}
.modal-error { color: var(--neon-pink); font-size: 0.85rem; font-weight: 600; }
.modal-hint { color: var(--text-muted); font-size: 0.8rem; }
.modal-hint a { color: var(--neon-blue); }
.modal-actions { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.icon-input-row { display: flex; align-items: center; gap: 0.75rem; }
.icon-input-row input { flex: 1; }
.icon-input-row i { font-size: 1.5rem; color: var(--neon-pink); min-width: 2rem; text-align: center; }

.btn-primary {
    background: linear-gradient(135deg, var(--neon-pink), #ff1a6c);
    color: white; border: none;
    border-radius: var(--radius-sm); padding: 0.65rem 1.25rem;
    font-size: 0.95rem; font-weight: 700; font-family: inherit;
    cursor: pointer; transition: all var(--transition);
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    box-shadow: 0 0 20px var(--neon-pink-glow);
}
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--neon-pink-glow), 0 0 30px rgba(255,45,120,0.2);
}
.btn-secondary {
    background: transparent; color: var(--text-muted); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 0.6rem 1.25rem;
    font-size: 0.95rem; font-weight: 600; font-family: inherit;
    cursor: pointer; transition: all var(--transition);
}
.btn-secondary:hover { color: var(--text-heading); border-color: var(--text-muted); }

/* Move targets */
.move-targets { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.btn-move-target {
    padding: 0.75rem 1rem; border-radius: var(--radius-sm); border: 1px solid var(--border);
    background: var(--bg-dark); color: var(--text); font-size: 0.9rem;
    font-weight: 600; font-family: inherit; cursor: pointer;
    display: flex; align-items: center; gap: 0.5rem;
    transition: all var(--transition); text-align: left;
}
.btn-move-target:hover { border-color: var(--neon-pink); background: rgba(255,45,120,0.04); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .nav-links {
        display: none; position: absolute; top: 68px; left: 0; right: 0;
        flex-direction: column; background: rgba(8,11,20,0.98);
        border-bottom: 1px solid var(--border); padding: 1rem;
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }
    .hero { padding: 110px 1.5rem 40px; }
    .hero h1 { font-size: 1.7rem; }
    .faq-container { padding: 1rem; }
    .link-buttons { flex-direction: column; }
    .ride-legend { flex-wrap: wrap; }
    .roadmap-grid { grid-template-columns: 1fr; }
    .jingles-grid { grid-template-columns: 1fr; }
    .tab-buttons { gap: 0.35rem; }
    .admin-toolbar-inner { flex-direction: column; text-align: center; }
}

/* ========================================
   LANDING PAGE — SECTIONS
   ======================================== */
.section { padding: 5rem 2rem; position: relative; }
.section-dark { background: rgba(0,0,0,0.15); }
.section-container { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.6rem; color: var(--text-heading);
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: inline-flex; align-items: center; gap: 0.5rem;
}
.section-header h2 i {
    color: var(--neon-yellow);
    text-shadow: 0 0 10px var(--neon-yellow-glow);
}
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* ========================================
   HERO HOME (Full-screen with background)
   ======================================== */
.hero-home {
    min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    background-size: cover; background-position: center;
    position: relative; text-align: center;
    padding: 0 2rem;
}
.hero-home::before {
    content: '';
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    transform: none;
    animation: none;
    background: rgba(8,11,20,0.88);
    z-index: 1;
    pointer-events: none;
}
.hero-home .hero-content { position: relative; z-index: 2; }
.hero-home h1 {
    font-family: 'Russo One', sans-serif;
    font-size: 4.5rem; font-weight: 400;
    color: #fff; letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(255,45,120,0.3), 0 4px 20px rgba(0,0,0,0.5);
    margin-bottom: 0.5rem;
}
.hero-home h1 .logo-x {
    font-size: 5rem;
    text-shadow: 0 0 40px var(--neon-pink-glow), 0 0 80px rgba(255,45,120,0.2);
}
.hero-tag {
    color: var(--neon-yellow); font-weight: 700; font-size: 0.9rem;
    letter-spacing: 3px; text-transform: uppercase;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 12px var(--neon-yellow-glow);
}
.hero-tag i { margin-right: 0.3rem; }
.hero-subtitle {
    font-size: 1.15rem; color: rgba(255,255,255,0.75);
    max-width: 600px; margin: 0 auto 1rem; line-height: 1.8;
}
.hero-tagline {
    font-size: 1.3rem; font-weight: 700; color: var(--neon-yellow);
    text-shadow: 0 0 12px var(--neon-yellow-glow);
    margin-bottom: 0.5rem;
}
.hero-dev {
    font-size: 0.95rem; color: rgba(255,255,255,0.5);
    margin-bottom: 2rem; font-style: italic;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-hero-primary {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: linear-gradient(135deg, var(--neon-pink), #ff1a6c);
    color: #fff; padding: 0.85rem 2rem; border-radius: var(--radius-sm);
    font-weight: 700; font-size: 1rem; text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 0 25px var(--neon-pink-glow), 0 4px 15px rgba(0,0,0,0.3);
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px var(--neon-pink-glow), 0 8px 25px rgba(0,0,0,0.4);
    color: #fff; text-shadow: none;
}
.btn-hero-secondary {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff; padding: 0.85rem 2rem; border-radius: var(--radius-sm);
    font-weight: 700; font-size: 1rem; text-decoration: none;
    transition: all var(--transition);
}
.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-3px); color: #fff; text-shadow: none;
}
.hero-scroll-hint {
    position: absolute; bottom: 2rem; left: 50%;
    transform: translateX(-50%); z-index: 2;
    color: rgba(255,255,255,0.3); font-size: 1.5rem;
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ========================================
   FEATURE CARDS
   ======================================== */
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.feature-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 2rem 1.5rem;
    text-align: center; transition: all var(--transition);
    position: relative; overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    opacity: 0; transition: opacity var(--transition);
}
.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,212,255,0.15);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 25px var(--neon-blue-glow);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    font-size: 2.5rem; margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.feature-card h3 {
    color: var(--text-heading); font-size: 1.05rem;
    margin-bottom: 0.5rem; font-weight: 700;
}
.feature-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ========================================
   SCREENSHOT GALLERY
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.gallery-item {
    border-radius: var(--radius); overflow: hidden;
    position: relative; cursor: pointer;
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 25px var(--neon-pink-glow), 0 8px 30px rgba(0,0,0,0.4);
}
.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(255,45,120,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: white;
    opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item-wide { grid-column: span 2; }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 3000;
    background: rgba(0,0,0,0.92); backdrop-filter: blur(15px);
    display: none; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
    cursor: pointer;
}
.lightbox.show { display: flex; opacity: 1; pointer-events: all; }
.lightbox img {
    max-width: 90vw; max-height: 90vh;
    border-radius: var(--radius); box-shadow: 0 0 60px rgba(255,45,120,0.15);
}

/* ========================================
   NEWS GRID (Landing Page)
   ======================================== */
.news-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.news-card-featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(255,107,43,0.06) 0%, rgba(255,45,120,0.04) 100%);
    border-color: rgba(255,107,43,0.15);
}
.news-card-featured:hover {
    border-color: rgba(255,107,43,0.3);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 25px var(--neon-orange-glow);
}
.news-badge {
    display: inline-block; background: var(--neon-orange);
    color: #0d1120; padding: 0.2rem 0.65rem; border-radius: 6px;
    font-size: 0.75rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.5px; margin-bottom: 0.75rem;
}
.news-avatar {
    width: 24px; height: 24px; border-radius: 50%;
    object-fit: cover; border: 1px solid var(--border);
}
.news-meta {
    display: flex; align-items: center; gap: 0.5rem;
    flex-wrap: wrap;
}
.btn-readmore {
    display: inline-flex; align-items: center; gap: 0.4rem;
    color: var(--neon-orange); font-weight: 600; font-size: 0.9rem;
    margin-top: 0.75rem; transition: all var(--transition);
}
.btn-readmore:hover { color: var(--neon-yellow); text-shadow: 0 0 8px var(--neon-yellow-glow); }
.news-all-link { text-align: center; margin-top: 2rem; }

/* ========================================
   COMMUNITY CARDS
   ======================================== */
.community-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); max-width: 800px; margin: 0 auto;
    gap: 1.5rem;
}
.community-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 2rem 1.5rem;
    text-align: center; transition: all var(--transition);
}
.community-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.community-icon {
    font-size: 2.5rem; margin-bottom: 1rem;
}
.community-card:nth-child(1) .community-icon { color: #7289da; }
.community-card:nth-child(2) .community-icon { color: #c6d4df; }
.community-card:nth-child(3) .community-icon { color: var(--neon-pink); }
.community-card:nth-child(1):hover { border-color: rgba(88,101,242,0.25); box-shadow: 0 8px 30px rgba(0,0,0,0.25), 0 0 20px rgba(88,101,242,0.1); }
.community-card:nth-child(2):hover { border-color: rgba(198,212,223,0.15); }
.community-card:nth-child(3):hover { border-color: rgba(255,45,120,0.2); box-shadow: 0 8px 30px rgba(0,0,0,0.25), 0 0 20px var(--neon-pink-glow); }
.community-card h3 { color: var(--text-heading); margin-bottom: 0.5rem; }
.community-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.community-card .btn-link { justify-content: center; width: 100%; }

/* ========================================
   TOOL / QUICK LINK CARDS
   ======================================== */
.tools-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.tool-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 2rem 1.25rem;
    text-align: center; transition: all var(--transition);
    text-decoration: none; display: block;
    position: relative; overflow: hidden;
}
.tool-card::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    opacity: 0; transition: opacity var(--transition);
}
.tool-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,212,255,0.15);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3), 0 0 20px var(--neon-blue-glow);
    text-shadow: none;
}
.tool-card:hover::before { opacity: 1; }
.tool-card > i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--neon-yellow), var(--neon-orange));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem; display: block;
}
.tool-card h3 { color: var(--text-heading); font-size: 1rem; margin-bottom: 0.35rem; }
.tool-card p { color: var(--text-muted); font-size: 0.85rem; }

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes neonPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ========================================
   RESPONSIVE — Landing Page additions
   ======================================== */
@media (max-width: 768px) {
    .hero-home h1 { font-size: 2.5rem; }
    .hero-home h1 .logo-x { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .features-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item-wide { grid-column: span 2; }
    .news-grid { grid-template-columns: 1fr; }
    .community-grid { grid-template-columns: 1fr; }
    .tools-grid { grid-template-columns: 1fr 1fr; }
    .section { padding: 3rem 1.5rem; }
}

/* ========================================
   BILDER-VERWALTUNG
   ======================================== */
.image-upload-area {
    border: 2px dashed rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
}
.image-upload-area:hover {
    border-color: var(--neon-pink);
    background: rgba(255,45,120,0.05);
}
.images-admin-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
    max-height: 400px;
    overflow-y: auto;
}
.image-admin-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all var(--transition);
}
.image-admin-item:hover {
    border-color: var(--neon-pink);
}
.image-admin-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}
.image-admin-info {
    padding: 0.4rem 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.image-admin-name {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.image-admin-size {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.35);
}
.image-admin-actions {
    display: flex;
    gap: 0.3rem;
    padding: 0.3rem 0.6rem 0.5rem;
}
.image-admin-actions button {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all var(--transition);
}
.image-admin-actions button:hover {
    background: var(--neon-pink);
    border-color: var(--neon-pink);
}

/* ========================================
   RECRUITING — WIR SUCHEN DICH
   ======================================== */
.recruiting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.recruit-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}
.recruit-card:hover {
    transform: translateY(-4px);
    border-color: var(--neon-orange);
    box-shadow: 0 8px 32px var(--neon-orange-glow);
}
.recruit-banner {
    position: relative;
    height: 160px;
    overflow: hidden;
}
.recruit-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.recruit-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.recruit-badge.open {
    background: rgba(57, 255, 20, 0.2);
    color: var(--neon-green);
    border: 1px solid rgba(57, 255, 20, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}
.recruit-badge.closed {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 6px var(--neon-green-glow); }
    50% { box-shadow: 0 0 16px var(--neon-green-glow); }
}
.recruit-body {
    padding: 1.5rem;
}
.recruit-body h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: var(--text-heading);
    margin-bottom: 0.75rem;
}
.recruit-body h3 i {
    color: var(--neon-orange);
    margin-right: 0.4rem;
}
.recruit-body > p {
    color: var(--text);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}
.recruit-tasks {
    margin-bottom: 1rem;
}
.recruit-tasks h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
}
.recruit-tasks ul {
    list-style: none;
    padding: 0;
}
.recruit-tasks li {
    padding: 0.3rem 0;
    color: var(--text);
    font-size: 0.9rem;
}
.recruit-tasks li i {
    color: var(--neon-green);
    margin-right: 0.5rem;
    font-size: 0.8rem;
}
.recruit-tasks li i.bi-star-fill {
    color: var(--neon-yellow);
}
.recruit-cta {
    text-align: center;
    padding: 1.5rem 0 0;
}
.recruit-cta p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* ========================================
   EVENTS & GIVEAWAYS
   ======================================== */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.event-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition);
}
.event-card:hover {
    transform: translateY(-4px);
    border-color: var(--neon-purple);
    box-shadow: 0 8px 32px var(--neon-purple-glow);
}
.event-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.8rem;
}
.event-icon.giveaway {
    background: rgba(255, 45, 120, 0.12);
    color: var(--neon-pink);
    border: 2px solid rgba(255, 45, 120, 0.3);
}
.event-icon.events {
    background: rgba(191, 90, 242, 0.12);
    color: var(--neon-purple);
    border: 2px solid rgba(191, 90, 242, 0.3);
}
.event-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: var(--text-heading);
    margin-bottom: 0.75rem;
}
.event-status {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 0.75rem;
}
.event-hint {
    color: var(--text);
    font-size: 0.9rem;
}

/* ========================================
   LEADERBOARD
   ======================================== */
.leaderboard-container {
    max-width: 650px;
    margin: 0 auto;
}
.leaderboard-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.leaderboard-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.2rem;
    color: var(--text-heading);
    padding: 1.2rem 1.5rem;
    background: rgba(255, 224, 61, 0.04);
    border-bottom: 1px solid var(--border);
}
.lb-list {
    padding: 0.5rem 0;
}
.lb-entry {
    display: flex;
    align-items: center;
    padding: 0.85rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    transition: background var(--transition);
}
.lb-entry:last-child {
    border-bottom: none;
}
.lb-entry:hover {
    background: rgba(255,255,255,0.03);
}
.lb-rank {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    margin-right: 1rem;
    flex-shrink: 0;
    background: rgba(255,255,255,0.06);
    color: var(--text-muted);
}
.lb-gold .lb-rank {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    border: 2px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}
.lb-silver .lb-rank {
    background: rgba(192, 192, 192, 0.15);
    color: #c0c0c0;
    border: 2px solid rgba(192, 192, 192, 0.3);
}
.lb-bronze .lb-rank {
    background: rgba(205, 127, 50, 0.15);
    color: #cd7f32;
    border: 2px solid rgba(205, 127, 50, 0.3);
}
.lb-name {
    font-weight: 600;
    color: var(--text-heading);
    flex: 1;
    font-size: 1rem;
}
.lb-gold .lb-name { color: #ffd700; }
.lb-silver .lb-name { color: #e0e0e0; }
.lb-bronze .lb-name { color: #cd7f32; }
.lb-stats {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-variant-numeric: tabular-nums;
}
.leaderboard-hint {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.leaderboard-hint a {
    color: var(--neon-blue);
}
.leaderboard-hint a:hover {
    color: var(--neon-pink);
}

/* ========================================
   RECRUITING / EVENTS RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .recruiting-grid {
        grid-template-columns: 1fr;
    }
    .recruit-banner {
        height: 120px;
    }
    .events-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   DASHBOARD IFRAME EMBED
   ======================================== */
.dashboard-iframe-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.08);
    background: var(--bg-card);
}
.dashboard-iframe-wrapper iframe {
    width: 100%;
    height: 2400px;
    border: none;
    display: block;
    margin-top: -80px;
}
.dashboard-overlay-hint {
    text-align: center;
    padding: 1rem 0 1.5rem;
    background: linear-gradient(transparent, var(--bg-dark));
}
@media (max-width: 768px) {
    .dashboard-iframe-wrapper iframe {
        height: 2000px;
    }
}

/* ============================================================
   KIRMES GAMES
   ============================================================ */
.game-selector {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.game-tab {
    padding: 0.75rem 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.game-tab:hover {
    border-color: var(--neon-pink);
    color: var(--neon-pink);
    box-shadow: 0 0 15px rgba(255, 45, 117, 0.2);
}
.game-tab.active {
    background: linear-gradient(135deg, rgba(255,45,117,0.15), rgba(0,229,255,0.15));
    border-color: var(--neon-pink);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 45, 117, 0.3);
}
.game-header {
    text-align: center;
    margin-bottom: 1.5rem;
}
.game-header h2 {
    font-size: 1.5rem;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.game-header h2 i {
    color: var(--neon-yellow);
    text-shadow: 0 0 8px var(--neon-yellow-glow);
}
.game-header p {
    color: var(--text-body);
    opacity: 0.8;
}
.game-hud {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.hud-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.5rem 1.25rem;
    font-size: 0.95rem;
    color: var(--text-body);
}
.hud-item i { margin-right: 0.3rem; }
.hud-item .bi-heart-fill { color: #ff2d75; }
.hud-item .bi-star-fill { color: #ffe14d; }
.hud-item .bi-trophy-fill { color: #00e5ff; }
.hud-item .bi-clock-fill { color: #b44dff; }
.hud-item strong { color: #fff; }

.game-canvas-wrapper {
    position: relative;
    max-width: 800px;
    flex: 1 1 800px;
    min-width: 0;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 45, 117, 0.1), 0 0 60px rgba(0, 229, 255, 0.05);
    background: #0a0a1a;
}

/* Game + Leaderboard side-by-side layout */
.game-layout {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    justify-content: center;
}

/* Leaderboard Panel */
.leaderboard-panel {
    flex: 0 0 260px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    max-height: 540px;
    overflow-y: auto;
}
.leaderboard-panel h3 {
    font-size: 1rem;
    color: var(--neon-yellow);
    text-shadow: 0 0 8px var(--neon-yellow-glow);
    margin-bottom: 0.75rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.leaderboard-panel h3 i {
    color: var(--neon-yellow);
}
.lb-nickname-row {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}
.lb-nick-input {
    flex: 1;
    padding: 0.4rem 0.6rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: #fff;
    font-size: 0.85rem;
    outline: none;
    transition: border-color var(--transition);
}
.lb-nick-input:focus {
    border-color: var(--neon-pink);
    box-shadow: 0 0 8px rgba(255,45,117,0.2);
}
.lb-nick-input::placeholder {
    color: rgba(255,255,255,0.3);
}
.lb-save-btn {
    padding: 0.4rem 0.6rem;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    transition: all var(--transition);
    display: flex;
    align-items: center;
}
.lb-save-btn:hover {
    box-shadow: 0 0 12px rgba(255,45,117,0.4);
    transform: scale(1.05);
}
.lb-table-wrap {
    overflow-y: auto;
    max-height: 360px;
}
.lb-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}
.lb-table thead th {
    padding: 0.4rem 0.5rem;
    text-align: left;
    color: var(--neon-blue);
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.lb-table thead th:first-child {
    width: 30px;
    text-align: center;
}
.lb-table thead th:last-child {
    text-align: right;
    width: 60px;
}
.lb-table tbody tr {
    transition: background var(--transition);
}
.lb-table tbody tr:hover {
    background: rgba(255,255,255,0.04);
}
.lb-table tbody tr.lb-highlight {
    background: rgba(255,45,117,0.1);
}
.lb-table tbody td {
    padding: 0.35rem 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: var(--text-body);
}
.lb-table tbody td:first-child {
    text-align: center;
    font-weight: 700;
    color: var(--neon-yellow);
}
.lb-table tbody td:last-child {
    text-align: right;
    font-weight: 600;
    color: #fff;
}
.lb-table tbody tr:nth-child(1) td:first-child { color: #ffd700; }
.lb-table tbody tr:nth-child(2) td:first-child { color: #c0c0c0; }
.lb-table tbody tr:nth-child(3) td:first-child { color: #cd7f32; }
.lb-info {
    text-align: center;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.25);
    margin-top: 0.5rem;
}
.game-canvas-wrapper canvas {
    display: block;
    width: 100%;
    height: auto;
}
.game-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 26, 0.92);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 10;
}
.game-overlay h3 {
    font-size: 1.8rem;
    color: var(--neon-yellow);
    text-shadow: 0 0 15px var(--neon-yellow-glow);
}
.game-overlay p {
    color: var(--text-body);
    font-size: 1.1rem;
}
.game-overlay strong {
    color: #fff;
}
.btn-neon {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
    border: none;
    border-radius: var(--radius);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-neon:hover {
    box-shadow: 0 0 25px rgba(255, 45, 117, 0.5), 0 0 50px rgba(0, 229, 255, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .game-selector {
        flex-direction: column;
        align-items: center;
    }
    .game-tab {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    .game-hud {
        gap: 0.75rem;
    }
    .hud-item {
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
    }
    .game-layout {
        flex-direction: column;
        align-items: stretch;
    }
    .leaderboard-panel {
        flex: none;
        max-height: none;
    }
}
/* ========================================
   TEAM PAGE
   ======================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.team-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 45, 120, 0.1);
}

.team-card.team-lead {
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px var(--neon-pink-glow);
}

.team-card.team-lead:hover {
    box-shadow: 0 0 30px var(--neon-pink-glow), 0 8px 30px rgba(255, 45, 120, 0.15);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-avatar i {
    font-size: 2.5rem;
    color: #fff;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-orange));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.team-card h3 {
    color: var(--text-heading);
    font-family: 'Russo One', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.team-socials {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.team-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-socials a:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
}

.team-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-card);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.team-empty-state i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: block;
}

.team-empty-state h3 {
    color: var(--text-heading);
    font-family: 'Russo One', sans-serif;
    margin-bottom: 0.5rem;
}

.team-empty-state p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-empty-state a {
    color: var(--accent);
    text-decoration: none;
}

.team-empty-state a:hover {
    text-decoration: underline;
}

/* ========================================
   STREAMER PAGE
   ======================================== */
.streamer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.streamer-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.streamer-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.1);
}

.streamer-card.streamer-featured {
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px var(--neon-purple-glow);
}

.streamer-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.streamer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.streamer-avatar i {
    font-size: 2.2rem;
    color: #fff;
}

.streamer-live-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
}

.streamer-card h3 {
    color: var(--text-heading);
    font-family: 'Russo One', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.streamer-platform {
    color: var(--neon-purple);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Multi-Platform Badges */
.streamer-platforms {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.platform-badge:hover { transform: scale(1.15); }

.platform-twitch   { color: #9146ff; border-color: rgba(145, 70, 255, 0.4); background: rgba(145, 70, 255, 0.12); }
.platform-youtube   { color: #ff0000; border-color: rgba(255, 0, 0, 0.4);   background: rgba(255, 0, 0, 0.12); }
.platform-instagram { color: #e1306c; border-color: rgba(225, 48, 108, 0.4); background: rgba(225, 48, 108, 0.12); }
.platform-tiktok    { color: #00f2ea; border-color: rgba(0, 242, 234, 0.4);  background: rgba(0, 242, 234, 0.12); }
.platform-twitter   { color: #fff;    border-color: rgba(255,255,255,0.3);   background: rgba(255,255,255,0.08); }
.platform-discord   { color: #7289da; border-color: rgba(114,137,218,0.4);  background: rgba(114,137,218,0.12); }
.platform-steam     { color: #c6d4df; border-color: rgba(27,40,56,0.6);     background: rgba(27,40,56,0.35); }

.streamer-platforms-mini {
    justify-content: flex-start;
}
.streamer-platforms-mini .platform-badge {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
}

/* Follower Chips (per-Platform) */
.streamer-stats-multi {
    flex-wrap: wrap;
    gap: 0.5rem;
}

.follower-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
}

.follower-twitch   { color: #9146ff; border-color: rgba(145, 70, 255, 0.3); background: rgba(145, 70, 255, 0.1); }
.follower-youtube   { color: #ff4444; border-color: rgba(255, 0, 0, 0.3);   background: rgba(255, 0, 0, 0.1); }
.follower-instagram { color: #e1306c; border-color: rgba(225, 48, 108, 0.3); background: rgba(225, 48, 108, 0.1); }
.follower-tiktok    { color: #00f2ea; border-color: rgba(0, 242, 234, 0.3);  background: rgba(0, 242, 234, 0.1); }

.follower-chip i { font-size: 0.85rem; }

/* Mini card follower stats */
.streamer-stats-mini {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-top: 0.3rem;
}

.follower-chip-mini {
    padding: 0.15rem 0.5rem;
    font-size: 0.7rem;
}
.follower-chip-mini i { font-size: 0.7rem; }

/* ===== LIVE INDICATOR ===== */
.live-indicator {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 0, 0, 0.9);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.6rem 0.2rem 0.45rem;
    border-radius: 20px;
    z-index: 5;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    animation: livePulse 2s infinite;
}
.live-indicator:hover {
    background: rgba(255, 0, 0, 1);
    transform: scale(1.08);
    color: #fff;
    text-decoration: none;
}
.live-indicator .live-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: liveDotPulse 1.5s infinite;
}
.live-indicator .live-viewers {
    font-weight: 400;
    opacity: 0.9;
    margin-left: 0.15rem;
}
.live-indicator-yt {
    background: rgba(255, 0, 0, 0.9);
}
.live-indicator-twitch {
    background: rgba(145, 70, 255, 0.9);
}
.live-indicator-twitch:hover {
    background: rgba(145, 70, 255, 1);
}
@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5); }
    50% { box-shadow: 0 0 8px 3px rgba(255, 0, 0, 0.3); }
}
@keyframes liveDotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Live-Badge auf Mini-Cards */
.streamer-card-mini {
    position: relative;
}
.streamer-card-mini .live-indicator {
    top: 0.35rem;
    left: 0.35rem;
    font-size: 0.55rem;
    padding: 0.15rem 0.5rem 0.15rem 0.35rem;
}
.streamer-card-mini .live-indicator .live-dot {
    width: 6px;
    height: 6px;
}

/* Live-Titel Tooltip */
.live-indicator[title] {
    position: absolute;
}

.streamer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.streamer-stats {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.streamer-stats i {
    color: var(--neon-blue);
    margin-right: 0.3rem;
}

.streamer-links {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-link.twitch {
    background: rgba(145, 70, 255, 0.15);
    color: #9146ff;
    border: 1px solid rgba(145, 70, 255, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-link.twitch:hover {
    background: rgba(145, 70, 255, 0.3);
    box-shadow: 0 0 12px rgba(145, 70, 255, 0.3);
}

.btn-link.youtube {
    background: rgba(255, 0, 0, 0.12);
    color: #ff4444;
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-link.youtube:hover {
    background: rgba(255, 0, 0, 0.25);
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.3);
}

.btn-link.instagram {
    background: rgba(225, 48, 108, 0.12);
    color: #e1306c;
    border: 1px solid rgba(225, 48, 108, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-link.instagram:hover {
    background: rgba(225, 48, 108, 0.25);
    box-shadow: 0 0 12px rgba(225, 48, 108, 0.3);
}

.btn-link.tiktok {
    background: rgba(255, 0, 80, 0.12);
    color: #ff0050;
    border: 1px solid rgba(255, 0, 80, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-link.tiktok:hover {
    background: rgba(255, 0, 80, 0.25);
    box-shadow: 0 0 12px rgba(255, 0, 80, 0.3);
}

.btn-link.twitter {
    background: rgba(29, 155, 240, 0.12);
    color: #1d9bf0;
    border: 1px solid rgba(29, 155, 240, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-link.twitter:hover {
    background: rgba(29, 155, 240, 0.25);
    box-shadow: 0 0 12px rgba(29, 155, 240, 0.3);
}

/* Compact streamer cards */
.streamer-grid-compact {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.streamer-card-mini {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--text);
    position: relative;
    flex-wrap: wrap;
}

.streamer-card-mini:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    transform: translateY(-2px);
}

.streamer-mini-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    flex-shrink: 0;
    overflow: hidden;
}

.streamer-mini-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.streamer-mini-avatar i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.3rem;
    color: #fff;
}

.streamer-mini-info h4 {
    color: var(--text-heading);
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.streamer-mini-info .streamer-platform {
    font-size: 0.8rem;
    margin: 0;
}

.streamer-card-mini > i {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Creator CTA Section */
.creator-cta {
    max-width: 700px;
    margin: 2rem auto 0;
}

.creator-cta-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
}

.creator-cta-content h3 {
    color: var(--text-heading);
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.creator-cta-content > p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.creator-perks {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 0 auto 1.5rem;
}

.creator-perks li {
    color: var(--text);
    padding: 0.4rem 0;
    font-size: 0.95rem;
}

.creator-perks li i {
    color: var(--neon-green);
    margin-right: 0.5rem;
}

.creator-cta-buttons {
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .team-grid,
    .streamer-grid {
        grid-template-columns: 1fr;
    }
    .streamer-grid-compact {
        grid-template-columns: 1fr;
    }
}

/* ========================
   LIVE INDICATOR BADGES (Streamer/Team Cards)
   ======================== */
.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}
.live-indicator:hover {
    transform: scale(1.05);
    color: #fff;
    text-decoration: none;
}
.live-indicator-twitch {
    background: #9146ff;
    box-shadow: 0 0 12px rgba(145, 70, 255, 0.5);
}
.live-indicator-yt {
    background: #ff0000;
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.5);
}
.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    animation: livePulse 1.5s ease-in-out infinite;
}
.live-viewers {
    font-weight: 600;
    font-size: 0.7rem;
    opacity: 0.9;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

/* ========================
   LIVE STREAM EMBED (Startseite)
   ======================== */
.live-embed-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.live-embed-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--bg-card, #111627);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 30px rgba(145, 70, 255, 0.15);
    transition: box-shadow 0.3s;
}
.live-embed-card:hover {
    box-shadow: 0 0 40px rgba(145, 70, 255, 0.25);
}
.live-embed-player {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
}
.live-embed-player iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.live-embed-yt-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}
.live-embed-yt-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.live-embed-play {
    position: absolute;
    font-size: 3rem;
    color: #ff0000;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.6));
}
.live-embed-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
}
.live-embed-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.live-embed-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
}
.live-embed-badge-twitch {
    background: #9146ff;
    box-shadow: 0 0 10px rgba(145, 70, 255, 0.4);
}
.live-embed-badge-youtube {
    background: #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}
.live-embed-platform {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-heading, #f0f2ff);
}
.live-embed-platform i {
    margin-right: 0.3rem;
    color: var(--neon-blue, #00d4ff);
}
.live-embed-viewers {
    font-size: 0.85rem;
    color: var(--text-muted, #6b7394);
}
.live-embed-viewers i {
    margin-right: 0.2rem;
}
.live-embed-title {
    font-size: 1rem;
    color: var(--text-heading, #f0f2ff);
    margin: 0;
    line-height: 1.4;
}
.live-embed-game {
    font-size: 0.85rem;
    color: var(--text-muted, #6b7394);
    margin: 0;
}
.live-embed-game i {
    margin-right: 0.3rem;
}
.btn-live-watch {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--neon-pink, #ff2d78), var(--neon-blue, #00d4ff));
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    width: fit-content;
}
.btn-live-watch:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 45, 120, 0.4);
    color: #fff;
    text-decoration: none;
}

/* Multiple streams stacked */
.live-embed-grid > .live-embed-card:nth-child(n+2) {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.12);
}

@media (max-width: 768px) {
    .live-embed-card {
        grid-template-columns: 1fr;
    }
    .live-embed-info {
        padding: 1rem;
    }
}

/* Modal form elements (shared) */
.modal-input {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-heading, #f0f2ff);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    outline: none;
    transition: border-color 0.2s;
}
.modal-input:focus {
    border-color: var(--neon-blue, #00d4ff);
}
.modal-box label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted, #6b7394);
    margin-bottom: 0.3rem;
    font-weight: 600;
}
.btn-save {
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, var(--neon-pink, #ff2d78), var(--neon-blue, #00d4ff));
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-save:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 45, 120, 0.4);
}
.btn-cancel {
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: var(--text-muted, #6b7394);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}
.btn-cancel:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-heading, #f0f2ff);
}

/* ========================
   CHANGELOG / PATCHNOTES
   ======================== */
.changelog-entry {
    background: var(--bg-card, #111627);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.changelog-entry:hover {
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.08);
}
.changelog-entry-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.changelog-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}
.changelog-version {
    font-family: 'Russo One', sans-serif;
    font-size: 1rem;
    color: var(--neon-blue, #00d4ff);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    padding: 0.25rem 0.75rem;
}
.changelog-date {
    font-size: 0.85rem;
    color: var(--text-muted, #6b7394);
}
.changelog-title {
    font-family: 'Russo One', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
    flex: 1;
    width: 100%;
}
.changelog-actions {
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
}
/* Rendered HTML content area */
.changelog-content {
    color: var(--text-light, #c5cbe3);
    font-size: 0.95rem;
    line-height: 1.7;
}
.changelog-content ul, .changelog-content ol {
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}
.changelog-content li {
    margin-bottom: 0.3rem;
}
.changelog-content b, .changelog-content strong {
    color: #fff;
}
/* Inline tags */
.cl-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
    margin-right: 0.3rem;
    vertical-align: middle;
}
.cl-tag-added { background: rgba(57, 255, 20, 0.15); color: #39ff14; }
.cl-tag-fixed { background: rgba(0, 212, 255, 0.15); color: #00d4ff; }
.cl-tag-changed { background: rgba(255, 170, 0, 0.15); color: #ffaa00; }
.cl-tag-removed { background: rgba(255, 45, 120, 0.15); color: #ff2d78; }

/* Editor modal */
.modal-box-wide {
    max-width: 700px;
    width: 95%;
}
.cl-toolbar {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 0.4rem 0.6rem;
    flex-wrap: wrap;
}
.cl-toolbar button {
    background: none;
    border: 1px solid transparent;
    color: var(--text-light, #c5cbe3);
    cursor: pointer;
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: background 0.2s, border-color 0.2s;
}
.cl-toolbar button:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}
.cl-toolbar-sep {
    width: 1px;
    height: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 0.3rem;
}
.cl-tag-btn {
    font-size: 0.7rem !important;
    font-weight: 700;
    padding: 0.2rem 0.5rem !important;
}
.cl-tag-btn.cl-tag-added { color: #39ff14; }
.cl-tag-btn.cl-tag-fixed { color: #00d4ff; }
.cl-tag-btn.cl-tag-changed { color: #ffaa00; }
.cl-tag-btn.cl-tag-removed { color: #ff2d78; }
.cl-editor {
    min-height: 200px;
    max-height: 400px;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0 0 10px 10px;
    padding: 1rem;
    color: var(--text-light, #c5cbe3);
    font-size: 0.95rem;
    line-height: 1.6;
    outline: none;
}
.cl-editor:focus {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.1);
}
.cl-editor ul, .cl-editor ol {
    padding-left: 1.5rem;
}
.cl-editor .cl-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
    margin-right: 0.3rem;
}

@media (max-width: 768px) {
    .changelog-entry {
        padding: 1rem 1.2rem;
    }
    .changelog-entry-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .cl-editor {
        min-height: 150px;
    }
}

/* ========================
   COUNTDOWN TIMER (im Hero)
   ======================== */
#countdown-section {
    margin-top: 2rem;
    text-align: center;
}
#countdown-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}
#countdown-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0;
}
.countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}
.countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-card, #111627);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    min-width: 110px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
    transition: box-shadow 0.3s, transform 0.3s;
}
.countdown-box:hover {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.25);
    transform: translateY(-2px);
}
.countdown-value {
    font-family: 'Russo One', sans-serif;
    font-size: 3rem;
    color: var(--neon-blue, #00d4ff);
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}
.countdown-label {
    font-size: 0.8rem;
    color: var(--text-muted, #6b7394);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}
.countdown-separator {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: var(--neon-pink, #ff2d78);
    line-height: 1;
    padding-bottom: 1.2rem;
    animation: countdownPulse 2s ease-in-out infinite;
}
.countdown-finished {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
}
.countdown-finished i {
    font-size: 4rem;
    color: var(--neon-green, #39ff14);
    animation: countdownCelebrate 1s ease-in-out infinite;
}
.countdown-finished span {
    font-family: 'Russo One', sans-serif;
    font-size: 2rem;
    color: var(--neon-green, #39ff14);
    text-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

@keyframes countdownPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
@keyframes countdownCelebrate {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-5deg); }
    75% { transform: scale(1.1) rotate(5deg); }
}

@media (max-width: 768px) {
    .countdown-box {
        padding: 1rem 1.2rem;
        min-width: 70px;
    }
    .countdown-value {
        font-size: 2rem;
    }
    .countdown-separator {
        font-size: 1.5rem;
    }
}
}