/* =============================================
   GOOGLE FONTS
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');




/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
    /* ========== ENVIRONMENT (Hintergrundverläufe) ========== */
    --sky-top: #03141f;        /* tiefes Nachtblau (Bild 1) */
    --sky-mid: #92c3d4;        /* warmes Dämmerungs-Orange/Rosa */
    --sky-bottom: #0A0A0A;     /* fast schwarz (Stadt-Silhouetten) */
    --game-ground: #4f3d2d;    /* identisch, für den Bodengrund */

    /* ========== PANELS (Tag-Ansicht, Bild 2) ========== */
    --panel-bg: #F8FAFC;                    /* helles Grau-Weiß */
    --panel-bg-dark: rgba(220, 225, 235, 0.6);
    --panel-border: #B0C4DE;                /* helles Blau-Grau */

    /* ========== MARKEN- & AKZENTFARBEN ========== */
    --hud-blue: #00D2FF;        /* leuchtendes Cyan (Titel) */
    --neon-cyan: #00D2FF;       /* identisch, für Countdown */
    --neon-green: #4CAF50;      /* aktiver Button (New Game) */
    --neon-blue: #1E3A8A;       /* dunkles Marineblau (Options/Exit) */
    --neon-white: #FFFFFF;
    --neon-orange: #FF8C42;     /* warmes Highlight (Hover/Icons) */
    --neon-yellow: #FFB300;     /* Licht-Gold (Akzente) */
    --blue: #3498DB;            /* helles Blau (Icons, Stats) */
    --kofi: #13C3FF;            /* unverändert */

    /* ========== HUD-BUTTON-FARBEN (aus Bild 2) ========== */
    --hud-yellow: #F1C40F;
    --hud-purple: #9B59B6;
    --hud-green: #2ECC71;
    --hud-pink: #E91E63;
    --hud-blue-btn: #3498DB;

    /* ========== TEXTFARBEN ========== */
    --text-white: #FFFFFF;      /* für dunkle Hintergründe */
    --text-muted: #94A3B8;      /* gedämpftes Blau-Grau */
    --text-dark: #1E293B;       /* für helle Hintergründe */
    --text-dark-muted: #475569; /* weicheres Dunkel */

    /* ========== LAYOUT ========== */
    --radius: 4px;
    --radius-lg: 6px;

    /* ========== BORDERS & SHADOWS ========== */
    --border-light: 1px solid rgba(255,255,255,.15);
    --border-panel: 1px solid var(--panel-border);
    --shadow-panel: 0 15px 40px rgba(0,0,0,.6);
    --shadow-small: 0 6px 0 rgba(0,0,0,.4);
    --shadow-button: inset 0 -6px 0 rgba(0,0,0,.2);
    --shadow-button-hover: inset 0 -3px 0 rgba(0,0,0,.2);
}




/* =============================================
   RESET & BASE
   ============================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    background: linear-gradient(
        180deg,
        var(--sky-top) 0%,
        var(--sky-mid) 50%,
        var(--sky-bottom) 80%,
        var(--game-ground) 100%
    );
    background-attachment: fixed;
    color: var(--text-white);
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* =============================================
   UTILITY
   ============================================= */
.panel-center {
    text-align: center;
}

/* =============================================
   BACKGROUND EFFECTS CONTAINER
   ============================================= */
#background-effects {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
}

.lightbox.show {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(0,0,0,0.7);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 40px;
    color: white;
    font-size: 42px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 1001;
}

.lightbox-close:hover {
    color: var(--neon-cyan);
}

/* =============================================
   SUN GLOW
   ============================================= */
.sun-glow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -10;
    background: radial-gradient(
        circle at 70% 18%,
        rgba(255,255,210,.55) 0%,
        rgba(255,255,180,.18) 20%,
        transparent 55%
    );
    animation: sunPulse 18s ease-in-out infinite;
}

