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

body {
    font-family: 'Poppins', sans-serif;
    background: #0d0d0d;
    color: #f0f0f0;
    line-height: 1.6;
}

/* Age Verification Overlay */
.overlay-age {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.overlay-age.visible {
    display: flex;
}

.age-box {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    padding: 55px 45px;
    border-radius: 25px;
    text-align: center;
    max-width: 560px;
    box-shadow: 0 30px 80px rgba(124, 58, 237, 0.4);
}

.age-emoji {
    font-size: 72px;
    margin-bottom: 25px;
}

.age-box h2 {
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: 800;
}

.age-box p {
    font-size: 17px;
    margin-bottom: 15px;
}

.age-sub {
    font-size: 15px;
    opacity: 0.9;
    font-style: italic;
}

.age-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.btn-age-yes,
.btn-age-no {
    padding: 17px 48px;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-age-yes {
    background: #fde047;
    color: #7c3aed;
}

.btn-age-yes:hover {
    background: #fbbf24;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(253, 224, 71, 0.4);
}

.btn-age-no {
    background: #ef4444;
    color: white;
}

.btn-age-no:hover {
    background: #dc2626;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
}

/* Navigation */
.main-nav {
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #7c3aed;
}

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

.logo-link {
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-name {
    font-size: 26px;
    font-weight: 800;
    color: #a855f7;
}

.nav-toggler {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggler .bar {
    display: block;
    width: 30px;
    height: 3px;
    background: #a855f7;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggler.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.nav-toggler.open .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggler.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.link-active {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    transform: translateY(-2px);
}

/* Hero Section */
.page-hero {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%);
    padding: 90px 30px;
    text-align: center;
}

.hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-heading {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-text {
    font-size: 24px;
    margin-bottom: 35px;
    opacity: 0.95;
}

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

.badge {
    background: rgba(253, 224, 71, 0.2);
    padding: 14px 28px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #fde047;
}

/* Main Wrapper */
.main-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Alert Section */
.alert-section {
    padding: 70px 0;
}

.alerts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 35px;
}

.alert-box {
    padding: 38px;
    border-radius: 20px;
    border: 3px solid;
    transition: all 0.3s ease;
}

.alert-purple {
    background: rgba(124, 58, 237, 0.1);
    border-color: #7c3aed;
}

.alert-pink {
    background: rgba(168, 85, 247, 0.1);
    border-color: #a855f7;
}

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

.alert-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(124, 58, 237, 0.3);
}

.alert-emoji {
    font-size: 54px;
    margin-bottom: 22px;
}

.alert-box h3 {
    font-size: 25px;
    margin-bottom: 18px;
    font-weight: 700;
}

.alert-box p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.92;
}

/* Game Showcase */
.game-showcase {
    padding: 70px 0;
    background: rgba(17, 17, 17, 0.5);
    border-radius: 25px;
}

.showcase-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #a855f7;
}

.section-description {
    font-size: 19px;
    opacity: 0.85;
}

.game-display {
    max-width: 1150px;
    margin: 0 auto 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.6);
}

.game-embed {
    width: 100%;
    height: 680px;
    border: none;
    display: block;
}

.game-notes {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.note-item {
    background: rgba(124, 58, 237, 0.15);
    padding: 22px 28px;
    border-radius: 14px;
    border-left: 5px solid #a855f7;
    font-size: 15px;
}

.note-icon {
    font-size: 22px;
    margin-right: 8px;
}

/* Content Section */
.content-section {
    padding: 80px 0;
}

.content-two-col {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 65px;
    align-items: center;
}

.content-left h2 {
    font-size: 40px;
    margin-bottom: 28px;
    color: #fde047;
    font-weight: 800;
}

.content-left p {
    font-size: 16px;
    margin-bottom: 22px;
    line-height: 1.85;
    opacity: 0.92;
}

.content-highlights {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(124, 58, 237, 0.15);
    padding: 25px 30px;
    border-radius: 15px;
    border: 2px solid #7c3aed;
}

.highlight-number {
    font-size: 44px;
    font-weight: 900;
    color: #fde047;
    margin-bottom: 8px;
}

.highlight-label {
    font-size: 14px;
    opacity: 0.9;
}

.visual-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(124, 58, 237, 0.3);
}

/* Features Zone */
.features-zone {
    padding: 80px 0;
    background: rgba(17, 17, 17, 0.5);
    border-radius: 25px;
    text-align: center;
}

.zone-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 55px;
    color: #a855f7;
}

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

