:root {
    --brand-pink: #FF6F6F;
    --brand-pink-dark: #A64747;
    --text: #222;
    --muted: #6c757d;
    --bg: #fff;
    --card: #fff;
    --border: #e9ecef;
}

html.theme-dark {
    --text: #e8e8e8;
    --muted: #a9b1bc;
    --bg: #0f1115;
    --card: #161a22;
    --border: #202633;
    --brand-pink: #ff7e7e;
    --brand-pink-dark: #ff5d5d;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: var(--text);
    background: var(--bg)
}

.navbar {
    background: var(--card) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06)
}

.navbar-brand img {
    height: 36px;
    width: auto;
    margin-right: .5rem
}

.nav-link.active {
    color: var(--brand-pink-dark) !important
}

.wrap {
    max-width: 1060px;
    margin: 40px auto;
    padding: 0 18px
}

.section-head h2 {
    color: var(--brand-pink-dark);
    margin: 0
}

.section-head .lead {
    color: var(--muted)
}

.zone-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

@media (max-width:980px) {
    .zone-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:640px) {
    .zone-grid {
        grid-template-columns: 1fr
    }
}

.card {
    background: var(--card);
    border: 1.6px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .09);
    transition: transform .25s, box-shadow .25s, border-color .25s
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(255, 76, 76, .22);
    border-color: #ffc1c1
}

.card h3 {
    margin: 0 0 8px;
    color: var(--brand-pink);
    font-size: 1.08rem
}

.slots {
    margin-top: 22px
}

.sub {
    margin: 0 0 8px;
    color: var(--brand-pink)
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.chip {
    border: 1.6px solid var(--border);
    background: #fffafa;
    padding: 10px 14px;
    border-radius: 22px;
    font-weight: 700;
    cursor: pointer;
    transition: background .25s, transform .25s, border-color .25s, box-shadow .25s
}

.chip:hover {
    background: #fff;
    transform: translateY(-2px);
    border-color: #ffc1c1;
    box-shadow: 0 8px 22px rgba(255, 76, 76, .18)
}

.chip.active {
    background: var(--brand-pink);
    color: #fff;
    border-color: var(--brand-pink)
}

.faq-list {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 18px;
    align-items: start;
    margin-top: 24px
}

@media (max-width:980px) {
    .faq-list {
        grid-template-columns: 1fr
    }
}

.faq-col .item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px
}

.faq-q {
    width: 100%;
    text-align: left;
    padding: 14px 16px;
    border: 0;
    background: transparent;
    font-weight: 800
}

.faq-a {
    display: none;
    padding: 0 16px 14px 16px;
    color: var(--text)
}

.tips {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px
}

.rating {
    display: flex;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: .25rem 0
}

.rating button {
    width: 26px;
    height: 26px;
    line-height: 26px;
    border: 0;
    background: transparent;
    color: #d0d4da;
    cursor: pointer;
    font-size: 22px;
    padding: 0;
    transition: transform .15s, color .15s
}

.rating button.active,
.rating button:hover {
    color: #ffc107;
    transform: translateY(-1px)
}

.rating-out {
    color: var(--muted)
}

.site-footer {
    margin: 40px 0 0;
    text-align: center;
    background: var(--brand-pink);
    color: #fff;
    padding: 16px
}