@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap');

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

body {
    font-family: 'Rubik', sans-serif;
    background: #0a0a0a;
    color: #f5f5f5;
    line-height: 1.75;
}

a {
    color: #fbbf24;
    text-decoration: none;
    transition: 0.2s;
}

a:hover {
    color: #fcd34d;
}

.header-bar {
    background: #111111;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 500;
    border-bottom: 1px solid #222;
}

.header-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.branding {
    display: flex;
    align-items: center;
    gap: 14px;
}

.branding svg {
    width: 50px;
    height: 50px;
}

.branding span {
    font-size: 1.7rem;
    font-weight: 700;
    color: #fbbf24;
}

.hamburger-menu {
    display: none;
    background: #1a1a1a;
    border: 1px solid #fbbf24;
    border-radius: 6px;
    padding: 10px 12px;
    cursor: pointer;
}

.hamburger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fbbf24;
    margin: 5px 0;
}

.nav-bar ul {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

.nav-bar a {
    display: block;
    padding: 0.7rem 1.2rem;
    font-weight: 500;
    color: #f5f5f5;
    border-radius: 6px;
}

.nav-bar a:hover {
    background: #1a1a1a;
    color: #fbbf24;
}

.main-content {
    padding-top: 80px;
}

.intro-section {
    text-align: center;
    padding: 6rem 2rem;
    background: radial-gradient(circle at center, #1a1405 0%, #0a0a0a 70%);
}

.intro-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 1.5rem;
}

.intro-section p {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    color: #d4d4d4;
}

.status-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.status-item {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-weight: 500;
}

.wheel-section {
    padding: 4rem 2rem;
}

.wheel-section h2 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fbbf24;
    margin-bottom: 2rem;
}

.wheel-frame {
    max-width: 1300px;
    margin: 0 auto;
    background: #111111;
    border-radius: 16px;
    padding: 0.75rem;
    border: 1px solid #222;
}

.wheel-frame iframe {
    width: 100%;
    height: 560px;
    border: none;
    border-radius: 10px;
    display: block;
}

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

.info-box {
    background: #111111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 2rem;
    transition: 0.3s;
}

.info-box:hover {
    border-color: #fbbf24;
}

.info-box h3 {
    color: #fbbf24;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.info-box p {
    color: #a3a3a3;
    font-size: 0.95rem;
}

.text-section {
    max-width: 880px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.text-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 2rem;
    text-align: center;
}

.text-section h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fbbf24;
    margin: 2.5rem 0 1rem;
}

.text-section p {
    color: #d4d4d4;
    margin-bottom: 1rem;
}

.text-section ul, .text-section ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: #d4d4d4;
}

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

.bottom-footer {
    background: #050505;
    padding: 3.5rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid #222;
}

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

.footer-wrap h4 {
    color: #fbbf24;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-text {
    font-size: 0.85rem;
    color: #525252;
    max-width: 550px;
    margin: 0 auto;
}

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

.age-panel {
    background: #111111;
    border: 2px solid #fbbf24;
    border-radius: 16px;
    padding: 3rem;
    max-width: 400px;
    text-align: center;
}

.age-panel h2 {
    color: #fbbf24;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.age-panel p {
    color: #d4d4d4;
    margin-bottom: 2rem;
}

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

.age-action {
    padding: 0.9rem 2rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

.age-action.yes {
    background: #fbbf24;
    color: #0a0a0a;
}

.age-action.yes:hover {
    background: #fcd34d;
    transform: scale(1.05);
}

.age-action.no {
    background: transparent;
    border: 1px solid #fbbf24;
    color: #fbbf24;
}

.age-action.no:hover {
    background: rgba(251, 191, 36, 0.1);
}

.refused h2 {
    color: #ef4444;
}

@media (max-width: 900px) {
    .info-boxes {
        grid-template-columns: 1fr;
    }
}

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

    .nav-bar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #111111;
        padding: 1rem;
        display: none;
        border-bottom: 1px solid #222;
    }

    .nav-bar.open {
        display: block;
    }

    .nav-bar ul {
        flex-direction: column;
    }

    .nav-bar a {
        text-align: center;
        padding: 1rem;
    }

    .intro-section h1 {
        font-size: 2.2rem;
    }

    .wheel-frame iframe {
        height: 380px;
    }

    .status-row {
        flex-direction: column;
        align-items: center;
    }

    .branding span {
        font-size: 1.3rem;
    }
}
