/* ============================================================
   BEEF CASINO - Art Deco Glamour Design System
   Dark theme: gold on charcoal, 1920s cabaret aesthetic.
   Fonts: Cinzel Decorative (headings) + Jost (body).
   Mobile-first. No theme toggle - dark is the only theme.
   ============================================================ */

/* ===== DESIGN TOKENS ===== */
:root {
    /* Dark theme is the permanent theme - no toggle */
    --background: #0C0A09;
    --background-alt: #161312;
    --foreground: #FAFAF9;
    --card: #1A1A1A;
    --card-foreground: #FAFAF9;
    --popover: #1A1A1A;
    --popover-foreground: #FAFAF9;

    --primary: #D4AF37;        /* Bright gold - brass */
    --primary-foreground: #0C0A09;
    --secondary: #2A2A2A;
    --secondary-foreground: #FAFAF9;
    --muted: #3F3F46;
    --muted-foreground: #A1A1AA;
    --accent: #FF8C00;         /* Bright orange - neon glow */
    --accent-foreground: #0C0A09;
    --destructive: #E11D48;
    --destructive-foreground: #FFFFFF;
    --border: #3F3F46;
    --input: #2A2A2A;
    --ring: #D4AF37;

    --gold: #D4AF37;
    --gold-light: #E8C75A;
    --gold-dark: #A8862B;
    --orange: #FF8C00;
    --charcoal: #0C0A09;
    --charcoal-light: #1A1A1A;
    --charcoal-mid: #2A2A2A;
    --cream: #F5E6C8;
    --cream-white: #FAFAF9;
    --gray-muted: #B8B8C0;
    --gray-border: #3F3F46;

    /* Typography */
    --font-heading: "Cinzel Decorative", "Times New Roman", serif;
    --font-body: "Jost", -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing - 8px base grid */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
    --space-2xl: 60px;
    --space-3xl: 80px;
    --space-4xl: 120px;

    /* Container */
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 200ms ease-out;
    --transition-base: 300ms ease-out;
    --transition-slow: 500ms ease-out;

    /* Shadows */
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.15);
    --shadow-gold-lg: 0 16px 48px rgba(212, 175, 55, 0.25);
    --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.5);

    /* Header height */
    --header-height: 70px;

    /* Z-index */
    --z-header: 1000;
    --z-toggle: 1001;
    --z-drawer: 999;
    --z-overlay: 998;
}

/* Dark class mirrors :root (no toggle, but .dark on body for consistency) */
.dark {
    --background: #0C0A09;
    --background-alt: #161312;
    --foreground: #FAFAF9;
    --card: #1A1A1A;
    --card-foreground: #FAFAF9;
    --popover: #1A1A1A;
    --popover-foreground: #FAFAF9;
    --primary: #D4AF37;
    --primary-foreground: #0C0A09;
    --secondary: #2A2A2A;
    --secondary-foreground: #FAFAF9;
    --muted: #3F3F46;
    --muted-foreground: #A1A1AA;
    --accent: #FF8C00;
    --accent-foreground: #0C0A09;
    --destructive: #E11D48;
    --destructive-foreground: #FFFFFF;
    --border: #3F3F46;
    --input: #2A2A2A;
    --ring: #D4AF37;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--cream-white);
    background-color: var(--charcoal);
    overflow-x: hidden;
    min-height: 100vh;
}

img, video, iframe, embed, object, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--gold-light);
}

p, li, td, th {
    overflow-wrap: break-word;
}

ul, ol {
    list-style: none;
}

section {
    overflow: clip;
}

/* ===== TYPOGRAPHY SYSTEM ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--cream-white);
}

/* Mobile-first heading sizes */
h1 {
    font-size: 32px;
    line-height: 1.15;
    letter-spacing: 0.03em;
}

h2 {
    font-size: 26px;
    line-height: 1.2;
}

h3 {
    font-size: 22px;
    line-height: 1.3;
}

h4 {
    font-size: 18px;
    line-height: 1.4;
}

p {
    margin-bottom: var(--space-md);
    color: var(--cream-white);
}

/* Desktop heading sizes */
@media (min-width: 1024px) {
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 28px; }
    h4 { font-size: 22px; }
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-accent { color: var(--orange); }

