* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.65;
    color: #1f2937;
    background: #f9fafb;
}

h1, h2, h3, h4 {
    font-family: 'Roboto Slab', serif;
    font-weight: 900;
}

.content-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Age Verification */
.age-verification-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    inset: 0;
    background: rgba(30, 58, 138, 0.96);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.age-verification-overlay.visible {
    display: flex;
}

.age-verification-box {
    background: #fff;
    padding: 70px 60px;
    border-radius: 18px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    border-top: 6px solid #fbbf24;
}

.age-logo {
    margin-bottom: 35px;
}

.age-verification-box h2 {
    font-size: 38px;
    color: #1e3a8a;
    margin-bottom: 25px;
}

.age-message {
    font-size: 19px;
    color: #374151;
    margin-bottom: 15px;
    line-height: 1.7;
}

.age-note {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 40px;
}

.age-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-accept,
.age-decline {
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
}

.age-accept {
    background: #fbbf24;
    color: #1e3a8a;
}

.age-accept:hover {
    background: #f59e0b;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
}

.age-decline {
    background: #e5e7eb;
    color: #6b7280;
}

.age-decline:hover {
    background: #d1d5db;
}

/* Navigation */
.top-navigation {
    background: #1e3a8a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    max-width: 1500px;
    margin: 0 auto;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
}

