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

:root {
    --accent: #C71585;
    --accent-hover: #a01269;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text: #333333;
    --text-light: #666666;
    --age-gate-bg: #ffebee;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ── Header ── */
header {
    background: var(--white);
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo img {
    height: 40px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
}

nav ul li a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

nav ul li a:hover {
    color: var(--accent);
    text-decoration: none;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.burger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.burger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ── Age Gate (above the fold) ── */
.age-gate {
    background: var(--age-gate-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.age-gate-box {
    max-width: 520px;
    width: 100%;
}

.age-gate-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.age-gate-box p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.age-gate-box .disclaimer {
    font-size: 0.85rem;
    color: #888;
    margin-top: 18px;
    margin-bottom: 0;
}

.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 14px 48px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--accent-hover);
    text-decoration: none;
    color: var(--white);
}

.age-gate-box .exit-link {
    display: block;
    margin-top: 18px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.age-gate-box .exit-link:hover {
    color: var(--accent);
}

/* ── Main Content ── */
.content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

.content h1 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: var(--text);
}

.content h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 12px;
    color: var(--text);
}

.content h3 {
    font-size: 1.25rem;
    margin-top: 28px;
    margin-bottom: 8px;
    color: var(--text);
}

.content p {
    margin-bottom: 16px;
    color: var(--text-light);
    font-size: 1rem;
}

.content ul {
    margin: 0 0 16px 24px;
    color: var(--text-light);
}

.content ul li {
    margin-bottom: 6px;
}

.cta-section {
    text-align: center;
    margin-top: 48px;
    padding: 40px 20px;
    background: var(--light-gray);
    border-radius: 10px;
}

.cta-section h2 {
    margin-top: 0;
}

.cta-section p {
    margin-bottom: 24px;
}

/* ── City Grid ── */
.city-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 24px;
    margin-bottom: 16px;
}

.city-grid a {
    display: block;
    padding: 14px 12px;
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.city-grid a:hover {
    border-color: var(--accent);
    color: var(--accent);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(199, 21, 133, 0.15);
}

/* ── Footer ── */
footer {
    background: var(--light-gray);
    border-top: 1px solid #e0e0e0;
    padding: 40px 20px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
}

.footer-col h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--text);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 6px;
}

.footer-col ul li a {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    max-width: 1200px;
    margin: 24px auto 0;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    text-align: center;
    font-size: 0.85rem;
    color: #999;
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    nav {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid #e0e0e0;
        padding: 16px 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    nav.open {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 16px;
    }

    .age-gate-title {
        font-size: 1.6rem;
    }

    .content h1 {
        font-size: 1.7rem;
    }

    .content h2 {
        font-size: 1.35rem;
    }

    .city-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .footer-inner {
        flex-direction: column;
    }
}
