* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #F97316;
    --dark-orange: #EA580C;
    --light-orange: #FB923C;
    --amber: #FBBF24;
    --dark-bg: #1C1917;
    --sidebar-bg: #292524;
    --content-bg: #0A0A0A;
    --card-bg: #27272A;
    --text-light: #FAFAF9;
    --text-gray: #D6D3D1;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--content-bg);
    color: var(--text-light);
    display: flex;
    min-height: 100vh;
}

/* Age Verification Overlay */
.age-verify-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-verify-overlay.active {
    display: flex;
}

.age-verify-box {
    background: var(--sidebar-bg);
    padding: 50px 40px;
    border-radius: 12px;
    max-width: 550px;
    border: 3px solid var(--primary-orange);
    box-shadow: 0 0 60px rgba(249, 115, 22, 0.6);
}

.age-verify-header {
    text-align: center;
    margin-bottom: 25px;
}

.verify-icon {
    font-size: 70px;
    display: block;
    margin-bottom: 15px;
}

.age-verify-header h2 {
    font-size: 36px;
    color: var(--amber);
    font-weight: 700;
}

.age-verify-body {
    margin-bottom: 35px;
    text-align: center;
}

.age-verify-body p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: var(--text-gray);
}

.verify-notice {
    color: var(--light-orange) !important;
    font-weight: 600;
}

.age-verify-actions {
    display: flex;
    gap: 15px;
}

.verify-btn {
    flex: 1;
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.yes-btn {
    background: var(--primary-orange);
    color: white;
}

.yes-btn:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
}

.no-btn {
    background: #DC2626;
    color: white;
}

.no-btn:hover {
    background: #B91C1C;
    transform: translateY(-2px);
}

/* Sidebar */
.sidebar {
    width: 280px;
    background: var(--sidebar-bg);
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    border-right: 3px solid var(--primary-orange);
    z-index: 1000;
}

.sidebar-header {
    padding: 0 30px 30px;
    border-bottom: 2px solid rgba(249, 115, 22, 0.3);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    font-size: 42px;
}

.brand-name {
    font-size: 32px;
    font-weight: 700;
    color: var(--amber);
    letter-spacing: 2px;
}

.sidebar-nav {
    flex: 1;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 30px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.nav-link:hover {
    background: rgba(249, 115, 22, 0.1);
    color: var(--light-orange);
    border-left-color: var(--primary-orange);
}

.nav-link.active {
    background: rgba(249, 115, 22, 0.15);
    color: var(--amber);
    border-left-color: var(--primary-orange);
}

.nav-icon {
    font-size: 24px;
}

.sidebar-footer {
    padding: 20px 30px;
    border-top: 2px solid rgba(249, 115, 22, 0.3);
    text-align: center;
}

.sidebar-footer-text {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 600;
    line-height: 1.5;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 2000;
    background: var(--primary-orange);
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: white;
    transition: all 0.3s;
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: 280px;
    min-height: 100vh;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, var(--dark-orange) 0%, var(--primary-orange) 50%, var(--amber) 100%);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px
    );
}

.hero-overlay {
    position: relative;
    z-index: 1;
}

.hero-heading {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-highlights {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.highlight-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    backdrop-filter: blur(5px);
}

/* Sections */
.notices-section,
.game-showcase,
.benefits-section,
.cta-banner {
    padding: 70px 40px;
}

.section-heading {
    font-size: 42px;
    font-weight: 700;
    color: var(--amber);
    margin-bottom: 15px;
    text-align: center;
}

.section-subheading {
    text-align: center;
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 50px;
}

/* Notices */
.notices-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.notice-box {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-orange);
    transition: transform 0.3s;
}

.notice-box:hover {
    transform: translateX(10px);
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.notice-emoji {
    font-size: 40px;
}

.notice-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--light-orange);
}

.notice-box p {
    line-height: 1.8;
    color: var(--text-gray);
}

/* Game Showcase */
.game-showcase {
    background: var(--dark-bg);
}

.game-embed-container {
    max-width: 1000px;
    margin: 0 auto 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(249, 115, 22, 0.4);
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
}

.game-notes {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.game-note {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    border-top: 3px solid var(--primary-orange);
    color: var(--text-gray);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background: var(--card-bg);
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: scale(1.05);
    background: var(--sidebar-bg);
}

.benefit-icon {
    font-size: 55px;
    margin-bottom: 20px;
}

.benefit-item h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--amber);
    margin-bottom: 15px;
}

.benefit-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    text-align: center;
}

.cta-banner h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-link {
    display: inline-block;
    padding: 20px 50px;
    background: var(--dark-bg);
    color: var(--amber);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.cta-link:hover {
    background: var(--sidebar-bg);
    transform: scale(1.1);
}

/* Play Page */
.play-page-header {
    background: var(--dark-bg);
    padding: 60px 40px;
    text-align: center;
    border-bottom: 3px solid var(--primary-orange);
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--amber);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-gray);
}

.play-instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 50px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.instruction-box {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border-top: 4px solid var(--primary-orange);
}

.instruction-icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: block;
}

.instruction-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--light-orange);
    margin-bottom: 15px;
}

.instruction-box p {
    color: var(--text-gray);
    line-height: 1.7;
}

.play-game-container {
    max-width: 1100px;
    margin: 0 auto 40px;
    padding: 0 40px;
}

.play-game-frame {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(249, 115, 22, 0.4);
}

.play-reminder {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 25px 40px;
    background: var(--card-bg);
    border-left: 5px solid var(--amber);
    text-align: center;
}

.play-reminder p {
    color: var(--text-gray);
    font-size: 18px;
    line-height: 1.7;
}

/* Legal Pages */
.legal-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
}

.legal-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--amber);
    margin-bottom: 10px;
}

.legal-date {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.legal-section {
    margin-bottom: 45px;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--light-orange);
    margin-bottom: 20px;
}

.legal-section p {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 18px;
}

.legal-section ul {
    margin-left: 25px;
    color: var(--text-gray);
}

.legal-section ul li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.legal-section a {
    color: var(--light-orange);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.warning-section {
    background: rgba(249, 115, 22, 0.1);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-orange);
}

/* Footer */
.site-footer {
    background: var(--sidebar-bg);
    padding: 60px 40px 30px;
    border-top: 3px solid var(--primary-orange);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-col h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--amber);
    margin-bottom: 20px;
}

.footer-col p {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: var(--light-orange);
}

.footer-bar {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(249, 115, 22, 0.3);
    color: var(--text-gray);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .mobile-menu-btn {
        display: flex;
    }

    .main-content {
        margin-left: 0;
    }

    .hero-heading {
        font-size: 40px;
    }

    .section-heading {
        font-size: 32px;
    }

    .page-title {
        font-size: 36px;
    }

    .legal-title {
        font-size: 36px;
    }

    .game-iframe {
        height: 500px;
    }

    .play-game-frame {
        height: 550px;
    }
}

@media (max-width: 640px) {
    .hero-banner {
        padding: 50px 20px;
    }

    .hero-heading {
        font-size: 32px;
    }

    .notices-section,
    .game-showcase,
    .benefits-section,
    .cta-banner {
        padding: 50px 20px;
    }

    .age-verify-box {
        margin: 20px;
        padding: 35px 25px;
    }

    .age-verify-actions {
        flex-direction: column;
    }
}
