* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #1a0033;
    --bg-mid: #2d0052;
    --accent-purple: #b026ff;
    --accent-pink: #ff0080;
    --accent-yellow: #ffd100;
    --text-white: #ffffff;
    --text-light: #e0d4f0;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-mid) 100%);
    color: var(--text-white);
    line-height: 1.7;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Age Gate */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 0, 51, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(8px);
}

.age-gate.hidden {
    display: none;
}

.age-gate-container {
    background: linear-gradient(135deg, var(--bg-mid) 0%, var(--bg-dark) 100%);
    border: 3px solid var(--accent-purple);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 0 50px rgba(176, 38, 255, 0.5);
}

.age-gate-icon {
    font-size: 70px;
    margin-bottom: 25px;
}

.age-gate-container h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--accent-purple);
}

.age-gate-container p {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.age-gate-subtext {
    font-size: 15px !important;
    font-style: italic;
}

.age-gate-actions {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.age-btn {
    flex: 1;
    padding: 16px 30px;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-btn-yes {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    color: var(--text-white);
}

.age-btn-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(176, 38, 255, 0.5);
}

.age-btn-no {
    background: #3a3a3a;
    color: var(--text-white);
}

.age-btn-no:hover {
    background: #4a4a4a;
}

/* Header */
.main-header {
    background: rgba(26, 0, 51, 0.9);
    border-bottom: 2px solid var(--accent-purple);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-icon {
    width: 50px;
    height: 50px;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav {
    display: flex;
    gap: 35px;
}

.nav-item {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item:hover,
.nav-item.active {
    color: var(--accent-purple);
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink));
    border-radius: 2px;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-line {
    width: 32px;
    height: 3px;
    background: var(--accent-purple);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-btn.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.menu-btn.active .menu-line:nth-child(2) {
    opacity: 0;
}

.menu-btn.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: var(--bg-mid);
    border-bottom: 2px solid var(--accent-purple);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    max-height: 400px;
}

.mobile-menu-item {
    display: block;
    padding: 18px 40px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(176, 38, 255, 0.2);
    transition: all 0.3s ease;
}

.mobile-menu-item:hover {
    background: rgba(176, 38, 255, 0.2);
    color: var(--accent-purple);
    padding-left: 50px;
}

/* Hero Banner */
.hero-banner {
    padding: 120px 40px;
    text-align: center;
    background: radial-gradient(circle, rgba(176, 38, 255, 0.2), transparent);
}

.hero-content h1 {
    font-size: 58px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-light);
    max-width: 750px;
    margin: 0 auto 45px;
}

.btn-hero {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    color: var(--text-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(176, 38, 255, 0.4);
}

.btn-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(176, 38, 255, 0.6);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 45px;
    background: transparent;
    color: var(--accent-purple);
    border: 2px solid var(--accent-purple);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--accent-purple);
    color: var(--text-white);
    transform: translateY(-2px);
}

/* Wrapper */
.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.legal-wrapper {
    max-width: 950px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-heading {
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Highlights Section */
.highlights-section {
    background: rgba(45, 0, 82, 0.4);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(176, 38, 255, 0.1), rgba(255, 0, 128, 0.1));
    border: 2px solid var(--accent-purple);
    border-radius: 15px;
    padding: 40px;
    transition: all 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(176, 38, 255, 0.4);
    border-color: var(--accent-pink);
}

.highlight-emoji {
    font-size: 55px;
    margin-bottom: 20px;
}

.highlight-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent-yellow);
}

.highlight-box p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Info Section */
.info-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.info-panel {
    background: var(--bg-mid);
    border-left: 5px solid var(--accent-purple);
    border-radius: 10px;
    padding: 30px;
}

.info-panel h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--accent-pink);
}

.info-panel p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Game Display Section */
.game-display-section {
    background: rgba(45, 0, 82, 0.4);
}

.game-lead {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    max-width: 850px;
    margin: 0 auto 45px;
}

.game-wrapper {
    margin: 0 auto;
}

