@import url('https://fonts.googleapis.com/css2?family=Russo+One&family=Inter:wght@300;400;500;700&display=swap');

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

:root {
    --emerald: #10b981;
    --emerald-dark: #059669;
    --navy: #0f172a;
    --slate: #1e293b;
    --light: #f1f5f9;
    --white: #ffffff;
    --muted: #94a3b8;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--navy);
    color: var(--light);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Russo One', sans-serif;
}

.top-bar {
    background: var(--slate);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
}

.top-bar-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 25px;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-icon {
    width: 44px;
    height: 44px;
    background: var(--emerald);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.brand-text {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--emerald);
}

.mobile-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-btn span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--white);
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}

.mobile-panel {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    border-bottom: 2px solid var(--emerald);
    padding: 20px;
}

.mobile-panel.visible {
    display: block;
}

.mobile-panel a {
    display: block;
    padding: 15px;
    color: var(--light);
    text-decoration: none;
    font-size: 1rem;
    border-bottom: 1px solid var(--slate);
    text-transform: uppercase;
}

.page-body {
    margin-top: 68px;
}

.hero-zone {
    background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--navy) 100%);
    padding: 90px 25px 70px;
    text-align: center;
}

.hero-zone h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-zone p {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 35px;
    color: var(--muted);
}

.status-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.status-item {
    background: rgba(15, 23, 42, 0.6);
    padding: 15px 28px;
    border-radius: 6px;
    border-left: 4px solid var(--emerald);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.status-emoji {
    font-size: 1.3rem;
}

.play-zone {
    padding: 60px 25px;
    background: var(--navy);
}

.play-zone h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: var(--emerald);
}

.game-holder {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--slate);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--emerald);
}

.game-holder iframe {
    width: 100%;
    height: 560px;
    border: none;
    display: block;
}

.highlights {
    padding: 80px 25px;
    background: var(--slate);
}

.highlights h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.highlight-card {
    background: var(--navy);
    padding: 35px;
    border-radius: 8px;
    text-align: center;
    border-top: 3px solid var(--emerald);
    transition: transform 0.2s;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.highlight-card h3 {
    color: var(--emerald);
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.highlight-card p {
    color: var(--muted);
    font-size: 0.95rem;
}

.info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 25px;
}

.info-block {
    background: var(--slate);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--emerald);
}

.info-block h3 {
    color: var(--emerald);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.info-block p {
    color: var(--muted);
}

footer {
    background: var(--slate);
    padding: 50px 25px;
    border-top: 1px solid var(--emerald);
}

.footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: var(--emerald);
}

.responsible-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.responsible-section p {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.help-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.help-links a {
    color: var(--emerald);
    text-decoration: none;
    font-size: 0.85rem;
}

.copyright-line {
    margin-top: 25px;
    color: var(--muted);
    font-size: 0.8rem;
}

.age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

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

.age-box {
    background: var(--slate);
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 460px;
    margin: 20px;
    border: 2px solid var(--emerald);
}

.age-symbol {
    font-size: 4rem;
    margin-bottom: 20px;
}

.age-box h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.age-box p {
    color: var(--muted);
    margin-bottom: 30px;
}

.age-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 14px 35px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    border: none;
}

.btn-green {
    background: var(--emerald);
    color: var(--navy);
}

.btn-green:hover {
    background: var(--emerald-dark);
    transform: scale(1.02);
}

.btn-ghost {
    background: transparent;
    border: 2px solid var(--muted);
    color: var(--muted);
}

.btn-ghost:hover {
    border-color: var(--light);
    color: var(--light);
}

.page-hero {
    background: var(--emerald-dark);
    padding: 120px 25px 50px;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-transform: uppercase;
}

.text-page {
    padding: 50px 25px;
    max-width: 900px;
    margin: 0 auto;
}

.text-page h2 {
    color: var(--emerald);
    margin: 35px 0 15px;
    font-size: 1.3rem;
    text-transform: uppercase;
}

.text-page p {
    color: var(--muted);
    margin-bottom: 15px;
}

.text-page ul {
    color: var(--muted);
    margin: 15px 0 15px 25px;
}

.text-page li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-btn {
        display: block;
    }
    
    .game-holder iframe {
        height: 380px;
    }
    
    .hero-zone {
        padding: 60px 20px 50px;
    }
    
    .status-bar {
        flex-direction: column;
        align-items: center;
    }
    
    .age-btns {
        flex-direction: column;
    }
}