/* ===== LAYOUT UTILITIES ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    width: 100%;
}

.content-max {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section-padding {
    padding: var(--space-2xl) 0;
}

@media (min-width: 1024px) {
    .section-padding {
        padding: var(--space-4xl) 0;
    }
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    background: #0C0A09;
    border-bottom: 1px solid var(--gray-border);
}

@media (min-width: 1024px) {
    .site-header {
        background: rgba(12, 10, 9, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.site-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.site-brand .logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 6px;
    border: 1px solid var(--gold-dark);
    background: linear-gradient(135deg, var(--charcoal-mid), var(--charcoal));
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 22px;
    letter-spacing: 0;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.2);
}

.brand-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--gold);
    letter-spacing: 0.05em;
    white-space: nowrap;
}

/* ===== PRIMARY NAVIGATION ===== */
.primary-nav {
    display: none;
}

@media (min-width: 1024px) {
    .primary-nav {
        display: block;
    }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--cream-white);
    padding: var(--space-xs) 0;
    position: relative;
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-left: var(--space-md);
}

.btn-nav {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.btn-login {
    background: transparent;
    color: var(--cream-white);
    border: 1px solid var(--gold-dark);
}

.btn-login:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-register {
    background: var(--gold);
    color: var(--charcoal);
    font-weight: 700;
}

.btn-register:hover {
    background: var(--gold-light);
    color: var(--charcoal);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

/* ===== MOBILE MENU TOGGLE ===== */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--gold-dark);
    border-radius: 6px;
    cursor: pointer;
    z-index: var(--z-toggle);
    padding: 0;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto;
    transition: all var(--transition-base);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* ===== MOBILE NAV DRAWER ===== */
@media (max-width: 1023px) {
    .primary-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--charcoal);
        z-index: var(--z-drawer);
        overflow-y: auto;
        display: none;
        padding: var(--space-xl) var(--space-lg);
        border-top: 1px solid var(--gray-border);
    }

    .primary-nav.is-open {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-md);
    }

    .nav-link {
        display: flex;
        align-items: center;
        min-height: 48px;
        font-size: 18px;
        padding: var(--space-sm) 0;
        border-bottom: 1px solid var(--gray-border);
    }

    .nav-cta-group {
        flex-direction: column;
        margin-left: 0;
        margin-top: var(--space-md);
        gap: var(--space-sm);
    }

    .btn-nav {
        width: 100%;
        justify-content: center;
        min-height: 48px;
        font-size: 16px;
    }
}

/* ===== BUTTONS ===== */
.btn-glow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--charcoal);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    min-height: 48px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-glow:hover {
    background: var(--gold-light);
    color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left var(--transition-slow);
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-large {
    font-size: 18px;
    padding: 18px 40px;
    min-height: 56px;
    animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.7);
    }
}

/* ===== HERO SECTIONS ===== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: clip;
    background: linear-gradient(135deg, #0C0A09 0%, #161312 50%, #0C0A09 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    opacity: 0.75;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(12,10,9,0.92) 0%, rgba(12,10,9,0.65) 50%, rgba(12,10,9,0.35) 100%);
    z-index: 1;
}

@media (max-width: 767px) {
    .hero-overlay {
        background: linear-gradient(180deg, rgba(12,10,9,0.55) 0%, rgba(12,10,9,0.88) 100%);
    }
}

/* Art Deco geometric arch frames */
.hero-arch {
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-arch-left {
    left: 0;
    background: linear-gradient(90deg, rgba(212,175,55,0.08) 0%, transparent 100%);
    border-right: 1px solid rgba(212,175,55,0.15);
}

.hero-arch-right {
    right: 0;
    background: linear-gradient(-90deg, rgba(212,175,55,0.08) 0%, transparent 100%);
    border-left: 1px solid rgba(212,175,55,0.15);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg);
    width: 100%;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 32px;
    line-height: 1.1;
    color: var(--cream-white);
    margin-bottom: var(--space-md);
    max-width: 800px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-muted);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    line-height: 1.6;
}

.hero-bonus {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 700;
    font-size: 28px;
    color: var(--gold);
    margin-bottom: var(--space-xl);
    text-shadow: 0 0 30px rgba(212,175,55,0.4);
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .hero {
        min-height: 700px;
    }
    .hero-title {
        font-size: 42px;
    }
    .hero-bonus {
        font-size: 36px;
    }
    .hero-cta-group {
        flex-direction: row;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 52px;
    }
    .hero-bonus {
        font-size: 44px;
    }
    .hero-subtitle {
        font-size: 20px;
    }
}

