/* ========================================
   POCKET PIPER — Dark Adventure Theme
   ======================================== */

:root {
    --bg:         #111111;
    --bg-card:    #1c1c1c;
    --bg-dark:    #0e0e0e;
    --text:       #f0ede9;
    --text-dim:   #a8a29e;
    --accent:     #e02d2d;
    --accent-glow: #e02d2d35;
    --gold:       #ff4444;
    --gold-dim:   #ff444425;
    --border:     #2e2e2e;
    --radius:     12px;
    --radius-sm:  8px;
    --font-head:  'Space Grotesk', sans-serif;
    --font-body:  'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

/* ---- NAV ---- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
}
.nav-logo:hover { color: var(--accent); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-vip {
    background: var(--gold-dim);
    color: var(--gold) !important;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600 !important;
    border: 1px solid var(--gold);
    transition: all 0.2s;
}
.nav-vip:hover {
    background: var(--gold);
    color: var(--bg) !important;
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--text); margin: 5px 0;
    transition: 0.3s;
}

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, var(--accent-glow) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, var(--gold-dim) 0%, transparent 50%),
        var(--bg);
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-tag {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.hero-accent { color: var(--accent); }
.hero-sub {
    font-size: 1.15rem;
    color: var(--text-dim);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Countdown */
.hero-countdown {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}
.cd-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    min-width: 80px;
    text-align: center;
}
.cd-block span {
    display: block;
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
}
.cd-block small {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    border: none;
}
.btn-primary {
    background: var(--accent);
    color: #fff;
}
.btn-primary:hover {
    background: #d4622e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}
.btn-ghost {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}
.btn-ghost:hover {
    background: var(--gold);
    color: var(--bg);
    transform: translateY(-2px);
}
.btn-lg { padding: 18px 42px; font-size: 1.05rem; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- SECTIONS ---- */
.section {
    padding: 100px 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.section-dark {
    background: var(--bg-dark);
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
}
.section-dark > * {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    text-align: center;
}
.section-sub {
    color: var(--text-dim);
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 50px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- ROUTE ---- */
.route-stops {
    max-width: 600px;
    margin: 0 auto;
}
.route-stop {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 8px 0;
}
.stop-dot {
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--border);
    border: 3px solid var(--text-dim);
    margin-top: 4px;
    flex-shrink: 0;
    transition: all 0.3s;
}
.stop-dot.active {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 16px var(--accent-glow);
}
.stop-dot.destination {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 16px var(--gold-dim);
}
.stop-info h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.stop-info p {
    color: var(--text-dim);
    font-size: 0.9rem;
}
.route-line {
    width: 2px;
    height: 30px;
    background: var(--border);
    margin-left: 7px;
}

/* ---- JOURNAL ---- */
.journal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.journal-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.25s;
}
.journal-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.journal-date {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.journal-card h3 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.journal-card p {
    color: var(--text-dim);
    font-size: 0.92rem;
    line-height: 1.6;
}
.journal-tag {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.75rem;
    color: var(--gold);
    background: var(--gold-dim);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

/* ---- VIDEOS ---- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}
.video-placeholder {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.video-play {
    font-size: 2.5rem;
    color: var(--text-dim);
    opacity: 0.4;
}
.video-placeholder p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Embedded video wrapper */
.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.video-embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

/* ---- POLLS ---- */
.poll-container { max-width: 600px; margin: 0 auto; }
.poll {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}
.poll h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.poll-options { display: flex; flex-direction: column; gap: 10px; }
.poll-option {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    overflow: hidden;
    transition: all 0.2s;
}
.poll-option:hover {
    border-color: var(--accent);
}
.poll-option.voted {
    cursor: default;
}
.poll-bar {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    background: var(--accent-glow);
    transition: width 0.6s ease;
    border-radius: var(--radius-sm);
}
.poll-label { position: relative; z-index: 1; font-weight: 500; }
.poll-pct {
    position: relative; z-index: 1;
    font-size: 0.85rem;
    color: var(--text-dim);
    font-weight: 600;
}

/* ---- PROMO BANNERS (ads for non-VIP) ---- */
.promo-banner {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 24px;
}
.promo-alt {
    background: linear-gradient(135deg, var(--bg-card) 0%, #1a0808 100%);
}
.promo-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.promo-label {
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-dim);
    background: var(--border);
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.promo-banner p {
    color: var(--text-dim);
    font-size: 0.92rem;
    margin: 0;
}
.promo-link {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    padding: 6px 16px;
    border: 1px solid var(--accent);
    border-radius: 20px;
    transition: all 0.2s;
    white-space: nowrap;
}
.promo-link:hover {
    background: var(--accent);
    color: #fff;
}

/* ---- CTA SECTION ---- */
.section-cta {
    text-align: center;
    padding: 80px 24px;
    max-width: 100%;
    background:
        radial-gradient(ellipse at 50% 50%, var(--accent-glow) 0%, transparent 70%),
        var(--bg);
}
.section-cta h2 {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.section-cta p {
    color: var(--text-dim);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

/* ---- FOOTER ---- */
.footer {
    border-top: 1px solid var(--border);
    padding: 40px 24px;
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-brand p {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-top: 4px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
    color: var(--text-dim);
    font-size: 0.85rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

/* ---- MOBILE ---- */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px; left: 0; right: 0;
        background: rgba(15, 15, 15, 0.95);
        backdrop-filter: blur(20px);
        padding: 20px 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }
    .nav-toggle { display: block; }

    .hero { min-height: 90vh; padding: 100px 20px 60px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-countdown { gap: 10px; }
    .cd-block { padding: 12px 14px; min-width: 65px; }
    .cd-block span { font-size: 1.5rem; }

    .section { padding: 60px 20px; }
    .journal-grid { grid-template-columns: 1fr; }
    .video-grid { grid-template-columns: 1fr; }

    .footer-inner { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
}

/* ---- VIP PAGE STYLES ---- */
.vip-badge {
    font-size: 0.6rem;
    background: var(--accent);
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    vertical-align: middle;
    margin-left: 6px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.vip-welcome {
    margin-top: 20px;
}
.vip-welcome p {
    color: var(--accent);
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* ---- VIP PAGE — dedicated styles ---- */
.vip-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 60px;
    overflow: hidden;
}
.vip-hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}
.vip-badge-lg {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    background: var(--accent);
    padding: 6px 24px;
    border-radius: 20px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.vip-hero-content h1 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}
.vip-hero-content p {
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Perks grid */
.vip-perks {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.vip-perk {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.25s;
}
.vip-perk:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.perk-icon {
    font-size: 1.8rem;
    margin-bottom: 14px;
}
.vip-perk h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.vip-perk p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* VIP content cards */
.vip-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.vip-content-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
    overflow: hidden;
}
.vip-content-card h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.vip-content-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
}
.vip-locked {
    opacity: 0.7;
}
.vip-lock {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}
.vip-note {
    font-size: 0.85rem !important;
    color: var(--text-dim) !important;
    margin-top: 16px !important;
}
