* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(180deg, #fff5f5 0%, #ffe3e3 100%);
    color: #2d3748;
    line-height: 1.6;
}

.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.95), rgba(255, 195, 113, 0.95));
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.age-overlay.hidden {
    display: none;
}

.age-box {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    max-width: 480px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 4px solid #ff6b6b;
}

.age-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.age-box h2 {
    font-family: 'Righteous', cursive;
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.age-box p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.age-text {
    font-weight: 800;
    color: #ff6b6b;
    font-size: 1.4rem !important;
}

.note-text {
    color: #718096;
    font-style: italic;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.age-buttons button {
    flex: 1;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 800;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-family: 'Righteous', cursive;
    transition: all 0.3s ease;
}

.btn-yes {
    background: linear-gradient(135deg, #ff6b6b, #ffd93d);
    color: white;
}

.btn-yes:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.btn-no {
    background: #cbd5e0;
    color: #4a5568;
}

.btn-no:hover {
    background: #a0aec0;
}

.header {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid #ff6b6b;
}

.header-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-area h1 {
    font-family: 'Righteous', cursive;
    font-size: 2rem;
    color: #ff6b6b;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.bar {
    width: 30px;
    height: 4px;
    background: #ff6b6b;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.navigation {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff6b6b;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #ffd93d);
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.content-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.splash {
    background: linear-gradient(135deg, #ff6b6b, #ffd93d);
    padding: 5rem 2rem;
    text-align: center;
    color: white;
}

.splash-title {
    font-family: 'Righteous', cursive;
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.splash-text {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.splash-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature-pill {
    background: white;
    color: #ff6b6b;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.main-heading {
    font-family: 'Righteous', cursive;
    font-size: 3rem;
    text-align: center;
    color: #2d3748;
    margin-bottom: 1rem;
}

.sub-heading {
    text-align: center;
    font-size: 1.3rem;
    color: #718096;
    margin-bottom: 3rem;
}

.alerts {
    padding: 5rem 0;
}

.alert-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.alert-card {
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.alert-card:hover {
    transform: translateY(-10px);
}

.alert-card.red {
    background: linear-gradient(135deg, #ff6b6b, #ff8787);
    color: white;
}

.alert-card.yellow {
    background: linear-gradient(135deg, #ffd93d, #ffe66d);
    color: #2d3748;
}

.alert-card.blue {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white;
}

.alert-emoji {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1rem;
}

.alert-card h3 {
    font-family: 'Righteous', cursive;
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.game-area {
    padding: 5rem 0;
    background: white;
}

.game-box {
    margin-bottom: 2rem;
}

.game-display {
    width: 100%;
    height: 700px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    border: 5px solid #ff6b6b;
}

.game-display iframe {
    width: 100%;
    height: 100%;
}

.game-hints {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.hint {
    background: linear-gradient(135deg, #fff5f5, #ffe3e3);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 5px solid #ff6b6b;
}

.hint-icon {
    font-size: 2rem;
}

.hint span:last-child {
    font-weight: 800;
    color: #2d3748;
}

.features {
    padding: 5rem 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-item {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 5px solid #ff6b6b;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.3);
}

.feature-emoji {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-family: 'Righteous', cursive;
    font-size: 1.6rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.honesty {
    padding: 5rem 0;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}

.honesty-box {
    text-align: center;
    color: white;
}

.honesty-box h2 {
    font-family: 'Righteous', cursive;
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.honesty-box p {
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.stats-display {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-unit {
    text-align: center;
}

.stat-num {
    font-family: 'Righteous', cursive;
    font-size: 4rem;
    font-weight: 900;
}

.stat-desc {
    font-size: 1.3rem;
    margin-top: 0.5rem;
}

.extra-info {
    padding: 5rem 0;
}

.info-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.info-panel {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.info-panel h3 {
    font-family: 'Righteous', cursive;
    font-size: 1.8rem;
    color: #ff6b6b;
    margin-bottom: 1.5rem;
}

.info-panel p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.footer {
    background: linear-gradient(180deg, #2d3748 0%, #1a202c 100%);
    color: #e2e8f0;
    padding: 4rem 0 2rem;
    border-top: 5px solid #ff6b6b;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-block h4 {
    font-family: 'Righteous', cursive;
    font-size: 1.5rem;
    color: #ffd93d;
    margin-bottom: 1.5rem;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.8rem;
}

.footer-list a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #ffd93d;
}

.footer-base {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid #4a5568;
    color: #cbd5e0;
}

@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .navigation.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .splash-title {
        font-size: 2.5rem;
    }

    .splash-text {
        font-size: 1.1rem;
    }

    .main-heading {
        font-size: 2rem;
    }

    .game-display {
        height: 500px;
    }

    .stats-display {
        gap: 2rem;
    }

    .stat-num {
        font-size: 3rem;
    }

    .age-box {
        margin: 1rem;
        padding: 2rem;
    }

    .age-buttons {
        flex-direction: column;
    }
}