/* ===== SECTION HEADINGS ===== */
.section-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 26px;
    color: var(--gold);
    text-align: center;
    margin-bottom: var(--space-xl);
    letter-spacing: 0.03em;
}

@media (min-width: 1024px) {
    .section-heading {
        font-size: 36px;
    }
}

.section-subheading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: var(--space-md);
    letter-spacing: 0.02em;
}

@media (min-width: 1024px) {
    .section-subheading {
        font-size: 28px;
    }
}

/* Art Deco geometric divider */
.deco-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: var(--space-lg) auto;
    border: none;
}

/* ===== STAT BLOCK COMPONENT ===== */
.stat-block-section {
    padding: var(--space-2xl) var(--space-lg);
    max-width: var(--container-max);
    margin: 0 auto;
}

.stat-block-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .stat-block-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stat-block-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background: var(--charcoal-light);
    padding: var(--space-lg);
    text-align: center;
    border-radius: 8px;
    position: relative;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    overflow: hidden;
    min-width: 0;
}

.stat-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-gold);
}

.stat-card-border-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 700;
    font-size: 36px;
    color: var(--gold);
    margin-bottom: var(--space-sm);
    line-height: 1.1;
}

.stat-label {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--cream-white);
    font-weight: 500;
    line-height: 1.4;
}

@media (min-width: 1024px) {
    .stat-card {
        padding: var(--space-xl);
    }
    .stat-number {
        font-size: 44px;
    }
}

/* ===== INFO CARD GRID COMPONENT ===== */
.info-card-grid-section {
    padding: var(--space-2xl) var(--space-lg);
    max-width: var(--container-max);
    margin: 0 auto;
}

.info-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .info-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .info-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info-card {
    background: var(--charcoal-light);
    border: 1px solid var(--gray-border);
    border-radius: 10px;
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.info-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold-lg);
    border-color: var(--gold-dark);
}

.info-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--charcoal-mid);
}

.info-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-card-badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    background: var(--orange);
    color: var(--charcoal);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-card-body {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .info-card-body {
        padding: var(--space-xl);
    }
}

.info-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.info-card-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--cream-white);
    line-height: 1.5;
}

/* ===== FAQ ACCORDION COMPONENT ===== */
.faq-section {
    padding: var(--space-2xl) var(--space-lg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--charcoal-light);
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color var(--transition-base);
}

.faq-item[open] {
    border-color: var(--gold-dark);
    border-left: 3px solid var(--orange);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--cream-white);
    list-style: none;
    min-height: 48px;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    font-size: 24px;
    color: var(--gold);
    font-weight: 300;
    flex-shrink: 0;
    margin-left: var(--space-md);
    transition: transform var(--transition-base);
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--cream-white);
    font-size: 15px;
    line-height: 1.7;
}

.faq-answer p {
    margin-bottom: 0;
    color: var(--cream-white);
}

/* ===== CTA BANNER COMPONENT ===== */
.cta-banner-section {
    padding: var(--space-2xl) 0;
    background: var(--charcoal);
    position: relative;
    overflow: clip;
}

@media (min-width: 1024px) {
    .cta-banner-section {
        padding: var(--space-4xl) 0;
    }
}

.cta-banner-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
}

.cta-deco-arch {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(90deg, rgba(212,175,55,0.06), transparent);
    pointer-events: none;
}

.cta-deco-arch-left {
    left: 0;
    border-right: 1px solid rgba(212,175,55,0.1);
}

.cta-deco-arch-right {
    right: 0;
    background: linear-gradient(-90deg, rgba(212,175,55,0.06), transparent);
    border-left: 1px solid rgba(212,175,55,0.1);
}

.cta-banner-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-banner-title {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 700;
    font-size: 28px;
    color: var(--gold);
    letter-spacing: 0.04em;
    margin-bottom: var(--space-md);
}

.cta-banner-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--cream-white);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-micro {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--gray-muted);
    margin-top: var(--space-md);
}

@media (min-width: 1024px) {
    .cta-banner-title {
        font-size: 40px;
    }
    .cta-banner-subtitle {
        font-size: 18px;
    }
}

/* ===== TWO-COL TEXT LINKS (a11y contrast) ===== */
.two-col-text a {
    color: var(--gold);
    text-decoration: underline;
    text-decoration-color: var(--gold-dark);
    text-underline-offset: 2px;
}

.two-col-text a:hover {
    color: var(--gold-light);
    text-decoration-color: var(--gold);
}

