* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #FFF5E1 0%, #FFDAB9 50%, #FFE4B5 100%);
    color: #2C1810;
    line-height: 1.7;
    min-height: 100vh;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, #FF6B35 0%, #FF4500 100%);
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-family: 'Righteous', cursive;
    font-size: 2rem;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.bar {
    width: 28px;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
    transition: all 0.3s;
}

.main-menu {
    display: flex;
    gap: 2rem;
}

.main-menu a {
    color: #FFF5E1;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.main-menu a:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
}

/* Age Overlay */
.age-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-overlay.active {
    display: flex;
}

.age-box {
    background: linear-gradient(135deg, #FF6B35 0%, #FF4500 100%);
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(255, 69, 0, 0.5);
    border: 3px solid #FFD700;
}

.age-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.age-box h2 {
    font-family: 'Righteous', cursive;
    color: #FFD700;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.age-box p {
    color: #FFF5E1;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.age-question {
    font-weight: 700;
    font-size: 1.3rem !important;
    margin-top: 1.5rem !important;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-age-yes, .btn-age-no {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-age-yes {
    background: #FFD700;
    color: #FF4500;
}

.btn-age-yes:hover {
    background: #FFA500;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.btn-age-no {
    background: rgba(255, 255, 255, 0.2);
    color: #FFF5E1;
}

.btn-age-no:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Hero Banner */
.hero-banner {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 69, 0, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #FF4500;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.hero-banner h1 {
    font-family: 'Righteous', cursive;
    font-size: 3.8rem;
    color: #FF4500;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(255, 107, 53, 0.3);
}

.hero-lead {
    font-size: 1.4rem;
    color: #8B4513;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tags {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.tag {
    background: rgba(255, 107, 53, 0.15);
    border: 2px solid #FF6B35;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    color: #FF4500;
    font-size: 1.05rem;
}

.hero-btn {
    display: inline-block;
    padding: 1.3rem 3rem;
    background: linear-gradient(135deg, #FF6B35 0%, #FF4500 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 6px 25px rgba(255, 69, 0, 0.4);
    transition: all 0.3s;
}

.hero-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(255, 69, 0, 0.6);
}

.hero-decoration {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -50px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -100px;
}

.circle-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    right: 10%;
}

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: 'Righteous', cursive;
    font-size: 2.8rem;
    color: #FF4500;
    text-align: center;
    margin-bottom: 2rem;
}

/* Welcome Section */
.welcome-section {
    padding: 5rem 2rem;
    background: white;
    border-radius: 20px;
    margin: 3rem auto;
    max-width: 1400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.welcome-content p {
    font-size: 1.15rem;
    color: #5D4037;
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

/* Info Cards */
.info-cards-section {
    padding: 5rem 2rem;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
}

.card-red {
    background: linear-gradient(135deg, #FFE0E0 0%, #FFCCCC 100%);
    border: 3px solid #FF6B6B;
}

.card-yellow {
    background: linear-gradient(135deg, #FFF9E0 0%, #FFECB3 100%);
    border: 3px solid #FFD54F;
}

.card-orange {
    background: linear-gradient(135deg, #FFE8D6 0%, #FFDAB9 100%);
    border: 3px solid #FF9800;
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-family: 'Righteous', cursive;
    font-size: 1.6rem;
    color: #2C1810;
    margin-bottom: 1rem;
}

.info-card p {
    color: #5D4037;
    line-height: 1.8;
}

/* Game Section */
.game-section {
    padding: 5rem 2rem;
    background: white;
    border-radius: 20px;
    margin: 3rem auto;
    max-width: 1400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.game-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #8B4513;
    margin-bottom: 2.5rem;
}

.game-box {
    background: #FFE4B5;
    border: 4px solid #FF6B35;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.game-embed {
    width: 100%;
    height: 650px;
    border: none;
}

.game-details {
    background: #FFF5E1;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #FFD700;
}

.game-details p {
    color: #5D4037;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.game-fullscreen-link {
    display: inline-block;
    margin-top: 1rem;
    color: #FF4500;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.game-fullscreen-link:hover {
    color: #FF6B35;
    transform: translateX(5px);
}

/* Perks Section */
.perks-section {
    padding: 5rem 2rem;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.perk-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.perk-item:hover {
    border-color: #FF6B35;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.perk-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.perk-item h4 {
    font-family: 'Righteous', cursive;
    font-size: 1.4rem;
    color: #FF4500;
    margin-bottom: 0.8rem;
}

.perk-item p {
    color: #5D4037;
    line-height: 1.7;
}

/* Responsibility Banner */
.responsibility-banner {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #FFF3CD 0%, #FFE69C 100%);
    border-top: 4px solid #FFC107;
    border-bottom: 4px solid #FFC107;
}

.responsibility-content h2 {
    font-family: 'Righteous', cursive;
    color: #E65100;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.responsibility-content p {
    color: #6D4C41;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #5D4037 0%, #3E2723 100%);
    color: #FFE0B2;
    padding: 3rem 2rem 1.5rem;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-block h4 {
    font-family: 'Righteous', cursive;
    color: #FFD700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.footer-block p {
    color: #FFCCBC;
    line-height: 1.7;
}

.footer-block ul {
    list-style: none;
}

.footer-block ul li {
    margin-bottom: 0.7rem;
}

.footer-block a {
    color: #FFCCBC;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-block a:hover {
    color: #FFD700;
}

.footer-legal {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    color: #BCAAA4;
}

/* Play Page */
.play-page {
    padding: 3rem 2rem;
    min-height: calc(100vh - 200px);
}

.play-wrapper {
    max-width: 1600px;
    margin: 0 auto;
}

.play-header {
    text-align: center;
    margin-bottom: 3rem;
}

.play-header h1 {
    font-family: 'Righteous', cursive;
    font-size: 3.2rem;
    color: #FF4500;
    margin-bottom: 1rem;
}

.play-header p {
    font-size: 1.3rem;
    color: #8B4513;
}

.play-game-container {
    background: white;
    border: 4px solid #FF6B35;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 3rem;
}

.play-game-frame {
    width: 100%;
    height: 750px;
    border: none;
}

.play-info-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.play-info-box h2 {
    font-family: 'Righteous', cursive;
    color: #FF4500;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-col h3 {
    color: #FF6B35;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.info-col p {
    color: #5D4037;
    line-height: 1.8;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 2rem;
    min-height: calc(100vh - 200px);
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.legal-wrapper h1 {
    font-family: 'Righteous', cursive;
    font-size: 3rem;
    color: #FF4500;
    margin-bottom: 0.5rem;
}

.effective-date {
    color: #8B4513;
    font-style: italic;
    margin-bottom: 2.5rem;
}

.terms-section {
    margin-bottom: 3rem;
}

.terms-section h2 {
    font-family: 'Righteous', cursive;
    color: #FF6B35;
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.terms-section h3 {
    color: #FF8C00;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.terms-section p {
    color: #5D4037;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.terms-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.terms-section ul li {
    color: #6D4C41;
    margin-bottom: 0.7rem;
    line-height: 1.8;
}

.alert-box {
    background: linear-gradient(135deg, #FFEBEE 0%, #FFCDD2 100%);
    border: 3px solid #E53935;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 3rem;
}

.alert-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.alert-box h2 {
    color: #C62828;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.alert-box p {
    color: #6D4C41;
}

.final-note {
    background: linear-gradient(135deg, #FFF9C4 0%, #FFF59D 100%);
    border: 3px solid #FDD835;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

.final-note h3 {
    color: #F57F17;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .main-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: #FF6B35;
        width: 100%;
        padding: 2rem;
        transition: left 0.3s ease;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .main-menu.active {
        left: 0;
    }

    .main-menu a {
        padding: 1rem;
        text-align: center;
    }

    .hero-banner h1 {
        font-size: 2.5rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .hero-tags {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .info-cards-grid, .perks-grid, .info-columns {
        grid-template-columns: 1fr;
    }

    .game-embed, .play-game-frame {
        height: 500px;
    }

    .legal-wrapper, .play-info-box {
        padding: 1.5rem;
    }

    .legal-wrapper h1, .play-header h1 {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .age-box {
        margin: 1rem;
        padding: 2rem;
    }

    .age-buttons {
        flex-direction: column;
    }
}
