@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&family=Open+Sans:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sun-orange: #ff6b35;
    --golden-yellow: #ffb347;
    --warm-coral: #ff8c61;
    --light-peach: #fff5ee;
    --deep-orange: #e85d3d;
    --warm-white: #fffaf5;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, #fff9f0 0%, #ffe8d6 100%);
    color: #2c2416;
    line-height: 1.7;
    min-height: 100vh;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, var(--sun-orange), var(--warm-coral));
    box-shadow: 0 2px 20px rgba(255, 107, 53, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 22px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    color: white;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.logo-sub {
    display: block;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.95;
    margin-top: 3px;
}

.main-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.main-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.main-menu a:hover,
.main-menu a.current {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Hamburger */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    padding: 5px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, var(--sun-orange), var(--warm-coral));
    padding: 90px 35px;
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 20px 0;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.mobile-menu a:hover {
    padding-left: 20px;
}

/* Container */
.main-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 55px 40px;
}

/* Hero Section */
.hero-banner {
    text-align: center;
    padding: 55px 0;
    margin-bottom: 55px;
}

.hero-banner h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 62px;
    font-weight: 800;
    color: var(--sun-orange);
    margin-bottom: 18px;
    text-shadow: 2px 2px 4px rgba(255, 107, 53, 0.1);
}

.hero-banner p {
    font-size: 22px;
    color: var(--deep-orange);
    font-weight: 400;
}

/* Card */
.card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 25px rgba(255, 107, 53, 0.15);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 35px rgba(255, 107, 53, 0.25);
    transform: translateY(-3px);
}

.card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    color: var(--sun-orange);
    margin-bottom: 22px;
    font-weight: 700;
}

.card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    color: var(--warm-coral);
    margin: 28px 0 15px 0;
    font-weight: 600;
}

.card p {
    margin-bottom: 20px;
    color: #3c3426;
}

.card ul,
.card ol {
    padding-left: 32px;
    margin-bottom: 20px;
    color: #3c3426;
}

.card li {
    margin: 12px 0;
}

/* Alert Box */
.alert {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border-left: 5px solid var(--golden-yellow);
    padding: 22px;
    margin: 25px 0;
    border-radius: 12px;
}

.alert.info {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-left-color: #64b5f6;
}

.alert h3 {
    color: var(--deep-orange);
    margin: 0 0 12px 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.alert.info h3 {
    color: #1976d2;
}

/* Cards Grid */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin: 35px 0;
}

.grid-item {
    background: linear-gradient(135deg, white, var(--light-peach));
    border: 2px solid var(--golden-yellow);
    border-radius: 18px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(255, 107, 53, 0.1);
}

.grid-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    border-color: var(--sun-orange);
}

.grid-item h3 {
    color: var(--sun-orange);
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.grid-item p {
    color: #3c3426;
    margin: 0;
}

/* Game Container */
.game-container {
    background: linear-gradient(135deg, var(--light-peach), white);
    border: 3px solid var(--sun-orange);
    border-radius: 22px;
    padding: 28px;
    margin: 40px 0;
    box-shadow: 0 8px 35px rgba(255, 107, 53, 0.2);
}

.game-container iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 15px;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, var(--sun-orange), var(--warm-coral));
    color: white;
    padding: 50px 40px;
    margin-top: 70px;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.footer-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    margin-bottom: 22px;
    font-weight: 700;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Age Verification */
.age-verify {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.93);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-verify.show {
    display: flex;
}

.age-box {
    background: linear-gradient(135deg, white, var(--light-peach));
    border: 4px solid var(--sun-orange);
    border-radius: 25px;
    padding: 60px;
    max-width: 580px;
    text-align: center;
    box-shadow: 0 15px 60px rgba(255, 107, 53, 0.5);
}

.age-box h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 44px;
    color: var(--sun-orange);
    margin-bottom: 22px;
    font-weight: 800;
}

.age-box p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #3c3426;
    line-height: 1.7;
}

.age-buttons {
    display: flex;
    gap: 22px;
    justify-content: center;
}

.age-button {
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    border: 3px solid;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-button.accept {
    background: var(--sun-orange);
    border-color: var(--sun-orange);
    color: white;
}

.age-button.accept:hover {
    background: var(--deep-orange);
    border-color: var(--deep-orange);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.age-button.decline {
    background: transparent;
    border-color: #999;
    color: #666;
}

.age-button.decline:hover {
    border-color: #666;
    color: #444;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger-btn {
        display: block;
    }

    .main-menu {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .header-content {
        padding: 18px 20px;
    }

    .logo-text {
        font-size: 28px;
    }

    .main-container {
        padding: 35px 20px;
    }

    .hero-banner h1 {
        font-size: 44px;
    }

    .hero-banner p {
        font-size: 19px;
    }

    .card {
        padding: 28px;
    }

    .game-container iframe {
        height: 500px;
    }

    .age-box {
        padding: 42px 28px;
        margin: 20px;
    }

    .age-buttons {
        flex-direction: column;
    }

    .grid-cards {
        grid-template-columns: 1fr;
    }
}
