/* ============================================
   VIP Billiards - Join/Reservations Stylesheet
   Synced with main style.css branding
   ============================================ */

:root {
    /* Synced exactly from style.css */
    --gold: #C5B358;
    --gold-dark: #a89642;
    --gold-light: #d4c778;
    --black: #0f111a;
    --black-light: #1a1d29;
    --gray-dark: #2a2d3a;
    --gray: #4a4d5a;
    --gray-light: #cfd5df;
    --white: #ffffff;
    --green: #00ff9d;
    --red: #ff2a6d;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --radius: 12px;
    --shadow-glow: 0 0 20px rgba(197, 179, 88, 0.3);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(15, 17, 26, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 179, 88, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--gold);
    text-decoration: none;
    white-space: nowrap;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--gold);
}

/* ── BUTTONS (Synced with style.css) ── */
.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--black) !important;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black) !important;
}

.btn-signin {
    display: inline-block;
    background: var(--gold);
    color: var(--black) !important;
    text-decoration: none;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    border: none;
}

.btn-signin:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ── HERO ── */
.hero {
    padding: clamp(60px, 8vh, 100px) 20px;
    border-bottom: 1px solid rgba(197, 179, 88, 0.1);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: 1.15rem;
    color: var(--gray-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-proof {
    font-size: 0.85rem;
    color: var(--gray-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.proof-divider {
    margin: 0 12px;
    color: var(--gold);
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-glow);
    object-fit: cover;
    aspect-ratio: 4/3;
    border: 2px solid rgba(197, 179, 88, 0.2);
}

/* ── GENERAL SECTIONS ── */
.section {
    padding: 100px 20px;
}

.bg-light {
    background: var(--black-light);
}

/* Repurposed class name to use dark theme */
.container {
    max-width: 1400px;
    margin: 0 auto;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.left-align {
    text-align: left !important;
}

.mb-30 {
    margin-bottom: 30px;
}

.text-muted {
    color: var(--gray-light);
}

.gold-text {
    color: var(--gold);
}

.section-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 12px;
}

.feature-text-side .section-eyebrow {
    text-align: left;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 60px;
    color: var(--white);
    text-transform: uppercase;
}

/* ── 3-TIER GRID (Synced with .pricing-card) ── */
.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.tier-card {
    background: var(--black-light);
    border: 2px solid var(--gray-dark);
    border-radius: var(--radius);
    padding: 40px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-fast);
}

.tier-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.tier-card.pro {
    border-color: var(--gold);
    box-shadow: var(--shadow-glow);
    transform: scale(1.02);
}

.tier-card.pro:hover {
    transform: scale(1.02) translateY(-5px);
}

.tier-best-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 16px;
    border-radius: 20px;
}

.tier-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-dark);
}

.tier-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.tier-price {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}

.period {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gray-light);
    font-weight: 400;
}

.tier-desc {
    font-size: 0.9rem;
    color: var(--gray-light);
}

.tier-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.feature-row.muted {
    color: var(--gray);
    text-decoration: line-through;
    border-bottom: none;
}

.icon {
    font-weight: bold;
}

.icon.check {
    color: var(--green);
}

.icon.gold {
    color: var(--gold);
}

.tier-action-placeholder {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-light);
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-tier-free {
    display: block;
    text-align: center;
    background: transparent;
    border: 2px solid var(--gray);
    color: var(--white);
    text-decoration: none;
    padding: 16px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s;
}

.btn-tier-free:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-tier-pro {
    display: block;
    text-align: center;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    padding: 16px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s;
}

.btn-tier-pro:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ── FACILITY PHOTO BREAK ── */
.facility-break {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
}

.facility-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.facility-overlay {
    position: absolute;
    inset: 0;
}

.facility-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 0 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.facility-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.facility-sub {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gray-light);
}

/* ── FEATURE SPLITS (Image Left/Right) ── */
.feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-split.reverse .feature-image-side {
    order: 2;
}

.feature-split.reverse .feature-text-side {
    order: 1;
}

.rounded-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    object-fit: cover;
    aspect-ratio: 4/3;
    border: 2px solid rgba(197, 179, 88, 0.2);
}

.shadow-lg {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.netflix-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 40px;
    border-left: 4px solid var(--gold);
    padding-left: 20px;
    line-height: 1.5;
}

.points-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.point-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.point-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
}

.point-item h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 700;
}

.point-item p {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.5;
}