.feature-box {
    background: rgba(124, 58, 237, 0.1);
    padding: 38px;
    border-radius: 18px;
    border: 2px solid rgba(124, 58, 237, 0.4);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-6px);
    border-color: #a855f7;
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.3);
}

.feature-graphic {
    font-size: 52px;
    margin-bottom: 22px;
}

.feature-box h3 {
    font-size: 23px;
    margin-bottom: 16px;
    color: #fde047;
}

.feature-box p {
    font-size: 15px;
    line-height: 1.75;
    opacity: 0.9;
}

/* Play Page */
.play-hero {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    padding: 75px 30px;
    text-align: center;
}

.play-heading {
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 18px;
    color: #ffffff;
}

.play-subtext {
    font-size: 22px;
    opacity: 0.95;
}

.play-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.play-section {
    padding: 55px 0 85px;
}

.play-game-area {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.6);
    margin-bottom: 45px;
}

.play-game-frame {
    width: 100%;
    height: 780px;
    border: none;
    display: block;
}

.play-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 28px;
}

.play-info-card {
    background: rgba(124, 58, 237, 0.1);
    padding: 32px;
    border-radius: 16px;
    border: 2px solid rgba(124, 58, 237, 0.4);
}

.play-info-card h3 {
    font-size: 21px;
    margin-bottom: 16px;
    color: #a855f7;
}

.play-info-card p {
    font-size: 15px;
    line-height: 1.75;
    opacity: 0.9;
}

.play-warning {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.play-warning h3 {
    color: #ef4444;
}

/* Legal Pages */
.legal-main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 55px 30px 90px;
}

.legal-wrapper {
    background: rgba(17, 17, 17, 0.6);
    padding: 55px;
    border-radius: 22px;
    border: 2px solid rgba(124, 58, 237, 0.4);
}

.legal-heading {
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 18px;
    color: #a855f7;
    text-align: center;
}

.legal-updated {
    text-align: center;
    font-size: 14px;
    opacity: 0.75;
    margin-bottom: 50px;
}

.legal-content h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 22px;
    color: #fde047;
    font-weight: 700;
}

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

.legal-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 18px;
    color: #a855f7;
}

.legal-content p {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.85;
    opacity: 0.92;
}

.legal-content ul {
    margin: 20px 0 20px 38px;
    opacity: 0.92;
}

.legal-content li {
    margin-bottom: 14px;
    line-height: 1.8;
}

.legal-box {
    background: rgba(253, 224, 71, 0.15);
    padding: 38px;
    border-radius: 16px;
    margin-top: 48px;
    border-left: 6px solid #fde047;
}

.legal-box h3 {
    color: #fde047;
    margin-top: 0;
}

.disclaimer-alert {
    background: rgba(239, 68, 68, 0.12);
    padding: 38px;
    border-radius: 16px;
    margin-bottom: 38px;
    border-left: 6px solid #ef4444;
}

.disclaimer-alert h2 {
    color: #ef4444;
    margin-top: 0;
}

/* Footer */
.site-footer {
    background: #111111;
    padding: 65px 30px 28px;
    margin-top: 90px;
    border-top: 4px solid #7c3aed;
}

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

.footer-col h4 {
    font-size: 21px;
    margin-bottom: 22px;
    color: #fde047;
    font-weight: 700;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.88;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 14px;
}

.footer-menu a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    opacity: 1;
    color: #a855f7;
    padding-left: 10px;
}

.footer-bar {
    text-align: center;
    padding-top: 38px;
    border-top: 2px solid rgba(124, 58, 237, 0.3);
}

.footer-bar p {
    font-size: 14px;
    opacity: 0.8;
}

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

    .nav-links {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: rgba(17, 17, 17, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
        padding: 25px 0;
        gap: 0;
    }

    .nav-links.open {
        left: 0;
    }

    .nav-links li {
        margin: 12px 0;
    }

    .hero-heading {
        font-size: 38px;
    }

    .hero-text {
        font-size: 19px;
    }

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

    .game-embed {
        height: 480px;
    }

    .play-game-frame {
        height: 550px;
    }

    .content-two-col {
        grid-template-columns: 1fr;
    }

    .features-layout {
        grid-template-columns: 1fr;
    }

    .legal-wrapper {
        padding: 35px 25px;
    }

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

@media (max-width: 480px) {
    .age-box {
        padding: 40px 28px;
        margin: 20px;
    }

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

    .btn-age-yes,
    .btn-age-no {
        width: 100%;
    }

    .hero-heading {
        font-size: 32px;
    }

    .main-wrapper,
    .play-main {
        padding: 0 20px;
    }

    .legal-main {
        padding: 40px 20px 70px;
    }
}