@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&family=Exo+2:wght@300;400;500;600&display=swap');

:root {
    --neon-blue: #00f0ff;
    --neon-purple: #bf00ff;
    --dark-bg: #0a0a12;
    --card-bg: #12121f;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;
    --accent-gradient: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 240, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(191, 0, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
}

a {
    color: var(--neon-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--neon-purple);
    text-shadow: 0 0 10px var(--neon-purple);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 18, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.brand-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--neon-blue);
    transition: all 0.3s ease;
    box-shadow: 0 0 5px var(--neon-blue);
}

.menu-toggle.open span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
    display: flex;
    gap: 0.5rem;
}

.nav-menu a {
    color: var(--text-primary);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::before,
.nav-menu a.current::before {
    width: 80%;
}

.nav-menu a.current {
    color: var(--neon-blue);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 18, 0.98);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    }

    .nav-menu.visible {
        transform: translateY(0);
    }

    .nav-menu a {
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

/* Main */
main {
    padding-top: 72px;
}

/* Hero */
.hero-section {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    position: relative;
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text h1 .glow {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: inline-block;
    background: var(--accent-gradient);
    color: var(--dark-bg);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.6);
    color: var(--dark-bg);
}

.info-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
}

.chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

.chip-icon {
    font-size: 1.1rem;
}

.hero-visual {
    position: relative;
}

.hero-game-frame {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 20px;
    box-shadow: 
        0 0 40px rgba(0, 240, 255, 0.2),
        0 0 80px rgba(191, 0, 255, 0.1);
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .info-chips {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-game-frame {
        height: 350px;
    }
}

/* Features Grid */
.features-area {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(18, 18, 31, 0.5), transparent);
}

.section-heading {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 3rem;
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-box {
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-8px);
    border-color: var(--neon-blue);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-box h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--neon-blue);
}

.feature-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* About Area */
.about-area {
    padding: 6rem 2rem;
}

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

.about-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.about-block {
    background: linear-gradient(145deg, var(--card-bg), rgba(18, 18, 31, 0.5));
    border: 1px solid rgba(191, 0, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
}

.about-block h3 {
    color: var(--neon-purple);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.about-block p {
    color: var(--text-secondary);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .about-blocks {
        grid-template-columns: 1fr;
    }
}

/* Page Content */
.page-banner {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 240, 255, 0.05), transparent);
}

.page-banner h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-banner p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.content-area {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem 6rem;
}

.content-area h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--neon-blue);
}

.content-area p {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}

.content-area ul {
    margin: 1.2rem 0 1.2rem 1.5rem;
    color: var(--text-secondary);
}

.content-area li {
    margin-bottom: 0.6rem;
}

/* Play Page */
.play-area {
    padding: 2rem;
    min-height: calc(100vh - 72px);
}

.play-container {
    max-width: 1200px;
    margin: 0 auto;
}

.game-embed {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 0 60px rgba(0, 240, 255, 0.2),
        0 0 100px rgba(191, 0, 255, 0.1);
}

.game-embed iframe {
    width: 100%;
    height: 650px;
    border: none;
}

.play-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.play-info h3 {
    color: var(--neon-blue);
    margin-bottom: 0.8rem;
}

.play-info p {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--card-bg);
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-about h4 {
    font-family: 'Orbitron', sans-serif;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.footer-about p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-links h5,
.footer-support h5 {
    color: var(--neon-blue);
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.support-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.support-links a {
    background: rgba(0, 240, 255, 0.1);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.support-links a:hover {
    background: rgba(0, 240, 255, 0.2);
}

.footer-bottom {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .support-links {
        align-items: center;
    }
}

/* Age Gate */
.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 18, 0.98);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.age-modal {
    background: var(--card-bg);
    border: 2px solid var(--neon-blue);
    border-radius: 24px;
    padding: 3rem;
    max-width: 480px;
    text-align: center;
    box-shadow: 0 0 60px rgba(0, 240, 255, 0.3);
}

.age-symbol {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.age-modal h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.btn-confirm {
    background: var(--accent-gradient);
    color: var(--dark-bg);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

.btn-deny {
    background: transparent;
    border: 2px solid var(--text-secondary);
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-deny:hover {
    border-color: var(--neon-purple);
    color: var(--neon-purple);
}

.age-gate.dismissed {
    display: none;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-blue);
    border-radius: 4px;
}