/* ── FOOTER ── */
.footer {
    padding: 60px 20px;
    border-top: 1px solid rgba(197, 179, 88, 0.2);
    background: var(--black);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ── HOW IT WORKS (Merged from join.html) ── */
.how-it-works {
    background: var(--black-light);
    border-top: 1px solid rgba(197, 179, 88, 0.1);
    border-bottom: 1px solid rgba(197, 179, 88, 0.1);
}

.steps {
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    padding: 40px 30px;
    background: var(--black);
    border: 1px solid rgba(197, 179, 88, 0.1);
    border-radius: var(--radius);
    transition: transform 0.3s;
}

.step:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    flex-shrink: 0;
    margin: 0 -10px;
    opacity: 0.5;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 15px;
    opacity: 0.7;
    font-weight: 900;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(197, 179, 88, 0.3));
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.step-body {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.6;
}

/* ── FAQ (Merged from join.html) ── */
.faq {
    background: var(--black);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
}

.faq-item {
    background: var(--black-light);
    border: 1px solid var(--gray-dark);
    border-radius: var(--radius);
    padding: 0 25px;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(197, 179, 88, 0.3);
}

.faq-item.open {
    border-color: var(--gold);
    box-shadow: var(--shadow-glow);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    padding: 25px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s;
}

.faq-item.open .faq-question {
    color: var(--gold);
}

.faq-item.open .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    padding-bottom: 25px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 40px;
    }

    .hero-grid,
    .feature-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .feature-split.reverse .feature-image-side {
        order: 1;
    }

    .feature-split.reverse .feature-text-side {
        order: 2;
    }

    .section-title.left-align {
        text-align: center !important;
    }

    .feature-text-side .section-eyebrow {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 15px 20px;
    }

    .nav-link {
        display: none;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .tier-card.pro {
        transform: scale(1);
    }

    .tier-card.pro:hover {
        transform: scale(1) translateY(-5px);
    }

    .facility-title {
        font-size: 2.5rem;
    }

    .step-connector {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* -- UTILITIES to remove inline styles -- */
.section-desc-max {
    max-width: 1000px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: var(--gold);
}

.feature-gap {
    gap: 30px;
}

.card-left {
    text-align: left;
}

.feat-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* -- VALUE CALC -- */
.value-calc {
    background: var(--black-light);
    border: 1px solid rgba(197, 179, 88, 0.1);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    padding: 15px 25px;
    max-width: 900px;
    margin: 20px auto 0;
    text-align: center;
}

.calc-label {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
}

.calc-math-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-family: 'DM Mono', monospace;
    font-size: 1rem;
    color: var(--white);
    margin: 10px 0;
}

.calc-segment {
    display: flex;
    gap: 8px;
    align-items: center;
}

.calc-op {
    font-size: 1.2rem;
    color: var(--gray);
    font-weight: 700;
}

.calc-result {
    color: var(--green);
    font-weight: bold;
    font-size: 1.2rem;
}

.calc-sub {
    font-size: 0.85rem;
    color: var(--gray-light);
}

.calc-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 10px auto;
    width: 200px;
}

.text-danger {
    color: var(--red) !important;
}

.mb-60 {
    margin-bottom: 60px;
}

/* ════════════════════════════════════════
   MOCK PHONE (APP SHOWCASE)
   ════════════════════════════════════════ */
.mt-30 {
    margin-top: 30px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mock-phone-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.mock-phone {
    width: 360px;
    height: 740px;
    background: #000;
    border-radius: 40px;
    border: 8px solid #1a1a1a;
    box-shadow:
        0 0 0 2px #333,
        0 20px 50px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(197, 179, 88, 0.2);
    position: relative;
    overflow: hidden;
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.mock-phone:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #1a1a1a;
    border-radius: 0 0 15px 15px;
    z-index: 10;
}

/* Scoped Member App CSS Variables */
.mock-app-bg {
    --app-bg: #080a0f;
    --app-card: #0d1018;
    --app-elevated: #131720;
    --app-border: rgba(255, 255, 255, 0.06);
    --app-gold-dim: rgba(197, 179, 88, 0.15);
    background: var(--app-bg);
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    color: #f0ede6;
    font-family: 'DM Sans', sans-serif;
}

.mock-app-header {
    padding: 35px 20px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--app-border);
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-logo-text {
    color: var(--gold);
    font-weight: 900;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
}

.header-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--gold);
}

.mock-settings {
    font-size: 0.65rem;
    color: #6b7280;
    border: 1px solid var(--app-border);
    padding: 4px 10px;
    border-radius: 15px;
}

.mock-app-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px 15px 40px;
}

.mock-app-content::-webkit-scrollbar {
    display: none;
}

.m-card {
    background: var(--app-card);
    border: 1px solid rgba(197, 179, 88, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 15px;
}

/* Hero Elements */
.member-greeting {
    font-size: 0.7rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #fff;
    margin: 2px 0 10px;
    letter-spacing: 1px;
}

.tier-badge.pro {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: var(--app-gold-dim);
    border: 1px solid rgba(197, 179, 88, 0.5);
    color: var(--gold);
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.tier-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--gold);
}

