@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Karla:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-deep: #1a1423;
    --bg-panel: #251d30;
    --lime: #a3e635;
    --yellow: #facc15;
    --light: #fef9c3;
    --text-soft: #c4b8d6;
}

body {
    font-family: 'Karla', sans-serif;
    background: var(--bg-deep);
    color: var(--light);
    min-height: 100vh;
    line-height: 1.75;
}

h1, h2, h3, h4 {
    font-family: 'Quicksand', sans-serif;
}

a {
    color: var(--lime);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--yellow);
}

.top-header {
    background: rgba(26, 20, 35, 0.95);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(163, 230, 53, 0.2);
}

.top-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-block {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-block svg {
    width: 44px;
    height: 44px;
}

.logo-text {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lime);
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-btn span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--lime);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger-btn.open span:first-child {
    transform: rotate(45deg) translate(6px, 5px);
}

.hamburger-btn.open span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.open span:last-child {
    transform: rotate(-45deg) translate(6px, -5px);
}

.top-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.top-nav a {
    color: var(--text-soft);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.top-nav a:hover {
    color: var(--lime);
}

.content-wrap {
    padding-top: 78px;
}

.welcome-area {
    padding: 7rem 2rem 5rem;
    text-align: center;
    background: radial-gradient(ellipse at top, rgba(163, 230, 53, 0.08) 0%, transparent 50%);
}

.welcome-area h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.welcome-area h1 span {
    color: var(--lime);
}

.welcome-area .blurb {
    font-size: 1.15rem;
    color: var(--text-soft);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.cta-btn {
    display: inline-block;
    background: var(--lime);
    color: var(--bg-deep);
    padding: 1rem 3rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: var(--yellow);
    color: var(--bg-deep);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(163, 230, 53, 0.3);
}

.warnings {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.warning-card {
    background: var(--bg-panel);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid var(--lime);
}

.warning-card .icon {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

.warning-card h3 {
    color: var(--lime);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.warning-card p {
    color: var(--text-soft);
    font-size: 0.95rem;
}

.game-wrapper {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.game-wrapper h2 {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.game-wrapper h2 span {
    color: var(--lime);
}

.game-wrapper .sub {
    text-align: center;
    color: var(--text-soft);
    margin-bottom: 2.5rem;
}

.game-container {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-panel);
    border: 1px solid rgba(163, 230, 53, 0.2);
}

.game-container iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.perks-section {
    background: var(--bg-panel);
    padding: 4rem 2rem;
    margin: 3rem 0;
}

.perks-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.perks-list {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.perk {
    text-align: center;
    min-width: 140px;
}

.perk .ico {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.perk h4 {
    color: var(--lime);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.perk p {
    color: var(--text-soft);
    font-size: 0.85rem;
}

.article-page {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.article-page h1 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.article-page h1 span {
    color: var(--lime);
}

.article-page h2 {
    color: var(--lime);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
}

.article-page p {
    color: var(--text-soft);
    margin-bottom: 1.2rem;
}

.article-page ul {
    color: var(--text-soft);
    margin: 1rem 0 1.5rem 1.8rem;
}

.article-page li {
    margin-bottom: 0.5rem;
}

.site-footer {
    background: rgba(37, 29, 48, 0.9);
    padding: 2.5rem 2rem;
    border-top: 1px solid rgba(163, 230, 53, 0.2);
}

.footer-center {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.help-links {
    margin-bottom: 1.2rem;
}

.help-links a {
    margin: 0 1rem;
    color: var(--text-soft);
    font-size: 0.9rem;
}

.footer-center .small {
    color: var(--text-soft);
    font-size: 0.85rem;
    opacity: 0.7;
}

.age-wall {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 20, 35, 0.98);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-box {
    background: var(--bg-panel);
    padding: 3rem;
    border-radius: 16px;
    max-width: 450px;
    text-align: center;
    border: 2px solid var(--lime);
}

.age-box h2 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.age-box p {
    color: var(--text-soft);
    margin-bottom: 2rem;
}

.age-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btns button {
    padding: 0.9rem 2rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-yes {
    background: var(--lime);
    border: none;
    color: var(--bg-deep);
}

.btn-yes:hover {
    background: var(--yellow);
}

.btn-no {
    background: transparent;
    border: 2px solid var(--text-soft);
    color: var(--text-soft);
}

.btn-no:hover {
    border-color: var(--light);
    color: var(--light);
}

.hidden {
    display: none !important;
}

@media (max-width: 900px) {
    .warnings {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger-btn {
        display: block;
    }
    
    .top-nav {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: var(--bg-deep);
        padding: 2rem;
        transform: translateY(-150%);
        transition: transform 0.3s;
    }
    
    .top-nav.show {
        transform: translateY(0);
    }
    
    .top-nav ul {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
    }
    
    .welcome-area h1 {
        font-size: 2.2rem;
    }
    
    .game-container iframe {
        height: 450px;
    }
    
    .article-page h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.2rem;
    }
    
    .welcome-area {
        padding: 5rem 1rem 3rem;
    }
    
    .welcome-area h1 {
        font-size: 1.8rem;
    }
    
    .game-container iframe {
        height: 320px;
    }
    
    .age-box {
        margin: 1rem;
        padding: 2rem;
    }
}
