* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #ff8c42;
    --deep-orange: #cc5500;
    --light-orange: #ffa85c;
    --sand-bg: #f4e8d0;
    --dark-sand: #d4c4a0;
    --deep-brown: #3e2723;
    --warm-brown: #5d4037;
    --text-dark: #2c1810;
    --text-light: #6d4c41;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--sand-bg);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

.layout-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Navigation */
.sidebar {
    width: 280px;
    background: linear-gradient(180deg, var(--warm-brown) 0%, var(--deep-brown) 100%);
    color: var(--sand-bg);
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.sidebar-header {
    padding: 30px 20px;
    border-bottom: 2px solid var(--primary-orange);
    background: rgba(0, 0, 0, 0.2);
}

.sidebar-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.sidebar-logo h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--primary-orange);
    text-align: center;
}

.sidebar-nav {
    flex: 1;
    padding: 20px 0;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    color: var(--sand-bg);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.sidebar-nav a:hover {
    background: rgba(255, 140, 66, 0.1);
    border-left-color: var(--primary-orange);
    color: var(--light-orange);
}

.sidebar-nav a.active {
    background: rgba(255, 140, 66, 0.2);
    border-left-color: var(--primary-orange);
    color: var(--primary-orange);
}

.nav-icon {
    font-size: 20px;
}

.sidebar-footer {
    padding: 20px;
    border-top: 2px solid var(--primary-orange);
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.sidebar-footer p {
    font-size: 13px;
    color: var(--dark-sand);
    margin-bottom: 5px;
}

.sidebar-tag {
    font-size: 11px;
    color: var(--primary-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Header */
.mobile-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(90deg, var(--warm-brown) 0%, var(--deep-brown) 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-logo {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: 3px;
}

/* Main Content Area */
.main-content {
    flex: 1;
    margin-left: 280px;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--deep-orange) 100%);
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="3" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.hero-overlay {
    position: relative;
    z-index: 1;
}

.hero-banner h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 24px;
    color: var(--sand-bg);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: white;
    color: var(--deep-orange);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: var(--sand-bg);
}

/* Content Sections */
.intro-section, .key-points, .game-showcase, .features-showcase,
.responsibility-section, .play-intro, .play-instructions, .play-area,
.page-title, .terms-content, .privacy-content, .disclaimer-content {
    padding: 60px 40px;
}

.intro-content, .responsibility-box {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary-orange);
}

.intro-content h2, .responsibility-box h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 36px;
    color: var(--deep-orange);
    margin-bottom: 25px;
}

.intro-content p, .responsibility-box p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Key Points Section */
.key-points {
    background: linear-gradient(135deg, var(--dark-sand) 0%, var(--sand-bg) 100%);
}

.key-points h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 42px;
    text-align: center;
    color: var(--deep-brown);
    margin-bottom: 50px;
}

.points-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.point-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid;
}

.card-red {
    border-top-color: #d32f2f;
}

.card-orange {
    border-top-color: var(--primary-orange);
}

.card-yellow {
    border-top-color: #f57c00;
}

.point-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.point-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.point-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 26px;
    color: var(--deep-brown);
    margin-bottom: 15px;
}

.point-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

/* Game Showcase */
.game-showcase {
    background: white;
}

.game-header {
    text-align: center;
    margin-bottom: 40px;
}

.game-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 40px;
    color: var(--deep-brown);
    margin-bottom: 15px;
}

.game-header p {
    font-size: 18px;
    color: var(--text-light);
}

.game-embed {
    max-width: 950px;
    margin: 0 auto;
    background: #000;
    border: 4px solid var(--primary-orange);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(255, 140, 66, 0.3);
}

.game-embed iframe {
    width: 100%;
    height: 600px;
    display: block;
}

.game-action {
    text-align: center;
    margin-top: 35px;
}

.play-fullscreen {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-orange);
    color: white;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.play-fullscreen:hover {
    background: var(--deep-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

/* Features Showcase */
.features-showcase h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 40px;
    text-align: center;
    color: var(--deep-brown);
    margin-bottom: 50px;
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.feature-box:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    border-left-width: 6px;
}

.feature-box h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    color: var(--deep-brown);
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

/* Play Page Styles */
.play-intro {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--deep-orange) 100%);
    text-align: center;
    padding: 70px 40px;
}

.play-intro h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    color: white;
    margin-bottom: 15px;
}

.play-tagline {
    font-size: 22px;
    color: var(--sand-bg);
    font-style: italic;
}

.instructions-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--primary-orange);
}

.instructions-card h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 32px;
    color: var(--deep-brown);
    margin-bottom: 25px;
    text-align: center;
}

