* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #050816 0%, #0f1729 50%, #050816 100%);
    color: #f1f5f9;
    line-height: 1.65;
    min-height: 100vh;
}

.section-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

/* Age Verification */
.age-verification-screen {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 22, 0.97);
    z-index: 10000;
    backdrop-filter: blur(15px);
}

.age-verification-screen.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.verification-panel {
    background: linear-gradient(145deg, #0f1729 0%, #1a2540 100%);
    border: 4px solid #3b82f6;
    border-radius: 20px;
    padding: 65px 55px;
    max-width: 560px;
    text-align: center;
    box-shadow: 0 30px 90px rgba(59, 130, 246, 0.4);
}

.verification-symbol {
    font-size: 4.5em;
    display: block;
    margin-bottom: 30px;
}

.verification-panel h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.6em;
    font-weight: 700;
    margin-bottom: 30px;
    color: #3b82f6;
}

.verification-panel p {
    font-size: 1.2em;
    margin-bottom: 18px;
    color: #cbd5e1;
}

.verification-controls {
    display: flex;
    gap: 25px;
    margin-top: 45px;
    justify-content: center;
}

.verify-yes, .verify-no {
    font-family: 'Space Grotesk', sans-serif;
    padding: 20px 55px;
    font-size: 1.25em;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.verify-yes {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
}

.verify-yes:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
}

.verify-no {
    background: #1e293b;
    color: #94a3b8;
}

.verify-no:hover {
    background: #2d3b52;
}

/* Top Navigation */
.top-navigation {
    background: rgba(5, 8, 22, 0.93);
    backdrop-filter: blur(12px);
    border-bottom: 3px solid #3b82f6;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 95px;
}

.site-identity {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
}

.identity-icon {
    font-size: 2.8em;
}

.identity-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2em;
    font-weight: 700;
    color: #3b82f6;
    letter-spacing: 3px;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.menu-link {
    font-family: 'Space Grotesk', sans-serif;
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15em;
    transition: all 0.3s ease;
}

.menu-link:hover, .menu-link.active-link {
    color: #3b82f6;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 7px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger-line {
    width: 35px;
    height: 4px;
    background: #3b82f6;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Hero Banner Section */
.hero-banner-section {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.08) 100%);
    padding: 140px 0;
    text-align: center;
}

.banner-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.8em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.banner-lead {
    font-size: 1.65em;
    color: #cbd5e1;
    margin-bottom: 50px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.primary-cta {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    padding: 24px 75px;
    font-size: 1.5em;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.45);
}

.primary-cta:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 60px rgba(59, 130, 246, 0.65);
}

/* Introduction Area */
.introduction-area {
    padding: 110px 0;
}

.introduction-area h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.4em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 55px;
    color: #3b82f6;
}

.intro-paragraphs p {
    font-size: 1.2em;
    margin-bottom: 32px;
    color: #cbd5e1;
    line-height: 1.95;
}

/* Foundation Principles */
.foundation-principles {
    padding: 110px 0;
    background: rgba(15, 23, 41, 0.5);
}

.foundation-principles h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.4em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 65px;
    color: #3b82f6;
}

.principles-array {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 45px;
}

.principle-element {
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    border: 3px solid #3b82f6;
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.principle-element:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 50px rgba(59, 130, 246, 0.3);
}

.principle-graphic {
    font-size: 4em;
    display: block;
    margin-bottom: 25px;
}

.principle-element h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.9em;
    font-weight: 700;
    margin-bottom: 22px;
    color: #60a5fa;
}

.principle-element p {
    font-size: 1.1em;
    color: #cbd5e1;
    line-height: 1.75;
}

/* Gaming Showcase */
.gaming-showcase {
    padding: 110px 0;
}

.gaming-showcase h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.4em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    color: #3b82f6;
}

.showcase-description {
    text-align: center;
    font-size: 1.4em;
    color: #94a3b8;
    margin-bottom: 55px;
}

.showcase-frame {
    max-width: 1020px;
    margin: 0 auto;
    background: #000;
    padding: 30px;
    border-radius: 16px;
    border: 4px solid #3b82f6;
}

.embedded-game {
    width: 100%;
    height: 690px;
    border: none;
    border-radius: 12px;
}

/* Value Propositions */
.value-propositions {
    padding: 110px 0;
    background: rgba(15, 23, 41, 0.5);
}

.value-propositions h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.4em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 65px;
    color: #3b82f6;
}

.propositions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 40px;
}

.proposition-item {
    background: rgba(5, 8, 22, 0.8);
    padding: 40px 35px;
    border-radius: 14px;
    border-left: 5px solid #60a5fa;
    transition: all 0.3s ease;
}

.proposition-item:hover {
    background: rgba(5, 8, 22, 1);
    transform: translateX(10px);
}

