* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cosmic-purple: #9333ea;
    --vibrant-pink: #ec4899;
    --electric-blue: #3b82f6;
    --neon-orange: #f97316;
    --bright-green: #10b981;
    --deep-space: #1e1b4b;
    --darker-space: #0f172a;
    --light-text: #f8fafc;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
    color: var(--light-text);
    line-height: 1.6;
    min-height: 100vh;
}

.section-wrap,
.header-wrap,
.footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Age Verification */
.verify-screen {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.verify-box {
    background: linear-gradient(135deg, var(--cosmic-purple), var(--vibrant-pink));
    border: 3px solid var(--electric-blue);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    max-width: 520px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 80px rgba(147, 51, 234, 0.6);
}

.verify-symbol {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 25px var(--electric-blue));
}

.verify-box h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.verify-box p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.verify-age {
    color: var(--neon-orange);
    font-weight: 700;
    font-size: 1.3rem;
}

.verify-buttons {
    display: flex;
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.primary-btn,
.secondary-btn {
    flex: 1;
    padding: 1.2rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.primary-btn {
    background: var(--bright-green);
    border-color: var(--bright-green);
    color: var(--darker-space);
}

.primary-btn:hover {
    background: var(--electric-blue);
    border-color: var(--electric-blue);
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
}

.secondary-btn {
    background: transparent;
    border-color: var(--light-text);
    color: var(--light-text);
}

.secondary-btn:hover {
    background: rgba(248, 250, 252, 0.1);
}

/* Header */
.main-header {
    background: rgba(30, 27, 75, 0.95);
    border-bottom: 3px solid var(--cosmic-purple);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
}

.site-title {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--cosmic-purple), var(--vibrant-pink), var(--electric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 2px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.toggle-bar {
    width: 30px;
    height: 3px;
    background: var(--vibrant-pink);
    border-radius: 3px;
    transition: all 0.3s;
}

.main-navigation {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.7rem 1.3rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link.selected {
    background: linear-gradient(135deg, var(--cosmic-purple), var(--vibrant-pink));
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(147, 51, 234, 0.4);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .main-navigation {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: rgba(30, 27, 75, 0.98);
        gap: 0;
        padding: 2rem 0;
        transition: left 0.3s;
        border-top: 3px solid var(--cosmic-purple);
    }

    .main-navigation.open {
        left: 0;
    }

    .nav-link {
        text-align: center;
        padding: 1rem;
    }

    .mobile-toggle.open .toggle-bar:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-toggle.open .toggle-bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.open .toggle-bar:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
}

/* Hero Banner */
.hero-banner {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.3), rgba(236, 72, 153, 0.2), rgba(59, 130, 246, 0.3));
    border-bottom: 4px solid var(--vibrant-pink);
    overflow: hidden;
}

.galaxy-effect {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(147, 51, 234, 0.2), transparent 70%),
                radial-gradient(circle at 70% 50%, rgba(59, 130, 246, 0.2), transparent 70%);
}

.banner-text {
    position: relative;
    z-index: 1;
}

.hero-heading {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--cosmic-purple), var(--vibrant-pink), var(--electric-blue), var(--neon-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-subtext {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.sparkle-line {
    font-size: 2rem;
    margin-top: 2rem;
}

/* Main Content */
.primary-content {
    padding: 4rem 0;
}

section {
    padding: 3rem 0;
}

.heading-primary {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--vibrant-pink), var(--electric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 2rem;
}

/* About Section */
.text-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.15rem;
    line-height: 1.9;
}

.feature-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-box {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.15), rgba(236, 72, 153, 0.15));
    border: 3px solid var(--cosmic-purple);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: var(--vibrant-pink);
    box-shadow: 0 15px 50px rgba(147, 51, 234, 0.4);
}

