@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-cyan: #00ffff;
    --neon-lime: #ccff00;
    --electric-blue: #0080ff;
    --neon-pink: #ff00ff;
    --dark-bg: #0a0e27;
    --card-bg: #1a1f3a;
    --text-white: #ffffff;
    --text-gray: #b8c5d6;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top left, rgba(0, 255, 255, 0.1), transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(204, 255, 0, 0.1), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Header Navigation */
header {
    background: rgba(26, 31, 58, 0.9);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.site-logo {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
    transition: all 0.3s;
}

.site-logo:hover {
    text-shadow: 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--neon-lime);
    border-radius: 2px;
    transition: 0.3s;
    box-shadow: 0 0 5px var(--neon-lime);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.main-nav a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav a:hover {
    color: var(--neon-lime);
    text-shadow: 0 0 10px var(--neon-lime);
}

/* Hero Section */
.hero-area {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.1), rgba(204, 255, 0, 0.1));
    position: relative;
    z-index: 1;
}

.hero-area h1 {
    font-family: 'Inter', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-lime), var(--electric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.hero-area p {
    font-size: 1.4rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

/* Main Container */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
}

.info-banner {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 128, 255, 0.1));
    border: 2px solid var(--electric-blue);
    border-radius: 10px;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 0 30px rgba(0, 128, 255, 0.2);
}

.info-banner h2 {
    font-family: 'Inter', sans-serif;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-transform: uppercase;
}

.info-banner ul {
    list-style: none;
}

.info-banner li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-gray);
}

.info-banner li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    color: var(--neon-lime);
    font-size: 1.4rem;
}

.two-column {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.side-panel {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    height: fit-content;
}

.side-panel h3 {
    font-family: 'Inter', sans-serif;
    color: var(--neon-lime);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 1.3rem;
}

.side-panel ul {
    list-style: none;
}

.side-panel li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    color: var(--text-gray);
}

.side-panel li:last-child {
    border-bottom: none;
}

.content-area {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 10px;
    border: 2px solid var(--electric-blue);
    box-shadow: 0 0 20px rgba(0, 128, 255, 0.2);
}

.content-area h2 {
    font-family: 'Inter', sans-serif;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.content-area p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.game-embed {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 10px;
    margin: 3rem 0;
    text-align: center;
    border: 2px solid var(--neon-lime);
    box-shadow: 0 0 30px rgba(204, 255, 0, 0.2);
}

.game-embed h2 {
    font-family: 'Inter', sans-serif;
    color: var(--neon-lime);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-transform: uppercase;
}

.game-embed iframe {
    width: 100%;
    max-width: 900px;
    height: 700px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.6);
}

.feature-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.box {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: 0.3s;
}

.box:hover::before {
    opacity: 1;
}

.box:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.3);
}

.box h3 {
    font-family: 'Inter', sans-serif;
    color: var(--neon-lime);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.box p {
    color: var(--text-gray);
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    background: var(--card-bg);
    padding: 3rem 2rem;
    margin-top: 5rem;
    border-top: 2px solid var(--neon-cyan);
    position: relative;
    z-index: 1;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-inner h3 {
    font-family: 'Inter', sans-serif;
    color: var(--neon-lime);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--electric-blue);
    border-radius: 5px;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.footer-links a:hover {
    background: var(--electric-blue);
    color: var(--dark-bg);
    box-shadow: 0 0 20px rgba(0, 128, 255, 0.5);
}

/* Age Modal */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.98);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-gate.active {
    display: flex;
}

.age-gate-content {
    background: var(--card-bg);
    padding: 3.5rem;
    border-radius: 15px;
    max-width: 500px;
    text-align: center;
    border: 3px solid var(--neon-cyan);
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.5);
}

.age-gate-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.age-gate-content p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.age-buttons button {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

.btn-confirm {
    background: var(--neon-cyan);
    color: var(--dark-bg);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.btn-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
}

.btn-deny {
    background: transparent;
    color: var(--text-gray);
    border: 2px solid var(--neon-pink);
}

.btn-deny:hover {
    background: var(--neon-pink);
    color: var(--dark-bg);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        background: var(--card-bg);
        transition: right 0.3s;
        padding-top: 80px;
        border-left: 2px solid var(--neon-cyan);
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 2rem;
    }

    .main-nav li {
        padding: 1.2rem 0;
        border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    }

    .hero-area h1 {
        font-size: 2.5rem;
    }

    .two-column {
        grid-template-columns: 1fr;
    }

    .content-area {
        padding: 2rem;
    }

    .game-embed iframe {
        height: 450px;
    }

    .feature-boxes {
        grid-template-columns: 1fr;
    }
}
