* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background: #011627;
    color: #FDFFFC;
    line-height: 1.65;
}

.age-gate-modal {
    position: fixed;
    inset: 0;
    background: rgba(1, 22, 39, 0.97);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.age-gate-modal.closed {
    display: none;
}

.age-gate-inner {
    background: linear-gradient(135deg, #FF9F1C, #2EC4B6);
    padding: 70px 60px;
    border-radius: 30px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 30px 90px rgba(255, 159, 28, 0.3);
}

.age-gate-badge {
    font-size: 5em;
    margin-bottom: 32px;
}

.age-gate-inner h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 3em;
    margin-bottom: 25px;
    font-weight: 900;
}

.age-gate-inner p {
    font-size: 1.2em;
    margin-bottom: 18px;
}

.verification-question {
    font-weight: 800;
    font-size: 1.28em !important;
    margin-top: 28px !important;
}

.verification-buttons {
    display: flex;
    gap: 25px;
    margin-top: 45px;
    justify-content: center;
}

.verify-btn {
    padding: 20px 50px;
    font-size: 1.15em;
    font-weight: 800;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Nunito', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.verify-yes {
    background: #011627;
    color: white;
}

.verify-yes:hover {
    background: #001018;
    transform: translateY(-3px);
}

.verify-no {
    background: #E71D36;
    color: white;
}

.verify-no:hover {
    background: #C21829;
    transform: translateY(-3px);
}

.primary-nav {
    background: #FF9F1C;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 9000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    color: #011627;
}

.logo-name {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2.1em;
    font-weight: 900;
    letter-spacing: 2px;
}

.menu-toggle-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.toggle-line {
    width: 32px;
    height: 3px;
    background: #011627;
    border-radius: 3px;
    transition: all 0.3s;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 42px;
}

.nav-list a {
    color: #011627;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.08em;
    transition: all 0.3s;
    padding: 10px 0;
}

.nav-list a:hover {
    color: #2EC4B6;
}

.main-hero {
    background: linear-gradient(135deg, #2EC4B6, #20A09B);
    padding: 150px 0;
    text-align: center;
}

.hero-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-headline {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 4.8em;
    font-weight: 900;
    margin-bottom: 30px;
    color: #011627;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtext {
    font-size: 1.42em;
    margin-bottom: 48px;
    color: #011627;
    font-weight: 600;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-action-btn {
    display: inline-block;
    background: #FF9F1C;
    color: #011627;
    padding: 24px 65px;
    font-size: 1.3em;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 900;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-action-btn:hover {
    background: #E68A00;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 159, 28, 0.4);
}

.content-box {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 30px;
}

.intro-area {
    padding: 100px 0;
    background: #20A09B;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.intro-column h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 3.2em;
    margin-bottom: 30px;
    font-weight: 900;
    color: #FF9F1C;
}

.intro-column p {
    font-size: 1.15em;
    margin-bottom: 24px;
    line-height: 1.85;
}

.value-proposition {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-item {
    background: #011627;
    padding: 38px;
    border-radius: 20px;
}

.value-emoji {
    font-size: 3.8em;
    margin-bottom: 20px;
    display: block;
}

.value-item h3 {
    font-size: 1.65em;
    margin-bottom: 15px;
    color: #FF9F1C;
}

.disclosure-area {
    padding: 100px 0;
    background: #011627;
}

.disclosure-panel {
    background: #20A09B;
    border: 4px solid #E71D36;
    border-radius: 25px;
    padding: 60px;
}

.disclosure-heading {
    text-align: center;
    margin-bottom: 50px;
}

.disclosure-tag {
    background: #E71D36;
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.05em;
    text-transform: uppercase;
}

.disclosure-heading h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 3em;
    margin-top: 25px;
    font-weight: 900;
}

.disclosure-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 38px;
}

.disclosure-block {
    background: #011627;
    padding: 40px;
    border-radius: 20px;
}

.disclosure-block h3 {
    font-size: 1.6em;
    margin-bottom: 18px;
    color: #FF9F1C;
}

.game-showcase-area {
    padding: 100px 0;
    background: #20A09B;
}

.area-heading {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 3.5em;
    text-align: center;
    margin-bottom: 18px;
    font-weight: 900;
    color: #011627;
}

.area-description {
    text-align: center;
    font-size: 1.3em;
    margin-bottom: 60px;
    color: #011627;
}

.showcase-layout {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 45px;
}

.game-window {
    background: #FF9F1C;
    padding: 30px;
    border-radius: 25px;
}

.game-embed {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 18px;
}

.game-information {
    background: #011627;
    padding: 45px;
    border-radius: 25px;
}

.game-information h3 {
    font-size: 1.85em;
    margin-bottom: 22px;
    color: #FF9F1C;
}

.game-attributes {
    margin: 30px 0;
}

.attribute-row {
    padding: 14px 0;
    border-bottom: 1px solid rgba(253, 255, 252, 0.2);
    display: flex;
    justify-content: space-between;
}

.attr-label {
    font-weight: 700;
    color: #2EC4B6;
}

.game-reminder {
    background: rgba(231, 29, 54, 0.2);
    padding: 20px;
    border-radius: 12px;
    margin-top: 28px;
    border-left: 4px solid #E71D36;
}

.advantages-area {
    padding: 100px 0;
    background: #011627;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
}

.advantage-card {
    background: #20A09B;
    padding: 45px;
    border-radius: 22px;
    transition: all 0.3s;
}

.advantage-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.advantage-number {
    background: #FF9F1C;
    color: #011627;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6em;
    font-weight: 900;
    margin-bottom: 25px;
}

.advantage-card h3 {
    font-size: 1.75em;
    margin-bottom: 18px;
    color: #011627;
}

.responsibility-area {
    padding: 100px 0;
    background: #20A09B;
}

.responsibility-box h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 3.4em;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 900;
    color: #011627;
}

.responsibility-summary {
    text-align: center;
    font-size: 1.25em;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.85;
    color: #011627;
}

.guidelines-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 38px;
}

.guideline-card {
    background: #011627;
    padding: 45px;
    border-radius: 22px;
    display: flex;
    gap: 28px;
    align-items: start;
}

.guideline-num {
    background: #FF9F1C;
    color: #011627;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.7em;
    font-weight: 900;
    flex-shrink: 0;
}

.guideline-info h4 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #2EC4B6;
}