.game-frame-container {
    max-width: 950px;
    margin: 0 auto;
    border: 4px solid var(--accent-purple);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(176, 38, 255, 0.5);
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.game-cta-area {
    text-align: center;
    margin-top: 45px;
}

/* Benefits Section */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.benefit-item {
    background: rgba(45, 0, 82, 0.5);
    border: 1px solid rgba(176, 38, 255, 0.3);
    border-radius: 10px;
    padding: 25px;
    font-size: 16px;
    color: var(--text-light);
}

.benefit-item strong {
    color: var(--accent-purple);
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
}

/* Responsibility Section */
.responsibility-text {
    font-size: 18px;
    color: var(--text-light);
    max-width: 950px;
    margin: 0 auto 25px;
    text-align: center;
    line-height: 1.8;
}

/* Footer */
.main-footer {
    background: var(--bg-dark);
    padding: 60px 0 30px;
    border-top: 3px solid var(--accent-purple);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-brand-icon {
    width: 38px;
    height: 38px;
}

.footer-brand span {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-column p {
    font-size: 15px;
    color: var(--text-light);
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--accent-yellow);
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: var(--accent-purple);
}

.footer-base {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(176, 38, 255, 0.3);
}

.footer-base p {
    font-size: 14px;
    color: var(--text-light);
}

/* Page Title Section */
.page-title-section {
    padding: 80px 40px 60px;
    text-align: center;
    background: radial-gradient(circle, rgba(176, 38, 255, 0.2), transparent);
}

.page-title-section h1 {
    font-size: 48px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-title-section p {
    font-size: 20px;
    color: var(--text-light);
}

/* Play Info Section */
.play-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.play-info-card {
    background: var(--bg-mid);
    border: 2px solid rgba(176, 38, 255, 0.4);
    border-radius: 12px;
    padding: 30px;
}

.play-info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--accent-yellow);
}

.play-info-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Main Play Section */
.main-play-section {
    background: rgba(45, 0, 82, 0.4);
}

.main-game-container {
    max-width: 1100px;
    margin: 0 auto;
    border: 4px solid var(--accent-purple);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(176, 38, 255, 0.5);
}

.main-game-iframe {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

/* Play Disclaimer Section */
.play-disclaimer-section {
    padding: 60px 0;
}

.play-disclaimer-box {
    max-width: 950px;
    margin: 0 auto;
    background: rgba(45, 0, 82, 0.6);
    border: 2px solid var(--accent-pink);
    border-radius: 12px;
    padding: 35px;
}

.play-disclaimer-box h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--accent-purple);
}

.play-disclaimer-box p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Legal Section */
.legal-section h2 {
    font-size: 30px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--accent-purple);
}

.legal-section h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--accent-pink);
}

.legal-section p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-section ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-section li {
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.7;
}

.terms-notice,
.privacy-summary,
.disclaimer-acknowledgment {
    margin-top: 50px;
    padding: 35px;
    background: rgba(176, 38, 255, 0.15);
    border: 2px solid var(--accent-purple);
    border-radius: 12px;
}

.disclaimer-box {
    margin: 40px 0;
    padding: 35px;
    border-radius: 12px;
    border-left: 6px solid;
}

.disclaimer-box.important {
    background: rgba(255, 209, 0, 0.1);
    border-color: var(--accent-yellow);
}

.disclaimer-box.critical {
    background: rgba(255, 0, 128, 0.1);
    border-color: var(--accent-pink);
}

.disclaimer-box.notice {
    background: rgba(176, 38, 255, 0.1);
    border-color: var(--accent-purple);
}

.disclaimer-box h2 {
    margin-top: 0 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .header-content {
        padding: 0 20px;
    }

    .hero-banner {
        padding: 80px 20px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .wrapper,
    .legal-wrapper {
        padding: 0 20px;
    }

    .section {
        padding: 50px 0;
    }

    .section-heading {
        font-size: 32px;
    }

    .page-title-section {
        padding: 60px 20px 40px;
    }

    .page-title-section h1 {
        font-size: 36px;
    }

    .highlights-grid,
    .info-panels,
    .benefits-list,
    .play-info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .game-iframe {
        height: 500px;
    }

    .main-game-iframe {
        height: 550px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .age-gate-container {
        margin: 20px;
        padding: 40px 25px;
    }

    .age-gate-actions {
        flex-direction: column;
    }
}
