* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: #2d3748;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', sans-serif;
}

/* Age Check Overlay */
.age-check-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff3366 0%, #ff6b9d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-check-overlay.hidden {
    display: none;
}

.age-check-box {
    background: #fff;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.age-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.age-check-box h2 {
    font-size: 2.5rem;
    color: #ff3366;
    margin-bottom: 1rem;
}

.age-check-box p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.age-disclaimer {
    font-size: 0.95rem;
    color: #718096;
    margin-bottom: 2rem;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-yes,
.btn-no {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-family: 'Fredoka', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-yes {
    background: #ff3366;
    color: #fff;
}

.btn-yes:hover {
    background: #ff1a4d;
    transform: scale(1.05);
}

.btn-no {
    background: #e2e8f0;
    color: #4a5568;
}

.btn-no:hover {
    background: #cbd5e0;
}

/* Navigation */
.top-nav {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    max-width: 100%;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-text {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff3366;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    font-size: 1rem;
    color: #4a5568;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ff3366;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: #ff3366;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-menu a:hover::before {
    width: 100%;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger span {
    width: 24px;
    height: 3px;
    background: #ff3366;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid #e2e8f0;
}

.mobile-menu a {
    padding: 1.2rem 3rem;
    color: #4a5568;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #e2e8f0;
    transition: background 0.3s ease;
}

.mobile-menu a:hover {
    background: #fef5f8;
    color: #ff3366;
}

.mobile-menu.active {
    display: flex;
}

/* Banner */
.banner {
    background: linear-gradient(135deg, #ff3366 0%, #ffb347 100%);
    color: #fff;
    padding: 6rem 3rem;
    text-align: center;
}

.banner-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.btn-play {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #fff;
    color: #ff3366;
    text-decoration: none;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-play:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Perks */
.perks {
    padding: 5rem 3rem;
    background: #fff;
}

.perks-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.perk {
    text-align: center;
    padding: 2.5rem;
    background: #fef5f8;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.perk:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 51, 102, 0.15);
}

.perk-emoji {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.perk h3 {
    font-size: 1.8rem;
    color: #ff3366;
    margin-bottom: 1rem;
}

.perk p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Alerts */
.alerts {
    padding: 5rem 3rem;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.alerts-container {
    max-width: 1400px;
    margin: 0 auto;
}

.alerts-container h2 {
    text-align: center;
    font-size: 3rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.alerts-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

.alert-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.alert-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.alert-card.red {
    border-color: #ff3366;
}

.alert-card.blue {
    border-color: #4299e1;
}

.alert-card.orange {
    border-color: #ffb347;
}

.alert-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.alert-card p {
    color: #4a5568;
    line-height: 1.8;
}

/* Gameplay */
.gameplay {
    padding: 5rem 3rem;
    background: #fff;
}

.gameplay-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.gameplay-wrapper h2 {
    text-align: center;
    font-size: 3rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.gameplay-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

.game-window {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
}

.game-window iframe {
    width: 100%;
    height: 600px;
    display: block;
}

.gameplay-tip {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ff3366 0%, #ffb347 100%);
    border-radius: 15px;
    color: #fff;
    font-size: 1.1rem;
}

.gameplay-tip a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
}

/* About Us */
.about-us {
    padding: 5rem 3rem;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-left h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 2rem;
}

.about-left p {
    margin-bottom: 1.5rem;
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.9;
}

.features-box {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.features-box h3 {
    font-size: 1.8rem;
    color: #ff3366;
    margin-bottom: 2rem;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.feature-row:last-child {
    border-bottom: none;
}

.check {
    font-size: 1.5rem;
    color: #ff3366;
    font-weight: 700;
}

.feature-row span:last-child {
    font-size: 1.05rem;
    color: #4a5568;
}

/* Responsibility */
.responsibility {
    padding: 5rem 3rem;
    background: #fff;
}

.responsibility-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.responsibility-wrapper h2 {
    text-align: center;
    font-size: 3rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.resp-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

.resp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.resp-box {
    background: #fef5f8;
    padding: 2.5rem;
    border-radius: 15px;
    border-top: 4px solid #ff3366;
}

.resp-box h4 {
    font-size: 1.5rem;
    color: #ff3366;
    margin-bottom: 1rem;
}

.resp-box p {
    color: #4a5568;
    line-height: 1.8;
}

/* Footer */
.site-footer {
    background: #2d3748;
    color: #cbd5e0;
    padding: 3rem 3rem 1.5rem;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-family: 'Fredoka', sans-serif;
    color: #ff3366;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.footer-col p {
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ff3366;
}

.footer-bar {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
    max-width: 1400px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .burger {
        display: flex;
    }
    
    .nav-content {
        padding: 1rem 1.5rem;
    }
    
    .banner-text h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.3rem;
    }
    
    .banner {
        padding: 4rem 1.5rem;
    }
    
    .perks,
    .alerts,
    .gameplay,
    .about-us,
    .responsibility {
        padding: 3.5rem 1.5rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .game-window iframe {
        height: 400px;
    }
    
    .age-check-box {
        padding: 2.5rem 2rem;
        margin: 1rem;
    }
    
    .age-buttons {
        flex-direction: column;
    }
}
