* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0f1a;
    color: #e8e8e8;
    line-height: 1.7;
}

.main-header {
    background: #111827;
    border-bottom: 3px solid #10B981;
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.header-wrapper {
    max-width: 100%;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #10B981;
}

.brand svg {
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.6));
}

.main-nav {
    display: flex;
    gap: 35px;
}

.main-nav a {
    color: #d1d1d1;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav a:hover {
    color: #10B981;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #10B981;
    border-radius: 2px;
    transition: all 0.3s;
}

.content {
    width: 100%;
}

.banner {
    padding: 100px 30px;
    text-align: center;
    background: linear-gradient(180deg, #0f1722 0%, #0a0f1a 100%);
}

.banner-content h2 {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.tagline {
    font-size: 24px;
    color: #b0b0b0;
    margin-bottom: 35px;
}

.feature-tags {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10B981;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
}

.section-wrapper {
    max-width: 100%;
    padding: 0 30px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #10B981;
}

.game-showcase {
    padding: 80px 0;
    background: #0f1722;
}

.game-embed {
    max-width: 1000px;
    margin: 0 auto;
    background: #111827;
    padding: 25px;
    border-radius: 12px;
    border: 3px solid #10B981;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.2);
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 8px;
}

.game-description {
    max-width: 900px;
    margin: 35px auto 0;
    text-align: center;
    font-size: 20px;
    color: #c0c0c0;
}

.benefits {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.benefit-card {
    background: #111827;
    padding: 45px;
    border-radius: 12px;
    border: 2px solid rgba(16, 185, 129, 0.2);
    transition: all 0.4s;
}

.benefit-card:hover {
    border-color: #10B981;
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.3);
}

.benefit-emoji {
    font-size: 54px;
    margin-bottom: 25px;
}

.benefit-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #fff;
}

.benefit-card p {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 17px;
}

.disclaimer-section {
    padding: 80px 0;
    background: #0f1722;
}

.important-notice {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(16, 185, 129, 0.05);
    border: 3px solid #10B981;
    border-radius: 12px;
    padding: 45px;
}

.important-notice h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #10B981;
}

.notice-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.notice-item strong {
    display: block;
    font-size: 20px;
    color: #10B981;
    margin-bottom: 10px;
}

.notice-item p {
    color: #c0c0c0;
    line-height: 1.8;
    font-size: 17px;
}

