:root {
    --bg-dark: #121212;
    --bg-card: #1E1E1E;
    --primary: #E5CFA0;
    /* Gold */
    --accent: #B71C1C;
    /* Red */
    --text: #FFFFFF;
    --secondary: #5A5A5A;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image:
        radial-gradient(circle at 20% 30%, #2a2a2a 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, #2a2a2a 1px, transparent 1px);
    background-size: 40px 40px;
}

/* --- LOGO & HEADER --- */
header {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
    animation: float 4s ease-in-out infinite;
}

.version-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    color: #888;
    border: 1px solid #333;
}

/* --- HERO SECTION --- */
main {
    text-align: center;
    margin-top: 60px;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 2.5rem;
    line-height: 1.5;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 4px 4px 0px #000;
}

.highlight {
    color: var(--primary);
}

.hero-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 40px;
}

/* --- PLATFORMS --- */
.platform-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(229, 207, 160, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 8px 16px;
    border-radius: 4px;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
}

/* --- PLAY BUTTON --- */
.play-btn {
    display: inline-block;
    position: relative;
    background: var(--accent);
    color: var(--primary);
    padding: 20px 60px;
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5rem;
    text-decoration: none;
    border: 4px solid var(--primary);
    box-shadow: 6px 6px 0px #000;
    transition: transform 0.1s;
    overflow: hidden;
    margin-bottom: 10px;
}

.play-btn:active {
    transform: translate(4px, 4px);
    box-shadow: 2px 2px 0px #000;
}

.play-btn:hover {
    background: #D32F2F;
}

.small-text {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

/* --- FOOTER & SOCIALS --- */
footer {
    margin-top: auto;
    padding: 40px 0;
    text-align: center;
    width: 100%;
    background: linear-gradient(to top, #000 0%, transparent 100%);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #222;
    border: 1px solid #444;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
    font-weight: bold;
}

.social-btn:hover {
    border-color: var(--primary);
    background: #333;
    transform: translateY(-2px);
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

.credits {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
}

.credits a {
    color: var(--primary);
    text-decoration: none;
}

/* --- SPONSOR SECTION --- */
.sponsor-section {
    margin: 10px 0 5px 0;
    padding: 5px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.sponsor-text {
    font-size: 0.75rem;
    color: #888;
    margin: 0;
}

.sponsor-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.sponsor-logo:hover {
    opacity: 1;
}

/* --- ANIMATIONS --- */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .play-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}