@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #f59e0b;
    --amber: #d97706;
    --orange: #ea580c;
    --brown-dark: #1c1410;
    --brown-mid: #2d211a;
    --cream: #fef3c7;
    --text-primary: #fef3c7;
    --text-dim: #d6d3d1;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    background: var(--brown-dark);
    color: var(--text-primary);
    line-height: 1.65;
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--brown-mid) 0%, rgba(44, 33, 26, 0.95) 100%);
    z-index: 1000;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.top-bar-inner {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.brand-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.brand-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}

.desktop-nav {
    display: flex;
    gap: 3rem;
}

.desktop-nav a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.desktop-nav a:hover {
    color: var(--gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 2px solid var(--gold);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gold);
    margin: 5px 0;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--brown-mid);
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.mobile-menu.show {
    display: block;
}

.mobile-menu a {
    display: block;
    color: var(--cream);
    text-decoration: none;
    padding: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.content-wrapper {
    padding-top: 95px;
}

.intro-section {
    background: linear-gradient(135deg, var(--amber) 0%, var(--orange) 100%);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.intro-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.intro-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.intro-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.notice-pills {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.pill {
    background: rgba(0, 0, 0, 0.2);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.main-section {
    max-width: 1800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-label::before {
    content: '';
    width: 5px;
    height: 30px;
    background: var(--gold);
    border-radius: 3px;
}

.game-area {
    background: var(--brown-mid);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 2px solid rgba(245, 158, 11, 0.3);
}

.game-display {
    width: 100%;
    height: 620px;
    border: none;
    border-radius: 8px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.benefit-box {
    background: var(--brown-mid);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    border-top: 4px solid var(--gold);
    transition: transform 0.3s;
}

.benefit-box:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-box h3 {
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.benefit-box p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.notice-panel {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.1), rgba(234, 88, 12, 0.05));
    border-left: 5px solid var(--gold);
    border-radius: 0 10px 10px 0;
    padding: 2rem;
    margin: 3rem 0;
}

.notice-panel h2 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.notice-panel p {
    color: var(--text-dim);
}

.checklist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.check-item {
    background: var(--brown-mid);
    padding: 1.25rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check-icon {
    color: var(--gold);
    font-size: 1.25rem;
}

.bottom-footer {
    background: var(--brown-mid);
    padding: 3rem 2rem;
    border-top: 3px solid var(--gold);
}

.footer-content {
    max-width: 1800px;
    margin: 0 auto;
    text-align: center;
}

.help-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.help-links a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}

.help-links a:hover {
    text-decoration: underline;
}

.legal-text {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-modal {
    background: var(--brown-mid);
    border: 3px solid var(--gold);
    border-radius: 16px;
    padding: 3rem;
    max-width: 500px;
    margin: 1rem;
    text-align: center;
}

.age-symbol {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.age-modal h2 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.age-modal p {
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.age-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.action-btn {
    padding: 0.9rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.action-btn.yes {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: white;
}

.action-btn.no {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.action-btn:hover {
    transform: scale(1.05);
}

.page-banner {
    background: linear-gradient(135deg, var(--amber), var(--orange));
    padding: 4rem 2rem;
    text-align: center;
}

.page-banner h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

.text-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 2rem;
}

.text-section {
    background: var(--brown-mid);
    border-radius: 10px;
    padding: 2rem;
    margin: 1.5rem 0;
}

.text-section h2 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.text-section p {
    color: var(--text-dim);
    margin-bottom: 0.75rem;
}

.text-section ul {
    color: var(--text-dim);
    margin: 1rem 0 1rem 1.5rem;
}

.text-section li {
    margin-bottom: 0.4rem;
}

@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .intro-content h1 {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .checklist {
        grid-template-columns: 1fr;
    }

    .game-display {
        height: 400px;
    }

    .age-actions {
        flex-direction: column;
    }

    .help-links {
        flex-direction: column;
        gap: 1rem;
    }
}
