/* Design System & Variables */
:root {
    --primary-color: #00ff88;
    /* Neon pitch green */
    --secondary-color: #ff0055;
    /* Arcade pink/red */
    --accent-color: #00d4ff;
    /* Electric blue */
    --bg-dark: #0a0a0c;
    --bg-surface: #1a1a20;
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    --glass-bg: rgba(26, 26, 32, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --retro-font: 'Press Start 2P', cursive;
    --body-font: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--body-font);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Base Styles */
h1,
h2,
h3,
.retro-text {
    font-family: var(--retro-font);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* CRT Scanline Effect */
body::before {
    content: " ";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    z-index: 1000;
    background-size: 100% 4px, 3px 100%;
    pointer-events: none;
    opacity: 0.15;
}

/* Header & Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--retro-font);
    font-size: 1.2rem;
    color: var(--primary-color);
    text-shadow: 2px 2px var(--secondary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 12px;
    font-family: var(--retro-font);
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('hero_background.webp');
    background-size: cover;
    background-position: center;
    padding: 0 5%;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 4px 4px var(--secondary-color), 8px 8px #000;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color);
    }

    to {
        text-shadow: 0 0 20px var(--primary-color), 0 0 40px var(--primary-color);
    }
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-family: var(--retro-font);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: none;
}

.btn-steam {
    background-color: #171a21;
    color: #fff;
    border: 2px solid #66c0f4;
    box-shadow: 0 5px 15px rgba(102, 192, 244, 0.3);
}

.btn-steam:hover {
    transform: translateY(-5px);
    background-color: #66c0f4;
}

/* Section Common */
section {
    padding: 100px 10%;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-color);
    font-size: 2rem;
}

/* Media Section */
.media-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.screenshot-item {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--glass-border);
    transition: transform 0.3s;
    cursor: pointer;
}

.screenshot-item:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Contact Form */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-surface);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--retro-font);
    font-size: 0.7rem;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: #000;
    border: 1px solid var(--glass-border);
    color: #fff;
    border-radius: 5px;
    font-family: var(--body-font);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    background: var(--primary-color);
    color: #000;
    width: 100%;
    font-weight: bold;
}

.btn-submit:hover {
    background: #fff;
    box-shadow: 0 0 20px var(--primary-color);
}

/* Privacy Policy Section */
.privacy-section {
    background: #000;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg-surface);
    border-left: 4px solid var(--secondary-color);
}

.privacy-content h3 {
    color: #fff;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Footer */
footer {
    padding: 50px 10%;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    background: var(--bg-surface);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: color 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--accent-color);
}

.studio-info {
    font-family: var(--retro-font);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.studio-info span {
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 60px 5%;
    }
}