* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0a0e27;
    color: #e8e8e8;
    line-height: 1.7;
}

.age-verification-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 39, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.age-verification-overlay.hide {
    display: none;
}

.age-verification-card {
    background: linear-gradient(135deg, #118AB2, #06D6A0);
    padding: 70px 50px;
    border-radius: 30px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 30px 90px rgba(6, 214, 160, 0.3);
}

.age-card-icon {
    font-size: 5em;
    margin-bottom: 30px;
}

.age-verification-card h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 900;
}

.age-subtitle {
    font-size: 1.2em;
    margin-bottom: 15px;
    opacity: 0.95;
}

.age-question {
    font-size: 1.15em;
    margin-bottom: 35px;
    font-weight: 600;
}

.age-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.age-btn {
    padding: 20px 45px;
    font-size: 1.15em;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-btn-yes {
    background: #fff;
    color: #118AB2;
}

.age-btn-yes:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.age-btn-no {
    background: #ef4444;
    color: white;
}

.age-btn-no:hover {
    background: #dc2626;
    transform: translateY(-3px);
}

.top-nav {
    background: #118AB2;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 9000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-content {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    color: white;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    font-weight: 900;
    letter-spacing: 1px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-line {
    width: 32px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: all 0.3s;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #06D6A0;
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hero-banner {
    background: linear-gradient(135deg, #06D6A0, #118AB2);
    padding: 140px 0;
    position: relative;
}

.hero-overlay {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-text-container {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5em;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.4em;
    margin-bottom: 45px;
    font-weight: 300;
    line-height: 1.6;
}

.hero-cta {
    display: inline-block;
    background: white;
    color: #118AB2;
    padding: 22px 60px;
    font-size: 1.25em;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta:hover {
    background: #f0f0f0;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.content-wrapper {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 30px;
}

.introduction-section {
    padding: 100px 0;
    background: #0f1632;
}

.intro-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    margin-bottom: 30px;
    color: #06D6A0;
    font-weight: 900;
}

.intro-text p {
    font-size: 1.15em;
    margin-bottom: 25px;
    line-height: 1.8;
}

.intro-visual {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.visual-card {
    background: linear-gradient(135deg, #118AB2, #06D6A0);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
}

.card-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.visual-card h3 {
    font-size: 1.6em;
    margin-bottom: 12px;
    font-weight: 700;
}

.notice-section {
    padding: 100px 0;
    background: #0a0e27;
}

.notice-card {
    background: #0f1632;
    border: 3px solid #ef4444;
    border-radius: 25px;
    padding: 60px;
}

.notice-title-area {
    text-align: center;
    margin-bottom: 50px;
}

.notice-badge {
    background: #ef4444;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notice-title-area h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8em;
    margin-top: 20px;
    font-weight: 900;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.notice-point {
    text-align: center;
}

.notice-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.notice-point h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #06D6A0;
    font-weight: 700;
}

.notice-point p {
    font-size: 1.08em;
    line-height: 1.8;
}

.game-feature-section {
    padding: 100px 0;
    background: #0f1632;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #06D6A0;
    font-weight: 900;
}

.section-heading p {
    font-size: 1.25em;
    color: #bbb;
}

.game-display-area {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.game-frame-wrapper {
    background: #118AB2;
    padding: 25px;
    border-radius: 25px;
}

.game-display-iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 15px;
}

.game-info-panel {
    background: #0a0e27;
    padding: 45px;
    border-radius: 25px;
    border: 2px solid #118AB2;
}

.game-info-panel h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #06D6A0;
}

.game-info-panel p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 30px;
}

.game-specs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.spec-item {
    background: rgba(17, 138, 178, 0.2);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #06D6A0;
}

.spec-item strong {
    color: #06D6A0;
    margin-right: 8px;
}

.benefits-section {
    padding: 100px 0;
    background: #0a0e27;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.benefit-box {
    background: #0f1632;
    padding: 45px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.benefit-box:hover {
    border-color: #06D6A0;
    transform: translateY(-5px);
}

.benefit-number {
    display: inline-block;
    background: #118AB2;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 1.3em;
    font-weight: 800;
    margin-bottom: 20px;
}

.benefit-box h3 {
    font-size: 1.7em;
    margin-bottom: 15px;
    color: #06D6A0;
    font-weight: 700;
}

.benefit-box p {
    font-size: 1.08em;
    line-height: 1.8;
}

.responsible-section {
    padding: 100px 0;
    background: #0f1632;
}

.responsible-container {
    max-width: 1100px;
    margin: 0 auto;
}

.responsible-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2em;
    text-align: center;
    margin-bottom: 25px;
    color: #06D6A0;
    font-weight: 900;
}

.responsible-lead {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.responsible-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.responsible-card {
    background: #0a0e27;
    padding: 45px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #118AB2;
}

.responsible-icon {
    font-size: 4em;
    margin-bottom: 25px;
}

.responsible-card h3 {
    font-size: 1.7em;
    margin-bottom: 18px;
    color: #06D6A0;
}

.responsible-card p {
    font-size: 1.08em;
    line-height: 1.8;
}

.final-cta-section {
    padding: 100px 0;
    background: #0a0e27;
}

.final-cta-box {
    text-align: center;
    background: linear-gradient(135deg, #118AB2, #06D6A0);
    padding: 80px 50px;
    border-radius: 30px;
}

.final-cta-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 900;
}

.final-cta-box p {
    font-size: 1.3em;
    margin-bottom: 40px;
}

.cta-large-btn {
    display: inline-block;
    background: white;
    color: #118AB2;
    padding: 25px 70px;
    font-size: 1.3em;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-large-btn:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.page-header {
    background: linear-gradient(135deg, #118AB2, #06D6A0);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    margin-bottom: 15px;
    font-weight: 900;
}

.page-header p {
    font-size: 1.3em;
    font-weight: 300;
}

.play-section {
    padding: 80px 0;
    background: #0a0e27;
}

.play-instructions {
    background: #0f1632;
    border: 2px solid #06D6A0;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 40px;
    text-align: center;
}

.play-instructions p {
    font-size: 1.12em;
}

.game-container {
    background: #118AB2;
    padding: 30px;
    border-radius: 25px;
    margin-bottom: 50px;
}

.game-iframe-full {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 15px;
}

.play-details {
    margin-top: 50px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.detail-card {
    background: #0f1632;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #118AB2;
}

.detail-card h3 {
    font-size: 1.7em;
    margin-bottom: 15px;
    color: #06D6A0;
}

.detail-card p {
    font-size: 1.08em;
    line-height: 1.8;
}

.legal-container {
    padding: 80px 0;
    background: #0a0e27;
}

.legal-document {
    background: #0f1632;
    padding: 70px;
    border-radius: 30px;
}

.legal-document h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4em;
    text-align: center;
    margin-bottom: 20px;
    color: #06D6A0;
    font-weight: 900;
}

.document-date {
    text-align: center;
    color: #999;
    margin-bottom: 60px;
    font-size: 1.15em;
}

.legal-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.3em;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #06D6A0;
    font-weight: 700;
}

.legal-text h3 {
    font-size: 1.6em;
    margin-top: 35px;
    margin-bottom: 18px;
    font-weight: 600;
}

.legal-text p {
    margin-bottom: 22px;
    font-size: 1.1em;
    line-height: 1.9;
}

.legal-text ul {
    margin: 25px 0;
    padding-left: 40px;
}

.legal-text li {
    margin-bottom: 14px;
    font-size: 1.1em;
    line-height: 1.8;
}

.terms-acknowledgment,
.privacy-summary-box,
.final-acknowledgment {
    background: rgba(6, 214, 160, 0.15);
    border: 3px solid #06D6A0;
    padding: 40px;
    border-radius: 20px;
    margin-top: 50px;
}

.urgent-notice {
    background: rgba(239, 68, 68, 0.2);
    border: 3px solid #ef4444;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 50px;
}

.site-footer {
    background: #118AB2;
    padding: 70px 0 35px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 45px;
}

.footer-column h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column p {
    line-height: 1.8;
    color: #e0e0e0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #e8e8e8;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.05em;
}

.footer-links a:hover {
    color: #06D6A0;
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 35px;
    text-align: center;
}

.footer-legal p {
    margin-bottom: 10px;
    color: #e0e0e0;
}

.footer-disclaimer {
    font-weight: 600;
    color: #06D6A0;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #118AB2;
        flex-direction: column;
        padding: 80px 40px 40px;
        transition: right 0.3s;
        align-items: flex-start;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .hero-title {
        font-size: 2.5em;
    }

    .hero-description {
        font-size: 1.1em;
    }

    .hero-cta {
        padding: 18px 40px;
        font-size: 1.1em;
    }

    .intro-layout {
        grid-template-columns: 1fr;
    }

    .game-display-area {
        grid-template-columns: 1fr;
    }

    .game-display-iframe {
        height: 450px;
    }

    .game-iframe-full {
        height: 500px;
    }

    .legal-document {
        padding: 40px 25px;
    }

    .legal-document h1 {
        font-size: 2.5em;
    }

    .age-verification-card {
        margin: 20px;
        padding: 45px 30px;
    }

    .age-actions {
        flex-direction: column;
    }
}
