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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #1a1a1a;
    color: #ccc;
    line-height: 1.6;
}

a {
    color: #ccc;
    text-decoration: none;
}

a:hover {
    color: #f0c040;
}

/* Header */
.header {
    background: #111;
    border-bottom: 1px solid #d4a017;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo img {
    height: 30px;
    display: block;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #ccc;
    transition: color 0.2s;
}

.nav a:hover {
    color: #f0c040;
}

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ccc;
    transition: transform 0.3s, opacity 0.3s;
}

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

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

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

/* Age Gate */
.age-gate {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.age-gate-box {
    background: #000;
    border: 1px solid #d4a017;
    border-radius: 8px;
    padding: 80px 50px;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.age-gate-title {
    color: #d4a017;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.age-gate-box > p {
    margin-bottom: 28px;
    font-size: 15px;
}

.btn-enter {
    display: inline-block;
    background: #d4a017;
    color: #000;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 32px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    margin-bottom: 28px;
}

.btn-enter:hover {
    background: #e6b52a;
    color: #000;
}

.age-gate-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.age-gate-links a {
    font-size: 14px;
    color: #aaa;
    text-decoration: underline;
}

.age-gate-links a:hover {
    color: #f0c040;
}

/* Content */
.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.content h1 {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 24px;
}

.content p {
    margin-bottom: 20px;
    font-size: 15px;
    color: #bbb;
}

/* Nearby Cities */
.nearby-cities {
    margin-top: 40px;
}

.nearby-cities h2,
.nearby-cities h3 {
    color: #fff;
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 16px;
}

.nearby-cities h2 {
    margin-top: 0;
}

.city-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.city-buttons a {
    display: inline-block;
    padding: 10px 20px;
    background: #222;
    border: 1px solid #444;
    border-radius: 6px;
    color: #ccc;
    font-size: 14px;
    transition: background 0.2s, border-color 0.2s;
}

.city-buttons a:hover {
    background: #333;
    border-color: #d4a017;
    color: #f0c040;
}

/* Legal Pages */
.legal-page h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-top: 36px;
    margin-bottom: 14px;
}

.legal-page h3 {
    color: #ddd;
    font-size: 17px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 10px;
}

.legal-page ul {
    margin: 0 0 20px 24px;
    color: #bbb;
    font-size: 15px;
}

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

.legal-page .last-updated {
    color: #888;
    font-size: 13px;
    font-style: italic;
    margin-bottom: 28px;
}

/* Footer */
.footer {
    background: #111;
    border-top: 1px solid #333;
    padding: 40px 20px;
    text-align: center;
}

.footer-inner {
    max-width: 800px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    margin-bottom: 20px;
}

.footer-links a {
    font-size: 13px;
    color: #888;
}

.footer-links a:hover {
    color: #f0c040;
}

.footer-copy {
    font-size: 12px;
    color: #555;
}

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

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #111;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-bottom: 2px solid #d4a017;
    }

    .nav.open {
        display: flex;
    }

    .age-gate-box {
        padding: 50px 24px;
    }

    .content h1 {
        font-size: 22px;
    }
}
