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

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to bottom, #0f1419 0%, #1a2332 100%);
    color: #e2e8f0;
    min-height: 100vh;
}

.page-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.primary-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.brand-title {
    font-family: 'Merriweather', serif;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 5px;
}

.menu-btn span {
    width: 26px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

.primary-nav {
    display: flex;
    gap: 5px;
}

.primary-nav a {
    padding: 10px 20px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.primary-nav a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.primary-nav a.active {
    background: rgba(255, 255, 255, 0.3);
}

.primary-content {
    flex: 1;
}

.welcome-area {
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
}

.welcome-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.welcome-inner h1 {
    font-family: 'Merriweather', serif;
    font-size: 46px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 15px;
}

.tagline {
    font-size: 24px;
    color: #94a3b8;
    margin-bottom: 25px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 35px;
}

.action-link {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

.action-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(16, 185, 129, 0.5);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.platform-intro {
    padding: 60px 0;
}

.platform-intro h2 {
    font-family: 'Merriweather', serif;
    font-size: 36px;
    font-weight: 700;
    color: #10b981;
    text-align: center;
    margin-bottom: 35px;
}

.intro-panel {
    background: rgba(26, 35, 50, 0.6);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    padding: 40px;
}

.intro-panel p {
    font-size: 17px;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.disclosure-area {
    padding: 60px 0;
    background: rgba(16, 185, 129, 0.05);
}

.disclosure-box {
    background: rgba(26, 35, 50, 0.7);
    border: 3px solid #10b981;
    border-radius: 16px;
    padding: 40px;
}

.disclosure-box h3 {
    font-family: 'Merriweather', serif;
    font-size: 32px;
    font-weight: 700;
    color: #10b981;
    text-align: center;
    margin-bottom: 35px;
}

.disclosure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.disclosure-card {
    background: rgba(16, 185, 129, 0.05);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 25px;
}

.disclosure-icon {
    font-size: 38px;
    display: block;
    margin-bottom: 15px;
}

.disclosure-card h4 {
    font-family: 'Merriweather', serif;
    font-size: 20px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 12px;
}

.disclosure-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #cbd5e1;
}

.game-showcase {
    padding: 60px 0;
}

.game-showcase h2 {
    font-family: 'Merriweather', serif;
    font-size: 36px;
    font-weight: 700;
    color: #10b981;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #94a3b8;
    margin-bottom: 35px;
}

.game-container {
    background: rgba(26, 35, 50, 0.6);
    border: 3px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}

.game-embed {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 12px;
    display: block;
    background: #000;
}

.game-caption {
    text-align: center;
    font-size: 15px;
    color: #94a3b8;
    font-style: italic;
}

.features-showcase {
    padding: 60px 0;
}

.features-showcase h2 {
    font-family: 'Merriweather', serif;
    font-size: 36px;
    font-weight: 700;
    color: #10b981;
    text-align: center;
    margin-bottom: 40px;
}

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

.feature-block {
    background: rgba(26, 35, 50, 0.6);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-block:hover {
    transform: translateY(-5px);
    border-color: #10b981;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
}

.feature-num {
    font-family: 'Merriweather', serif;
    font-size: 42px;
    font-weight: 700;
    color: rgba(16, 185, 129, 0.3);
    margin-bottom: 15px;
}

.feature-block h3 {
    font-family: 'Merriweather', serif;
    font-size: 22px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 12px;
}

.feature-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #cbd5e1;
}

.mission-statement {
    padding: 60px 0;
    background: rgba(16, 185, 129, 0.05);
}

.statement-box {
    background: rgba(26, 35, 50, 0.7);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    padding: 50px;
    text-align: center;
}

.statement-box h2 {
    font-family: 'Merriweather', serif;
    font-size: 34px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 25px;
}

.statement-box p {
    font-size: 17px;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.primary-footer {
    background: rgba(15, 20, 25, 0.9);
    border-top: 2px solid rgba(16, 185, 129, 0.3);
    padding: 50px 40px 30px;
    margin-top: 60px;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-block h4 {
    font-family: 'Merriweather', serif;
    font-size: 19px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 18px;
}

.footer-block p {
    font-size: 15px;
    line-height: 1.7;
    color: #94a3b8;
}

.footer-block ul {
    list-style: none;
}

.footer-block li {
    margin-bottom: 10px;
}

.footer-block a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: #10b981;
}

.footer-base {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    color: #64748b;
    font-size: 14px;
}

.age-check-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 20, 25, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

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

.age-check-modal {
    background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
    border: 3px solid #10b981;
    border-radius: 20px;
    padding: 50px;
    max-width: 550px;
    width: 90%;
    box-shadow: 0 10px 50px rgba(16, 185, 129, 0.5);
    text-align: center;
}

.check-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.age-check-modal h2 {
    font-family: 'Merriweather', serif;
    font-size: 32px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 20px;
}

.age-check-modal p {
    font-size: 17px;
    color: #cbd5e1;
    margin-bottom: 15px;
    line-height: 1.7;
}

.check-info {
    font-size: 15px;
    color: #94a3b8;
    font-style: italic;
}

.check-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.btn-accept,
.btn-reject {
    flex: 1;
    padding: 15px 30px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.5);
}

.btn-reject {
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.15);
}

.page-hero {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 40px;
}

.page-hero h1 {
    font-family: 'Merriweather', serif;
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
}

.play-info {
    padding: 60px 0;
}

.info-box {
    background: rgba(26, 35, 50, 0.6);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 30px;
}

.info-box h2 {
    font-family: 'Merriweather', serif;
    font-size: 28px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 20px;
}

.info-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 15px;
}

.requirements-box {
    background: rgba(16, 185, 129, 0.05);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    padding: 35px;
}

.requirements-box h3 {
    font-family: 'Merriweather', serif;
    font-size: 24px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 25px;
}

.req-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.req-card {
    background: rgba(26, 35, 50, 0.4);
    padding: 20px;
    border-radius: 12px;
}

.req-card strong {
    display: block;
    font-size: 16px;
    color: #10b981;
    margin-bottom: 8px;
}

.req-card p {
    font-size: 14px;
    color: #cbd5e1;
}

.game-area {
    padding: 40px 0;
}

.game-frame-wrapper {
    background: rgba(26, 35, 50, 0.6);
    border: 3px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    padding: 20px;
}

.full-game {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 12px;
    display: block;
    background: #000;
}

.gaming-tips {
    padding: 60px 0;
}

.gaming-tips h3 {
    font-family: 'Merriweather', serif;
    font-size: 28px;
    font-weight: 700;
    color: #10b981;
    text-align: center;
    margin-bottom: 35px;
}

.tips-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.tip-card {
    background: rgba(26, 35, 50, 0.6);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tip-badge {
    font-size: 32px;
    flex-shrink: 0;
}

.tip-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #cbd5e1;
}

.play-reminder {
    padding: 40px 0;
}

.reminder-panel {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10b981;
    border-radius: 16px;
    padding: 35px;
    text-align: center;
}

.reminder-panel h3 {
    font-family: 'Merriweather', serif;
    font-size: 24px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 15px;
}

.reminder-panel p {
    font-size: 17px;
    line-height: 1.7;
    color: #cbd5e1;
}

.legal-section {
    padding: 60px 0;
}

.legal-document {
    background: rgba(26, 35, 50, 0.6);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    padding: 50px;
}

.legal-document h2 {
    font-family: 'Merriweather', serif;
    font-size: 26px;
    font-weight: 700;
    color: #10b981;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document h3 {
    font-family: 'Merriweather', serif;
    font-size: 20px;
    font-weight: 600;
    color: #34d399;
    margin-top: 20px;
    margin-bottom: 12px;
}

.legal-document p {
    font-size: 16px;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 12px;
}

.terms-box,
.privacy-box,
.final-box {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 25px;
    margin-top: 35px;
}

.critical-box {
    background: rgba(16, 185, 129, 0.15);
    border: 3px solid #10b981;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 35px;
    text-align: center;
}

.critical-box h2 {
    font-family: 'Merriweather', serif;
    font-size: 30px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 15px;
    margin-top: 0;
}

.critical-box p {
    font-size: 17px;
    color: #e2e8f0;
}

@media (max-width: 968px) {
    .menu-btn {
        display: flex;
    }

    .primary-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    }

    .primary-nav.active {
        display: flex;
    }

    .welcome-inner h1 {
        font-size: 34px;
    }

    .tagline {
        font-size: 20px;
    }

    .section-container {
        padding: 0 20px;
    }

    .welcome-area,
    .platform-intro,
    .disclosure-area,
    .game-showcase,
    .features-showcase,
    .mission-statement,
    .play-info,
    .game-area,
    .gaming-tips,
    .play-reminder,
    .legal-section {
        padding: 40px 0;
    }

    .primary-footer {
        padding: 40px 20px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .game-embed,
    .full-game {
        height: 450px;
    }

    .page-hero {
        padding: 40px 20px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .legal-document {
        padding: 35px 20px;
    }
}