.feature-symbol {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.feature-box h3 {
    color: var(--neon-orange);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

/* Game Showcase */
.showcase-section {
    background: rgba(0, 0, 0, 0.3);
    border-top: 3px solid var(--cosmic-purple);
    border-bottom: 3px solid var(--vibrant-pink);
}

.showcase-text {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--electric-blue);
}

.game-window {
    max-width: 960px;
    margin: 2rem auto;
    background: #000;
    border: 4px solid;
    border-image: linear-gradient(135deg, var(--cosmic-purple), var(--vibrant-pink), var(--electric-blue)) 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(236, 72, 153, 0.5);
}

.game-window iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

/* Highlights */
.highlights-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: rgba(30, 27, 75, 0.6);
    border: 2px solid var(--electric-blue);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.highlight-card:hover {
    border-color: var(--vibrant-pink);
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}

.highlight-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    color: var(--vibrant-pink);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

/* Statistics */
.community-text {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 3rem;
    font-size: 1.15rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.25), rgba(236, 72, 153, 0.25));
    border: 3px solid var(--vibrant-pink);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--neon-orange), var(--vibrant-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-name {
    font-size: 1.2rem;
    color: var(--electric-blue);
    margin-top: 0.8rem;
    font-weight: 600;
}

/* Details Section */
.detail-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.detail-card {
    background: rgba(147, 51, 234, 0.1);
    border: 2px solid var(--cosmic-purple);
    border-radius: 16px;
    padding: 2.5rem;
}

.detail-card h3 {
    color: var(--vibrant-pink);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

/* Gameplay Section */
.gameplay-section {
    min-height: 70vh;
}

.title-large {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--cosmic-purple), var(--vibrant-pink), var(--electric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 2rem;
}

.instructions-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.instruction-card {
    background: rgba(59, 130, 246, 0.15);
    border: 2px solid var(--electric-blue);
    border-radius: 14px;
    padding: 2rem;
}

.instruction-card h3 {
    color: var(--neon-orange);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

/* Document Section */
.document-section {
    padding: 2rem 0;
}

.document-body {
    background: rgba(0, 0, 0, 0.5);
    border: 3px solid var(--cosmic-purple);
    border-radius: 20px;
    padding: 3rem;
    max-width: 960px;
    margin: 2rem auto;
}

.document-body h2 {
    color: var(--vibrant-pink);
    font-size: 2.2rem;
    margin: 2rem 0 1rem;
    font-weight: 800;
}

.document-body h3 {
    color: var(--electric-blue);
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    font-weight: 700;
}

.document-body p {
    margin-bottom: 1rem;
    line-height: 1.9;
}

.document-body ul {
    margin: 1rem 0 1rem 2.5rem;
}

.document-body li {
    margin-bottom: 0.7rem;
}

.document-body a {
    color: var(--electric-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.document-body a:hover {
    color: var(--vibrant-pink);
}

.doc-date {
    color: var(--neon-orange);
    font-style: italic;
    text-align: center;
    margin-bottom: 2rem;
}

.emphasis-panel,
.warning-panel {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(236, 72, 153, 0.2));
    border: 2px solid var(--vibrant-pink);
    border-radius: 14px;
    padding: 2rem;
    margin: 2rem 0;
}

.bold-text {
    color: var(--neon-orange);
    font-weight: 800;
    font-size: 1.2rem;
}

/* Footer */
.site-footer {
    background: rgba(30, 27, 75, 0.95);
    border-top: 4px solid var(--cosmic-purple);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info h4 {
    color: var(--vibrant-pink);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: var(--electric-blue);
}

.footer-notice {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--cosmic-purple);
    color: var(--electric-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-heading {
        font-size: 3rem;
    }

    .hero-subtext {
        font-size: 1.3rem;
    }

    .heading-primary {
        font-size: 2.3rem;
    }

    .title-large {
        font-size: 2.5rem;
    }

    .game-window iframe {
        height: 400px;
    }

    .document-body {
        padding: 2rem;
    }

    .verify-box {
        padding: 2.5rem 2rem;
    }

    .verify-buttons {
        flex-direction: column;
    }

    .detail-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 2.2rem;
    }

    .site-title {
        font-size: 1.8rem;
    }

    .stat-value {
        font-size: 2.8rem;
    }
}