@keyframes sunPulse {
    0%, 100% {
        opacity: .85;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

/* =============================================
   ATMOSPHERIC MIST & CLOUDS
   ============================================= */
/* Basis: volle Breite, keine Wiederholung, zentriert */
.cloud,
.mist {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: 100% auto;          /* Breite = Viewport, Höhe automatisch */
    background-position: center center;  /* mittig ausrichten */
}

.cloud  { z-index: 2; }
.mist   { z-index: 1; }

.cloud1 {
    opacity: .45;
    background-image: url(images/clouds/cloud1.png);
    animation: driftLeft 200s linear infinite alternate;
}
.cloud2 {
    opacity: .40;
    background-image: url(images/clouds/cloud2.png);
    animation: driftRight 150s linear infinite alternate;
}
.cloud3 {
    opacity: .35;
    background-image: url(images/clouds/cloud3.png);
    animation: driftLeft 110s linear infinite alternate;
}
.mist1 {
    opacity: .65;
    background-image: url(images/clouds/mist1.png);
    animation: driftRight 160s linear infinite alternate;
}
.mist2 {
    opacity: .50;
    background-image: url(images/clouds/mist2.png);
    animation: driftLeft 220s linear infinite alternate;
}


/* Sanfte Drift-Animationen */
@keyframes driftLeft {
    from { transform: translateX(0); }
    to   { transform: translateX(-3%); }
}

@keyframes driftRight {
    from { transform: translateX(0); }
    to   { transform: translateX(3%); }
}


/* =============================================
   HERO CLOUDS (absolut innerhalb des Hero)
   ============================================= */
.hero-cloud,
.hero-mist {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;                   /* über dem Verlauf, unter hero-center (z-index:10) */
    opacity: 0.15;                 /* etwas stärker, da der Verlauf darunter liegt */
}

.hero-cloud1 {
    background-image: url(images/clouds/cloud1.png);
    animation: driftLeft 200s linear infinite alternate;
}

.hero-cloud2 {
    background-image: url(images/clouds/cloud2.png);
    animation: driftRight 180s linear infinite alternate;
}

.hero-cloud3 {
    background-image: url(images/clouds/cloud3.png);
    animation: driftLeft 140s linear infinite alternate;
}

.hero-mist1 {
    background-image: url(images/clouds/mist1.png);
    animation: driftRight 160s linear infinite alternate;
}

.hero-mist2 {
    background-image: url(images/clouds/mist2.png);
    animation: driftLeft 200s linear infinite alternate;
}



/* =============================================
   PARTICLES
   ============================================= */
#particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
}

.particle {
    position: absolute;
    bottom: -20px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 8px white;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-120vh) translateX(120px);
    }
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(15, 23, 42, 0.85);   /* --sky-top als Basis */
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
}

nav {
    display: flex;
    align-items: center;
    position: relative;
    width: min(4000px, 92%);
    height: 32px;
    margin: 0 auto;
}

/* Left hud */
.hud-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    font-size: 14px;
    opacity: 0.9;
}

.hud-clock {
    font-size: 26px;
    color: var(--neon-white);
    text-shadow: 0 0 12px var(--neon-white);
}

/* Icon navigation */
.hud-icons {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hud-icons li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    color: var(--text-white);
    font-size: 18px;
    border: 1px solid rgba(0,0,0,0.15);
    background: rgba(255,255,255,0.5);
    box-shadow: var(--shadow-button);
    transition: .15s;
}

.hud-icons li a:hover {
    transform: translateY(3px);
    box-shadow: var(--shadow-button-hover);
    color: #000;
    background: rgba(255,255,255,0.8);
}

/* HUD button color variants */
.hud-btn.hud-yellow {
    border-color: rgba(241, 196, 15, 0.9);
    background: rgba(241, 196, 15, 0.3);
    box-shadow: 0 0 12px rgba(241, 196, 15, 0.6);
}
.hud-btn.hud-yellow:hover {
    background: rgba(241, 196, 15, 0.6);
    box-shadow: 0 0 25px rgba(241, 196, 15, 0.9), 0 0 50px rgba(241, 196, 15, 0.5);
}

.hud-btn.hud-purple {
    border-color: rgba(155, 89, 182, 0.9);
    background: rgba(155, 89, 182, 0.3);
    box-shadow: 0 0 12px rgba(155, 89, 182, 0.6);
}
.hud-btn.hud-purple:hover {
    background: rgba(155, 89, 182, 0.6);
    box-shadow: 0 0 25px rgba(155, 89, 182, 0.9), 0 0 50px rgba(155, 89, 182, 0.5);
}

.hud-btn.hud-green {
    border-color: rgba(46, 204, 113, 0.9);
    background: rgba(46, 204, 113, 0.3);
    box-shadow: 0 0 12px rgba(46, 204, 113, 0.6);
}
.hud-btn.hud-green:hover {
    background: rgba(46, 204, 113, 0.6);
    box-shadow: 0 0 25px rgba(46, 204, 113, 0.9), 0 0 50px rgba(46, 204, 113, 0.5);
}

.hud-btn.hud-pink {
    border-color: rgba(233, 30, 99, 0.9);
    background: rgba(233, 30, 99, 0.3);
    box-shadow: 0 0 12px rgba(233, 30, 99, 0.6);
}
.hud-btn.hud-pink:hover {
    background: rgba(233, 30, 99, 0.6);
    box-shadow: 0 0 25px rgba(233, 30, 99, 0.9), 0 0 50px rgba(233, 30, 99, 0.5);
}

