@import url('https://fonts.googleapis.com/css2?family=Italiana&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

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

:root {
    --gold: #F59E0B;
    --gold-light: #FCD34D;
    --gold-dark: #B45309;
    --black: #18181B;
    --charcoal: #27272A;
    --silver: #D4D4D8;
    --white: #FAFAFA;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(24, 24, 27, 1) 0%, rgba(24, 24, 27, 0.95) 100%);
    border-bottom: 1px solid var(--gold-dark);
}

.header-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 1.2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-brand {
    font-family: 'Italiana', serif;
    font-size: 2.4rem;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 4px;
}

.navigation ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.navigation a {
    color: var(--silver);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.navigation a:hover {
    color: var(--gold);
}

.mobile-trigger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-trigger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gold);
    margin: 6px 0;
}

.main {
    padding-top: 90px;
}

.hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    background: radial-gradient(ellipse at center top, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
}

.hero h1 {
    font-family: 'Italiana', serif;
    font-size: 5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 6px;
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--silver);
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero .description {
    max-width: 600px;
    color: rgba(212, 212, 216, 0.8);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.gold-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    padding: 1rem 3rem;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.gold-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.notices {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 2rem;
    background: var(--charcoal);
    border-top: 1px solid rgba(245, 158, 11, 0.2);
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    flex-wrap: wrap;
}

.notice {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notice .icon {
    font-size: 1.3rem;
}

.game-area {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Italiana', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--silver);
    font-size: 1rem;
}

.game-frame-container {
    background: linear-gradient(145deg, var(--charcoal) 0%, var(--black) 100%);
    border: 1px solid var(--gold-dark);
    padding: 1.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    background: #000;
}

.benefits {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
}

.benefits-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border: 1px solid rgba(245, 158, 11, 0.15);
    background: rgba(39, 39, 42, 0.5);
    transition: all 0.3s;
}

.benefit-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.benefit-item h3 {
    font-family: 'Italiana', serif;
    color: var(--gold-light);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: var(--silver);
    font-size: 0.95rem;
}

.about-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.about-block {
    background: var(--charcoal);
    padding: 2.5rem;
    border-left: 3px solid var(--gold);
}

.about-block h3 {
    font-family: 'Italiana', serif;
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.about-block p {
    color: var(--silver);
}

.footer {
    background: #0D0D0F;
    padding: 3rem 2rem;
    border-top: 1px solid var(--gold-dark);
}

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

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--silver);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--gold);
}

.responsible-section {
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 158, 11, 0.1);
}

.responsible-section p {
    color: rgba(212, 212, 216, 0.6);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.responsible-section a {
    color: var(--gold);
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.8rem;
}

.copyright {
    margin-top: 2rem;
    color: rgba(212, 212, 216, 0.4);
    font-size: 0.8rem;
}

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

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

.age-box {
    background: var(--charcoal);
    border: 1px solid var(--gold);
    padding: 3.5rem;
    max-width: 460px;
    text-align: center;
    margin: 1rem;
}

.age-box h2 {
    font-family: 'Italiana', serif;
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.age-box p {
    color: var(--silver);
    margin-bottom: 2rem;
}

.age-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btn {
    padding: 0.9rem 2rem;
    border: none;
    cursor: pointer;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.age-btn.yes {
    background: var(--gold);
    color: var(--black);
}

.age-btn.no {
    background: transparent;
    border: 1px solid var(--silver);
    color: var(--silver);
}

.age-btn:hover {
    transform: scale(1.05);
}

.page-hero {
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
    padding: 8rem 2rem 4rem;
    text-align: center;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.page-hero h1 {
    font-family: 'Italiana', serif;
    font-size: 3rem;
    color: var(--gold);
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-section {
    background: var(--charcoal);
    border-left: 3px solid var(--gold);
    padding: 2rem 2.5rem;
    margin-bottom: 2rem;
}

.content-section h2 {
    font-family: 'Italiana', serif;
    color: var(--gold-light);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.content-section p {
    color: var(--silver);
    margin-bottom: 1rem;
}

.content-section ul {
    color: var(--silver);
    margin-left: 1.5rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-trigger {
        display: block;
    }

    .navigation ul {
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        background: rgba(24, 24, 27, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .navigation ul.active {
        transform: translateX(0);
    }

    .hero h1 {
        font-size: 3rem;
    }

    .notices {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .game-frame {
        height: 380px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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