@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Roboto:wght@300;400;700&display=swap');

:root {
    --primary-color: #ff00ff; /* Neon Pink */
    --secondary-color: #00ffff; /* Neon Cyan */
    --accent-color: #f7b801; /* Gold Accent */
    --bg-dark: #1a052a; /* Deep Purple */
    --bg-medium: #2c0b4d;
    --text-light: #f0f0f0;
    --text-dark: #e0e0e0;
    --border-color: rgba(0, 255, 255, 0.3);
    --shadow-color-primary: rgba(255, 0, 255, 0.5);
    --shadow-color-secondary: rgba(0, 255, 255, 0.5);
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        linear-gradient(var(--primary-color), transparent 1px),
        linear-gradient(90deg, var(--secondary-color), transparent 1px);
    background-size: 100px 100px, 100px 100px;
    background-position: -1px -1px, -1px -1px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header & Navbar --- */
.header {
    background: rgba(26, 5, 42, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-light);
    text-decoration: none;
    text-shadow: 0 0 5px var(--shadow-color-primary), 0 0 10px var(--shadow-color-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    font-family: 'Orbitron', sans-serif;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    padding: 5px 10px;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--secondary-color);
    text-shadow: 0 0 5px var(--shadow-color-secondary);
    border-bottom-color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--secondary-color);
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(26, 5, 42, 0) 0%, var(--bg-dark) 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 0 0 10px var(--shadow-color-primary), 0 0 20px var(--shadow-color-primary);
}

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

.cta-button {
    font-family: 'Orbitron', sans-serif;
    background: var(--primary-color);
    color: var(--bg-dark);
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px var(--shadow-color-primary);
}

.cta-button:hover {
    background: var(--secondary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--shadow-color-secondary);
    transform: translateY(-3px);
}

/* --- Content Sections --- */
.content-section {
    padding: 100px 0;
    background: var(--bg-medium);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    text-shadow: 0 0 10px var(--shadow-color-secondary);
}

/* --- Contact Form --- */
.contact-form {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.contact-form .form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.contact-form label {
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    color: var(--text-light);
    padding: 0.75rem 0.9rem;
    border-radius: 6px;
    outline: none;
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 12px var(--shadow-color-secondary);
    border-color: var(--secondary-color);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .form-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.contact-form .cta-button {
    padding: 10px 22px;
    font-size: 0.95rem;
}

@media (min-width: 700px) {
    .contact-form .two-col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image-placeholder {
    width: 100%;
    height: 350px;
    background: var(--bg-dark);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    color: var(--secondary-color);
}

.about-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--shadow-color-primary);
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

/* Game Section */
.games-section {
    background: #111118; /* keep dark but slightly different */
    padding: 3rem 1.5rem 2rem 1.5rem;
}
.game-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.game-frame {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16/9;
    height: 520px;
    min-height: 220px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow-color-primary);
    background: #22223b;
    display: block;
    margin: 0 auto;
}
@media (max-width: 600px) {
    .game-frame {
        height: auto;
        aspect-ratio: 16/9;
        min-height: 180px;
        max-height: 60vw;
        width: 100%;
    }
    .game-container { gap: 1.2rem; }
}

/* --- Footer --- */
.footer {
    background: var(--bg-medium);
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.footer-disclaimer {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.footer-disclaimer h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* --- Age Popup --- */
.age-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 5, 42, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.age-popup-content {
    background: var(--bg-medium);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 30px var(--shadow-color-primary);
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.age-popup h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.age-popup p {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-button {
    font-family: 'Orbitron', sans-serif;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
}

.age-button.confirm {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.age-button.deny {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--secondary-color);
}

.age-button:hover {
    transform: scale(1.05);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--bg-medium);
        padding: 1rem;
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .about-content {
        grid-template-columns: 1fr;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
