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

body {
    font-family: 'Nunito Sans', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.7;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.container.limited {
    max-width: 1000px;
}

.container.wide {
    max-width: 1500px;
}

/* Age Check Overlay */
.age-check-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #059669, #0a0a0a);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.age-check-overlay.hidden {
    display: none;
}

.age-check-box {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    padding: 60px;
    border-radius: 25px;
    max-width: 600px;
    text-align: center;
    border: 3px solid #84cc16;
    box-shadow: 0 0 60px rgba(132, 204, 22, 0.4);
}

.age-check-logo {
    margin-bottom: 30px;
}

.age-check-box h2 {
    font-family: 'Barlow', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #84cc16;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-check-primary {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 15px;
    font-weight: 700;
}

.age-check-secondary {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 35px;
    line-height: 1.7;
}

.age-check-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-btn {
    padding: 18px 45px;
    font-size: 1.15rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Barlow', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.age-btn.accept {
    background: linear-gradient(135deg, #84cc16, #059669);
    color: white;
}

.age-btn.accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(132, 204, 22, 0.5);
}

.age-btn.reject {
    background: #2a2a2a;
    color: #888;
}

.age-btn.reject:hover {
    background: #3a3a3a;
}

/* Primary Navigation */
.primary-nav {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    padding: 20px 0;
    border-bottom: 2px solid #84cc16;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.brand-name {
    font-family: 'Barlow', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #84cc16;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: #84cc16;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #84cc16, #059669);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: #84cc16;
}

/* Splash Section */
.splash-section {
    position: relative;
    padding: 120px 0;
    text-align: center;
    background: radial-gradient(circle at center, #059669, #0a0a0a);
    overflow: hidden;
}

.splash-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(132, 204, 22, 0.03) 40px,
        rgba(132, 204, 22, 0.03) 80px
    );
}

.splash-title {
    font-family: 'Barlow', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: #84cc16;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(132, 204, 22, 0.6);
    position: relative;
}

.splash-subtitle {
    font-size: 1.6rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    position: relative;
    font-weight: 600;
}

