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

body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(to right, #2d1b00, #4a2c00, #2d1b00);
    color: #f5f5f5;
    line-height: 1.7;
}

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

.age-modal.hidden {
    display: none;
}

.age-modal-content {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.5);
    color: #2d1b00;
}

.age-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.age-modal-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.age-requirement {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1rem 0;
}

.age-info {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

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

.age-buttons button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.btn-confirm {
    background: #2d1b00;
    color: #fff;
}

.btn-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(45, 27, 0, 0.5);
}

.btn-decline {
    background: #fff;
    color: #2d1b00;
}

.btn-decline:hover {
    background: #e0e0e0;
}

/* Site Wrapper */
.site-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #2d1b00, #1a0f00);
    border-right: 3px solid #ff6b35;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
}

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

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

.brand h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b35;
    letter-spacing: 1px;
}

.sidebar-toggle {
    display: none;
    background: none;
    border: none;
    color: #ff6b35;
    font-size: 2rem;
    cursor: pointer;
}

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

.nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #ccc;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    border-left-color: #ff6b35;
}

.sidebar-footer {
    padding: 1.5rem;
    text-align: center;
    border-top: 2px solid rgba(255, 107, 53, 0.3);
    color: #888;
    font-size: 0.9rem;
}

.sidebar-footer p {
    margin: 0.3rem 0;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    width: 50px;
    height: 50px;
    background: #ff6b35;
    color: #2d1b00;
    border: none;
    border-radius: 10px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Main Content */
.main-content {
    margin-left: 280px;
    flex: 1;
    padding: 3rem;
}

.welcome-banner {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.2));
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #ff6b35;
    margin-bottom: 3rem;
    text-align: center;
}

.welcome-banner h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

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

.feature-box {
    background: rgba(45, 27, 0, 0.5);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

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

.feature-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.game-showcase {
    margin-bottom: 3rem;
}

.game-showcase h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.game-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.game-embed {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #ff6b35;
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.3);
}

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

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    color: #ff6b35;
    margin-bottom: 2rem;
}

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

.about-card {
    background: rgba(45, 27, 0, 0.4);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

.about-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: #f7931e;
}

.important-info {
    margin-bottom: 3rem;
}

.important-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    color: #ff6b35;
    margin-bottom: 2rem;
}

.info-alert {
    background: rgba(255, 0, 0, 0.15);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 5px solid #ff4444;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.call-to-action {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(247, 147, 30, 0.3));
    border-radius: 20px;
    margin-bottom: 3rem;
}

.call-to-action h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.action-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #2d1b00;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    border-radius: 50px;
    margin-top: 1.5rem;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

/* Play Page */
.page-header {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
}

.page-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.game-area {
    margin-bottom: 3rem;
}

.game-wrapper {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #ff6b35;
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.3);
}

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

.game-details {
    margin-bottom: 3rem;
}

.game-details h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    color: #ff6b35;
    margin-bottom: 2rem;
}

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

.detail-card {
    background: rgba(45, 27, 0, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.4);
}

.detail-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: #f7931e;
    margin-bottom: 0.7rem;
}

.play-reminder {
    background: rgba(255, 0, 0, 0.15);
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid #ff4444;
}

.reminder-box h3 {
    font-family: 'Montserrat', sans-serif;
    color: #ff6b35;
    margin-bottom: 1rem;
}

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

/* Legal Pages */
.legal-content {
    max-width: 950px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    color: #ff6b35;
    text-align: center;
    margin-bottom: 3rem;
}

.legal-block {
    background: rgba(45, 27, 0, 0.4);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 5px solid #ff6b35;
}

.legal-block h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #f7931e;
    margin-bottom: 1rem;
}

.legal-block ul {
    margin-left: 2rem;
    margin-top: 1rem;
}

.legal-block li {
    margin-bottom: 0.7rem;
}

.legal-block a {
    color: #ff6b35;
    text-decoration: underline;
}

.highlight-block {
    background: rgba(255, 107, 53, 0.15);
    border-left-color: #ff4444;
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, #1a0f00, #0d0700);
    border-top: 3px solid #ff6b35;
    padding: 3rem 2rem 1.5rem;
    margin-left: 280px;
}

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

.footer-col h3 {
    font-family: 'Montserrat', sans-serif;
    color: #ff6b35;
    margin-bottom: 1rem;
}

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

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

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

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

.footer-legal {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.3);
    color: #888;
}

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

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

    .sidebar-toggle {
        display: block;
    }

    .mobile-menu-btn {
        display: block;
    }

    .main-content {
        margin-left: 0;
        padding: 5rem 1.5rem 2rem;
    }

    .site-footer {
        margin-left: 0;
    }

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

    .game-iframe {
        height: 400px;
    }

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