.site-title {
    font-family: 'Roboto Slab', serif;
    font-size: 32px;
    font-weight: 900;
    color: #fbbf24;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #fbbf24;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 32px;
    height: 4px;
    background: #fbbf24;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Area */
.hero-area {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    padding: 130px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-area::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-inner h1 {
    font-size: 68px;
    color: #fbbf24;
    margin-bottom: 25px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.hero-lead {
    font-size: 28px;
    color: #e5e7eb;
    margin-bottom: 50px;
    font-weight: 300;
}

.hero-highlights {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.highlight {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 15px 32px;
    border-radius: 30px;
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    border: 2px solid rgba(251, 191, 36, 0.3);
}

/* Introduction */
.introduction {
    padding: 110px 40px;
    background: #fff;
}

.intro-text {
    text-align: center;
    margin-bottom: 80px;
}

.intro-text h2 {
    font-size: 50px;
    color: #1e3a8a;
    margin-bottom: 30px;
}

.intro-text p {
    font-size: 20px;
    color: #4b5563;
    max-width: 950px;
    margin: 0 auto;
    line-height: 1.8;
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.value-card {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 55px 45px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: #fbbf24;
}

.card-emoji {
    font-size: 65px;
    display: block;
    margin-bottom: 30px;
}

.value-card h3 {
    font-size: 30px;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.value-card p {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.8;
}

/* Featured Game */
.featured-game {
    padding: 110px 40px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.game-header {
    text-align: center;
    margin-bottom: 70px;
}

.game-header h2 {
    font-size: 50px;
    color: #1e3a8a;
    margin-bottom: 25px;
}

.game-header p {
    font-size: 22px;
    color: #78350f;
}

.game-box {
    max-width: 1300px;
    margin: 0 auto;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    border: 4px solid #1e3a8a;
}

.game-window {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

/* Mandatory Notices */
.mandatory-notices {
    padding: 110px 40px;
    background: #fff;
}

.notice-container {
    max-width: 1150px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 70px;
    border-radius: 18px;
    border: 3px solid #fbbf24;
}

.notice-container h2 {
    font-size: 44px;
    color: #1e3a8a;
    margin-bottom: 60px;
    text-align: center;
}

.disclosure-grid {
    display: grid;
    gap: 45px;
}

.disclosure h3 {
    font-size: 28px;
    color: #1e3a8a;
    margin-bottom: 18px;
}

.disclosure p {
    font-size: 18px;
    color: #374151;
    line-height: 1.8;
}

/* Platform Features */
.platform-features {
    padding: 110px 40px;
    background: #f9fafb;
}

.platform-features h2 {
    font-size: 50px;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 80px;
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.feature-icon {
    font-size: 55px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 26px;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.feature-content p {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.8;
}

/* Final CTA */
.final-cta {
    padding: 110px 40px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    text-align: center;
}

.cta-wrapper h2 {
    font-size: 50px;
    color: #fbbf24;
    margin-bottom: 30px;
}

.cta-wrapper p {
    font-size: 24px;
    color: #e5e7eb;
    margin-bottom: 50px;
}

.primary-cta {
    display: inline-block;
    background: #fbbf24;
    color: #1e3a8a;
    padding: 24px 60px;
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.3);
}

.primary-cta:hover {
    background: #f59e0b;
    transform: scale(1.06);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.4);
}

/* Play Page */
.page-banner {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    padding: 90px 40px;
    text-align: center;
}

.banner-content h1 {
    font-size: 58px;
    color: #fbbf24;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 24px;
    color: #e5e7eb;
}

.gameplay-info {
    padding: 70px 40px;
    background: #fff;
}

.info-box {
    max-width: 1100px;
    margin: 0 auto;
    background: #f9fafb;
    padding: 60px;
    border-radius: 18px;
    border-left: 6px solid #fbbf24;
}

.info-box h2 {
    font-size: 38px;
    color: #1e3a8a;
    margin-bottom: 40px;
}

.info-details {
    display: grid;
    gap: 35px;
}

.detail-item strong {
    font-size: 22px;
    color: #1e3a8a;
    display: block;
    margin-bottom: 12px;
}

.detail-item p {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.8;
}

.game-player {
    padding: 70px 40px 100px;
    background: #fff;
}

.player-container {
    max-width: 1400px;
    margin: 0 auto 50px;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    border: 4px solid #1e3a8a;
}

.game-embed {
    width: 100%;
    height: 800px;
    border: none;
    display: block;
}

.player-reminder {
    max-width: 900px;
    margin: 0 auto;
    background: #fef3c7;
    padding: 35px;
    border-radius: 15px;
    border-left: 6px solid #fbbf24;
    text-align: center;
}

.player-reminder p {
    font-size: 18px;
    color: #78350f;
}

/* Legal Pages */
.legal-content {
    padding: 90px 40px;
    background: #fff;
}

.terms-document {
    max-width: 1000px;
    margin: 0 auto;
}

.terms-document h2 {
    font-size: 36px;
    color: #1e3a8a;
    margin-top: 55px;
    margin-bottom: 25px;
}

.terms-document h2:first-child {
    margin-top: 0;
}

.terms-document p {
    font-size: 18px;
    color: #374151;
    margin-bottom: 25px;
    line-height: 1.8;
}

.terms-document ul {
    margin-bottom: 30px;
    padding-left: 35px;
}

.terms-document li {
    font-size: 18px;
    color: #374151;
    margin-bottom: 18px;
    line-height: 1.8;
}

.warning-notice {
    background: #fef3c7;
    border: 4px solid #fbbf24;
    padding: 50px;
    border-radius: 15px;
    margin-bottom: 60px;
}

.warning-notice h2 {
    color: #1e3a8a;
    margin-top: 0;
}

.final-warning {
    background: #1e3a8a;
    color: #fff;
    padding: 50px;
    border-radius: 15px;
    margin-top: 60px;
    text-align: center;
}

.final-warning h3 {
    color: #fbbf24;
    margin-bottom: 25px;
}

.document-meta {
    margin-top: 70px;
    padding-top: 50px;
    border-top: 4px solid #e5e7eb;
    color: #6b7280;
}

.document-meta p {
    margin-bottom: 12px;
    font-size: 17px;
}

/* Footer */
.page-footer {
    background: #111827;
    padding: 70px 40px 40px;
}

.footer-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 18px;
    font-family: 'Roboto Slab', serif;
    font-size: 28px;
    font-weight: 900;
    color: #fbbf24;
    margin-bottom: 20px;
}

.footer-desc {
    color: #9ca3af;
    font-size: 17px;
}

.footer-section h4 {
    color: #fbbf24;
    font-size: 22px;
    margin-bottom: 25px;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 15px;
}

.footer-menu a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 17px;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #fbbf24;
}

.copyright {
    color: #9ca3af;
    font-size: 17px;
    margin-bottom: 12px;
}

.footer-warning {
    color: #fbbf24;
    font-weight: 800;
    font-size: 17px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 92px;
        left: -100%;
        width: 100%;
        background: rgba(30, 58, 138, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 50px 0;
        gap: 30px;
        transition: left 0.3s ease;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }

    .nav-links.open {
        left: 0;
    }

    .menu-toggle.open span:nth-child(1) {
        transform: rotate(-45deg) translate(-8px, 8px);
    }

    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.open span:nth-child(3) {
        transform: rotate(45deg) translate(-8px, -8px);
    }

    .hero-inner h1,
    .banner-content h1 {
        font-size: 44px;
    }

    .intro-text h2,
    .game-header h2,
    .platform-features h2,
    .cta-wrapper h2 {
        font-size: 38px;
    }

    .game-window,
    .game-embed {
        height: 500px;
    }

    .value-cards,
    .features-layout {
        grid-template-columns: 1fr;
    }

    .notice-container {
        padding: 40px 30px;
    }
}