.final-call-area {
    padding: 100px 0;
    background: #011627;
}

.final-call-box {
    text-align: center;
    background: linear-gradient(135deg, #FF9F1C, #2EC4B6);
    padding: 90px 60px;
    border-radius: 30px;
}

.final-call-box h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 3.8em;
    margin-bottom: 22px;
    font-weight: 900;
    color: #011627;
}

.final-call-box p {
    font-size: 1.35em;
    margin-bottom: 45px;
    color: #011627;
}

.final-call-btn {
    display: inline-block;
    background: #011627;
    color: white;
    padding: 28px 78px;
    font-size: 1.4em;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 900;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.final-call-btn:hover {
    background: #001018;
    transform: scale(1.06);
}

.interior-header {
    background: linear-gradient(135deg, #FF9F1C, #2EC4B6);
    padding: 90px 0;
    text-align: center;
}

.interior-header h1 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 3.8em;
    margin-bottom: 18px;
    font-weight: 900;
    color: #011627;
}

.interior-header p {
    font-size: 1.35em;
    color: #011627;
}

.play-area {
    padding: 90px 0;
    background: #011627;
}

.play-notification {
    background: #20A09B;
    border: 3px solid #FF9F1C;
    padding: 28px;
    border-radius: 18px;
    margin-bottom: 45px;
    text-align: center;
}

.play-game-wrapper {
    background: #FF9F1C;
    padding: 35px;
    border-radius: 25px;
    margin-bottom: 60px;
}

.play-game-frame {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 18px;
}

.play-tech-info {
    margin-top: 60px;
}

.tech-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 38px;
}

.tech-card {
    background: #20A09B;
    padding: 42px;
    border-radius: 22px;
}

.tech-card h3 {
    font-size: 1.75em;
    margin-bottom: 18px;
    color: #011627;
}

.legal-section {
    padding: 90px 0;
    background: #011627;
}

.legal-paper {
    background: #20A09B;
    padding: 70px;
    border-radius: 30px;
}

.legal-paper h1 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 4em;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 900;
    color: #011627;
}

.effective-date {
    text-align: center;
    color: #011627;
    opacity: 0.8;
    margin-bottom: 60px;
    font-size: 1.18em;
}

.legal-body h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2.4em;
    margin-top: 50px;
    margin-bottom: 24px;
    color: #FF9F1C;
    font-weight: 700;
}

.legal-body h3 {
    font-size: 1.6em;
    margin-top: 35px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-body p {
    margin-bottom: 24px;
    font-size: 1.12em;
    line-height: 1.9;
}

.legal-body ul {
    margin: 28px 0;
    padding-left: 40px;
}

.legal-body li {
    margin-bottom: 16px;
    font-size: 1.12em;
}

.terms-acceptance,
.privacy-note,
.user-confirm {
    background: rgba(255, 159, 28, 0.2);
    border: 3px solid #FF9F1C;
    padding: 40px;
    border-radius: 20px;
    margin-top: 50px;
}

.critical-alert {
    background: rgba(231, 29, 54, 0.2);
    border: 3px solid #E71D36;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 50px;
}

.page-footer {
    background: #FF9F1C;
    padding: 70px 0 40px;
}

.footer-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 50px;
    margin-bottom: 45px;
}

.footer-segment h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.85em;
    margin-bottom: 22px;
    font-weight: 900;
    color: #011627;
}

.footer-segment p {
    line-height: 1.85;
    color: #011627;
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 14px;
}

.footer-links-list a {
    color: #011627;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.08em;
    font-weight: 600;
}

.footer-links-list a:hover {
    color: #2EC4B6;
}

.footer-bottom {
    border-top: 2px solid rgba(1, 22, 39, 0.3);
    padding-top: 38px;
    text-align: center;
    color: #011627;
}

.footer-bottom p {
    margin-bottom: 12px;
}

.footer-legal-text {
    font-weight: 800;
    color: #011627;
}

@media (max-width: 768px) {
    .menu-toggle-btn {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #FF9F1C;
        flex-direction: column;
        padding: 80px 38px 38px;
        transition: right 0.3s;
        align-items: flex-start;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-list.active {
        right: 0;
    }

    .hero-headline {
        font-size: 2.6em;
    }

    .hero-subtext {
        font-size: 1.15em;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .showcase-layout {
        grid-template-columns: 1fr;
    }

    .game-embed {
        height: 460px;
    }

    .play-game-frame {
        height: 520px;
    }

    .legal-paper {
        padding: 42px 28px;
    }

    .legal-paper h1 {
        font-size: 2.6em;
    }

    .age-gate-inner {
        margin: 22px;
        padding: 50px 35px;
    }

    .verification-buttons {
        flex-direction: column;
    }
}
