/* ========================================
   POCKET PIPER — VIP PAGE
   Blog-style layout with sidebar + ads
   ======================================== */

/* ---- LAYOUT ---- */
.vip-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 84px 24px 40px;
}
.vip-main { min-width: 0; }

/* Global VIP readability overrides */
.vip-page { font-size: 16px; line-height: 1.75; }

/* ---- VIP BANNER ---- */
.vip-banner {
    position: relative;
    background:
        radial-gradient(ellipse at 30% 30%, var(--accent-glow) 0%, transparent 60%),
        var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px 36px;
    text-align: center;
    margin-bottom: 24px;
    overflow: hidden;
}
.vip-banner-content { position: relative; z-index: 1; }
.vip-badge-lg {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    background: var(--accent);
    padding: 5px 20px;
    border-radius: 20px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.vip-banner h1 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}
.vip-banner-sub {
    color: var(--text-dim);
    font-size: 1.05rem;
    margin-bottom: 24px;
}
.vip-banner .hero-countdown {
    justify-content: center;
    margin-bottom: 0;
}
.vip-banner .cd-block {
    padding: 12px 16px;
    min-width: 70px;
}

/* ---- SECTIONS ---- */
.vip-section {
    margin-bottom: 28px;
}
.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.section-header h2 {
    font-family: var(--font-head);
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.section-status {
    font-size: 0.9rem;
    color: var(--text-dim);
    font-weight: 500;
}

/* ---- MAP ---- */
.route-map {
    height: 400px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-bottom: 16px;
    overflow: hidden;
}
.map-legend {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-dim);
}
.legend-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.legend-done { background: var(--text-dim); }
.legend-current { background: var(--accent); box-shadow: 0 0 8px var(--accent-glow); }
.legend-upcoming { background: var(--border); border: 1px solid var(--text-dim); }

.map-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 8px;
}
.map-stat {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px;
    text-align: center;
}
.stat-num {
    display: block;
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}
.stat-label {
    font-size: 0.72rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ---- FUND THE TRIP (Table Layout) ---- */
.fund-intro {
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

/* ---- GAME CARDS ---- */

/* Stop groups */
.gc-stop {
    margin-bottom: 32px;
}
.gc-stop-premium {
    border-left: 3px solid #ffd93d;
    padding-left: 16px;
}
.gc-stop-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.gc-stop-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}
.gc-stop-num-gold {
    background: linear-gradient(135deg, #ffd93d, #c49b2f);
    color: #1a1008;
}
.gc-stop-city {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}
.gc-stop-meta {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.gc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}
.gc-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    position: relative;
    transition: all 0.25s;
    overflow: hidden;
}
.gc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    border-color: #444;
}
.gc-icon {
    font-size: 3rem;
    margin-bottom: 8px;
    line-height: 1;
}
.gc-location {
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 4px;
}
.gc-title {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 14px;
}
.gc-bar-wrap {
    height: 8px;
    background: var(--bg);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}
