* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #0F0A1E;
    color: #E0E7FF;
    line-height: 1.6;
}

.section-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

.top-header {
    background: rgba(15, 10, 30, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #7C3AED;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-header-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-title {
    font-size: 26px;
    font-weight: 900;
    background: linear-gradient(135deg, #D946EF 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.nav-burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.burger-line {
    width: 30px;
    height: 3px;
    background: linear-gradient(135deg, #D946EF 0%, #7C3AED 100%);
    border-radius: 2px;
    transition: 0.3s;
}

.primary-nav {
    display: flex;
    gap: 30px;
}

.nav-item {
    color: #E0E7FF;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    padding: 8px 16px;
    border-radius: 6px;
}

.nav-item:hover,
.nav-item.active {
    background: linear-gradient(135deg, #D946EF 0%, #7C3AED 100%);
    color: #ffffff;
}

.hero-area {
    background: linear-gradient(135deg, #1a0f2e 0%, #0F0A1E 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(217, 70, 239, 0.15), transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(124, 58, 237, 0.15), transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-badge {
    display: inline-block;
    background: rgba(217, 70, 239, 0.2);
    color: #D946EF;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid #D946EF;
    margin-bottom: 25px;
}

.hero-heading {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #D946EF 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheading {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 35px;
    font-weight: 300;
}

.hero-cta {
    margin-top: 30px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #D946EF 0%, #7C3AED 100%);
    color: #ffffff;
    padding: 16px 45px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(217, 70, 239, 0.4);
}

.about-section {
    padding: 80px 0;
    background: #1a0f2e;
}

.section-heading {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #D946EF 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-heading.centered {
    text-align: center;
}

.about-paragraph {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 25px;
    font-weight: 300;
}

.pillars-section {
    padding: 80px 0;
    background: #0F0A1E;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.pillar-card {
    background: rgba(217, 70, 239, 0.05);
    border: 2px solid rgba(124, 58, 237, 0.3);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.pillar-card:hover {
    border-color: #D946EF;
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(217, 70, 239, 0.2);
}

.pillar-icon {
    font-size: 52px;
    margin-bottom: 20px;
}

.pillar-title {
    font-size: 24px;
    font-weight: 700;
    color: #D946EF;
    margin-bottom: 15px;
}

.pillar-description {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
}

.game-display-section {
    padding: 80px 0;
    background: #1a0f2e;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 45px;
}

.game-display-wrapper {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #7C3AED;
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.3);
}

.game-display-frame {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.advantages-section {
    padding: 80px 0;
    background: #0F0A1E;
}

.advantages-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.advantage-block {
    background: rgba(124, 58, 237, 0.08);
    padding: 35px;
    border-radius: 10px;
    border-left: 4px solid #7C3AED;
    position: relative;
}

.advantage-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(217, 70, 239, 0.2);
}

.advantage-heading {
    font-size: 22px;
    font-weight: 700;
    color: #D946EF;
    margin-bottom: 15px;
}

.advantage-text {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
}

.alert-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%);
}

.alert-box {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    border: 2px solid #D946EF;
    border-radius: 12px;
    background: rgba(15, 10, 30, 0.7);
}

.alert-title {
    font-size: 32px;
    font-weight: 900;
    color: #D946EF;
    margin-bottom: 20px;
}

.alert-message {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 300;
}

.play-header-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #1a0f2e 0%, #0F0A1E 100%);
    text-align: center;
}

.play-main-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #D946EF 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.play-intro-text {
    font-size: 19px;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

.play-content-section {
    padding: 60px 0 80px;
    background: #1a0f2e;
}

.game-instructions {
    background: rgba(124, 58, 237, 0.08);
    padding: 35px;
    border-radius: 10px;
    border: 2px solid rgba(124, 58, 237, 0.3);
    margin-bottom: 40px;
}

.instructions-title {
    font-size: 28px;
    font-weight: 700;
    color: #D946EF;
    margin-bottom: 20px;
}

.instructions-list {
    list-style: none;
}

.instructions-list li {
    font-size: 17px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    font-weight: 300;
}

.instructions-list li:last-child {
    border-bottom: none;
}

.game-play-wrapper {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #7C3AED;
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.3);
}

.game-play-frame {
    width: 100%;
    height: 800px;
    border: none;
    display: block;
}

.play-disclaimer {
    background: rgba(217, 70, 239, 0.1);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #D946EF;
    margin-top: 40px;
}

.play-disclaimer p {
    font-size: 17px;
    font-weight: 300;
}

.legal-header-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #1a0f2e 0%, #0F0A1E 100%);
    text-align: center;
}

.legal-page-title {
    font-size: 46px;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #D946EF 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-update-date {
    font-size: 16px;
    font-weight: 300;
}

.legal-content-section {
    padding: 60px 0 80px;
    background: #1a0f2e;
}

.legal-document {
    max-width: 950px;
    margin: 0 auto;
}

.legal-document h3 {
    font-size: 28px;
    font-weight: 700;
    color: #D946EF;
    margin: 40px 0 20px;
}

.legal-document h3:first-child {
    margin-top: 0;
}

.legal-document p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 22px;
    font-weight: 300;
}

.bottom-footer {
    background: #0a0616;
    border-top: 2px solid #7C3AED;
    padding: 70px 0 30px;
    margin-top: 80px;
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-heading {
    font-size: 22px;
    font-weight: 700;
    color: #D946EF;
    margin-bottom: 20px;
}

.footer-text {
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.7;
}

.support-links,
.legal-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-link,
.legal-link {
    color: #E0E7FF;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
}

.support-link:hover,
.legal-link:hover {
    color: #D946EF;
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(124, 58, 237, 0.3);
    font-size: 15px;
    font-weight: 300;
}

.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-modal.show {
    display: flex;
}

.age-modal-inner {
    background: linear-gradient(135deg, #1a0f2e 0%, #0F0A1E 100%);
    padding: 50px 45px;
    border-radius: 15px;
    max-width: 540px;
    text-align: center;
    border: 3px solid #7C3AED;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.5);
}

.age-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.age-modal-inner h2 {
    font-size: 32px;
    font-weight: 900;
    color: #D946EF;
    margin-bottom: 20px;
}

.age-modal-inner p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 300;
}

.age-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-verify,
.btn-exit {
    padding: 15px 35px;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s;
}

.btn-verify {
    background: linear-gradient(135deg, #D946EF 0%, #7C3AED 100%);
    color: #ffffff;
}

.btn-exit {
    background: rgba(124, 58, 237, 0.2);
    color: #E0E7FF;
    border: 2px solid #7C3AED;
}

.btn-verify:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 70, 239, 0.4);
}

.btn-exit:hover {
    background: rgba(124, 58, 237, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .nav-burger {
        display: flex;
    }

    .primary-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(15, 10, 30, 0.98);
        flex-direction: column;
        padding: 30px 0;
        transition: left 0.3s;
        border-bottom: 2px solid #7C3AED;
    }

    .primary-nav.open {
        left: 0;
    }

    .hero-heading {
        font-size: 38px;
    }

    .hero-subheading {
        font-size: 17px;
    }

    .section-heading {
        font-size: 32px;
    }

    .game-display-frame {
        height: 550px;
    }

    .game-play-frame {
        height: 650px;
    }

    .advantages-layout {
        grid-template-columns: 1fr;
    }

    .play-main-title,
    .legal-page-title {
        font-size: 36px;
    }

    .age-modal-inner {
        margin: 20px;
        padding: 35px 25px;
    }

    .age-actions {
        flex-direction: column;
    }

    .btn-verify,
    .btn-exit {
        width: 100%;
    }
}