/* ===== TWO-COLUMN LAYOUT ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding: var(--space-2xl) var(--space-lg);
    max-width: var(--container-max);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .two-col {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .two-col {
        padding: var(--space-4xl) var(--space-lg);
        gap: var(--space-3xl);
    }
}

.two-col-text {
    min-width: 0;
}

.two-col-image {
    min-width: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gold-dark);
}

.two-col-image img {
    width: 100%;
    height: auto;
}

/* ===== GOLD BULLET LISTS ===== */
.gold-bullets {
    list-style: none;
    padding: 0;
}

.gold-bullets li {
    position: relative;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-md);
    color: var(--cream-white);
    line-height: 1.6;
}

.gold-bullets li::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-size: 14px;
}

/* ===== VIP TIER LADDER ===== */
.vip-ladder {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.vip-tier {
    background: var(--charcoal-light);
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: border-color var(--transition-base);
}

.vip-tier:hover {
    border-color: var(--gold-dark);
}

.vip-tier::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gold);
}

.vip-tier.elite::before {
    background: var(--orange);
}

.vip-tier-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--gold);
}

.vip-tier.elite .vip-tier-name {
    color: var(--orange);
}

.vip-tier-limit {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--cream-white);
    font-weight: 500;
}

/* ===== TRUST BADGES ROW ===== */
.trust-badges-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
    padding: var(--space-2xl) var(--space-lg);
    max-width: var(--container-max);
    margin: 0 auto;
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    min-width: 120px;
}

.trust-badge-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: var(--charcoal-light);
}

.trust-badge-label {
    font-size: 13px;
    color: var(--gray-muted);
    text-align: center;
}

/* ===== NUMBERED STEP FLOW ===== */
.step-flow {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    padding: var(--space-2xl) var(--space-lg);
    max-width: var(--container-max);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .step-flow {
        flex-direction: row;
        align-items: stretch;
    }
}

.step-card {
    background: var(--charcoal-light);
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    padding: var(--space-lg);
    flex: 1;
    min-width: 0;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--charcoal);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    border-radius: 50%;
    margin-bottom: var(--space-md);
}

.step-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.step-desc {
    font-size: 14px;
    color: var(--cream-white);
    line-height: 1.5;
}

.step-desc a {
    color: var(--gold-light);
    text-decoration: underline;
    text-decoration-color: var(--gold-dark);
    text-underline-offset: 2px;
}

.step-desc a:hover {
    color: var(--cream-white);
    text-decoration-color: var(--gold-light);
}

/* ===== TABLE STYLES ===== */
.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    min-width: 0;
    margin: var(--space-xl) 0;
}

.table-wrapper[tabindex] {
    outline: none;
}

.table-wrapper:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--charcoal-light);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--gray-border);
    min-width: 480px;
}

.styled-table thead {
    background: var(--charcoal-mid);
}

.styled-table th {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--gold);
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    border-bottom: 2px solid var(--gold-dark);
}

.styled-table td {
    padding: var(--space-md) var(--space-lg);
    color: var(--cream-white);
    border-bottom: 1px solid var(--gray-border);
    font-size: 15px;
}

.styled-table tbody tr:last-child td {
    border-bottom: none;
}

.styled-table tbody tr:hover {
    background: var(--charcoal-mid);
}

.styled-table .highlight-col {
    background: rgba(212, 175, 55, 0.05);
}

/* ===== CALLOUT / HIGHLIGHT BOX ===== */
.callout-box {
    background: var(--charcoal-light);
    border: 1px solid var(--gold-dark);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    padding: var(--space-lg) var(--space-xl);
    margin: var(--space-xl) 0;
    position: relative;
}

.callout-box.accent {
    border-left-color: var(--orange);
}

.callout-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.callout-text {
    color: var(--cream-white);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===== SUMMARY / TL;DR BOX ===== */
.summary-box {
    background: linear-gradient(135deg, var(--charcoal-light), var(--charcoal-mid));
    border: 1px solid var(--gold-dark);
    border-radius: 10px;
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
}

.summary-box-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

/* ===== PULL QUOTE ===== */
.pull-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 22px;
    line-height: 1.4;
    color: var(--gold);
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    border-top: 1px solid var(--gold-dark);
    border-bottom: 1px solid var(--gold-dark);
    margin: var(--space-xl) 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pull-quote cite {
    display: block;
    font-family: var(--font-body);
    font-style: normal;
    font-size: 14px;
    color: var(--gray-muted);
    margin-top: var(--space-sm);
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-xl) 0;
    min-width: 480px;
}