.hud-btn.hud-blue {
    border-color: rgba(52, 152, 219, 0.9);
    background: rgba(52, 152, 219, 0.3);
    box-shadow: 0 0 12px rgba(52, 152, 219, 0.6);
}
.hud-btn.hud-blue:hover {
    background: rgba(52, 152, 219, 0.6);
    box-shadow: 0 0 25px rgba(52, 152, 219, 0.9), 0 0 50px rgba(52, 152, 219, 0.5);
}
/* Right hud */
.hud-right {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: auto;
}

.hud-right span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hud-right i {
    color: var(--text-white);
    font-size: 13px;
    text-shadow: 0 0 6px var(--neon-white);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    z-index: 10;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    background: linear-gradient(
        180deg,
        var(--sky-top) 0%,
        var(--sky-mid) 40%,
        var(--sky-bottom) 75%,
        var(--game-ground) 100%
    );
}

.game-ground {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to top, var(--game-ground) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-center {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    max-width: 800px;
    width: 90%;
}

.hero-logo {
    width: 100%;
    max-width: 700px;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5));
    animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

.hero-tagline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    color: var(--text-white);
    font-size: 22px;
    font-weight: 400;
    text-shadow: 1px 1px 0 rgba(0,0,0,.4);
}

.hero-tagline span {
    display: inline-block;
    width: 100px;
    height: 3px;
    background: var(--blue);
    box-shadow: 0 0 8px var(--text-white);
}

/* Countdown */
#countdown-container {
    margin: 10px 0 20px;
}

#countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 75px;
}

.countdown-item .value {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-white);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    text-shadow:
        0 0 5px var(--neon-cyan),
        0 0 10px var(--neon-cyan),
        0 0 20px var(--neon-cyan),
        0 0 40px var(--hud-blue);
}

.countdown-item .label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 2px;
}

.colon {
    font-size: 38px;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 15px var(--neon-cyan);
    margin-bottom: 15px;
}