.hero-stats {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.hero-stat {
    flex: 1;
    background: var(--app-elevated);
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--app-border);
}

.hero-stat-label {
    font-size: 0.6rem;
    color: #6b7280;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.hero-stat-value {
    font-family: 'DM Mono', monospace;
    font-size: 1.2rem;
}

/* Points Elements */
.card-label {
    font-size: 0.65rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--app-border);
    padding-bottom: 5px;
}

.points-ring-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ring-container {
    position: relative;
    width: 90px;
    height: 90px;
    flex-shrink: 0;
}

.ring-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-track {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 8;
}

.ring-fill.pro {
    fill: none;
    stroke: var(--gold);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 314;
    stroke-dashoffset: 0;
    filter: drop-shadow(0 0 4px rgba(197, 179, 88, 0.5));
}

.ring-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ring-pts.pro {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--gold);
    line-height: 1;
}

.ring-label {
    font-size: 0.5rem;
    color: #6b7280;
    letter-spacing: 1px;
}

.points-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: #fff;
    letter-spacing: 1px;
}

.points-sub {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 10px;
    line-height: 1.3;
}

.progress-bar-wrap {
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    margin-bottom: 4px;
}

.progress-bar-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    box-shadow: 0 0 5px var(--gold);
}

.progress-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    color: #6b7280;
}

/* Crowd Meter */
.crowd-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.crowd-count {
    background: var(--app-gold-dim);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    font-weight: bold;
}

.heat-scale {
    display: flex;
    gap: 3px;
    height: 10px;
    margin-bottom: 10px;
}

.heat-scale .tick {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.crowd-status-bar {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    border-top: 1px solid var(--app-border);
    padding-top: 8px;
}

.status-label-text {
    color: #6b7280;
    text-transform: uppercase;
    font-weight: bold;
}

/* Buttons */
.btn-sameday {
    width: 100%;
    background: linear-gradient(135deg, #ff8800, #e65c00);
    border: none;
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 136, 0, 0.4);
    margin-bottom: 15px;
}

.mock-pulse {
    animation: mockBtnPulse 2s infinite;
}

@keyframes mockBtnPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

/* Segments & History */
.res-row-segmented {
    display: flex;
    background: var(--app-elevated);
    border: 1px solid var(--app-border);
    border-radius: 6px;
    overflow: hidden;
    align-items: stretch;
}

.seg-datetime {
    padding: 8px;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--app-border);
    font-family: 'Bebas Neue', sans-serif;
    line-height: 1.1;
}

.seg-date {
    color: var(--gold);
    font-size: 1rem;
}

.seg-time {
    color: #fff;
    font-size: 0.85rem;
}

.seg-details {
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    justify-content: center;
    border-right: 1px solid var(--app-border);
    background: rgba(0, 0, 0, 0.2);
}

.seg-badge {
    background: rgba(255, 255, 255, 0.05);
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    color: #9ca3af;
    padding: 2px 4px;
    border-radius: 3px;
    white-space: nowrap;
}

.seg-action-block {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    padding: 0 4px;
    border-right: 1px solid var(--app-border);
}

.status-arrived {
    background: rgba(0, 255, 157, 0.05);
    color: var(--neon-green);
}

.block-table {
    background: rgba(0, 255, 157, 0.1);
    color: var(--neon-green);
    border-right: none;
}

.history-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--app-elevated);
    border: 1px solid var(--app-border);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 8px;
}

.history-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.history-icon.redeem {
    background: rgba(0, 255, 157, 0.08);
    border: 1px solid rgba(0, 255, 157, 0.2);
}

.history-icon.earn {
    background: rgba(197, 179, 88, 0.1);
    border: 1px solid rgba(197, 179, 88, 0.2);
}

.history-info {
    flex: 1;
}

.history-title {
    font-size: 0.75rem;
    color: #fff;
    margin-bottom: 2px;
}

.history-date {
    font-size: 0.6rem;
    font-family: 'DM Mono', monospace;
    color: #6b7280;
}

.history-pts {
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    font-weight: bold;
}

.history-pts.redeem {
    color: var(--neon-green);
    margin-right: 5px;
}

.history-pts.earn {
    color: var(--gold);
}

.history-hrs {
    font-family: 'DM Mono', monospace;
    font-size: 0.55rem;
    color: #6b7280;
    text-align: right;
}

.white-nowrap {
    white-space: nowrap;
}

/* ════════════════════════════════════════
   MINI SNIPPETS & FULL-WIDTH LOYALTY CALC
   ════════════════════════════════════════ */
.mini-app-snippet {
    background: #131720;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 15px;
    margin-top: auto;
    /* Pushes snippet to the bottom of the card */
}