.about-platform {
    padding: 80px 0;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content p {
    font-size: 18px;
    color: #c0c0c0;
    margin-bottom: 25px;
    line-height: 1.9;
}

.highlights {
    padding: 80px 0;
    background: #0f1722;
}

.highlights-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight {
    background: #111827;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.highlight-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #10B981;
    margin-bottom: 10px;
}

.highlight-label {
    display: block;
    font-size: 16px;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.play-banner {
    padding: 80px 30px 50px;
    text-align: center;
    background: linear-gradient(180deg, #0f1722 0%, #0a0f1a 100%);
}

.play-banner h2 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.play-banner p {
    font-size: 22px;
    color: #b0b0b0;
}

.gameplay {
    padding: 60px 0 80px;
}

.game-box {
    max-width: 1300px;
    margin: 0 auto;
    background: #111827;
    padding: 25px;
    border-radius: 12px;
    border: 3px solid #10B981;
}

.game-player {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 8px;
}

.instructions {
    padding: 80px 0;
    background: #0f1722;
}

.instructions-box {
    max-width: 1200px;
    margin: 0 auto;
    background: #111827;
    padding: 50px;
    border-radius: 12px;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.instructions-box h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #10B981;
    text-align: center;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.instruction h4 {
    font-size: 20px;
    color: #10B981;
    margin-bottom: 12px;
}

.instruction p {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 16px;
}

.play-reminder {
    padding: 50px 0 80px;
}

.reminder-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(16, 185, 129, 0.1);
    border: 3px solid #10B981;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.reminder-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

.reminder-card p {
    font-size: 18px;
    color: #c0c0c0;
    line-height: 1.8;
}

.legal-banner {
    padding: 80px 30px 50px;
    text-align: center;
    background: #0f1722;
}

.legal-banner h2 {
    font-size: 48px;
    font-weight: 700;
    color: #10B981;
    margin-bottom: 10px;
}

.updated {
    font-size: 16px;
    color: #888;
}

.legal-body {
    padding: 60px 0 80px;
}

.terms-document {
    max-width: 1000px;
    margin: 0 auto;
    background: #111827;
    padding: 55px;
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.terms-document h3 {
    font-size: 28px;
    margin-top: 45px;
    margin-bottom: 20px;
    color: #10B981;
}

.terms-document h3:first-child {
    margin-top: 0;
}

.terms-document h4 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #c0c0c0;
}

.terms-document p {
    margin-bottom: 18px;
    color: #a8a8a8;
    line-height: 1.8;
    font-size: 17px;
}

.terms-document ul {
    margin: 18px 0 18px 35px;
    color: #a8a8a8;
}

.terms-document li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.alert-box {
    background: rgba(16, 185, 129, 0.1);
    border: 3px solid #10B981;
    border-radius: 10px;
    padding: 35px;
    margin-bottom: 45px;
}

.alert-box h3 {
    margin-top: 0 !important;
    margin-bottom: 15px;
}

.final-notice {
    background: rgba(16, 185, 129, 0.15);
    border-left: 5px solid #10B981;
    padding: 25px;
    margin-top: 45px;
    border-radius: 6px;
}

.final-notice p {
    margin-bottom: 0;
    font-weight: 600;
    color: #fff;
    font-size: 18px;
}

.site-footer {
    background: #111827;
    padding: 60px 0 30px;
    border-top: 3px solid #10B981;
}

.footer-wrapper {
    max-width: 100%;
    padding: 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 45px;
    max-width: 1300px;
    margin: 0 auto 40px;
}

.footer-col h4 {
    color: #10B981;
    margin-bottom: 18px;
    font-size: 20px;
}

.footer-col p {
    color: #b0b0b0;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #10B981;
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    color: #888;
    font-size: 15px;
}

.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-modal.hidden {
    display: none;
}

.age-modal-box {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    padding: 55px;
    border-radius: 18px;
    text-align: center;
    max-width: 550px;
    border: 4px solid #10B981;
    box-shadow: 0 0 60px rgba(16, 185, 129, 0.5);
}

.age-icon {
    font-size: 72px;
    margin-bottom: 25px;
}

.age-modal-box h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 32px;
}

.age-modal-box p {
    color: #b0b0b0;
    margin-bottom: 18px;
    font-size: 18px;
}

.age-warning {
    color: #10B981;
    font-weight: 600;
}

.age-disclaimer {
    font-size: 16px;
    margin-bottom: 35px !important;
}

.age-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-yes,
.btn-no {
    padding: 16px 35px;
    border: none;
    border-radius: 10px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-yes {
    background: #10B981;
    color: #fff;
}

.btn-yes:hover {
    background: #059669;
    transform: scale(1.06);
}

.btn-no {
    background: rgba(255, 255, 255, 0.08);
    color: #b0b0b0;
}

.btn-no:hover {
    background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        background: #111827;
        flex-direction: column;
        padding: 25px 30px;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s;
        border-bottom: 3px solid #10B981;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .main-nav a {
        padding: 18px 0;
        border-bottom: 1px solid rgba(16, 185, 129, 0.2);
    }

    .banner-content h2 {
        font-size: 36px;
    }

    .tagline {
        font-size: 20px;
    }

    .feature-tags {
        flex-direction: column;
        align-items: stretch;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .highlights-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .game-iframe {
        height: 500px;
    }

    .game-player {
        height: 550px;
    }

    .instructions-grid {
        grid-template-columns: 1fr;
    }

    .terms-document {
        padding: 35px 25px;
    }

    .age-modal-box {
        margin: 20px;
        padding: 35px 25px;
    }
}

@media (max-width: 480px) {
    .banner-content h2 {
        font-size: 28px;
    }

    .tagline {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .benefit-card {
        padding: 30px;
    }

    .highlights-container {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 450px;
    }

    .game-player {
        height: 500px;
    }
}