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

body {
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
}

/* Age Verification */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 184, 166, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

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

.age-verification-box {
    background: #fff;
    padding: 50px 45px;
    border-radius: 25px;
    max-width: 520px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.age-verify-header {
    margin-bottom: 25px;
}

.age-icon-large {
    font-size: 75px;
    display: block;
    margin-bottom: 20px;
}

.age-verify-header h2 {
    font-size: 36px;
    color: #1a1a1a;
    font-weight: 900;
}

.age-verify-message {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 15px;
    font-weight: 500;
}

.age-verify-note {
    font-size: 15px;
    color: #6a6a6a;
    margin-bottom: 35px;
}

.age-verify-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-btn-accept,
.age-btn-decline {
    padding: 16px 35px;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.age-btn-accept {
    background: #14b8a6;
    color: #fff;
}

.age-btn-accept:hover {
    background: #0d9488;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(20, 184, 166, 0.4);
}

.age-btn-decline {
    background: #ef4444;
    color: #fff;
}

.age-btn-decline:hover {
    background: #dc2626;
}

/* Header */
.site-header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.brand-name {
    font-size: 30px;
    font-weight: 900;
    color: #14b8a6;
    letter-spacing: -0.5px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-line {
    width: 28px;
    height: 3px;
    background: #14b8a6;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.main-navigation {
    display: flex;
    gap: 35px;
}

.nav-item {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 3px solid transparent;
}

.nav-item:hover,
.nav-item.active {
    color: #14b8a6;
    border-bottom-color: #14b8a6;
}

/* Banner Section */
.banner-section {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    padding: 100px 40px;
    text-align: center;
    color: #fff;
}

.banner-content {
    max-width: 900px;
    margin: 0 auto;
}

.main-title {
    font-size: 58px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.main-subtitle {
    font-size: 21px;
    margin-bottom: 45px;
    font-weight: 500;
    opacity: 0.95;
}

.quick-info-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.info-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.badge-emoji {
    font-size: 24px;
}

.badge-label {
    font-weight: 700;
    font-size: 15px;
}

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

.about-section {
    padding: 90px 0;
    background: #f8fafc;
}

.section-title {
    font-size: 44px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.section-title.centered {
    text-align: center;
}

.about-description {
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.9;
    max-width: 950px;
}

/* Features Overview */
.features-overview {
    padding: 90px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.feature-box {
    padding: 40px 30px;
    background: #f8fafc;
    border-radius: 18px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.feature-box:hover {
    border-color: #14b8a6;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(20, 184, 166, 0.15);
}

.feature-icon {
    font-size: 55px;
    margin-bottom: 22px;
}

.feature-title {
    font-size: 25px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.feature-desc {
    color: #5a5a5a;
    line-height: 1.8;
    font-size: 16px;
}

/* Critical Info Section */
.critical-info-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.info-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.info-panel {
    padding: 35px 30px;
    border-radius: 15px;
    border-left: 6px solid;
}

.panel-red {
    background: rgba(239, 68, 68, 0.08);
    border-color: #ef4444;
}

.panel-green {
    background: rgba(34, 197, 94, 0.08);
    border-color: #22c55e;
}

.panel-orange {
    background: rgba(249, 115, 22, 0.08);
    border-color: #f97316;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.panel-emoji {
    font-size: 32px;
}

.panel-header h3 {
    font-size: 23px;
    font-weight: 700;
    color: #1a1a1a;
}

.info-panel p {
    color: #4a4a4a;
    line-height: 1.8;
    font-size: 16px;
}

/* Game Display Section */
.game-display-section {
    padding: 90px 0;
    background: #fff;
}

.game-tagline {
    text-align: center;
    font-size: 18px;
    color: #6a6a6a;
    margin-bottom: 45px;
}

.game-display-frame {
    background: #f8fafc;
    padding: 20px;
    border-radius: 18px;
    border: 4px solid #14b8a6;
    box-shadow: 0 10px 35px rgba(20, 184, 166, 0.1);
}

.game-iframe-embed {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 12px;
}

.game-helper-text {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 35px;
    padding: 22px 30px;
    background: rgba(20, 184, 166, 0.08);
    border-radius: 12px;
    border: 2px solid #14b8a6;
}

.helper-icon {
    font-size: 30px;
}

.game-helper-text p {
    color: #4a4a4a;
    font-weight: 500;
    line-height: 1.7;
}

/* Advantages Section */
.advantages-section {
    padding: 90px 0;
    background: #f8fafc;
}

.advantages-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.advantage-card {
    display: flex;
    gap: 25px;
    padding: 35px 30px;
    background: #fff;
    border-radius: 15px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    border-color: #14b8a6;
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.12);
}

.advantage-badge {
    width: 60px;
    height: 60px;
    background: #14b8a6;
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.advantage-details h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.advantage-details p {
    color: #5a5a5a;
    line-height: 1.8;
}

/* Play Page */
.play-banner {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    padding: 70px 40px;
    text-align: center;
    color: #fff;
}

.play-title {
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 15px;
}

.play-subtitle {
    font-size: 19px;
    font-weight: 500;
}

.gameplay-section {
    padding: 80px 0;
    background: #fff;
}

.game-display-fullscreen {
    background: #f8fafc;
    padding: 18px;
    border-radius: 18px;
    border: 4px solid #14b8a6;
    margin-bottom: 60px;
}

.game-iframe-fullscreen {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 12px;
}

.game-guide {
    margin-bottom: 50px;
}

.guide-title {
    font-size: 38px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 35px;
    text-align: center;
}

.guide-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.guide-card {
    background: #f8fafc;
    padding: 32px 28px;
    border-radius: 15px;
    border: 2px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.guide-card:hover {
    border-color: #14b8a6;
}

.guide-icon {
    font-size: 42px;
    display: block;
    margin-bottom: 18px;
}

.guide-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.guide-card p {
    color: #5a5a5a;
    line-height: 1.7;
}

.play-warning {
    background: rgba(239, 68, 68, 0.08);
    border: 3px solid #ef4444;
    border-radius: 15px;
    padding: 38px 35px;
}

.warning-title {
    font-size: 27px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 22px;
}

.warning-content p {
    color: #4a4a4a;
    margin-bottom: 14px;
    line-height: 1.8;
    font-size: 16px;
}

/* Legal Pages */
.legal-banner {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    padding: 70px 40px;
    text-align: center;
    color: #fff;
}

.legal-title {
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 12px;
}

.legal-updated {
    font-size: 17px;
    opacity: 0.9;
}

.legal-section {
    padding: 80px 0;
    background: #f8fafc;
}

.legal-content-box {
    background: #fff;
    padding: 55px 50px;
    border-radius: 18px;
    border: 3px solid #e5e7eb;
}

.legal-content-box h2 {
    font-size: 34px;
    font-weight: 900;
    color: #1a1a1a;
    margin-top: 45px;
    margin-bottom: 22px;
}

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

.legal-content-box h3 {
    font-size: 26px;
    font-weight: 700;
    color: #2a2a2a;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content-box p {
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.9;
    font-size: 16px;
}

.legal-content-box ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content-box li {
    color: #4a4a4a;
    margin-bottom: 10px;
    line-height: 1.8;
}

.terms-highlight-box,
.privacy-summary-panel,
.disclaimer-summary-panel {
    background: rgba(20, 184, 166, 0.08);
    border: 3px solid #14b8a6;
    border-radius: 15px;
    padding: 35px;
    margin-top: 45px;
}

.terms-highlight-box h3,
.privacy-summary-panel h3,
.disclaimer-summary-panel h3 {
    margin-top: 0;
    font-size: 27px;
    color: #1a1a1a;
    font-weight: 900;
}

.urgent-notice {
    background: rgba(239, 68, 68, 0.1);
    border: 3px solid #ef4444;
    border-radius: 15px;
    padding: 38px;
    margin-bottom: 45px;
}

.urgent-notice h2 {
    margin-top: 0;
}

.acknowledgment-box {
    background: rgba(20, 184, 166, 0.12);
    border: 3px solid #14b8a6;
    border-radius: 15px;
    padding: 35px;
    margin-top: 45px;
    text-align: center;
}

.acknowledgment-box p {
    margin: 0;
    font-size: 18px;
}

/* Footer */
.page-footer {
    background: #1a1a1a;
    color: #d0d0d0;
    padding: 70px 40px 35px 40px;
}

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

.footer-heading {
    color: #14b8a6;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-text {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 18px;
}

.footer-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-list a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link-list a:hover {
    color: #14b8a6;
}

.footer-copyright {
    text-align: center;
    padding-top: 35px;
    border-top: 2px solid #333;
}

.footer-copyright p {
    color: #888;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: #fff;
        width: 100%;
        padding: 30px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 0;
    }

    .main-navigation.active {
        left: 0;
    }

    .nav-item {
        padding: 15px 40px;
        border-bottom: none;
        border-left: 4px solid transparent;
    }

    .main-title {
        font-size: 40px;
    }

    .main-subtitle {
        font-size: 18px;
    }

    .quick-info-badges {
        flex-direction: column;
        align-items: center;
    }

    .info-badge {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .section-title {
        font-size: 34px;
    }

    .game-iframe-embed,
    .game-iframe-fullscreen {
        height: 500px;
    }

    .advantage-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .features-grid,
    .info-panels,
    .guide-cards,
    .advantages-layout {
        grid-template-columns: 1fr;
    }

    .legal-content-box {
        padding: 35px 25px;
    }

    .age-verification-box {
        margin: 20px;
        padding: 35px 28px;
    }

    .age-verify-actions {
        flex-direction: column;
    }

    .age-btn-accept,
    .age-btn-decline {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .game-iframe-embed,
    .game-iframe-fullscreen {
        height: 400px;
    }

    .header-container,
    .section-container,
    .banner-section,
    .page-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
}