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

:root {
    --primary: #00ffcc;
    --secondary: #ff00aa;
    --accent: #ffcc00;
    --dark: #0a0e1a;
    --darker: #050810;
    --light-text: #ffffff;
    --gray-text: #a8b2c8;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    color: var(--light-text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
}

.container-small {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-medium {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.main-header {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 255, 204, 0.2);
}

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

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

.logo-text {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 2px;
}

.main-navigation {
    display: flex;
    gap: 2rem;
}

.nav-item {
    color: var(--gray-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    color: var(--primary);
}

.nav-item:hover::before,
.nav-item.active::before {
    width: 100%;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-nav-toggle .bar {
    width: 28px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Area */
.hero-area {
    padding: 80px 0;
    background: radial-gradient(circle at top right, rgba(0, 255, 204, 0.15), transparent 60%);
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--primary);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-badges-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.badge-item {
    background: rgba(0, 255, 204, 0.1);
    border: 1px solid var(--primary);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
}

.primary-cta {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary), #00cc99);
    color: var(--darker);
    text-decoration: none;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 255, 204, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 255, 204, 0.6);
}

.hero-visual-column {
    display: flex;
    justify-content: center;
}

.visual-card {
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.1), rgba(255, 0, 170, 0.1));
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 204, 0.3), transparent 60%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.visual-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.visual-card p {
    font-size: 1.1rem;
    color: var(--gray-text);
    position: relative;
    z-index: 1;
}

/* Intro Statement */
.intro-statement {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.section-title.centered {
    text-align: center;
}

.intro-text-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.intro-text-content p {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

/* Features Zone */
.features-zone {
    padding: 80px 0;
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-box {
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.05), rgba(0, 255, 204, 0.02));
    border: 1px solid rgba(0, 255, 204, 0.3);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(0, 255, 204, 0.2);
}

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

.feature-box h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--light-text);
}

.feature-box p {
    color: var(--gray-text);
    line-height: 1.7;
}

/* Game Showcase */
.game-showcase {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 3rem;
}

.game-display-area {
    margin-bottom: 2rem;
}

.game-wrapper {
    background: var(--darker);
    border: 3px solid var(--primary);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 255, 204, 0.3);
    margin-bottom: 1.5rem;
}

.game-embed {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.game-details-box {
    background: rgba(0, 255, 204, 0.1);
    border: 1px solid var(--primary);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}

/* Pillars Section */
.pillars-section {
    padding: 80px 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.pillar-card {
    position: relative;
    padding-top: 60px;
}

.pillar-icon {
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'Exo 2', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 255, 204, 0.15);
}

.pillar-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.pillar-card p {
    color: var(--gray-text);
    line-height: 1.8;
}

/* Warnings Area */
.warnings-area {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.warning-title {
    color: #ff6666;
}

.warnings-collection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.warning-card {
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid;
}

.red-card {
    background: rgba(255, 100, 100, 0.1);
    border-color: #ff6666;
}

.blue-card {
    background: rgba(100, 150, 255, 0.1);
    border-color: #6496ff;
}

.green-card {
    background: rgba(0, 255, 204, 0.1);
    border-color: var(--primary);
}

.warning-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.warning-card p {
    color: var(--gray-text);
    line-height: 1.8;
}

/* Final CTA */
.final-cta-area {
    padding: 80px 0;
    text-align: center;
}

.cta-heading {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 2.5rem;
}

.secondary-cta {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.secondary-cta:hover {
    background: var(--primary);
    color: var(--darker);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 255, 204, 0.4);
}

/* Footer */
.site-footer {
    background: var(--darker);
    border-top: 2px solid var(--primary);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-block h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-block p {
    color: var(--gray-text);
    line-height: 1.7;
}

.footer-menu {
    list-style: none;
}

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

.footer-menu a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--primary);
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 204, 0.2);
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* Age Gate */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-gate.active {
    display: flex;
}

.age-gate-box {
    background: linear-gradient(135deg, var(--dark), var(--darker));
    border: 3px solid var(--primary);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 0 50px rgba(0, 255, 204, 0.5);
}

.age-gate-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.age-gate-box h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.age-gate-box p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--gray-text);
}

.age-gate-note {
    font-size: 0.95rem;
    color: var(--gray-text);
}

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

.age-btn {
    padding: 14px 30px;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.age-btn.confirm {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--darker);
}

.age-btn.confirm:hover {
    background: #00cc99;
    transform: scale(1.05);
}

.age-btn.decline {
    background: transparent;
    border-color: #ff6666;
    color: #ff6666;
}

.age-btn.decline:hover {
    background: rgba(255, 100, 100, 0.1);
    transform: scale(1.05);
}

/* Play Page */
.play-header-section {
    padding: 80px 0 60px;
    text-align: center;
}

.page-heading {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.page-subheading {
    font-size: 1.2rem;
    color: var(--gray-text);
}

.game-play-area {
    padding: 40px 0;
}

.play-info-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
}

.info-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-panel h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.info-panel p {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.play-reminder-section {
    padding: 40px 0;
}

.reminder-notice {
    background: rgba(0, 255, 204, 0.1);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.reminder-notice h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.reminder-notice p {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Legal Pages */
.legal-header {
    padding: 80px 0 60px;
    text-align: center;
    background: rgba(0, 255, 204, 0.05);
    border-bottom: 1px solid rgba(0, 255, 204, 0.2);
}

.legal-title {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: var(--gray-text);
    font-size: 1rem;
}

.legal-body {
    padding: 60px 0;
}

.legal-content h2 {
    font-size: 1.7rem;
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content p {
    color: var(--gray-text);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    color: var(--gray-text);
    line-height: 1.9;
    margin-bottom: 0.5rem;
}

.critical-notice {
    background: rgba(255, 100, 100, 0.1);
    border: 2px solid #ff6666;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.critical-notice h2 {
    color: #ff6666;
    margin-top: 0;
}

.final-summary {
    background: rgba(0, 255, 204, 0.1);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.final-summary h3 {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 1rem;
        border-top: 2px solid var(--primary);
        gap: 0;
    }

    .main-navigation.active {
        display: flex;
    }

    .nav-item {
        padding: 1rem;
        border-bottom: 1px solid rgba(0, 255, 204, 0.2);
    }

    .nav-item::before {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .game-embed {
        height: 400px;
    }

    .page-heading {
        font-size: 2.2rem;
    }

    .legal-title {
        font-size: 2.2rem;
    }

    .age-gate-box {
        margin: 20px;
        padding: 2rem;
    }

    .age-gate-buttons {
        flex-direction: column;
    }
}
