/* ================================================================
   VELVET — Theatrical Warmth / Luxury Curtain Aesthetic
   Serif headings · Burgundy depths · Warm gold accents
   Diamond ornaments · Large showcase cards
   ================================================================ */
:root {
    --ls-accent: var(--color-gold, #c9a96e);
}


/* --- 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);
    background: var(--bg-body);
    color: var(--color-text);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    line-height: 1.3;
    font-weight: 700;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    padding: 10px 24px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-gold {
    background: linear-gradient(135deg, #c9a96e, #b8944e);
    color: #1a0a14;
    border: 1px solid #c9a96e;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #dbbf88, #c9a96e);
    color: #1a0a14;
    box-shadow: 0 6px 28px rgba(201, 169, 110, 0.35);
    transform: translateY(-1px);
}

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

.btn-outline:hover {
    background: rgba(201, 169, 110, 0.1);
    color: var(--color-gold-hover);
    border-color: var(--color-gold);
}

.btn-primary {
    background: linear-gradient(135deg, #8b0000, #a50000);
    color: #fff;
    border: 1px solid #a50000;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #a50000, #c00000);
    color: #fff;
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.4);
}

.btn-sm {
    padding: 7px 18px;
    font-size: 12px;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 16px;
    letter-spacing: 1.5px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ================================================================
   HEADER — Centered Logo Two-Row Layout
   ================================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-header);
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
    backdrop-filter: blur(12px);
    transition: all var(--transition);
}

.site-header.scrolled {
    background: rgba(20, 8, 16, 0.98);
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* Top row: centered logo with diamonds */
.header-logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 0 6px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-diamond {
    color: var(--color-gold-dim);
    font-size: 10px;
    opacity: 0.6;
    transition: opacity var(--transition);
}

.logo-link:hover .logo-diamond {
    opacity: 1;
    color: var(--color-gold);
}

.logo-img {
    height: 38px;
    width: auto;
}

/* Bottom row: nav + actions centered */
.header-nav-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 0 12px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-link {
    color: var(--color-text-dim);
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 0;
    position: relative;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition);
}

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

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

.nav-dot {
    color: var(--color-gold-dim);
    font-size: 16px;
    opacity: 0.4;
    user-select: none;
}

.nav-separator {
    width: 1px;
    height: 16px;
    background: var(--color-border-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile controls: hidden on desktop */
.header-mobile-controls {
    display: none;
}

.btn-mobile-login {
    display: none;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background: none;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius);
    cursor: pointer;
    gap: 5px;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-gold);
    transition: all var(--transition);
    border-radius: 1px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ================================================================
   MOBILE MENU — Full screen overlay (outside header)
   ================================================================ */
.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-header);
    padding: 30px 20px;
    z-index: 999;
    flex-direction: column;
    opacity: 0;
    transform: translateY(-10px);
    transition: all var(--transition);
    overflow-y: auto;
}

.mobile-menu.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
}

.mobile-nav a {
    display: block;
    padding: 18px 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--color-border);
    transition: color var(--transition);
}

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

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
}

.mobile-menu-actions .btn {
    padding: 15px;
    font-size: 15px;
}

.mobile-menu-lang {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

/* ================================================================
   ORNAMENTAL DIVIDERS
   Gold diamond with extending lines
   ================================================================ */
.ornament-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 16px auto 24px;
    max-width: 280px;
}

.ornament-divider::before,
.ornament-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold-dim));
}

.ornament-divider::after {
    background: linear-gradient(90deg, var(--color-gold-dim), transparent);
}

.ornament-divider span {
    color: var(--color-gold);
    font-size: 12px;
    padding: 0 14px;
    opacity: 0.7;
    line-height: 1;
}

.ornament-divider--wide {
    max-width: 360px;
}

.ornament-divider--sm {
    margin: 8px auto 40px;
    max-width: 200px;
}

.ornament-divider--sm span {
    font-size: 10px;
    padding: 0 10px;
}

/* ================================================================
   HERO — Theatrical Stage Reveal
   ================================================================ */
.hero {
    position: relative;
    padding: 90px 0 80px;
    text-align: center;
    overflow: hidden;
    background: var(--bg-hero);
}

/* Curtain effects — dark vignette on sides */
.hero-curtain-left,
.hero-curtain-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30%;
    pointer-events: none;
    z-index: 1;
}