.prop-emoji {
    font-size: 3em;
    display: block;
    margin-bottom: 18px;
}

.proposition-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: 18px;
    color: #3b82f6;
}

.proposition-item p {
    font-size: 1.08em;
    color: #cbd5e1;
    line-height: 1.75;
}

/* Mission Statement */
.mission-statement {
    padding: 110px 0;
    text-align: center;
}

.mission-statement h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.4em;
    font-weight: 700;
    margin-bottom: 55px;
    color: #3b82f6;
}

.mission-content p {
    font-size: 1.2em;
    margin-bottom: 32px;
    color: #cbd5e1;
    line-height: 1.95;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}

/* Play Page */
.play-header-area {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.08) 100%);
    padding: 110px 0;
    text-align: center;
}

.play-header-area h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.play-description {
    font-size: 1.5em;
    color: #cbd5e1;
}

.gameplay-guidelines {
    padding: 90px 0;
}

.gameplay-guidelines h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 55px;
    color: #3b82f6;
}

.guidelines-collection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 35px;
}

.guideline-item {
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    padding: 35px;
    border-radius: 14px;
    border: 3px solid #3b82f6;
    font-size: 1.1em;
    color: #cbd5e1;
    line-height: 1.85;
}

.guideline-item strong {
    color: #60a5fa;
    display: block;
    margin-bottom: 12px;
    font-size: 1.15em;
}

.game-container-section {
    padding: 70px 0;
    background: rgba(15, 23, 41, 0.5);
}

.game-container-box {
    background: #000;
    padding: 30px;
    border-radius: 16px;
    border: 4px solid #3b82f6;
}

.embedded-game-full {
    width: 100%;
    height: 790px;
    border: none;
    border-radius: 12px;
}

.player-tips {
    padding: 90px 0;
}

.player-tips h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 45px;
    color: #3b82f6;
}

.tips-collection p {
    font-size: 1.18em;
    margin-bottom: 22px;
    color: #cbd5e1;
    line-height: 1.85;
}

.tips-collection strong {
    color: #3b82f6;
}

/* Document Area */
.document-area {
    padding: 90px 0;
}

.document-area h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.2em;
    font-weight: 700;
    margin-bottom: 25px;
    color: #3b82f6;
}

.document-timestamp {
    color: #64748b;
    font-style: italic;
    margin-bottom: 55px;
    font-size: 1.08em;
}

.document-area h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.3em;
    font-weight: 700;
    margin: 55px 0 28px;
    color: #60a5fa;
}

.document-area p {
    font-size: 1.14em;
    margin-bottom: 28px;
    color: #cbd5e1;
    line-height: 1.95;
}

.document-area ul {
    margin: 25px 0 28px 55px;
    color: #cbd5e1;
}

.document-area li {
    margin-bottom: 14px;
    line-height: 1.85;
}

.highlight-notice {
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.08) 100%);
    border-left: 6px solid #60a5fa;
    padding: 40px;
    margin: 45px 0;
    border-radius: 12px;
}

.highlight-notice h2 {
    margin-top: 0;
    color: #3b82f6;
}

/* Site Footer Area */
.site-footer-area {
    background: rgba(5, 8, 22, 0.95);
    border-top: 4px solid #3b82f6;
    padding: 90px 0 45px;
    margin-top: 90px;
}

.footer-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 55px;
    margin-bottom: 55px;
}

.footer-identity {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.footer-motto {
    color: #94a3b8;
    font-size: 1.05em;
}

.footer-segment h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.65em;
    font-weight: 700;
    margin-bottom: 22px;
    color: #3b82f6;
}

.footer-segment p {
    color: #94a3b8;
    margin-bottom: 18px;
}

.resource-navigation {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.resource-navigation a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.resource-navigation a:hover {
    color: #3b82f6;
    transform: translateX(6px);
}

.footer-notice {
    text-align: center;
    padding-top: 45px;
    border-top: 1px solid #1e293b;
    color: #94a3b8;
    font-size: 0.98em;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 95px;
        left: 0;
        width: 100%;
        background: rgba(5, 8, 22, 0.98);
        flex-direction: column;
        padding: 35px;
        gap: 22px;
        border-top: 3px solid #3b82f6;
    }

    .nav-menu.open {
        display: flex;
    }

    .banner-content h1 {
        font-size: 3em;
    }

    .banner-lead {
        font-size: 1.3em;
    }

    .primary-cta {
        font-size: 1.25em;
        padding: 20px 55px;
    }

    .embedded-game {
        height: 490px;
    }

    .embedded-game-full {
        height: 580px;
    }

    .verification-panel {
        padding: 45px 35px;
        margin: 20px;
    }

    .verification-panel h2 {
        font-size: 2.2em;
    }

    .verification-controls {
        flex-direction: column;
    }

    .verify-yes, .verify-no {
        width: 100%;
    }
}
