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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe6cc 100%);
    color: #2c2c2c;
    line-height: 1.6;
    min-height: 100vh;
}

.site-container {
    display: flex;
    min-height: 100vh;
}

/* Age Modal */
.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(15px);
}

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

.age-box {
    background: linear-gradient(135deg, #ffffff, #fff5e6);
    border: 3px solid #ff8c00;
    border-radius: 15px;
    padding: 50px;
    text-align: center;
    max-width: 450px;
    box-shadow: 0 20px 60px rgba(255, 140, 0, 0.4);
}

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

.age-box h2 {
    color: #ff8c00;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.age-box p {
    color: #555;
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 400;
}

.age-button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-confirm,
.btn-decline {
    padding: 15px 30px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-confirm {
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5);
}

.btn-decline {
    background: #e0e0e0;
    color: #666;
}

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

/* Sidebar */
.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #ff8c00, #ff6b00);
    color: white;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 20px rgba(255, 140, 0, 0.2);
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.sidebar-content {
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.logo-area {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.logo-area svg {
    margin-bottom: 15px;
}

.logo-area h1 {
    font-size: 28px;
    font-weight: 900;
    color: white;
    letter-spacing: 1px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 15px;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateX(5px);
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.sidebar-tagline {
    font-style: italic;
    margin-top: 5px;
}

.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Main Area */
.main-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Welcome Section */
.welcome-section {
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    padding: 80px 40px;
    color: white;
}

.welcome-content {
    max-width: 900px;
    margin: 0 auto;
}

.welcome-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    opacity: 0.9;
}

.welcome-section h1 {
    font-size: 48px;
    font-weight: 900;
    margin: 15px 0 20px;
    line-height: 1.2;
}

.welcome-desc {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
    font-weight: 400;
}

.info-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.info-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

.badge-emoji {
    font-size: 20px;
}

/* Game Showcase */
.game-showcase {
    padding: 70px 40px;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ff8c00;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    font-size: 16px;
    font-weight: 400;
}

.game-display {
    max-width: 1100px;
    margin: 0 auto;
}

.game-embed {
    background: white;
    border: 4px solid #ff8c00;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(255, 140, 0, 0.2);
}

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

.game-info-text {
    text-align: center;
    color: #ff8c00;
    font-weight: 600;
    font-size: 15px;
    margin-top: 25px;
}

/* About Section */
.about-section {
    padding: 70px 40px;
    background: white;
}

.about-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.about-card {
    background: linear-gradient(135deg, #fff5e6, #ffe6cc);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #ffd700;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.2);
}

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

.about-card h3 {
    color: #ff8c00;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-card p {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
    font-weight: 400;
}

/* Important Info */
.important-info {
    padding: 70px 40px;
}

.info-container {
    max-width: 1300px;
    margin: 0 auto;
}

.info-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #ff8c00;
    margin-bottom: 45px;
}

.info-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.info-panel {
    background: white;
    padding: 35px;
    border-radius: 12px;
    border-left: 5px solid #ff8c00;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-panel h4 {
    color: #ff8c00;
    font-size: 19px;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-panel p {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
    font-weight: 400;
}

/* Features Section */
.features-section {
    padding: 70px 40px;
    background: white;
}

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

.feature-card {
    background: linear-gradient(135deg, #fff5e6, #ffe6cc);
    padding: 35px;
    border-radius: 12px;
    border: 2px solid #ffd700;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.feature-num {
    display: inline-block;
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #ff8c00;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
    font-weight: 400;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    padding: 60px 40px;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    font-weight: 400;
}

/* Play Section */
.play-section {
    padding: 60px 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.play-game-area {
    margin-bottom: 50px;
}

.game-embed-large {
    background: white;
    border: 4px solid #ff8c00;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(255, 140, 0, 0.2);
}

.game-embed-large iframe {
    width: 100%;
    height: 700px;
    border-radius: 8px;
}

.play-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.guide-block {
    background: white;
    padding: 35px;
    border-radius: 12px;
    border-left: 5px solid #ff8c00;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.guide-block h3 {
    color: #ff8c00;
    font-size: 19px;
    margin-bottom: 15px;
    font-weight: 700;
}

.guide-block p {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
    font-weight: 400;
}

/* Legal Section */
.legal-section {
    padding: 60px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.legal-section h1 {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    color: #ff8c00;
    margin-bottom: 40px;
}

.legal-document {
    background: white;
    padding: 50px;
    border-radius: 12px;
    border: 3px solid #ffd700;
    box-shadow: 0 10px 40px rgba(255, 140, 0, 0.15);
}

.legal-intro {
    font-size: 17px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.8;
    font-weight: 500;
}

.legal-document h2 {
    color: #ff8c00;
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 18px;
    font-weight: 700;
}

.legal-document h2:first-of-type {
    margin-top: 0;
}

.legal-document p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 18px;
    font-size: 15px;
    font-weight: 400;
}

.legal-date {
    margin-top: 45px;
    padding-top: 25px;
    border-top: 2px solid #ffe6cc;
    color: #999;
    font-style: italic;
    font-size: 14px;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #ff8c00, #ff6b00);
    color: white;
    padding: 50px 40px 25px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
    font-weight: 400;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    opacity: 0.9;
    font-weight: 400;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

/* Mobile Styles */
@media (max-width: 968px) {
    .sidebar {
        position: fixed;
        left: -280px;
        transition: left 0.3s ease;
        z-index: 1000;
    }

    .sidebar.active {
        left: 0;
    }

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

    .main-area {
        width: 100%;
    }

    .welcome-section h1 {
        font-size: 32px;
    }

    .welcome-desc {
        font-size: 16px;
    }

    .game-embed iframe,
    .game-embed-large iframe {
        height: 450px;
    }

    .about-grid,
    .info-panels,
    .features-grid,
    .play-guide {
        grid-template-columns: 1fr;
    }

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