.countdown-sub {
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Hero buttons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.btn-game {
    width: 240px;
    padding: 14px 20px;
    text-align: center;
    border-radius: var(--radius);
    border: var(--border-light);
    color: var(--text-white);
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0 2px 0 rgba(0,0,0,.3);
    box-shadow: var(--shadow-button);
    transition: .15s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-game:hover {
    transform: translateY(3px);
    box-shadow: var(--shadow-button-hover);
}

/* Button color variants */
.btn-green {
    background: linear-gradient(180deg, #4CAF50 0%, #388E3C 100%);
    border-color: #66BB6A;
}

.btn-green:hover {
    background: linear-gradient(180deg, #6fcf6f 0%, #4a9e4a 100%);
}

.btn-blue {
    background: linear-gradient(180deg, #1E3A8A 0%, #0F1B40 100%);
    border-color: #3B5998;
}

.btn-blue:hover {
    background: linear-gradient(180deg, #4a90d9 0%, #2a5f8a 100%);
}

.btn-kofi {
    background: linear-gradient(180deg, #00D2FF 0%, #0088CC 100%);
    border-color: #33DDFF;
}

.btn-kofi:hover {
    background: linear-gradient(180deg, #33cbff 0%, #1199c8 100%);
}

.btn-itch {
    background: linear-gradient(180deg, #ff6b6b, #d94343);
    border-color: #ff9999;
}
.btn-itch:hover {
    background: linear-gradient(180deg, #ff8585, #e34d4d);
}

/* Background tower image */
.hero-tower {
    position: absolute;
    bottom: 0;
    right: 5%;
    z-index: 5;
    width: 40%;
    max-width: 550px;
    min-width: 280px;
    pointer-events: none;
    filter: drop-shadow(0 0 60px rgba(0, 0, 0, 0.4));
    animation: riseTower 1.2s ease-out;
}

@keyframes riseTower {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* =============================================
   GAME PANELS
   ============================================= */
/* Basis für alle Game Panels  genug Platz zum Header */
.game-panel {
    position: relative;
    z-index: 20;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    margin-top: 80px;
}

/* Nur auf Seiten mit Hero: Überlappung wie zuvor */
.hero ~ .game-panel {
    margin-top: -60px;
}

.panel-content {
    width: min(1200px, 92%);
    padding: 50px;
    background: var(--panel-bg);          /* #F8FAFC */
    border: var(--border-panel);
    border-bottom: 5px solid var(--panel-border);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.6) inset;
}

.panel-content h2 {
    margin-bottom: 20px;
    font-size: 52px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    color: var(--text-dark);
    text-shadow: 0 2px 0 rgba(255,255,255,0.5);
}

.panel-content p {
    max-width: 600px;
    margin: 0 auto 20px;
    color: var(--text-dark-muted);
    line-height: 1.6;
}

.panel-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.3);
    border: 1px solid var(--panel-border);
    color: var(--blue);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Stats */
.stats-game {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.stat-box {
    flex: 1;
    padding: 15px 20px;
    text-align: center;
    background: rgba(255,255,255,0.4);
    border: 1px solid var(--panel-border);
    border-radius: 12px;
}

.stat-box span {
    display: block;
    font: 46px "Bebas Neue", sans-serif;
    color: var(--blue);
    text-shadow: 0 2px 0 rgba(255,255,255,0.5);
}

.stat-box small {
    display: block;
    margin-top: 5px;
    color: var(--text-dark-muted);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    overflow: hidden;
    border: 2px solid var(--panel-border);
    border-radius: 16px;
    background: rgba(255,255,255,.4);
    box-shadow: 0 15px 30px rgba(0,0,0,.2);
    transition: .25s;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--neon-green);
    box-shadow:
        0 20px 40px rgba(0,0,0,.3),
        0 0 20px rgba(33,252,161,.3);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: .3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* =============================================
   ROADMAP  GLASS TIMELINE
   ============================================= */
.roadmap-wrapper {
    position: relative;
    margin-top: 40px;
    padding-left: 45px;
}

.roadmap-wrapper::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(
        to bottom,
        var(--neon-green),
        var(--neon-orange),
        var(--panel-border)
    );
    box-shadow: 0 0 12px rgba(74,191,219,.5);
}

.roadmap-item {
    position: relative;
    margin-bottom: 30px;
}

.roadmap-dot {
    position: absolute;
    left: -43px;
    top: 28px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,.85);
    border: 3px solid var(--neon-green);
    box-shadow: 0 0 12px var(--neon-green);
}

.roadmap-item.active .roadmap-dot {
    border-color: var(--neon-orange);
    box-shadow: 0 0 18px var(--neon-orange);
}

.roadmap-item.future .roadmap-dot {
    border-color: var(--panel-border);
    box-shadow: none;
}

.roadmap-box {
    background: rgba(255,255,255,.45);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139,184,214,.7);
    border-radius: 16px;
    padding: 24px;
    box-shadow:
        0 15px 35px rgba(0,0,0,.18),
        inset 0 1px 0 rgba(255,255,255,.8);
    transition: .25s;
}

.roadmap-box:hover {
    transform: translateX(8px);
    border-color: var(--hud-blue);
    box-shadow:
        0 20px 40px rgba(0,0,0,.25),
        0 0 20px rgba(74,191,219,.25);
}

.roadmap-status {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--neon-green);
}

.roadmap-item.active .roadmap-status {
    color: var(--neon-orange);
}

.roadmap-item.future .roadmap-status {
    color: var(--blue);
}

.roadmap-box h4 {
    margin: 8px 0;
    font-size: 24px;
    color: var(--text-dark);
}

.roadmap-box p {
    margin: 0;
    color: var(--text-dark-muted);
    line-height: 1.5;
}

.roadmap-year {
    float: right;
    font-size: 13px;
    color: var(--blue);
    background: rgba(74,191,219,.15);
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: .5px;
}

/* =============================================
   DOWNLOAD BUTTONS
   ============================================= */
.buttons-game {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.buttons-game .btn-game {
    width: auto;
    min-width: 240px;
    padding: 14px 25px;
}

/* =============================================
   PRE ORDER SECTION
   ============================================= */
.preorder-panel {
    text-align: center;
}

.preorder-text {
    max-width: 700px;
}

.preorder-card {
    margin: 40px auto 25px;
    max-width: 420px;
    padding: 35px;
    background: rgba(255,255,255,.55);
    border: 1px solid var(--panel-border);
    border-radius: 22px;
    box-shadow:
        0 20px 45px rgba(0,0,0,.2),
        inset 0 1px 0 rgba(255,255,255,.8);
}

.preorder-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(74,191,219,.2);
    color: var(--blue);
    font-size: 32px;
    box-shadow: 0 0 25px rgba(74,191,219,.4);
}

.preorder-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 34px;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.preorder-card ul {
    margin: 25px 0;
    text-align: left;
}

.preorder-card li {
    margin-bottom: 12px;
    color: var(--text-dark-muted);
}

.preorder-card li i {
    color: var(--neon-green);
    margin-right: 10px;
}

.preorder-card .btn-game {
    width: 100%;
}

.preorder-note {
    font-size: 14px;
    color: var(--text-dark-muted);
}

/* =============================================
   SUPPORT GRID
   ============================================= */
.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.support-card {
    padding: 30px 25px;
    background: rgba(255,255,255,.45);
    border: 1px solid var(--panel-border);
    border-radius: 20px;
    box-shadow:
        0 15px 35px rgba(0,0,0,.18),
        inset 0 1px 0 rgba(255,255,255,.8);
    transition: .25s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0,0,0,.25);
}

.support-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(146,199,212,.35);
    color: #77c6e0;
    font-size: 32px;
    margin-bottom: 20px;
}

.support-icon.steam {
    background: rgba(74,191,219,.15);
    color: #171d25;
}

.support-icon.itch {
    background: rgba(170,100,255,.15);
    color: #eb5656;
}

.support-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.support-card p {
    color: var(--text-dark-muted);
    min-height: 70px;
}

.support-card .btn-game {
    margin-top: auto;
    width: 100%;
}

/* =============================================
   LEADERBOARD
   ============================================= */
.leaderboard {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid var(--panel-border);
    border-radius: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.leader-header,
.leader-entry {
    display: grid;
    grid-template-columns: 60px 1fr 100px 90px 70px 70px 100px;
    align-items: center;
    padding: 14px 20px;
    gap: 10px;
    min-width: 620px;
    font-size: 14px;
}

.leader-header {
    background: rgba(74, 191, 219, 0.15);
    color: var(--blue);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    font-size: 15px;
}

.leader-entry {
    color: var(--text-dark-muted);
    border-top: 1px solid rgba(139, 184, 214, 0.3);
}

.leader-entry:hover {
    background: rgba(255, 255, 255, 0.4);
}

.leader-entry.top {
    box-shadow: inset 4px 0 0 var(--neon-green);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    position: relative;
    z-index: 20;
    background: rgba(10, 20, 35, 0.97);
    border-top: 2px solid var(--panel-border);
    padding: 50px 20px 30px;
    margin-top: 40px;
}

.footer-container {
    width: min(1200px, 92%);
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-brand h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 2px;
    color: var(--neon-blue); 
    margin-bottom: 5px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-column h4 {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-white);
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column ul li {
    color: var(--neon-cyan);
    font-size: 15px;
    transition: color .2s;
}

.footer-column ul li a {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .2s;
}

.footer-column ul li a:hover {
    color: var(--neon-cyan);
}

.footer-column ul li a i {
    width: 18px;
    text-align: center;
}

.footer-bottom {
    width: min(1200px, 92%);
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 1px;
}

/* =============================================
   MEDIA QUERIES
   ============================================= */
@media (max-width: 900px) {
    .hud-icons {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .stats-game {
        flex-direction: column;
    }

    .roadmap-item {
        flex-direction: column;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .hero-center {
        margin-top: -250px;
    }

    .countdown-item .value {
        font-size: 30px;
    }

    .colon {
        font-size: 24px;
    }

    .hero-tower {
        right: 2%;
        width: 50%;
        opacity: 0.7;
    }

    .hud-right {
        font-size: 12px;
        gap: 10px;
    }
}

@media (max-width: 700px) {
    .leader-header,
    .leader-entry {
        font-size: 12px;
        padding: 10px 12px;
        gap: 6px;
        grid-template-columns: 40px 1fr 80px 70px 55px 55px 80px;
        min-width: 500px;
    }
}

@media (max-width: 600px) {
    .panel-content {
        padding: 30px 20px;
    }

    .panel-content h2 {
        font-size: 40px;
    }

    .hero-logo {
        width: 95%;
    }

    .btn-game {
        width: 100%;
        max-width: 260px;
    }

    .hero-tagline {
        font-size: 28px;
    }

    .hero-tagline span {
        width: 25px;
    }

    .hud-right {
        display: none;
    }

    .hero-center {
        margin-top: -150px;
    }

    .hero-tower {
        right: -10%;
        width: 65%;
        opacity: 0.5;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-column ul {
        align-items: center;
    }
}

/* ==========================================================
   ABENDSTIMMUNG - FARBPALETTE AUS DER GAME-VORLAGE
   Nur Farben, Verlaeufe, Schatten und Transparenzen angepasst.
   Layout, Hero-Aufbau und Countdown bleiben unveraendert.
========================================================== */

:root {
    --sky-top: #b2b698;
    --sky-mid: #d5b777;
    --sky-bottom: #deac5f;
    --game-ground: #4f6044;

    --panel-bg: rgba(244, 232, 194, 0.96);
    --panel-bg-dark: rgba(216, 193, 139, 0.76);
    --panel-border: #9c916f;

    --hud-blue: #57baf0;
    --neon-cyan: #57baf0;
    --neon-green: #35a968;
    --neon-blue: #357fc4;
    --neon-white: #ffffff;
    --neon-orange: #ff8738;
    --neon-yellow: #f4d62c;
    --blue: #4e9ed2;

    --hud-yellow: #f5dc31;
    --hud-purple: #aa2acb;
    --hud-green: #3aaa67;
    --hud-pink: #f51b9a;
    --hud-blue-btn: #5bc5ee;

    --text-white: #ffffff;
    --text-muted: #6f7773;
    --text-dark: #34424a;
    --text-dark-muted: #556168;

    --border-light: 1px solid rgba(255,255,255,.42);
    --border-panel: 1px solid var(--panel-border);
    --shadow-panel: 0 18px 42px rgba(82, 61, 29, .25);
    --shadow-small: 0 6px 0 rgba(63, 52, 29, .28);
    --shadow-button: inset 0 -6px 0 rgba(54, 46, 23, .22);
    --shadow-button-hover: inset 0 -3px 0 rgba(54, 46, 23, .2);
}

body {
    background:
        radial-gradient(circle at 50% 10%, rgba(255, 246, 205, .34) 0%, rgba(255, 246, 205, .08) 34%, transparent 58%),
        linear-gradient(
            180deg,
            #b2b698 0%,
            #c5b88a 18%,
            #d5b777 38%,
            #e0b468 58%,
            #deac5f 76%,
            #d79f58 88%,
            #536144 100%
        );
    background-attachment: fixed;
}

.sun-glow {
    background:
        radial-gradient(
            ellipse at 50% 18%,
            rgba(255, 249, 214, .48) 0%,
            rgba(255, 229, 158, .23) 28%,
            rgba(224, 180, 104, .08) 48%,
            transparent 68%
        );
}

.cloud,
.mist,
.hero-cloud,
.hero-mist {
    filter: sepia(.28) saturate(.78) hue-rotate(-8deg) brightness(1.08);
}

.cloud1 { opacity: .24; }
.cloud2 { opacity: .20; }
.cloud3 { opacity: .16; }
.mist1  { opacity: .34; }
.mist2  { opacity: .26; }

.hero-cloud,
.hero-mist {
    opacity: .11;
    mix-blend-mode: soft-light;
}

header {
    background:
        linear-gradient(
            180deg,
            rgba(185, 190, 159, .94) 0%,
            rgba(166, 174, 145, .90) 100%
        );
    border-bottom-color: rgba(98, 108, 88, .42);
    box-shadow: 0 7px 18px rgba(67, 60, 42, .19);
    backdrop-filter: blur(10px) saturate(1.12);
}

.hud-left {
    color: #39464d;
}

.hud-clock {
    color: #f7fbff;
    text-shadow:
        0 1px 0 #34434a,
        0 0 7px rgba(255,255,255,.72);
}

.hud-icons li a {
    color: #ffffff;
    border-color: rgba(49, 57, 48, .34);
    box-shadow:
        inset 0 -6px 0 rgba(44, 51, 40, .27),
        0 3px 6px rgba(80, 66, 35, .18);
}

.hud-icons li a:hover {
    color: #ffffff;
    background: rgba(255,255,255,.36);
    box-shadow:
        inset 0 -3px 0 rgba(44, 51, 40, .22),
        0 5px 12px rgba(80, 66, 35, .24);
}

.hud-btn.hud-yellow {
    border-color: #cbb61e;
    background: linear-gradient(180deg, #ffe844 0%, #e5ca22 100%);
    box-shadow: inset 0 -6px 0 rgba(121, 100, 10, .26), 0 3px 6px rgba(80, 66, 35, .18);
}
.hud-btn.hud-yellow:hover {
    background: linear-gradient(180deg, #fff064 0%, #efd532 100%);
    box-shadow: inset 0 -3px 0 rgba(121, 100, 10, .22), 0 0 17px rgba(255, 226, 55, .42);
}

.hud-btn.hud-purple {
    border-color: #81249a;
    background: linear-gradient(180deg, #b92cd8 0%, #9622b2 100%);
    box-shadow: inset 0 -6px 0 rgba(79, 14, 91, .28), 0 3px 6px rgba(80, 66, 35, .18);
}
.hud-btn.hud-purple:hover {
    background: linear-gradient(180deg, #c94be4 0%, #a52bc0 100%);
    box-shadow: inset 0 -3px 0 rgba(79, 14, 91, .24), 0 0 17px rgba(190, 52, 220, .38);
}

.hud-btn.hud-green {
    border-color: #26854e;
    background: linear-gradient(180deg, #45bc73 0%, #2f9d5d 100%);
    box-shadow: inset 0 -6px 0 rgba(20, 89, 47, .25), 0 3px 6px rgba(80, 66, 35, .18);
}
.hud-btn.hud-green:hover {
    background: linear-gradient(180deg, #5dcc86 0%, #3eaf6b 100%);
    box-shadow: inset 0 -3px 0 rgba(20, 89, 47, .22), 0 0 17px rgba(66, 190, 113, .34);
}

.hud-btn.hud-pink {
    border-color: #c90c78;
    background: linear-gradient(180deg, #ff2aaa 0%, #e8138d 100%);
    box-shadow: inset 0 -6px 0 rgba(119, 5, 68, .27), 0 3px 6px rgba(80, 66, 35, .18);
}
.hud-btn.hud-pink:hover {
    background: linear-gradient(180deg, #ff4aba 0%, #f1269d 100%);
    box-shadow: inset 0 -3px 0 rgba(119, 5, 68, .23), 0 0 17px rgba(255, 41, 170, .38);
}

.hud-btn.hud-blue {
    border-color: #3d9fc7;
    background: linear-gradient(180deg, #74d9f4 0%, #4fbde5 100%);
    box-shadow: inset 0 -6px 0 rgba(29, 105, 137, .25), 0 3px 6px rgba(80, 66, 35, .18);
}
.hud-btn.hud-blue:hover {
    background: linear-gradient(180deg, #8be4f8 0%, #64caec 100%);
    box-shadow: inset 0 -3px 0 rgba(29, 105, 137, .22), 0 0 17px rgba(85, 199, 239, .4);
}

.hud-right {
    color: #ffffff;
    background: linear-gradient(180deg, rgba(93, 190, 239, .96), rgba(70, 166, 222, .96));
    border: 1px solid rgba(126, 214, 255, .76);
    border-bottom-color: rgba(43, 129, 185, .9);
    border-radius: 5px;
    padding: 6px 14px;
    box-shadow:
        inset 0 -5px 0 rgba(29, 112, 171, .23),
        0 3px 8px rgba(77, 67, 41, .16);
    text-shadow: 0 1px 2px rgba(31, 92, 129, .65);
}

.hud-right i {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255,255,255,.7);
}

.hero {
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 246, 205, .30) 0%, transparent 44%),
        linear-gradient(
            180deg,
            #b2b698 0%,
            #c5b88a 18%,
            #d5b777 39%,
            #e0b468 58%,
            #deac5f 75%,
            #d79f58 88%,
            #536144 100%
        );
}

.game-ground {
    background: linear-gradient(
        to top,
        rgba(61, 77, 54, .98) 0%,
        rgba(83, 97, 68, .82) 32%,
        rgba(105, 117, 78, .30) 67%,
        transparent 100%
    );
}

.hero-tagline {
    color: #fff9e9;
    text-shadow: 0 2px 3px rgba(84, 61, 27, .52);
}

.hero-tagline span {
    background: linear-gradient(90deg, #4ea8d8, #6bc8ef);
    box-shadow: 0 0 9px rgba(89, 188, 232, .45);
}

.panel-content {
    background:
        linear-gradient(180deg, rgba(249, 241, 214, .97) 0%, rgba(237, 218, 169, .96) 100%);
    border-color: #a29672;
    border-bottom-color: #7f7558;
    box-shadow:
        0 20px 50px rgba(79, 58, 27, .24),
        inset 0 1px 0 rgba(255,255,255,.82);
}

.panel-content h2,
.roadmap-box h4,
.preorder-card h3,
.support-card h3 {
    color: #39484e;
    text-shadow: 0 1px 0 rgba(255,255,255,.76);
}

.panel-content p,
.roadmap-box p,
.preorder-card li,
.preorder-note,
.support-card p {
    color: #596466;
}

.panel-tag {
    background: linear-gradient(180deg, rgba(104, 188, 229, .22), rgba(77, 154, 203, .18));
    border-color: #78a9bf;
    color: #357da5;
}

.stat-box,
.roadmap-box,
.preorder-card,
.support-card {
    background:
        linear-gradient(180deg, rgba(255, 250, 231, .78), rgba(229, 206, 151, .62));
    border-color: rgba(151, 139, 102, .72);
    box-shadow:
        0 14px 31px rgba(92, 69, 33, .14),
        inset 0 1px 0 rgba(255,255,255,.72);
}

.stat-box span {
    color: #408fc0;
    text-shadow: 0 1px 0 rgba(255,255,255,.76);
}

.stat-box small {
    color: #606a69;
}

.gallery-item {
    border-color: #a59874;
    background: #e6ce96;
    box-shadow: 0 15px 30px rgba(85, 62, 29, .18);
}

.gallery-item:hover {
    border-color: #55a9cf;
    box-shadow:
        0 20px 40px rgba(85, 62, 29, .24),
        0 0 20px rgba(69, 159, 204, .24);
}

.roadmap-wrapper::before {
    background: linear-gradient(to bottom, #41aa69, #e29b4f, #6e8890);
    box-shadow: 0 0 12px rgba(93, 137, 143, .34);
}

.roadmap-dot {
    background: #fff7dc;
    border-color: #36a25e;
    box-shadow: 0 0 12px rgba(54, 162, 94, .46);
}

.roadmap-item.active .roadmap-dot {
    border-color: #ee9844;
    box-shadow: 0 0 17px rgba(238, 152, 68, .48);
}

.roadmap-item.future .roadmap-dot {
    border-color: #8e988d;
}

.roadmap-status {
    color: #2c9855;
}

.roadmap-item.active .roadmap-status {
    color: #dc7d30;
}

.roadmap-item.future .roadmap-status,
.roadmap-year {
    color: #3f88b1;
}

.roadmap-year {
    background: rgba(81, 165, 208, .14);
}

.roadmap-box:hover {
    border-color: #60add0;
    box-shadow:
        0 20px 40px rgba(82, 61, 29, .20),
        0 0 18px rgba(78, 161, 201, .18);
}

.preorder-icon,
.support-icon {
    background: rgba(76, 170, 215, .18);
    color: #408eb9;
    box-shadow: 0 0 22px rgba(61, 143, 188, .20);
}

.support-icon.steam {
    background: rgba(72, 84, 86, .16);
    color: #425158;
}

.support-icon.itch {
    background: rgba(229, 87, 118, .16);
    color: #d85375;
}

.preorder-card li i {
    color: #35a466;
}

.btn-green {
    background: linear-gradient(180deg, #4abb75 0%, #30985a 100%);
    border-color: #70cf94;
}
.btn-green:hover {
    background: linear-gradient(180deg, #63ca89 0%, #3caa68 100%);
}

.btn-blue {
    background: linear-gradient(180deg, #62bce7 0%, #3f96cc 100%);
    border-color: #82d2f0;
}
.btn-blue:hover {
    background: linear-gradient(180deg, #79c9eb 0%, #51a9d7 100%);
}

.btn-kofi {
    background: linear-gradient(180deg, #60c8ed 0%, #3ea1d2 100%);
    border-color: #8eddf5;
}
.btn-kofi:hover {
    background: linear-gradient(180deg, #79d5f2 0%, #51b2de 100%);
}

.btn-itch {
    background: linear-gradient(180deg, #f16b86 0%, #cf4f6d 100%);
    border-color: #ff9aad;
}
.btn-itch:hover {
    background: linear-gradient(180deg, #f47f97 0%, #dc607b 100%);
}

.leaderboard {
    background: rgba(247, 236, 204, .72);
    border-color: #a39773;
}

.leader-header {
    background: linear-gradient(180deg, rgba(86, 180, 226, .24), rgba(61, 148, 199, .17));
    color: #347da7;
}

.leader-entry {
    color: #526064;
    border-top-color: rgba(143, 132, 96, .30);
}

.leader-entry:hover {
    background: rgba(255,255,255,.34);
}

.leader-entry.top {
    box-shadow: inset 4px 0 0 #39a965;
}

footer {
    background:
        linear-gradient(180deg, rgba(62, 68, 66, .98) 0%, rgba(42, 49, 49, .99) 100%);
    border-top-color: #8c8c72;
}

.footer-brand h3 {
    color: #f0c66f;
}

.footer-brand p,
.footer-column ul li a,
.footer-bottom p {
    color: #c6c7b9;
}

.footer-column h4 {
    color: #fff4d8;
}

.footer-column ul li a:hover {
    color: #6ac7ed;
}

.footer-bottom {
    border-top-color: rgba(241, 210, 144, .14);
}

.lightbox {
    background: rgba(42, 39, 31, .91);
}

.lightbox-close {
    color: #fff8e4;
}

.lightbox-close:hover {
    color: #68c6eb;
}
