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

body {
    font-family: 'Roboto', sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.7;
}

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

/* Sidebar Styles */
.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #FF8C00 0%, #FF6B00 100%);
    color: white;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    transition: transform 0.3s ease;
    z-index: 1000;
}

.sidebar-header {
    padding: 2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 700;
}

.close-sidebar {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

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

.nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: background 0.3s ease, padding-left 0.3s ease;
    border-left: 4px solid transparent;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    border-left-color: white;
}

/* Main Content Area */
.main-content {
    flex: 1;
    margin-left: 280px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.top-bar {
    background: white;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #FF8C00;
    transition: 0.3s;
}

.header-brand-mobile {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF8C00;
}

.content {
    flex: 1;
    padding: 2rem;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #FF8C00 0%, #FF6B00 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
}

.hero-banner h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.4rem;
    font-weight: 300;
}

/* Info Boxes */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-box {
    padding: 2.5rem;
    border-radius: 15px;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.info-box.orange {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
}

.info-box.amber {
    background: linear-gradient(135deg, #FFA500 0%, #FFB84D 100%);
}

.info-box.red {
    background: linear-gradient(135deg, #FF6B00 0%, #FF4500 100%);
}

.info-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.info-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-box p {
    font-size: 1.05rem;
    line-height: 1.6;
}

/* About Section */
.about-section {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.about-section h2 {
    color: #FF8C00;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

/* Game Showcase */
.game-showcase {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.game-showcase h2 {
    color: #FF8C00;
    font-size: 2.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.game-description {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #666;
}

.game-embed {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

/* Highlights */
.highlights {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.highlights h2 {
    color: #FF8C00;
    font-size: 2.3rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

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

.highlight-card {
    text-align: center;
    padding: 2rem;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    border-color: #FF8C00;
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    color: #FF8C00;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.highlight-card p {
    color: #666;
    font-size: 1.05rem;
}

/* Responsibility Notice */
.responsibility-notice {
    background: linear-gradient(135deg, #FFF5E6 0%, #FFE6CC 100%);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 6px solid #FF8C00;
}

.responsibility-notice h2 {
    color: #FF6B00;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.responsibility-notice p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

/* Play Page */
.page-header {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-header h1 {
    color: #FF8C00;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.game-instructions {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.game-instructions h2 {
    color: #FF8C00;
    margin-bottom: 1.5rem;
}

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

.instruction-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.instruction-item p {
    font-size: 1.05rem;
    color: #555;
}

.play-game-section {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.game-frame {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

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

.game-reminder {
    background: #FFF5E6;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #FF8C00;
}

.game-reminder strong {
    color: #FF6B00;
}

/* Legal Pages */
.legal-page {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.legal-page h1 {
    color: #FF8C00;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.legal-page h2 {
    color: #FF6B00;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page p, .legal-page li {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.updated-date {
    color: #999;
    font-style: italic;
    margin-bottom: 2rem;
}

.warning-box {
    background: #FFF5E6;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 6px solid #FF6B00;
}

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

/* Footer */
.site-footer {
    background: #2C2C2C;
    color: #ccc;
    padding: 3rem 2rem 1rem;
    margin-top: auto;
}

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

.footer-col h4 {
    color: #FF8C00;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-col li {
    margin-bottom: 0.5rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
}

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

.age-verify-overlay.show {
    display: flex;
}

.age-verify-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.age-verify-box h2 {
    color: #FF6B00;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.age-verify-box p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #555;
}

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

.age-btn {
    flex: 1;
    padding: 1.2rem 2rem;
    font-size: 1.15rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.age-btn.yes {
    background: #FF8C00;
    color: white;
}

.age-btn.yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
}

.age-btn.no {
    background: #e0e0e0;
    color: #333;
}

.age-btn.no:hover {
    background: #d0d0d0;
}

/* Mobile Styles */
@media (max-width: 968px) {
    .sidebar {
        transform: translateX(-100%);
    }

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

    .close-sidebar {
        display: block;
    }

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

    .top-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .content {
        padding: 1rem;
    }

    .hero-banner h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

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

    .age-verify-box {
        margin: 1rem;
        padding: 2rem;
    }

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