.hero-curtain-left {
    left: 0;
    background: linear-gradient(90deg, rgba(15, 5, 10, 0.7) 0%, transparent 100%);
}

.hero-curtain-right {
    right: 0;
    background: linear-gradient(270deg, rgba(15, 5, 10, 0.7) 0%, transparent 100%);
}

/* Center spotlight glow */
.hero-spotlight {
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.18) 0%, rgba(201, 169, 110, 0.05) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 46px;
    font-weight: 700;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, #dbbf88 0%, #c9a96e 40%, #a08850 70%, #dbbf88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-desc {
    font-size: 18px;
    font-style: italic;
    font-family: var(--font-heading);
    color: var(--color-text-dim);
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

/* ================================================================
   SECTION TITLES
   ================================================================ */
.section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-gold);
    margin-bottom: 4px;
    letter-spacing: 1px;
}

/* ================================================================
   FEATURES — 4 Elegant Gold Cards
   ================================================================ */
.features-section {
    padding: 70px 0;
    background: var(--bg-section-alt);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-gold-dim);
    border-radius: var(--radius);
    padding: 30px 24px;
    transition: all var(--transition);
    text-align: center;
}

.feature-card:hover {
    border-left-color: var(--color-gold);
    box-shadow: 0 8px 32px rgba(201, 169, 110, 0.1);
    transform: translateY(-4px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;
    color: var(--color-gold);
    opacity: 0.85;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    color: var(--color-gold);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.feature-card p {
    font-size: 14px;
    color: var(--color-text-dim);
    line-height: 1.7;
}

/* ================================================================
   SLOTS — Large Showcase (2 per row)
   ================================================================ */
.slots-section {
    padding: 70px 0;
    background: var(--bg-body);
}

.slots-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.slot-showcase-card {
    display: block;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-bottom: 2px solid var(--color-gold-dim);
    transition: all var(--transition);
    text-decoration: none;
}

.slot-showcase-card:hover {
    border-color: var(--color-gold-dim);
    box-shadow: 0 12px 40px rgba(201, 169, 110, 0.12);
    transform: translateY(-6px);
}

.slot-showcase-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.slot-showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slot-showcase-card:hover .slot-showcase-img img {
    transform: scale(1.06);
}

.slot-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 10, 20, 0.3) 0%, rgba(26, 10, 20, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.slot-showcase-card:hover .slot-showcase-overlay {
    opacity: 1;
}

.slot-showcase-name {
    padding: 16px 20px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.5px;
}

/* ================================================================
   PROVIDERS — Stacked Compact Grid with Gold Borders
   ================================================================ */
.providers-section {
    padding: 70px 0;
    background: var(--bg-section-alt);
}

.providers-compact-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.provider-compact-card {
    background: var(--bg-card);
    border: 1px solid var(--color-gold-dim);
    border-radius: var(--radius);
    padding: 16px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.provider-compact-card:hover {
    border-color: var(--color-gold);
    background: #2d1420;
    box-shadow: 0 4px 16px rgba(201, 169, 110, 0.08);
}

.provider-compact-card img {
    height: 36px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(30%) brightness(0.9);
    transition: filter var(--transition);
}

.provider-compact-card:hover img {
    filter: grayscale(0%) brightness(1);
}

/* ================================================================
   CONTENT SECTIONS (BCR)
   ================================================================ */
.content-section {
    padding: 70px 0;
    background: var(--bg-body);
}

.content-section table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.content-section table th {
    white-space: nowrap;
}

.content-section .bcr-section {
    max-width: 100%;
    margin: 0;
}

.content-section .bcr-section h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: #f0e0d0;
    margin-bottom: 20px;
}

/* BCR nav pills — gold outline with warm styling */
.bcr-nav {
    border-bottom-color: var(--color-border) !important;
}

.bcr-nav a {
    color: var(--color-gold) !important;
    border-color: var(--color-gold-dim) !important;
    border-radius: 20px !important;
    font-size: 13px !important;
    font-family: var(--font-heading) !important;
    letter-spacing: 0.5px;
}

.bcr-nav a:hover,
.bcr-nav a.active {
    background: rgba(201, 169, 110, 0.12) !important;
    color: var(--color-gold-hover) !important;
    border-color: var(--color-gold) !important;
}

.bcr-block {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    border-top-color: var(--color-border) !important;
}

/* Content block styling */
.content-block {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    color: var(--color-text-dim);
    line-height: 1.8;
}

.content-block h2,
.content-block h3,
.content-block h4 {
    font-family: var(--font-heading);
    color: #f0e0d0;
}

.content-block p {
    margin-bottom: 16px;
    color: var(--color-text-dim);
}

.content-block a {
    color: var(--color-gold);
}

.content-block a:hover {
    color: var(--color-gold-hover);
}

.content-body {
    color: var(--color-text-dim);
    line-height: 1.8;
}

.content-body h2,
.content-body h3 {
    font-family: var(--font-heading);
    color: #f0e0d0;
    margin-top: 28px;
    margin-bottom: 14px;
}

.content-body p {
    margin-bottom: 14px;
}

.content-body ul,
.content-body ol {
    margin-bottom: 14px;
    padding-left: 24px;
}

.content-body li {
    color: var(--color-text-dim);
    margin-bottom: 6px;
}

.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.content-body table th {
    background: rgba(201, 169, 110, 0.08);
    color: var(--color-text);
    font-family: var(--font-heading);
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--color-border);
}

.content-body table td {
    padding: 10px 16px;
    color: var(--color-text-dim);
    border: 1px solid var(--color-border);
}

/* ================================================================
   FAQ SECTION
   ================================================================ */
.faq-section {
    padding: 70px 0;
    background: var(--bg-section-alt);
}

.faq-section .faq-item {
    border-color: var(--color-border) !important;
    background: var(--bg-card);
    border-radius: var(--radius) !important;
    margin-bottom: 10px;
    border-left: 3px solid var(--color-gold-dim) !important;
    transition: all var(--transition);
}

.faq-section .faq-item:hover {
    border-left-color: var(--color-gold) !important;
    border-color: var(--color-border-light) !important;
}

.faq-section .faq-question h3 {
    color: var(--color-text) !important;
    font-family: var(--font-heading);
    font-size: 16px;
    letter-spacing: 0.3px;
}

.faq-section .faq-arrow {
    color: var(--color-gold) !important;
    opacity: 0.8;
}

.faq-section .faq-answer,
.faq-section .faq-answer p {
    color: var(--color-text-dim) !important;
    line-height: 1.8;
}

.faq-section .faq-answer a {
    color: var(--color-gold) !important;
}

.faq-section .faq-answer h2,
.faq-section .faq-answer h3,
.faq-section .faq-answer h4 {
    color: var(--color-gold) !important;
    font-family: var(--font-heading);
}

.faq-section .faq-answer li {
    color: var(--color-text-dim);
}

.faq-section .faq-answer table th {
    color: var(--color-text);
    background: rgba(201, 169, 110, 0.06);
}

.faq-section .faq-answer table td {
    color: var(--color-text-dim);
}

.faq-section .faq-answer table th,
.faq-section .faq-answer table td {
    border-color: var(--color-border);
}

/* Global FAQ overrides */
.faq-item {
    border-color: var(--color-border);
}

.faq-question h3 {
    color: var(--color-text);
}

.faq-answer,
.faq-answer p {
    color: var(--color-text-dim);
}

.faq-answer a {
    color: var(--color-gold);
}

.faq-answer li {
    color: var(--color-text-dim);
}

/* Content block cards with gold left border */
.bcr-section .faq-item,
.content-section .faq-item {
    border-left: 3px solid var(--color-gold-dim) !important;
}

/* ================================================================
   REVIEWS SECTION
   ================================================================ */
.reviews-section {
    padding: 70px 0;
    background: var(--bg-body);
}

.reviews-section h2.section-title {
    margin-bottom: 4px;
}

.reviews-section .review-card {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.reviews-section .review-card:hover {
    border-color: var(--color-gold-dim);
    box-shadow: 0 6px 24px rgba(201, 169, 110, 0.08);
}

.reviews-section .review-avatar {
    background: linear-gradient(135deg, #8b0000, #6b0000) !important;
    color: var(--color-gold) !important;
    font-family: var(--font-heading) !important;
}

.reviews-section .review-name {
    color: var(--color-text) !important;
    font-family: var(--font-heading);
    letter-spacing: 0.3px;
}

.reviews-section .review-text {
    color: var(--color-text-dim) !important;
    line-height: 1.8;
    font-style: italic;
}

.reviews-section .review-stars .star {
    color: var(--color-gold) !important;
}

.reviews-section .review-date {
    color: var(--color-text-muted) !important;
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
    background: var(--bg-footer);
    padding: 44px 0 32px;
    border-top: 1px solid var(--color-border);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-logo .logo-img {
    height: 32px;
    width: auto;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.footer-logo:hover .logo-img {
    opacity: 1;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-nav a {
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color var(--transition);
}

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

.footer-diamond {
    color: var(--color-gold-dim);
    font-size: 8px;
    opacity: 0.5;
}

.footer-lang {
    display: flex;
    align-items: center;
}

/* Footer divider with centered diamond */
.footer-divider {
    position: relative;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
    margin: 28px 0;
}

.footer-divider-diamond {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-footer);
    padding: 0 12px;
    color: var(--color-gold-dim);
    font-size: 10px;
    opacity: 0.5;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--color-text-muted);
    letter-spacing: 0.3px;
    font-family: var(--font-heading);
}

/* ================================================================
   RESPONSIVE — Tablet (768px)
   ================================================================ */
@media (max-width: 768px) {
    /* Header: switch to mobile layout */
    .header-logo-row {
        display: none;
    }

    .header-nav-row {
        display: none;
    }

    .header-mobile-controls {
        display: flex;
        align-items: center;
        height: 60px;
        gap: 10px;
    }

    .logo-mobile {
        margin-right: auto;
    }

    .logo-mobile .logo-img {
        height: 34px;
    }

    .btn-mobile-login {
        display: inline-flex;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero {
        padding: 60px 0 50px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .hero-curtain-left,
    .hero-curtain-right {
        width: 15%;
    }

    /* Section titles */
    .section-title {
        font-size: 24px;
    }

    /* Features: 2 columns */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .feature-card {
        padding: 24px 18px;
    }

    /* Slots: 2 columns on tablet */
    .slots-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    /* Providers: 4 columns */
    .providers-compact-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    /* Sections padding */
    .features-section,
    .slots-section,
    .providers-section,
    .content-section,
    .faq-section,
    .reviews-section {
        padding: 50px 0;
    }

    /* Footer */
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ================================================================
   RESPONSIVE — Mobile (480px)
   ================================================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .header-mobile-controls {
        gap: 8px;
    }

    .logo-mobile .logo-img {
        height: 30px;
    }

    /* Hero */
    .hero {
        padding: 44px 0 38px;
    }

    .hero h1 {
        font-size: 26px;
        letter-spacing: 1px;
    }

    .hero-desc {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-curtain-left,
    .hero-curtain-right {
        display: none;
    }

    /* Ornament dividers */
    .ornament-divider {
        max-width: 180px;
        margin: 12px auto 18px;
    }

    .ornament-divider--sm {
        margin: 6px auto 28px;
        max-width: 140px;
    }

    /* Section titles */
    .section-title {
        font-size: 20px;
    }

    /* Features: 1 column */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .feature-card {
        padding: 20px 16px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 14px;
    }

    /* Slots: 1 column on small screens */
    .slots-showcase {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .slot-showcase-name {
        padding: 12px 16px;
        font-size: 14px;
    }

    /* Providers: 3 columns */
    .providers-compact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .provider-compact-card {
        padding: 12px 8px;
    }

    .provider-compact-card img {
        height: 28px;
    }

    /* Sections padding */
    .features-section,
    .slots-section,
    .providers-section,
    .content-section,
    .faq-section,
    .reviews-section {
        padding: 40px 0;
    }

    .btn-lg {
        padding: 12px 28px;
        font-size: 14px;
    }
}

/* ================================================================
   SCROLLBAR — Warm burgundy theme
   ================================================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
    background: var(--color-border-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-dim);
}

/* ================================================================
   SELECTION — Burgundy highlight
   ================================================================ */
::selection {
    background: rgba(139, 0, 0, 0.45);
    color: var(--color-gold);
}

/* ================================================================
   SUBTLE ANIMATIONS
   ================================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

/* ================================================================
   TABLE RESPONSIVE WRAPPER
   ================================================================ */
.faq-answer table,
.content-section table,
.content-body table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Slot image type: vertical */
[data-slot-type="vertical"] .slot-showcase-img { aspect-ratio: 3/4; }
[data-slot-type="vertical"] .slot-showcase-img img { object-fit: cover; }

/* Slot image type: horizontal */
[data-slot-type="horizontal"] .slot-showcase-img { aspect-ratio: 16/9; }
[data-slot-type="horizontal"] .slot-showcase-img img { object-fit: cover; }