.gc-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #ff4444);
    border-radius: 4px;
    transition: width 1s ease;
}
.gc-bar-full { width: 100%; background: linear-gradient(90deg, #4caf50, #6bcb77); }
.gc-bar-food { background: linear-gradient(90deg, #ff6b35, #ffa94d); }
.gc-bar-coffee { background: linear-gradient(90deg, #8B6914, #c49b2f); }
.gc-stats {
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 10px;
}
.gc-hot-text {
    color: var(--accent);
    font-weight: 700;
}
.gc-reward {
    font-size: 0.88rem;
    color: var(--text-dim);
    line-height: 1.5;
    margin-bottom: 16px;
    min-height: 40px;
}
.gc-btn {
    display: block;
    width: 100%;
    padding: 12px;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 10px;
    background: transparent;
    transition: all 0.2s;
    cursor: pointer;
}
.gc-btn:hover {
    background: var(--accent);
    color: #fff;
    transform: scale(1.02);
}

/* Hot card - almost funded */
.gc-hot {
    border-color: var(--accent);
    background: linear-gradient(180deg, #1a0808 0%, var(--bg-card) 40%);
}
.gc-hot:hover {
    border-color: #ff4444;
    box-shadow: 0 12px 40px rgba(212, 32, 32, 0.2);
}
.gc-flame {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 1.4rem;
    animation: flame-bounce 1s infinite alternate;
}
@keyframes flame-bounce {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-3px) scale(1.1); }
}
.gc-btn-hot {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    animation: pulse-btn 2s infinite;
}
@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 32, 32, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(212, 32, 32, 0); }
}

/* Done card */
.gc-done {
    border-color: #2a4a2a;
    background: linear-gradient(180deg, #0e1a0e 0%, var(--bg-card) 40%);
}
.gc-done:hover { border-color: #4caf50; }
.gc-badge-done {
    display: block;
    padding: 10px;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #6bcb77;
    border: 2px solid #2a4a2a;
    border-radius: 10px;
    background: #0e1a0e;
}

/* Premium card */
.gc-premium {
    border-color: #3a2a10;
    background: linear-gradient(180deg, #1a1008 0%, var(--bg-card) 40%);
}
.gc-premium:hover {
    border-color: #ffd93d;
    box-shadow: 0 12px 40px rgba(255, 217, 61, 0.1);
}
.gc-premium-tag {
    position: absolute;
    top: 10px;
    right: 12px;
    font-family: var(--font-head);
    font-size: 0.6rem;
    font-weight: 700;
    color: #ffd93d;
    background: #3a2a10;
    padding: 3px 10px;
    border-radius: 8px;
    letter-spacing: 0.1em;
}
.gc-btn-premium {
    color: #ffd93d;
    border-color: #ffd93d;
}
.gc-btn-premium:hover {
    background: #ffd93d;
    color: var(--bg);
}

@media (max-width: 600px) {
    .gc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .gc-card { padding: 18px 14px; }
    .gc-icon { font-size: 2.2rem; }
    .gc-title { font-size: 1rem; }
}

/* OLD Fund city cards below */
.fund-city-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
}
.fund-city-premium {
    border-color: #3a2010;
}
.fund-city-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
}
.fund-city-header h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
}
.fund-city-day {
    font-size: 0.85rem;
    color: var(--text-dim);
}
.fund-items {
    padding: 0;
}
.fund-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}
.fund-item:last-child { border-bottom: none; }
.fund-item:hover { background: rgba(255,255,255,0.02); }
.fund-item-done {
    background: rgba(107, 203, 119, 0.05);
}
.fund-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}
.fund-item-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    width: 36px;
    text-align: center;
}
.fund-item-left strong {
    display: block;
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.fund-item-left p {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}
.fund-item-mid {
    width: 120px;
    flex-shrink: 0;
    text-align: center;
}
.fund-item-right {
    flex-shrink: 0;
}
.fund-badge-done {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 700;
    color: #6bcb77;
    background: #1a2a1a;
    padding: 6px 14px;
    border-radius: 20px;
}
.fund-btn-sm {
    display: inline-block;
    padding: 8px 16px;
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 20px;
    transition: all 0.2s;
    white-space: nowrap;
    text-align: center;
}
.fund-btn-sm:hover {
    background: var(--accent);
    color: #fff;
}
.fund-btn-hot {
    background: var(--accent-glow);
    animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: none; }
    50% { box-shadow: 0 0 12px var(--accent-glow); }
}

/* Mobile fund items */
@media (max-width: 700px) {
    .fund-item {
        flex-wrap: wrap;
        gap: 10px;
    }
    .fund-item-left { width: 100%; }
    .fund-item-mid { width: auto; flex: 1; }
}

