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

body {
    font-family: 'Raleway', sans-serif;
    background: #0a0a0a;
    color: #e5e5e5;
    line-height: 1.6;
    overflow-x: hidden;
}

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

.age-modal.show {
    display: flex;
}

.age-modal-box {
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 25px 70px rgba(16, 185, 129, 0.3);
}

.age-icon {
    font-size: 70px;
    margin-bottom: 25px;
}

.age-modal-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

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

.btn-confirm,
.btn-deny {
    padding: 16px 45px;
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm {
    background: #fbbf24;
    color: #065f46;
}

.btn-confirm:hover {
    background: #f59e0b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

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

.btn-deny:hover {
    background: #dc2626;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

/* Page Wrapper with Sidebar */
.page-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #065f46 0%, #064e3b 100%);
    padding: 30px 0;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
    transition: left 0.3s ease;
}

.sidebar-header {
    padding: 0 25px 25px;
    border-bottom: 2px solid rgba(251, 191, 36, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: #fbbf24;
}

.sidebar-close {
    display: none;
    background: none;
    border: none;
    color: #fbbf24;
    font-size: 28px;
    cursor: pointer;
    padding: 5px 10px;
}

.sidebar-nav {
    flex: 1;
    padding: 30px 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    border-left: 4px solid transparent;
}

.nav-item:hover,
.nav-item.active {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border-left-color: #fbbf24;
}

.nav-icon {
    font-size: 22px;
    width: 30px;
    text-align: center;
}

.sidebar-footer {
    padding: 25px;
    border-top: 2px solid rgba(251, 191, 36, 0.3);
    text-align: center;
}

.footer-text {
    font-size: 15px;
    font-weight: 600;
    color: #fbbf24;
    margin-bottom: 5px;
}

.footer-subtext {
    font-size: 13px;
    opacity: 0.8;
}

/* Main Content Area */
.main-content {
    flex: 1;
    margin-left: 280px;
    min-height: 100vh;
    background: #0a0a0a;
}

/* Top Bar (Mobile) */
.top-bar {
    display: none;
    background: #065f46;
    padding: 15px 20px;
    align-items: center;
    gap: 15px;
    position: sticky;
    top: 0;
    z-index: 999;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #fbbf24;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-brand {
    font-size: 22px;
    font-weight: 700;
    color: #fbbf24;
}

/* Banner Section */
.banner-section {
    background: linear-gradient(135deg, #065f46 0%, #10b981 50%, #34d399 100%);
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.banner-overlay {
    position: relative;
    z-index: 1;
}

.banner-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.banner-description {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: #fbbf24;
    color: #065f46;
    text-decoration: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #f59e0b;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

/* Content Sections */
.content-section {
    padding: 70px 40px;
}

.dark-section {
    background: #111111;
}

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

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #10b981;
}

.section-subtitle {
    font-size: 18px;
    opacity: 0.8;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.info-card {
    padding: 35px;
    border-radius: 18px;
    border: 3px solid;
    transition: all 0.3s ease;
}

.card-green {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
}

.card-blue {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

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

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
}

.card-icon {
    font-size: 52px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

/* Game Embed */
.game-embed {
    max-width: 1100px;
    margin: 0 auto 35px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

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

.game-details {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-box {
    background: rgba(16, 185, 129, 0.1);
    padding: 20px 25px;
    border-radius: 12px;
    border-left: 5px solid #10b981;
    font-size: 15px;
}

/* Reasons Grid */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.reason-item {
    background: rgba(16, 185, 129, 0.05);
    padding: 35px;
    border-radius: 15px;
    border: 2px solid rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-5px);
    border-color: #10b981;
    box-shadow: 0 10px 35px rgba(16, 185, 129, 0.2);
}

.reason-number {
    font-size: 48px;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 15px;
}

.reason-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #10b981;
}

.reason-item p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

/* Welcome Content */
.welcome-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.welcome-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #fbbf24;
}

.welcome-text p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
    opacity: 0.9;
}

.welcome-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-box {
    background: rgba(16, 185, 129, 0.15);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #10b981;
}

.stat-value {
    font-size: 42px;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Play Page */
.play-banner {
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
    padding: 70px 40px;
    text-align: center;
}

.play-title {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
}

.play-subtitle {
    font-size: 20px;
    opacity: 0.95;
}

.play-container {
    padding: 50px 40px 80px;
}

.game-area {
    max-width: 1200px;
    margin: 0 auto 40px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

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

.play-instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.instruction-card {
    background: rgba(16, 185, 129, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.instruction-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #10b981;
}

.instruction-card p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

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

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

/* Legal Pages */
.legal-page {
    padding: 50px 40px 80px;
}

.legal-container {
    max-width: 950px;
    margin: 0 auto;
}

.legal-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #10b981;
    text-align: center;
}

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

.legal-body {
    background: rgba(16, 185, 129, 0.05);
    padding: 50px;
    border-radius: 18px;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.legal-body h2 {
    font-size: 30px;
    margin-top: 45px;
    margin-bottom: 20px;
    color: #fbbf24;
}

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

.legal-body h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 15px;
    color: #10b981;
}

.legal-body p {
    font-size: 15px;
    margin-bottom: 18px;
    line-height: 1.8;
    opacity: 0.9;
}

.legal-body ul {
    margin: 18px 0 18px 35px;
    opacity: 0.9;
}

.legal-body li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-highlight {
    background: rgba(251, 191, 36, 0.15);
    padding: 35px;
    border-radius: 15px;
    margin-top: 45px;
    border-left: 6px solid #fbbf24;
}

.legal-highlight h3 {
    color: #fbbf24;
    margin-top: 0;
}

.warning-box {
    background: rgba(239, 68, 68, 0.1);
    padding: 35px;
    border-radius: 15px;
    margin-bottom: 35px;
    border-left: 6px solid #ef4444;
}

.warning-box h2 {
    color: #ef4444;
    margin-top: 0;
}

/* Footer */
.main-footer {
    background: #065f46;
    padding: 60px 40px 25px;
    margin-top: 80px;
    border-top: 4px solid #fbbf24;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto 40px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fbbf24;
}

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

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

.footer-list li {
    margin-bottom: 12px;
}

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

.footer-list a:hover {
    opacity: 1;
    color: #fbbf24;
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 2px solid rgba(251, 191, 36, 0.3);
}

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

/* Mobile Responsive */
@media (max-width: 1024px) {
    .sidebar {
        left: -280px;
    }

    .sidebar.active {
        left: 0;
    }

    .sidebar-close {
        display: block;
    }

    .main-content {
        margin-left: 0;
    }

    .top-bar {
        display: flex;
    }

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

@media (max-width: 768px) {
    .banner-title {
        font-size: 36px;
    }

    .banner-description {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 450px;
    }

    .full-game-frame {
        height: 500px;
    }

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

    .legal-body {
        padding: 30px 25px;
    }

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

@media (max-width: 480px) {
    .age-modal-box {
        padding: 35px 25px;
        margin: 20px;
    }

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

    .btn-confirm,
    .btn-deny {
        width: 100%;
    }

    .banner-section {
        padding: 60px 25px;
    }

    .content-section {
        padding: 50px 25px;
    }

    .legal-page {
        padding: 40px 20px 60px;
    }
}