/* --- Global Reset & Variables --- */
:root {
    --bg-dark: #0a0a0c;
    --bg-card: #121216;
    --accent-neon: #00ffcc; /* Sci-fi cyan */
    --text-main: #f5f5f7;
    --text-muted: #8e8e93;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
}

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

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

/* --- Navigation Header --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.logo span {
    color: var(--accent-neon);
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent-neon);
}

/* --- Hero Section --- */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    /* Subtle space grid background */
    background: radial-gradient(circle at center, rgba(0, 255, 204, 0.05) 0%, transparent 70%), #0a0a0c;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 204, 0.2);
}

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

.btn-primary {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 1px solid var(--accent-neon);
    color: var(--accent-neon);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--accent-neon);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--accent-neon);
}

/* --- Section Formatting --- */
.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

/* --- Games Section --- */
.games-section {
    padding: 8rem 10%;
    background: #0d0d11;
}

.game-container {
    display: flex;
    justify-content: center;
}

.game-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    width: 100%;
    max-width: 700px;
    overflow: hidden;
    position: relative;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: border-color 0.3s ease;
}

.game-card:hover {
    border-color: rgba(0, 255, 204, 0.3);
}

.game-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 255, 204, 0.1);
    color: var(--accent-neon);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.game-info h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.game-info p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.tech-tags span {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    margin-right: 0.5rem;
    color: var(--text-main);
}

/* --- About & Privacy Section --- */
.about-section {
    padding: 8rem 10%;
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 4rem 0;
}

.legal-text h3 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.legal-text p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.legal-text ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.legal-text strong {
    color: var(--text-main);
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 3rem 1rem;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive Tweak */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2rem; }
    header { padding: 1rem 5%; }
    nav a { margin-left: 1rem; font-size: 0.9rem; }
}