.splash-stats {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.stat-item {
    background: rgba(132, 204, 22, 0.15);
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 700;
    border: 2px solid #84cc16;
    font-size: 1.1rem;
}

/* Intro Section */
.intro-section {
    padding: 90px 0;
    background: #0f0f0f;
}

.intro-wrap {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    padding: 50px;
    border-radius: 25px;
    border-left: 6px solid #84cc16;
}

.intro-wrap h2 {
    font-family: 'Barlow', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #84cc16;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.intro-wrap p {
    font-size: 1.15rem;
    color: #c0c0c0;
    margin-bottom: 25px;
    line-height: 1.9;
}

/* Principles Section */
.principles-section {
    padding: 90px 0;
    background: radial-gradient(circle at center, #0a0a0a, #000);
}

.big-header {
    font-family: 'Barlow', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #84cc16;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.principle-box {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    padding: 45px;
    border-radius: 20px;
    border: 2px solid #84cc16;
    transition: all 0.3s ease;
}

.principle-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(132, 204, 22, 0.3);
}

.principle-badge {
    display: inline-block;
    background: #84cc16;
    color: #0a0a0a;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.principle-box h3 {
    font-family: 'Barlow', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.principle-box p {
    color: #b0b0b0;
    line-height: 1.9;
}

/* Featured Game Section */
.featured-game-section {
    padding: 90px 0;
    background: #0f0f0f;
}

.section-desc {
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 50px;
}

.game-box {
    max-width: 1100px;
    margin: 0 auto 40px;
    background: #000;
    border-radius: 25px;
    overflow: hidden;
    border: 3px solid #84cc16;
    box-shadow: 0 0 50px rgba(132, 204, 22, 0.3);
}

.game-box iframe {
    width: 100%;
    height: 700px;
    display: block;
}

.game-info-box {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid #059669;
}

.game-info-box h4 {
    font-family: 'Barlow', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #84cc16;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.game-info-box p {
    color: #b0b0b0;
    line-height: 1.9;
    margin-bottom: 15px;
}

/* Perks Section */
.perks-section {
    padding: 90px 0;
    background: radial-gradient(circle at center, #0a0a0a, #000);
}

.perks-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.perk {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    padding: 40px;
    border-radius: 18px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.perk:hover {
    border-color: #84cc16;
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(132, 204, 22, 0.2);
}

.perk-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.perk h3 {
    font-family: 'Barlow', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.perk p {
    color: #a0a0a0;
    line-height: 1.8;
}

/* Responsibility Banner */
.responsibility-banner {
    padding: 90px 0;
    background: linear-gradient(135deg, #059669, #0a0a0a);
}

.banner-inner {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    padding: 50px;
    border-radius: 25px;
    border: 3px solid #84cc16;
}

.banner-inner h2 {
    font-family: 'Barlow', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #84cc16;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
}

.banner-inner p {
    font-size: 1.15rem;
    color: #c0c0c0;
    line-height: 1.9;
}

/* Play Page */
.page-splash {
    padding: 100px 0;
    text-align: center;
    background: radial-gradient(circle at center, #059669, #0a0a0a);
}

.page-splash.compact {
    padding: 80px 0;
}

.doc-meta {
    font-size: 1.1rem;
    color: #b0b0b0;
}

.play-area {
    padding: 70px 0;
    background: #0f0f0f;
}

.play-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.game-main {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    padding: 25px;
    border-radius: 25px;
    border: 2px solid #84cc16;
}

.game-viewport {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
}

.game-viewport iframe {
    width: 100%;
    height: 750px;
    display: block;
}

.game-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-panel {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    padding: 30px;
    border-radius: 18px;
    border: 2px solid #333;
}

.sidebar-panel h3 {
    font-family: 'Barlow', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #84cc16;
    margin-bottom: 15px;
}

.sidebar-panel p {
    color: #b0b0b0;
    line-height: 1.8;
}

/* Document Area */
.document-area {
    padding: 70px 0;
    background: #0f0f0f;
}

.text-document {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    padding: 50px;
    border-radius: 25px;
    border: 2px solid #333;
}

.text-block {
    margin-bottom: 45px;
}

.text-block:last-child {
    margin-bottom: 0;
}

.text-block h2 {
    font-family: 'Barlow', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #84cc16;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.text-block p {
    color: #c0c0c0;
    line-height: 1.9;
    margin-bottom: 15px;
}

.text-block ul {
    margin: 20px 0 20px 35px;
    color: #c0c0c0;
}

.text-block ul li {
    margin: 12px 0;
    line-height: 1.9;
}

/* Callout Boxes */
.callout-box {
    background: radial-gradient(circle at top left, #1a3a1a, #0f0f0f);
    padding: 45px;
    border-radius: 20px;
    border-left: 6px solid #84cc16;
    margin-bottom: 45px;
}

.callout-symbol {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.callout-box h2 {
    font-family: 'Barlow', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #84cc16;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.callout-box p {
    color: #c0c0c0;
    line-height: 1.9;
    margin-bottom: 15px;
}

.callout-box ul {
    margin: 20px 0 20px 35px;
    color: #c0c0c0;
}

.callout-box ul li {
    margin: 12px 0;
    line-height: 1.9;
}

/* Footer */
.main-footer {
    background: linear-gradient(to bottom, #000, #0a0a0a);
    padding: 60px 0 30px;
    border-top: 3px solid #84cc16;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col.branding {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-brand-text h3 {
    font-family: 'Barlow', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #84cc16;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.footer-brand-text p {
    color: #888;
}

.footer-col.resources h4 {
    font-family: 'Barlow', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #e0e0e0;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.resource-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.resource-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.05rem;
    font-weight: 600;
}

.resource-links a:hover {
    color: #84cc16;
}

.footer-notice {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #888;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
        flex-direction: column;
        padding: 100px 30px 30px;
        transition: right 0.3s ease;
        border-left: 3px solid #84cc16;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .splash-title {
        font-size: 3rem;
    }
    
    .splash-subtitle {
        font-size: 1.2rem;
    }
    
    .big-header {
        font-size: 2.5rem;
    }
    
    .play-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .game-box iframe,
    .game-viewport iframe {
        height: 500px;
    }
    
    .age-check-box {
        margin: 20px;
        padding: 40px 30px;
    }
    
    .age-check-buttons {
        flex-direction: column;
    }
    
    .intro-wrap,
    .banner-inner,
    .text-document {
        padding: 30px 25px;
    }
}
