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

body {
    font-family: 'Roboto Condensed', sans-serif;
    background: #0F172A;
    color: #E2E8F0;
    line-height: 1.6;
}

.page-wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #1E293B 0%, #0F172A 100%);
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    border-right: 2px solid #10B981;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    transition: left 0.3s ease;
}

.sidebar-header {
    padding: 30px 20px;
    border-bottom: 1px solid rgba(16, 185, 129, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: #10B981;
    letter-spacing: 2px;
}

.sidebar-close {
    display: none;
    background: none;
    border: none;
    color: #10B981;
    font-size: 30px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

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

.nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    color: #94A3B8;
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    font-size: 16px;
    font-weight: 400;
}

.nav-link:hover {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border-left-color: #10B981;
}

.nav-link.active {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
    border-left-color: #10B981;
}

.nav-icon {
    font-size: 20px;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(16, 185, 129, 0.3);
    text-align: center;
    font-size: 14px;
    color: #64748B;
}

.age-badge {
    display: inline-block;
    background: #10B981;
    color: #0F172A;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    margin-top: 10px;
}

.main-content {
    flex: 1;
    margin-left: 280px;
}

.menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 999;
    background: #10B981;
    border: none;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #0F172A;
    border-radius: 3px;
}

.hero-section {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 2px,
        rgba(0, 0, 0, 0.1) 4px
    );
}

.hero-text {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 60px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 3px;
}

.tagline {
    font-size: 22px;
    color: #0F172A;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    display: inline-block;
    background: #0F172A;
    color: #10B981;
    padding: 18px 45px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.alert-section {
    padding: 60px 20px;
    background: #1E293B;
}

.alert-box {
    max-width: 1100px;
    margin: 0 auto;
    border: 2px solid #10B981;
    border-radius: 15px;
    padding: 40px;
    background: rgba(16, 185, 129, 0.05);
}

.alert-title {
    font-size: 28px;
    font-weight: 700;
    color: #10B981;
    margin-bottom: 30px;
    text-align: center;
}

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

.alert-item {
    background: #0F172A;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #10B981;
    color: #CBD5E1;
}

.alert-item strong {
    color: #10B981;
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.game-section {
    padding: 80px 20px;
    background: #0F172A;
}

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

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #10B981;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.header-line {
    width: 100px;
    height: 4px;
    background: #10B981;
    margin: 0 auto;
}

.game-embed {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(16, 185, 129, 0.3);
    border: 2px solid #10B981;
}

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

.game-disclaimer {
    text-align: center;
    margin-top: 30px;
    font-size: 18px;
    color: #94A3B8;
}

.features-section {
    padding: 80px 20px;
    background: #1E293B;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-box {
    background: #0F172A;
    padding: 35px 25px;
    border-radius: 12px;
    border: 1px solid #334155;
    transition: all 0.3s;
    text-align: center;
}

.feature-box:hover {
    border-color: #10B981;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 22px;
    color: #10B981;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-box p {
    color: #94A3B8;
    line-height: 1.7;
}

.legal-section {
    padding: 80px 20px;
    background: #0F172A;
}

.legal-box {
    max-width: 900px;
    margin: 0 auto;
    background: #1E293B;
    padding: 50px;
    border-radius: 15px;
    border: 2px solid #334155;
}

.legal-box h2 {
    font-size: 32px;
    color: #10B981;
    margin-bottom: 25px;
    text-align: center;
}

.legal-box > p {
    font-size: 18px;
    color: #CBD5E1;
    margin-bottom: 35px;
    line-height: 1.8;
}

.legal-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.legal-point {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #0F172A;
    border-radius: 8px;
    color: #CBD5E1;
}

.point-icon {
    color: #10B981;
    font-weight: 700;
    font-size: 20px;
}

.main-footer {
    background: #0A0F1E;
    padding: 60px 20px 20px;
    border-top: 2px solid #10B981;
}

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

.footer-col h4 {
    font-size: 18px;
    color: #10B981;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-col p {
    color: #94A3B8;
    line-height: 1.8;
}

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

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

.footer-col a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #10B981;
}

.footer-bar {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #334155;
    color: #64748B;
    font-size: 14px;
}

.age-gate {
    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-gate.show {
    display: flex;
}

.age-gate-box {
    background: #1E293B;
    padding: 60px 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 550px;
    border: 3px solid #10B981;
    box-shadow: 0 0 60px rgba(16, 185, 129, 0.4);
}

.age-gate-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.age-gate-box h2 {
    font-size: 32px;
    color: #10B981;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.age-gate-box p {
    font-size: 18px;
    color: #CBD5E1;
    margin-bottom: 15px;
}

.age-gate-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 35px;
}

.age-gate-actions button {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.btn-confirm {
    background: #10B981;
    color: #0F172A;
}

.btn-confirm:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

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

.btn-deny:hover {
    background: #DC2626;
    transform: translateY(-2px);
}

.content-wrapper {
    padding: 60px 20px;
    min-height: calc(100vh - 200px);
}

.content-wrapper h1 {
    font-size: 48px;
    color: #10B981;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 3px;
}

.document-box {
    max-width: 1000px;
    margin: 0 auto;
    background: #1E293B;
    padding: 50px;
    border-radius: 15px;
    border: 1px solid #334155;
}

.document-box h2 {
    font-size: 28px;
    color: #10B981;
    margin: 35px 0 20px;
}

.document-box p,
.document-box li {
    color: #CBD5E1;
    line-height: 1.9;
    margin-bottom: 15px;
}

.document-box ul {
    margin: 15px 0 20px 30px;
}

.document-box strong {
    color: #10B981;
}

.alert-banner {
    background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 2px solid #EF4444;
}

.alert-banner h2 {
    color: white !important;
    margin-top: 0;
}

.alert-banner p {
    color: white;
}

.play-hero {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    padding: 80px 20px;
    text-align: center;
}

.play-hero h1 {
    font-size: 50px;
    color: #0F172A;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.play-hero p {
    font-size: 20px;
    color: #0F172A;
}

.play-area {
    padding: 60px 20px;
    background: #0F172A;
}

.game-container-full {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #10B981;
    box-shadow: 0 0 50px rgba(16, 185, 129, 0.3);
}

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

.play-info {
    padding: 60px 20px;
    background: #1E293B;
}

.info-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: #0F172A;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #334155;
}

.info-card h3 {
    font-size: 22px;
    color: #10B981;
    margin-bottom: 15px;
}

.info-card p {
    color: #94A3B8;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .sidebar {
        left: -280px;
    }

    .sidebar.active {
        left: 0;
    }

    .sidebar-close {
        display: block;
    }

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

    .menu-toggle {
        display: flex;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .tagline {
        font-size: 18px;
    }

    .game-iframe {
        height: 450px;
    }

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

    .age-gate-box {
        margin: 20px;
        padding: 40px 30px;
    }

    .content-wrapper h1 {
        font-size: 32px;
    }

    .document-box {
        padding: 30px 20px;
    }

    .legal-box {
        padding: 30px 20px;
    }
}