.snippet-note {
    text-align: center;
    font-size: 0.7rem;
    color: #6b7280;
    margin-top: 8px;
}

.pref-label {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 10px;
    text-align: center;
}

.value-calc-wrapper {
    background: var(--black-light);
    border: 1px solid rgba(197, 179, 88, 0.1);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    padding: 30px;
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.value-calc-text {
    flex: 1;
    text-align: left;
}

.value-calc-demo {
    flex: 1;
    max-width: 400px;
}

@media (max-width: 768px) {
    .value-calc-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .value-calc-text {
        text-align: center;
    }

    .value-calc-demo {
        width: 100%;
    }
}

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(8, 10, 15, 0.85);
    /* Matches app bg */
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 100;
    pointer-events: none;
    /* Allows scrolling right through the badge */
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: bounceIndicator 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 1rem;
    line-height: 1;
}

@keyframes bounceIndicator {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -6px);
    }
}

/* ════════════════════════════════════════
   INTERACTIVE HERO SHOWCASE
   ════════════════════════════════════════ */
.hero-showcase {
    position: relative;
    padding: 100px 20px 120px;
    border-bottom: 1px solid rgba(197, 179, 88, 0.1);
    overflow: hidden;
    background:
        linear-gradient(140deg, var(--black) 30%, rgba(15, 17, 26, 0) 70%),
        url('images/vip-balls1.jpg');
    background-size: cover;
    background-position: center right;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.showcase-tabs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.showcase-tab {
    display: flex;
    align-items: center;
    gap: 20px;
    background: transparent;
    border: 2px solid transparent;
    border-left: 4px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0 12px 12px 0;
    color: var(--white);
}

.showcase-tab:hover {
    background: rgba(255, 255, 255, 0.03);
    border-left-color: rgba(197, 179, 88, 0.5);
}

.showcase-tab.active {
    background: rgba(197, 179, 88, 0.05);
    border-left-color: var(--gold);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.2);
}

.tab-icon {
    font-size: 2rem;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.3s;
}

.showcase-tab.active .tab-icon {
    filter: none;
    transform: scale(1.1);
}

.tab-text h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 5px;
    transition: color 0.3s;
}

.showcase-tab.active .tab-text h3 {
    color: var(--gold);
}

.tab-text p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gray-light);
    margin: 0;
}

.showcase-visuals {
    position: relative;
    height: 500px;
    border-radius: 20px;
    background: var(--black);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(197, 179, 88, 0.1);
    overflow: hidden;
}

.showcase-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
    transform: translateY(20px);
    display: flex;
    flex-direction: column;
}

.showcase-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 2;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
}

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        text-align: center;
    }

    .nav-right {
        width: 100%;
        justify-content: center;
        gap: 15px;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .hero-showcase {
        padding: 60px 15px;
    }

    .showcase-tab {
        padding: 15px;
        gap: 12px;
        border-radius: 12px;
        border-left: 2px solid rgba(255, 255, 255, 0.1);
    }

    .tab-icon {
        font-size: 1.5rem;
    }

    .tab-text h3 {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .tier-grid {
        grid-template-columns: 1fr;
    }

    .tier-card.pro {
        transform: none;
    }

    .tier-card.pro:hover {
        transform: translateY(-5px);
    }

    .facility-title {
        font-size: 2.5rem;
    }

    .showcase-visuals {
        display: none; /* Hide the image/scroll section on mobile as requested */
    }

    .showcase-grid {
        display: block; /* Content now stacks naturally */
    }

    .showcase-content {
        width: 100%;
    }

    .mock-app-bg {
        padding: 20px 10px;
        overflow-y: visible;
        height: auto;
    }

    .mock-app-content {
        overflow-y: visible;
        height: auto;
    }

    .m-card {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 15px;
    }

    .hero-title br {
        display: none;
    }

    .step-connector {
        display: none;
    }

    .steps {
        gap: 20px;
    }

    .feature-split {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .feature-split.reverse .feature-image-side {
        order: -1;
    }

    .feature-text-side .section-title.left-align {
        text-align: center !important;
    }

    .netflix-quote {
        font-size: 1.1rem;
        padding-left: 0;
        border-left: none;
        border-top: 3px solid var(--gold);
        padding-top: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .nav-logo-text {
        font-size: 1.1rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    /* Fix table row specifically for small phones */
    .res-row-segmented {
        flex-wrap: wrap;
    }
    .seg-datetime {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--app-border);
        flex-direction: row;
        gap: 10px;
        justify-content: flex-start;
    }

    /* VIP MATH VERTICAL STACK */
    .calc-math-row {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    .calc-segment {
        justify-content: center;
        width: 100%;
    }
    .calc-op {
        transform: rotate(0deg);
        line-height: 1;
        margin: 5px 0;
    }
}