/* OLD table styles below */
.xxfund-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 4px;
    margin-bottom: 24px;
}
.fund-table th {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: left;
    padding: 8px 12px;
}
.fund-table th:last-child { text-align: right; }
.fund-row {
    background: var(--bg-card);
}
.fund-row:hover { background: #222; }
.fund-row td {
    padding: 14px 12px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
    font-size: 0.95rem;
}
.fund-row td:first-child {
    border-left: 1px solid var(--border);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
.fund-row td:last-child {
    border-right: 1px solid var(--border);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    text-align: right;
}
.fund-row-spacer td {
    padding: 6px 0;
    border: none;
    background: transparent;
}
.fund-row-premium td {
    border-color: #3a2010;
}
.fund-city {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}
.fund-day {
    font-size: 0.78rem;
    color: var(--text-dim);
    font-weight: 400;
}

/* Mini progress bar in table */
.fund-mini-bar {
    height: 6px;
    background: var(--bg);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 4px;
    min-width: 80px;
}
.fund-mini-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 3px;
    transition: width 0.8s ease;
}
.fund-mini-fill[data-color="done"] { background: #6bcb77; }
.fund-raised {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-family: var(--font-head);
    font-weight: 600;
}
.fund-next {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    background: var(--accent-glow);
    padding: 2px 8px;
    border-radius: 8px;
    margin-right: 6px;
}
.fund-unlocked {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    color: #6bcb77;
    background: #1a2a1a;
    padding: 2px 8px;
    border-radius: 8px;
    margin-right: 6px;
}

/* Mobile: stack fund table */
@media (max-width: 700px) {
    .fund-table, .fund-table thead, .fund-table tbody, .fund-table tr, .fund-table th, .fund-table td {
        display: block;
    }
    .fund-table thead { display: none; }
    .fund-row {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        padding: 14px;
        margin-bottom: 10px;
    }
    .fund-row td {
        border: none;
        padding: 4px 0;
    }
    .fund-row td:first-child { border: none; border-radius: 0; }
    .fund-row td:last-child { border: none; border-radius: 0; text-align: left; margin-top: 8px; }
    .fund-row-spacer { display: none; }
}

/* OLD city card styles - kept for reference, not used */
/*.city-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 20px;
}
.city-card-premium {
    border-color: #3a2010;
    background: linear-gradient(180deg, #1a1008 0%, var(--bg-card) 20%);
}
.city-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 8px;
}
.city-header h3 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
}
.city-day {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-weight: 500;
    margin-left: 8px;
}
.city-premium-tag {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    color: #ffd93d;
    background: #3a2010;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Tier blocks */
.tier-block {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.tier-block:last-of-type { border-bottom: none; padding-bottom: 0; }
.tier-block-sm { margin-bottom: 16px; }
.tier-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 600;
}
.tier-icon { font-size: 1.2rem; }
.tier-raised {
    margin-left: auto;
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
}

/* Tier progress bar */
.tier-bar-wrap {
    height: 10px;
    background: var(--bg);
    border-radius: 5px;
    overflow: visible;
    position: relative;
    margin-bottom: 14px;
}
.tier-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #ff6b35);
    border-radius: 5px;
    transition: width 1s ease;
    position: relative;
}
.tier-bar[data-color="food"] { background: linear-gradient(90deg, #ff6b35, #ffa94d); }
.tier-bar[data-color="coffee"] { background: linear-gradient(90deg, #8B6914, #c49b2f); }
.tier-markers {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}
.tier-mark {
    position: absolute;
    top: -3px; bottom: -3px;
}
.mark-line {
    display: block;
    width: 2px;
    height: 16px;
    background: var(--text-dim);
    opacity: 0.4;
    border-radius: 1px;
}

/* Tier levels */
.tier-levels {
    display: flex;
    gap: 10px;
}
.tier-level {
    flex: 1;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px;
    position: relative;
    transition: all 0.2s;
}
.tier-level:hover { border-color: #444; }
.tier-price {
    display: block;
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
}
.tier-name {
    display: block;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}
.tier-reward {
    display: block;
    font-size: 0.82rem;
    color: var(--text-dim);
    line-height: 1.5;
}
.tier-check {
    position: absolute;
    top: 8px; right: 10px;
    color: #6bcb77;
    font-size: 0.9rem;
    font-weight: 700;
}
.tier-progress {
    display: inline-block;
    margin-top: 6px;
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    background: var(--accent-glow);
    padding: 3px 10px;
    border-radius: 10px;
}

/* Tier states */
.tier-unlocked {
    border-color: #1a2a1a;
    background: #0e150e;
}
.tier-unlocked .tier-price { color: #6bcb77; }
.tier-active {
    border-color: var(--accent);
    background: linear-gradient(180deg, #1a0808, var(--bg));
}
.tier-active .tier-price { color: var(--accent); }
.tier-locked {
    opacity: 0.5;
}
.tier-locked .tier-price { color: var(--text-dim); }

/* City contributors */
.city-contributors {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0 14px;
}
.contrib-avatars {
    display: flex;
}
.contrib-av {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--accent-glow);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.75rem;
    border: 2px solid var(--bg-card);
    margin-left: -8px;
}
.contrib-av:first-child { margin-left: 0; }
.contrib-more {
    background: var(--border);
    color: var(--text-dim);
    font-size: 0.7rem;
}
.contrib-text {
    font-size: 0.88rem;
    color: var(--text-dim);
}

/* City fund button */
.city-fund-btn {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}
.city-fund-btn:hover {
    background: var(--accent);
    color: #fff;
}
.city-fund-premium {
    color: #ffd93d;
    border-color: #ffd93d;
}
.city-fund-premium:hover {
    background: #ffd93d;
    color: var(--bg);
}

/* Overall total */
.fund-total-bar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}
.fund-total-inner {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 14px;
}
.fund-amount {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}
.fund-goal-text {
    font-size: 0.95rem;
    color: var(--text-dim);
    margin-left: 8px;
}
.fund-supporters-count {
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* Mobile tier levels */
@media (max-width: 600px) {
    .tier-levels {
        flex-direction: column;
    }
    .city-card { padding: 20px; }
}

*/
/* OLD FUND STYLES (kept for bar animation) */
.fund-hero {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 20px;
    text-align: center;
}
.fund-total { margin-bottom: 18px; }
.fund-amount {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    line-height: 1;
}
.fund-goal {
    font-size: 1rem;
    color: var(--text);
}
.fund-bar-wrap {
    height: 14px;
    background: var(--bg);
    border-radius: 7px;
    overflow: hidden;
    margin-bottom: 8px;
}
.fund-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #ff6b35);
    border-radius: 7px;
    transition: width 1.5s ease;
    position: relative;
}
.fund-bar::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.fund-bar-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* Daily budget */
.fund-daily {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
}
.fund-daily h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.fund-day-label {
    font-size: 0.7rem;
    background: var(--accent-glow);
    color: var(--accent);
    padding: 3px 10px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.fund-categories { display: flex; flex-direction: column; gap: 14px; }
.fund-cat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 1rem;
}
.fund-cat-icon { font-size: 1.2rem; }
.fund-cat-name { flex: 1; font-weight: 500; }
.fund-cat-amount {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}
.fund-cat-bar-wrap {
    height: 10px;
    background: var(--bg);
    border-radius: 4px;
    overflow: hidden;
}
.fund-cat-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}
.fund-cat-bar[data-color="hotel"] { background: var(--accent); }
.fund-cat-bar[data-color="food"] { background: #ff6b35; }
.fund-cat-bar[data-color="charge"] { background: #ffd93d; }
.fund-cat-bar[data-color="activity"] { background: #6bcb77; }
.fund-daily-total {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 600;
}
.fund-daily-pct { color: var(--accent); }

/* Charts row */
.fund-charts {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 16px;
    margin-bottom: 20px;
}
.fund-chart-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    overflow: hidden;
    min-width: 0;
}
.fund-chart-card h4 {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dim);
}
.donut-wrap {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 16px;
}
.donut-wrap canvas {
    width: 100% !important;
    height: 100% !important;
}
.donut-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.donut-total {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    display: block;
}
.donut-label {
    font-size: 0.7rem;
    color: var(--text-dim);
    text-transform: uppercase;
}
.donut-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--text-dim);
}
.donut-legend i {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    margin-right: 4px;
}
.chart-x-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-top: 6px;
    padding: 0 4px;
}

/* Contribute CTA */
.fund-cta {
    background: var(--bg-card);
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    margin-bottom: 20px;
}
.fund-cta-options {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.fund-btn {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    min-width: 80px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.fund-btn small {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-dim);
}
.fund-btn:hover {
    border-color: var(--accent);
    background: var(--accent-glow);
    transform: translateY(-2px);
}
.fund-btn-pop {
    border-color: var(--accent);
    background: var(--accent-glow);
    position: relative;
}
.fund-btn-pop::after {
    content: 'Popular';
    position: absolute;
    top: -8px; right: -8px;
    background: var(--accent);
    color: #fff;
    font-size: 0.55rem;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.fund-main-btn {
    display: inline-block;
}

/* Supporters list */
.fund-supporters {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
}
.fund-supporters h4 {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 14px;
}
.supporter-list { display: flex; flex-direction: column; gap: 12px; }
.supporter {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}
.supporter:last-child { border-bottom: none; }
.supporter-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--accent-glow);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.supporter-info {
    flex: 1;
    min-width: 0;
}
.supporter-info strong {
    display: block;
    font-size: 0.95rem;
}
.supporter-info span {
    font-size: 0.9rem;
    color: var(--text-dim);
}
.supporter-time {
    font-size: 0.85rem;
    color: var(--text-dim);
    white-space: nowrap;
}

/* ---- SUPERCHARGER SPONSORSHIP ---- */
.sc-intro {
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.7;
}
/* Supercharger table layout */
.sc-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 6px;
    margin-bottom: 20px;
}
.sc-table th {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: left;
    padding: 8px 14px;
}
.sc-table th:last-child { text-align: right; }
.sc-row {
    background: var(--bg-card);
    transition: all 0.2s;
}
.sc-row:hover { background: #222; }
.sc-row td {
    padding: 14px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
    font-size: 0.95rem;
}
.sc-row td:first-child {
    border-left: 1px solid var(--border);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
.sc-row td:last-child {
    border-right: 1px solid var(--border);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    text-align: right;
}
.sc-num {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--text-dim);
    width: 36px;
    text-align: center;
}
.sc-city {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1rem;
}
.sc-mi {
    color: var(--text-dim);
    font-size: 0.9rem;
}
.sc-note {
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 600;
}
.sc-badge {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.sc-badge-claimed {
    background: #1a2a1a;
    color: #6bcb77;
}
.sc-badge-open {
    background: var(--accent-glow);
    color: var(--accent);
}
.sc-badge-premium {
    background: linear-gradient(135deg, #3a2010, #2a1005);
    color: #ffd93d;
}
.sc-sponsor-name {
    font-size: 0.88rem;
    color: var(--text-dim);
    display: block;
    margin-top: 4px;
}
.sc-claim-btn {
    display: inline-block;
    padding: 7px 18px;
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 20px;
    transition: all 0.2s;
    white-space: nowrap;
}
.sc-claim-btn:hover {
    background: var(--accent);
    color: #fff;
}
.sc-claim-premium {
    color: #ffd93d;
    border-color: #ffd93d;
}
.sc-claim-premium:hover {
    background: #ffd93d;
    color: var(--bg);
}
.sc-row-claimed { opacity: 0.8; }
.sc-row-premium td {
    border-color: #3a2010;
}

/* Mobile: stack supercharger rows */
@media (max-width: 700px) {
    .sc-table, .sc-table thead, .sc-table tbody, .sc-table tr, .sc-table th, .sc-table td {
        display: block;
    }
    .sc-table thead { display: none; }
    .sc-row {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        padding: 14px;
        margin-bottom: 10px;
    }
    .sc-row td {
        border: none;
        padding: 2px 0;
        display: inline;
    }
    .sc-row td:first-child { border: none; border-radius: 0; }
    .sc-row td:last-child { border: none; border-radius: 0; display: block; margin-top: 10px; text-align: left; }
}

/* ---- JOURNAL ENTRIES ---- */
.journal-entry {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 24px;
    transition: border-color 0.2s;
}
.journal-entry:hover { border-color: #333; }
.entry-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.entry-date {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.entry-location {
    font-size: 0.85rem;
    color: var(--text);
}
.entry-location::before {
    content: "📍 ";
}
.entry-tag {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-glow);
    padding: 3px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.journal-entry h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.entry-body {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 14px;
}
.entry-handwritten {
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    color: var(--accent);
    margin-top: 16px;
    padding: 12px 16px;
    border-left: 3px solid var(--accent);
    font-weight: 500;
}
.entry-reactions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}
.reaction {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.85rem;
    color: var(--text-dim);
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-body);
}
.reaction:hover {
    border-color: var(--accent);
    background: var(--accent-glow);
    color: var(--text);
}
.reaction.active {
    border-color: var(--accent);
    background: var(--accent-glow);
}

/* ---- PHOTOS ---- */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.photo-placeholder {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    aspect-ratio: 4 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
    color: var(--text-dim);
    font-size: 0.8rem;
    transition: border-color 0.2s;
}
.photo-placeholder:hover { border-color: var(--accent); }
.photo-placeholder span {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

/* ---- VIDEOS ---- */
.video-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.video-card {
    display: flex;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s;
}
.video-card:hover { border-color: #333; }
.video-thumb {
    width: 220px;
    min-height: 130px;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}
.video-play-btn {
    font-size: 2rem;
    color: var(--text-dim);
    opacity: 0.5;
}
.video-duration {
    position: absolute;
    bottom: 8px; right: 8px;
    background: rgba(0,0,0,0.8);
    color: var(--text-dim);
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}
.video-info {
    padding: 16px 16px 16px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.video-info h4 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.video-info p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
}
.video-meta {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ---- ADS ---- */
.ad {
    margin-bottom: 24px;
    position: relative;
}
.ad-tag {
    font-family: var(--font-head);
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--text-dim);
    background: var(--border);
    padding: 1px 6px;
    border-radius: 3px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: absolute;
    top: 8px;
    right: 10px;
}
.ad-remove {
    display: block;
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-top: 8px;
    opacity: 0.5;
}

/* Inline ad (horizontal banner) */
.ad-inline {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px 12px;
}
.ad-content-inline {
    display: flex;
    align-items: center;
    gap: 16px;
}
.ad-icon {
    width: 50px; height: 50px;
    border-radius: 10px;
    flex-shrink: 0;
}
.ad-content-inline strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.05rem;
    margin-bottom: 4px;
}
.ad-content-inline p {
    color: var(--text-dim);
    font-size: 0.92rem;
    margin: 0;
}
.ad-btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent);
    color: #fff;
    border-radius: 20px;
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.2s;
    text-align: center;
    flex-shrink: 0;
}
.ad-btn:hover { background: #b81a1a; color: #fff; transform: scale(1.03); }
.ad-btn-hot { background: linear-gradient(135deg, #d42020, #ff6b35); }
.ad-btn-hot:hover { background: linear-gradient(135deg, #b81a1a, #e05a2a); }
.ad-btn-lg { padding: 14px 32px; font-size: 0.95rem; }

/* Sidebar bikini ad */
.sidebar-bikini {
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    border-color: var(--accent);
}
.sidebar-bikini .ad-tag { z-index: 3; }
.sidebar-bikini-img {
    width: 100%;
    aspect-ratio: 2 / 3;
    background-size: cover;
    background-position: center top;
    filter: blur(10px) brightness(0.45);
    transform: scale(1.1);
}
.sidebar-bikini-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    text-align: center;
    background: linear-gradient(transparent, rgba(0,0,0,0.85) 40%);
    z-index: 2;
}
.sidebar-bikini-overlay strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.sidebar-bikini-overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    margin-bottom: 14px;
}
.sidebar-bikini-btn {
    display: inline-block;
    padding: 10px 28px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 20px;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(212, 32, 32, 0.4);
    animation: pulse-btn 2s infinite;
}
.sidebar-bikini-btn:hover {
    background: #b81a1a;
    color: #fff;
    transform: scale(1.05);
}

/* Highlight ad (spicy) */
.ad-highlight {
    background: linear-gradient(135deg, #1a0808 0%, var(--bg-card) 50%, #1a0808 100%);
    border: 1px solid #3a1515;
    border-radius: var(--radius);
    padding: 24px 20px 16px;
}
.ad-highlight-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.ad-highlight-text strong {
    font-family: var(--font-head);
    font-size: 1.05rem;
    display: block;
    margin-bottom: 4px;
}
.ad-highlight-text p {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin: 0;
}

/* Between-content ad */
.ad-between {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 20px 12px;
    text-align: center;
}
.ad-between-inner strong {
    font-family: var(--font-head);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 6px;
}
.ad-between-inner p {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-bottom: 12px;
}
.ad-btn-small {
    display: inline-block;
    padding: 6px 18px;
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 20px;
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s;
}
.ad-btn-small:hover { background: var(--accent); color: #fff; }

/* Full-width ad */
.ad-fullwidth {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 20px 14px;
}
.ad-fullwidth-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.ad-fw-left strong {
    font-family: var(--font-head);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 4px;
}
.ad-fw-left p {
    color: var(--text-dim);
    font-size: 0.82rem;
    margin: 0;
}

/* Book ad with image */
.ad-book {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 14px 8px;
    overflow: hidden;
}
.ad-book-inner {
    display: flex;
    gap: 18px;
    align-items: center;
    color: var(--text);
    text-decoration: none;
    transition: opacity 0.2s;
}
.ad-book-inner:hover { opacity: 0.9; color: var(--text); }
.ad-book-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.ad-book-text strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1rem;
    margin-bottom: 6px;
}
.ad-book-text p {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-bottom: 12px;
}
.sidebar-book-img {
    width: 100%;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    display: block;
}
.sidebar-ad-book { padding-top: 28px; }

/* Bottom CTA ad */
.ad-cta-bottom {
    background: linear-gradient(135deg, var(--bg-card) 0%, #1a0808 100%);
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    padding: 36px 28px 28px;
    text-align: center;
}
.ad-cta-inner h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.ad-cta-inner p {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- SIDEBAR ---- */
.vip-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 0;
}
.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}
.sidebar-card h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 14px;
}

/* Support card */
.sidebar-support {
    border-color: var(--accent);
    background: linear-gradient(180deg, #1a0808, var(--bg-card));
}
.sidebar-support p {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-bottom: 14px;
}
.sidebar-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.2s;
    margin-bottom: 8px;
    color: var(--text);
}
.sidebar-btn:last-child { margin-bottom: 0; }
.sidebar-btn:hover { transform: translateX(4px); }
.sidebar-btn-icon {
    width: 28px; height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}
.sidebar-btn-patreon { background: #1a0a0a; }
.sidebar-btn-patreon .sidebar-btn-icon { background: var(--accent); color: #fff; }
.sidebar-btn-patreon:hover { color: var(--accent); }
.sidebar-btn-of { background: #0a0a1a; }
.sidebar-btn-of .sidebar-btn-icon { background: #0095f6; color: #fff; }
.sidebar-btn-of:hover { color: #0095f6; }
.sidebar-btn-site { background: #0a1a0a; }
.sidebar-btn-site .sidebar-btn-icon { background: #4caf50; color: #fff; }
.sidebar-btn-site:hover { color: #4caf50; }

/* Stats */
.sidebar-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sidebar-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}
.sidebar-stat:last-child { border-bottom: none; }
.sidebar-stat span { color: var(--text-dim); }
.sidebar-stat strong { color: var(--text); font-size: 0.95rem; }

/* Sidebar ad */
.sidebar-ad {
    position: relative;
    padding-top: 28px;
}
.sidebar-ad-content strong {
    display: block;
    font-family: var(--font-head);
    font-size: 0.9rem;
    margin-bottom: 6px;
}
.sidebar-ad-content p {
    color: var(--text-dim);
    font-size: 0.82rem;
    margin-bottom: 10px;
}

/* Activity */
.sidebar-activity {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.activity-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.activity-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    margin-top: 6px;
    flex-shrink: 0;
}
.activity-item strong {
    font-size: 0.82rem;
    display: block;
}
.activity-item p {
    color: var(--text-dim);
    font-size: 0.78rem;
    margin: 0;
}

/* Social */
.sidebar-social {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sidebar-social a {
    font-size: 0.85rem;
    color: var(--text-dim);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}
.sidebar-social a:last-child { border-bottom: none; }
.sidebar-social a:hover { color: var(--accent); }

/* ---- STICKY BOTTOM AD ---- */
.sticky-ad {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    background: rgba(15, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--accent);
    padding: 12px 20px;
    transform: translateY(0);
    transition: transform 0.3s;
}
.sticky-ad.hidden { transform: translateY(100%); }
.sticky-ad-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.sticky-ad-inner span {
    font-size: 0.88rem;
    color: var(--text-dim);
    font-weight: 500;
}
.sticky-ad-btn {
    padding: 8px 20px;
    background: var(--accent);
    color: #fff;
    border-radius: 20px;
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.2s;
}
.sticky-ad-btn:hover { background: #b81a1a; color: #fff; }
.sticky-ad-close {
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
}
.sticky-ad-close:hover { color: var(--text); }

/* ---- MOBILE ---- */
@media (max-width: 900px) {
    .vip-layout {
        grid-template-columns: 1fr;
        padding-top: 70px;
    }
    .vip-sidebar {
        order: -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .sidebar-support { grid-column: 1 / -1; }
    .route-map { height: 280px; }
    .map-stats { grid-template-columns: repeat(2, 1fr); }
    .photo-grid { grid-template-columns: repeat(2, 1fr); }
    .video-card { flex-direction: column; }
    .video-thumb { width: 100%; min-height: 180px; }
    .video-info { padding: 16px; }
    .fund-charts { grid-template-columns: 1fr; }
    .fund-cta-options { gap: 8px; }
    .fund-btn { min-width: 65px; padding: 12px 14px; font-size: 1rem; }
    .map-stats { grid-template-columns: repeat(2, 1fr); }
    .ad-content-inline { flex-wrap: wrap; }
    .ad-highlight-inner { flex-direction: column; text-align: center; }
    .ad-fullwidth-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
    .vip-sidebar {
        grid-template-columns: 1fr;
    }
    .vip-banner { padding: 36px 20px; }
    .vip-banner h1 { font-size: 1.8rem; }
    .map-stats { grid-template-columns: repeat(2, 1fr); }
    .photo-grid { grid-template-columns: repeat(2, 1fr); }
    .entry-meta { gap: 8px; }
}
