:root {
    --bg-color: #21193b;
    --text-color: #ffffff;
    --neon-cyan: #00ffff;
    --neon-pink: #ff00ff;
    --steam-blue: #66c0f4;
    --discord-blue: #5865F2;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', 'Roboto', sans-serif;
    line-height: 1.6;
}

h1, h2, h3, .btn, .tagline {
    font-family: 'Orbitron', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Hero Section */
.hero {
    display: flex;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    flex: 1;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-left img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    border: 2px solid var(--neon-cyan);
}

.hero-right {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    text-shadow: 2px 2px 0px var(--neon-pink);
}

.tagline {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    font-style: italic;
    margin-bottom: 2rem;
    font-weight: 500;
}

.pitch-list {
    list-style-type: none;
    margin-bottom: 3rem;
}

.pitch-list li {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    padding-left: 1.5rem;
    position: relative;
}

.pitch-list li::before {
    content: "►";
    color: var(--neon-pink);
    position: absolute;
    left: 0;
    font-size: 0.8em;
    top: 0.2em;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform 0.2s, filter 0.2s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.btn-steam {
    background-color: var(--steam-blue);
    font-size: 1.2rem;
}

.btn-discord {
    background-color: var(--discord-blue);
    font-size: 1rem;
    display: flex;
    align-items: center;
}

/* Gallery Section */
.gallery {
    padding: 0;
    border-top: none;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.gallery-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.3s, transform 0.3s;
    flex: 1 0 100px;
    aspect-ratio: 16 / 9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.gallery-item:hover {
    border-color: var(--neon-pink);
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

/* Footer Row */
.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.press-kit {
    text-decoration: none;
    color: var(--neon-cyan);
    font-weight: bold;
}

.evdaimon-link {
    color: rgba(255, 255, 255, 0.7);
}

.evdaimon-link img {
    height: 20px;
    vertical-align: middle;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 0 30px var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    object-fit: contain;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 1001;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem 0;
    }

    .hero-left {
        order: 1;
    }

    .hero-right {
        order: 2;
        align-items: center;
    }

    h1 {
        font-size: 2rem;
    }

    .pitch-list {
        text-align: left;
        display: inline-block;
    }

    .gallery-grid {
        justify-content: center;
    }
}

/* ============================================================
   Countdown Clock
   ============================================================ */
#countdown {
    margin-top: 20px;
    text-align: center;
}

.countdown-header {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.countdown-digits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
}

.cd-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 52px;
}

.cd-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 6px;
    padding: 0.25rem 0.5rem;
    line-height: 1.2;
    min-width: 48px;
    text-align: center;
}

.cd-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.cd-sep {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--neon-pink);
    padding-bottom: 14px; /* visual align with numbers (offset the label) */
}

.countdown-play-btn {
    display: inline-block;
    margin-top: 0.5rem;
}
