* {
    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%);
    border-right: 2px solid #10B981;
    position: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
    z-index: 1000;
}

.sidebar-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid #334155;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand h2 {
    font-family: 'Righteous', cursive;
    color: #10B981;
    font-size: 1.5rem;
}

.close-sidebar {
    display: none;
    background: none;
    border: none;
    color: #e2e8f0;
    font-size: 1.5rem;
    cursor: pointer;
}

.sidebar-nav {
    flex: 1;
    padding: 2rem 0;
}

.nav-item {
    display: block;
    padding: 1rem 1.5rem;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

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

.sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid #334155;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

.main-content {
    flex: 1;
    margin-left: 280px;
    min-height: 100vh;
}

.menu-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    background: #10B981;
    color: #000;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 5px;
    z-index: 999;
}

.top-bar {
    background: linear-gradient(90deg, #10B981 0%, #059669 100%);
    padding: 2rem;
    text-align: center;
}

.top-bar h1 {
    font-family: 'Righteous', cursive;
    font-size: 2.5rem;
    color: #000;
}

.hero-banner {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 3px solid #10B981;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.banner-content h2 {
    font-family: 'Righteous', cursive;
    font-size: 2.5rem;
    color: #10B981;
    margin-bottom: 1.5rem;
}

.banner-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.play-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: #10B981;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: transform 0.3s, background 0.3s;
}

.play-btn:hover {
    background: #059669;
    transform: translateY(-3px);
}

.key-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.point-box {
    background: #1e293b;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #334155;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.point-box:hover {
    transform: translateY(-5px);
    border-color: #10B981;
}

.point-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.point-box h3 {
    color: #10B981;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.game-showcase {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.showcase-header {
    text-align: center;
    margin-bottom: 2rem;
}

.showcase-header h2 {
    font-family: 'Righteous', cursive;
    font-size: 2rem;
    color: #10B981;
    margin-bottom: 1rem;
}

.game-frame {
    background: #1e293b;
    padding: 1rem;
    border-radius: 10px;
    border: 3px solid #10B981;
}

.game-frame iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 5px;
}

.benefits {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.benefits h2 {
    font-family: 'Righteous', cursive;
    font-size: 2rem;
    color: #10B981;
    text-align: center;
    margin-bottom: 2.5rem;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    background: #1e293b;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #10B981;
}

.benefit-icon {
    font-size: 2rem;
}

.benefit-text h4 {
    color: #10B981;
    margin-bottom: 0.5rem;
}

.important-info {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.important-info h2 {
    font-family: 'Righteous', cursive;
    font-size: 2rem;
    color: #10B981;
    text-align: center;
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.info-block {
    background: #1e293b;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #334155;
}

.info-block h3 {
    color: #10B981;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.site-footer {
    background: #020617;
    padding: 3rem 2rem;
    border-top: 3px solid #10B981;
    margin-top: 4rem;
}

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

.footer-col h4 {
    color: #10B981;
    margin-bottom: 1rem;
}

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

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

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

.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.active {
    display: flex;
}

.age-gate-box {
    background: #1e293b;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    border: 3px solid #10B981;
}

.age-gate-box h2 {
    color: #10B981;
    font-family: 'Righteous', cursive;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.age-gate-box p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.age-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.age-actions button {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s;
}

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

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

.age-actions button:hover {
    transform: scale(1.05);
}

.play-intro {
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
}

.game-full {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.game-frame-large {
    background: #1e293b;
    padding: 1rem;
    border-radius: 10px;
    border: 3px solid #10B981;
}

.game-frame-large iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 5px;
}

.gameplay-tips {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gameplay-tips h2 {
    font-family: 'Righteous', cursive;
    font-size: 2rem;
    color: #10B981;
    text-align: center;
    margin-bottom: 2rem;
}

.tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tip-card {
    background: #1e293b;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #334155;
}

.tip-card h4 {
    color: #10B981;
    margin-bottom: 0.75rem;
}

.document-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 3rem;
    background: #1e293b;
    border-radius: 10px;
    border: 2px solid #334155;
}

.document-container h1 {
    font-family: 'Righteous', cursive;
    color: #10B981;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.doc-date {
    color: #64748b;
    font-style: italic;
    margin-bottom: 2rem;
}

.document-container h2 {
    color: #10B981;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.document-container ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.document-container li {
    margin-bottom: 0.5rem;
}

.warning-box {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10B981;
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 10px;
}

.warning-box h3 {
    color: #10B981;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .close-sidebar {
        display: block;
    }

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

    .menu-toggle {
        display: block;
    }

    .top-bar h1 {
        font-size: 1.5rem;
        padding-top: 2rem;
    }

    .banner-content h2 {
        font-size: 1.75rem;
    }

    .game-frame iframe,
    .game-frame-large iframe {
        height: 400px;
    }

    .key-points,
    .benefits-list,
    .info-grid,
    .tips-container {
        grid-template-columns: 1fr;
    }
}