* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fredoka', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #333;
    line-height: 1.6;
}

/* Header */
.site-header {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s;
    padding: 0.5rem 0;
}

.main-nav a:hover,
.main-nav a.active {
    color: #43e97b;
    transform: translateY(-2px);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    border-radius: 3px;
    transition: 0.3s;
}

/* Hero */
.hero-section {
    background: linear-gradient(135deg, rgba(67, 233, 123, 0.9), rgba(56, 249, 215, 0.9));
    padding: 5rem 2rem;
    text-align: center;
    color: #fff;
}

.hero-container h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-container p {
    font-size: 1.5rem;
    font-weight: 400;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1300px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.welcome-section {
    background: #fff;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.welcome-section h2 {
    color: #43e97b;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.welcome-section p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
}

/* Alert Boxes */
.alert-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.alert-box {
    padding: 2.5rem;
    border-radius: 20px;
    color: #fff;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.alert-box.green {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.alert-box.blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.alert-box.purple {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #555;
}

.alert-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.alert-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.alert-box p {
    font-size: 1.05rem;
    opacity: 0.95;
}

/* Game Zone */
.game-zone {
    background: #fff;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.game-zone h2 {
    color: #43e97b;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.game-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.game-window {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(67, 233, 123, 0.3);
}

.game-window iframe {
    width: 100%;
    height: 100%;
}

/* Perks Section */
.perks-section {
    background: #fff;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.perks-section h2 {
    color: #43e97b;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.perk-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.perk-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(67, 233, 123, 0.2);
}

.perk-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.perk-card h4 {
    color: #43e97b;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.perk-card p {
    color: #666;
    font-size: 1rem;
}

/* Play Page Styles */
.play-info {
    background: #fff;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2.5rem;
}

.play-info h2 {
    color: #43e97b;
    font-size: 2.3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item {
    text-align: center;
}

.info-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.info-item h3 {
    color: #43e97b;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.info-item p {
    color: #666;
    font-size: 1rem;
}

.fun-reminder {
    margin-top: 2.5rem;
}

.reminder-content {
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.reminder-content p {
    color: #333;
    font-size: 1.15rem;
    margin: 0;
}

/* Legal Content */
.legal-content {
    max-width: 1000px;
    margin: 0 auto;
}

.terms-box {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.terms-box h2 {
    color: #43e97b;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

.terms-box p {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

/* Age Overlay */
.age-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.age-overlay.show {
    display: flex;
}

.age-box {
    background: #fff;
    padding: 3.5rem;
    border-radius: 30px;
    text-align: center;
    max-width: 500px;
    margin: 0 20px;
    box-shadow: 0 15px 60px rgba(67, 233, 123, 0.4);
}

.age-emoji {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.age-box h2 {
    color: #43e97b;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.age-box p {
    color: #666;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.age-notice {
    color: #333 !important;
    font-weight: 600;
    font-size: 1.4rem !important;
}

.age-btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.yes-btn,
.no-btn {
    padding: 1.3rem 2rem;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Fredoka', sans-serif;
}

.yes-btn {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: #fff;
}

.no-btn {
    background: #ddd;
    color: #666;
}

.yes-btn:hover,
.no-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Footer */
.site-footer {
    background: #fff;
    padding: 3rem 2rem;
    margin-top: 4rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-content h3 {
    color: #43e97b;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-content p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.help-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.help-links a {
    color: #fff;
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.help-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(67, 233, 123, 0.4);
}

.copyright {
    color: #999;
    font-size: 0.95rem;
    margin-top: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: #fff;
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s;
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav a {
        padding: 1.2rem 0;
        border-bottom: 1px solid #eee;
    }

    .hero-container h1 {
        font-size: 2.5rem;
    }

    .hero-container p {
        font-size: 1.2rem;
    }

    .game-window {
        height: 400px;
    }

    .alert-boxes,
    .perks-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
}