.instruction-list {
    margin-bottom: 25px;
}

.instruction-item {
    padding: 15px;
    margin-bottom: 12px;
    background: var(--sand-bg);
    border-radius: 8px;
    border-left: 3px solid var(--primary-orange);
}

.instruction-item strong {
    color: var(--deep-orange);
}

.play-reminder {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1), rgba(204, 85, 0, 0.1));
    padding: 20px;
    border-radius: 8px;
    border: 2px solid var(--primary-orange);
    text-align: center;
    font-size: 16px;
    color: var(--deep-orange);
}

.play-area {
    background: var(--dark-sand);
}

.game-fullscreen {
    max-width: 100%;
    background: #000;
    border: 4px solid var(--primary-orange);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.game-fullscreen iframe {
    width: 100%;
    height: 700px;
    display: block;
}

/* Page Title Styles */
.page-title {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--deep-orange) 100%);
    text-align: center;
    padding: 60px 40px;
}

.page-title h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    color: white;
    margin-bottom: 10px;
}

.date-info {
    font-size: 16px;
    color: var(--sand-bg);
    font-style: italic;
}

.disclaimer-header {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
}

/* Terms/Privacy/Disclaimer Content */
.terms-document, .privacy-document, .disclaimer-document {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.terms-document h2, .privacy-document h2, .disclaimer-document h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 32px;
    color: var(--deep-orange);
    margin-top: 35px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-orange);
}

.terms-document h3, .privacy-document h3, .disclaimer-document h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    color: var(--warm-brown);
    margin-top: 25px;
    margin-bottom: 15px;
}

.terms-document p, .privacy-document p, .disclaimer-document p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.terms-document ul, .privacy-document ul, .disclaimer-document ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.terms-document li, .privacy-document li, .disclaimer-document li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Critical Warning Boxes */
.critical-warning {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.1), rgba(255, 140, 66, 0.1));
    border: 3px solid #d32f2f;
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
}

.critical-warning h2 {
    color: #d32f2f !important;
    border-bottom-color: #d32f2f !important;
}

.essential-points {
    background: var(--sand-bg);
    border: 2px solid var(--primary-orange);
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
}

.essential-points ul {
    list-style: none;
}

.essential-points li {
    padding: 12px 0;
    border-bottom: 1px solid var(--dark-sand);
}

.essential-points li:last-child {
    border-bottom: none;
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: white;
    max-width: 500px;
    width: 90%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(255, 140, 66, 0.5);
    border: 3px solid var(--primary-orange);
}

.age-modal-icon {
    text-align: center;
    font-size: 64px;
    padding: 30px 0 10px;
}

.age-modal-content h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 32px;
    color: var(--deep-orange);
    text-align: center;
    margin-bottom: 20px;
}

.age-modal-content p {
    font-size: 17px;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 15px;
    padding: 0 30px;
    color: var(--text-dark);
}

.age-buttons {
    display: flex;
    gap: 15px;
    padding: 0 30px 30px;
    margin-top: 25px;
}

.btn-verify, .btn-exit {
    flex: 1;
    padding: 16px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-verify {
    background: var(--primary-orange);
    color: white;
}

.btn-verify:hover {
    background: var(--deep-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

.btn-exit {
    background: #e0e0e0;
    color: var(--text-dark);
}

.btn-exit:hover {
    background: #bdbdbd;
}

/* Footer */
.main-footer {
    background: linear-gradient(180deg, var(--deep-brown) 0%, var(--warm-brown) 100%);
    color: var(--sand-bg);
    padding: 50px 40px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.footer-section h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--dark-sand);
}

.footer-section a {
    display: block;
    color: var(--sand-bg);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 140, 66, 0.3);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--dark-sand);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .mobile-header {
        display: flex;
    }

    .main-content {
        margin-left: 0;
        padding-top: 60px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 60px 20px;
    }

    .hero-banner h1 {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .intro-section, .key-points, .game-showcase, .features-showcase,
    .responsibility-section, .play-intro, .play-instructions, .play-area,
    .page-title, .terms-content, .privacy-content, .disclaimer-content {
        padding: 40px 20px;
    }

    .intro-content, .responsibility-box, .instructions-card,
    .terms-document, .privacy-document, .disclaimer-document {
        padding: 25px;
    }

    .points-container, .features-layout {
        grid-template-columns: 1fr;
    }

    .game-embed iframe {
        height: 400px;
    }

    .game-fullscreen iframe {
        height: 500px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-banner h1 {
        font-size: 32px;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 16px;
    }

    .age-buttons {
        flex-direction: column;
    }
}