.comparison-table th,
.comparison-table td {
    padding: var(--space-md) var(--space-lg);
    text-align: center;
    border: 1px solid var(--gray-border);
}

.comparison-table th {
    background: var(--charcoal-mid);
    font-family: var(--font-heading);
    color: var(--gold);
    font-weight: 700;
}

.comparison-table .recommended {
    background: rgba(212, 175, 55, 0.08);
    border: 2px solid var(--gold);
}

.comparison-table .recommended-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--charcoal);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: var(--space-xs);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--charcoal);
    border-top: 1px solid var(--gray-border);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--gold);
    margin-bottom: var(--space-md);
    letter-spacing: 0.03em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--cream-white);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-text {
    font-size: 13px;
    color: var(--gray-muted);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.footer-copyright {
    font-size: 13px;
    color: var(--gray-muted);
    margin-top: var(--space-md);
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.payment-badge {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--cream-white);
    background: var(--charcoal-light);
    border: 1px solid var(--gray-border);
    padding: 4px 10px;
    border-radius: 4px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.trust-badge {
    font-size: 13px;
    color: var(--gray-muted);
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children animation */
.animate-on-scroll.is-visible .stat-card,
.animate-on-scroll.is-visible .info-card {
    animation: slide-up-fade var(--transition-slow) ease-out forwards;
}

@keyframes slide-up-fade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card, .info-card {
    opacity: 0;
}

.animate-on-scroll.is-visible .stat-card,
.animate-on-scroll.is-visible .info-card {
    opacity: 1;
}

/* ===== SR-ONLY (Screen reader only) ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== CONTENT BODY (for page text blocks) ===== */
.content-body {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg);
}

.content-body p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--cream-white);
    margin-bottom: var(--space-md);
    max-width: 800px;
}

.content-body h2 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.content-body h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.content-body a {
    color: var(--gold);
    text-decoration: underline;
    text-decoration-color: var(--gold-dark);
    text-underline-offset: 2px;
}

.content-body a:hover {
    color: var(--gold-light);
    text-decoration-color: var(--gold);
}

@media (min-width: 1024px) {
    .content-body {
        padding: var(--space-4xl) var(--space-lg);
    }
}

/* ===== SITEMAP LIST ===== */
.sitemap-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.sitemap-item {
    background: var(--charcoal-light);
    border: 1px solid var(--gray-border);
    border-left: 3px solid var(--gold);
    border-radius: 8px;
    padding: var(--space-lg);
    transition: border-color var(--transition-base), transform var(--transition-base);
}

.sitemap-item:hover {
    border-left-color: var(--orange);
    transform: translateX(4px);
}

.sitemap-item-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.02em;
}

.sitemap-item-title a {
    color: var(--gold);
    text-decoration: none;
}

.sitemap-item-title a:hover {
    color: var(--gold-light);
}

.sitemap-item-desc {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--cream-white);
    margin-bottom: 0;
}

@media (min-width: 1024px) {
    .sitemap-item {
        padding: var(--space-xl);
    }
    .sitemap-item-title {
        font-size: 22px;
    }
    .sitemap-item-desc {
        font-size: 16px;
    }
}

/* ===== FULL-WIDTH SECTION ===== */
.full-width-section {
    width: 100%;
    background: var(--background-alt);
    padding: var(--space-2xl) 0;
    overflow: clip;
}

@media (min-width: 1024px) {
    .full-width-section {
        padding: var(--space-4xl) 0;
    }
}

/* ===== BADGE / TAG ===== */
.badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-gold {
    background: var(--gold);
    color: var(--charcoal);
}

.badge-orange {
    background: var(--orange);
    color: var(--charcoal);
}

.badge-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold-dark);
}

/* ===== HERO SECONDARY BUTTON ===== */
.hero-cta-group .btn-glow[style*="transparent"] {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold-dark);
}

.hero-cta-group .btn-glow[style*="transparent"]:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-light);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 320px) {
    .header-container {
        padding: 0 var(--space-md);
    }
    .brand-text {
        font-size: 16px;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .site-header,
    .site-footer,
    .mobile-menu-toggle,
    .cta-banner-section {
        display: none;
    }
    body {
        background: white;
        color: black;
    }
}