* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: linear-gradient(to bottom, #fff5e6, #ffe0b3);
    min-height: 100vh;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Sidebar Menu */
.sidebar-menu {
    position: fixed;
    left: -300px;
    top: 0;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #ff6b35 0%, #d84315 100%);
    z-index: 2000;
    transition: left 0.3s ease;
    box-shadow: 2px 0 15px rgba(0,0,0,0.3);
    overflow-y: auto;
}

.sidebar-menu.active {
    left: 0;
}

.sidebar-header {
    padding: 25px;
    background: rgba(0,0,0,0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(255,255,255,0.2);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-logo span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: white;
    letter-spacing: 2px;
}

.close-sidebar {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 5px 10px;
    line-height: 1;
    transition: transform 0.2s;
}

.close-sidebar:hover {
    transform: rotate(90deg);
}

.sidebar-nav {
    padding: 30px 0;
}

.sidebar-nav a {
    display: block;
    padding: 18px 25px;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.sidebar-nav a:hover,
.sidebar-nav a.nav-active {
    background: rgba(0,0,0,0.2);
    border-left-color: white;
    padding-left: 35px;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #ff6b35 0%, #f4511e 100%);
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.menu-trigger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.menu-trigger span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

.menu-trigger:hover span {
    background: #fff5e6;
}

.header-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.header-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: white;
    letter-spacing: 3px;
}

.header-tagline {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.93);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-modal.hidden {
    display: none;
}

.age-modal-box {
    background: linear-gradient(135deg, #fff 0%, #ffe0b3 100%);
    padding: 45px;
    border-radius: 20px;
    text-align: center;
    max-width: 480px;
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.5);
    border: 4px solid #ff6b35;
}

.tiger-icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

.age-modal-box h2 {
    font-family: 'Bebas Neue', sans-serif;
    color: #ff6b35;
    font-size: 2.5rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.age-modal-box p {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #2c3e50;
}

.age-subtext {
    font-weight: 600;
    font-size: 1.2rem !important;
    color: #ff6b35 !important;
}

.age-disclaimer {
    font-size: 0.95rem !important;
    color: #666 !important;
    font-style: italic;
}

.age-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.age-btn {
    padding: 14px 28px;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Noto Sans', sans-serif;
}

.age-btn.confirm {
    background: #ff6b35;
    color: white;
}

.age-btn.confirm:hover {
    background: #f4511e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.age-btn.deny {
    background: #e74c3c;
    color: white;
}

.age-btn.deny:hover {
    background: #c0392b;
}

/* Main Content */
.main-content {
    padding-bottom: 40px;
}

/* Banner Hero */
.banner-hero {
    background: linear-gradient(135deg, #ff6b35 0%, #f4511e 50%, #d84315 100%);
    padding: 70px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.hero-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 4px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-lead {
    font-size: 1.3rem;
    color: #fff5e6;
    font-style: italic;
}

/* Welcome Area */
.welcome-area {
    padding: 60px 0;
}

.welcome-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-top: 5px solid #ff6b35;
}

.welcome-box h2 {
    font-family: 'Bebas Neue', sans-serif;
    color: #ff6b35;
    font-size: 2.2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.welcome-box p {
    margin-bottom: 18px;
    font-size: 1.05rem;
}

/* Critical Info Section */
.critical-info {
    padding: 60px 0;
    background: rgba(255,107,53,0.08);
}

.section-heading {
    font-family: 'Bebas Neue', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 40px;
    letter-spacing: 3px;
}

.info-trio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.info-box {
    background: white;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.info-box:hover {
    transform: translateY(-8px);
}

.info-box.warning {
    border-top: 5px solid #e74c3c;
}

.info-box.primary {
    border-top: 5px solid #3498db;
}

.info-box.alert {
    border-top: 5px solid #f39c12;
}

.info-emoji {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 15px;
}

.info-box h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Featured Game Zone */
.featured-game-zone {
    padding: 60px 0;
}

.game-description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: #555;
}

.game-embed-container {
    max-width: 950px;
    margin: 0 auto 30px;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
}

.game-embed {
    width: 100%;
    height: 600px;
    border: none;
}

.game-action {
    text-align: center;
}

.action-link {
    display: inline-block;
    padding: 16px 45px;
    background: #ff6b35;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.action-link:hover {
    background: #f4511e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Advantages Section */
.advantages-section {
    padding: 60px 0;
    background: rgba(255,107,53,0.05);
}

.advantages-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.advantage-card:hover {
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.advantage-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: #ff6b35;
    font-size: 1.6rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

/* Philosophy Section */
.philosophy-section {
    padding: 60px 0;
}

.philosophy-content {
    background: white;
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 6px solid #ff6b35;
}

.philosophy-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    color: #ff6b35;
    font-size: 2.2rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.philosophy-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Responsibility Banner */
.responsibility-banner {
    padding: 50px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f4511e 100%);
    text-align: center;
    color: white;
}

.responsibility-banner h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.3rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.responsibility-banner p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Play Page Styles */
.page-header-section {
    background: linear-gradient(135deg, #ff6b35 0%, #f4511e 100%);
    padding: 60px 25px;
    text-align: center;
}

.page-header-section h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: white;
    margin-bottom: 12px;
    letter-spacing: 4px;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #fff5e6;
}

.play-instructions {
    padding: 50px 0;
}

.instructions-panel {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-top: 5px solid #ff6b35;
}

.instructions-panel h2 {
    font-family: 'Bebas Neue', sans-serif;
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.instructions-panel > p {
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.tips-container {
    background: rgba(255,107,53,0.05);
    padding: 30px;
    border-radius: 10px;
    margin-top: 25px;
}

.tips-container h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: #ff6b35;
    font-size: 1.6rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.tip-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.tip-item p {
    font-size: 0.95rem;
    margin: 0;
}

.fullscreen-game-section {
    padding: 40px 0 60px;
}

.game-display-frame {
    max-width: 100%;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
    margin-bottom: 30px;
}

.fullsize-game {
    width: 100%;
    height: 750px;
    border: none;
}

.play-reminder {
    text-align: center;
    background: rgba(231, 76, 60, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #e74c3c;
}

.play-reminder strong {
    color: #ff6b35;
}

/* Legal Pages */
.legal-header {
    background: linear-gradient(135deg, #ff6b35 0%, #f4511e 100%);
    padding: 50px 25px;
    text-align: center;
}

.legal-header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: white;
    letter-spacing: 3px;
}

.legal-body {
    padding: 60px 0;
}

.legal-document {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.legal-preamble {
    font-size: 1.15rem;
    font-style: italic;
    color: #ff6b35;
    background: rgba(255,107,53,0.08);
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #ff6b35;
    margin-bottom: 40px;
}

.legal-article {
    margin-bottom: 35px;
}

.legal-article h2 {
    font-family: 'Bebas Neue', sans-serif;
    color: #ff6b35;
    font-size: 1.9rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.legal-article h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: #f4511e;
    font-size: 1.4rem;
    margin-top: 20px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.legal-article p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-article ul {
    margin: 15px 0 15px 35px;
    line-height: 1.9;
}

.legal-article li {
    margin-bottom: 10px;
}

.legal-article.critical-notice {
    background: rgba(231,76,60,0.05);
    padding: 30px;
    border-radius: 12px;
    border: 3px solid #e74c3c;
}

.emphasis-box {
    background: rgba(255,107,53,0.1);
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #ff6b35;
    margin-top: 15px;
}

.disclaimer-key-points {
    background: rgba(52,152,219,0.1);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #3498db;
    margin-top: 40px;
}

.disclaimer-key-points h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: #3498db;
    font-size: 1.6rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.disclaimer-key-points ul {
    list-style: none;
    margin-left: 0;
}

.legal-footer-note {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 3px solid #ff6b35;
    text-align: center;
    font-style: italic;
    color: #777;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 50px 25px 25px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    margin-bottom: 35px;
}

.footer-col h4 {
    font-family: 'Bebas Neue', sans-serif;
    color: #ff6b35;
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.footer-col p {
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff6b35;
}

.footer-base {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: #95a5a6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-brand {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    .header-tagline {
        font-size: 0.75rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .welcome-box,
    .philosophy-content,
    .legal-document {
        padding: 25px;
    }

    .section-heading {
        font-size: 2rem;
    }

    .game-embed {
        height: 400px;
    }

    .fullsize-game {
        height: 500px;
    }

    .info-trio,
    .advantages-layout {
        grid-template-columns: 1fr;
    }

    .age-modal-box {
        padding: 30px;
        margin: 20px;
    }

    .tiger-icon {
        font-size: 3.5rem;
    }
}
