:root {
    --brand-gold: #fcc419;
    --brand-gold-glow: rgba(252, 196, 25, 0.4);
    --brand-gold-muted: #d4a017;
    --deep-void: #0b091f;
    --card-bg: #16123d;
    --surface-accent: #2c2461;
    --accent: var(--brand-gold);
    --text-primary: #ffffff;
    --text-secondary: #cbd5e0;
    --text-hint: #a0aec0;
    --text-muted: #8892a4;
    --text-light: #cbd5e0;
    --border-soft: rgba(252, 196, 25, 0.15);
    --border-vibrant: rgba(252, 196, 25, 0.4);
    --border-color: rgba(252, 196, 25, 0.2);
    --grad-main: linear-gradient(165deg, #0b091f 0%, #1a154d 50%, #0b091f 100%);
    --grad-card: linear-gradient(135deg, rgba(22, 18, 61, 0.98) 0%, rgba(44, 36, 97, 0.95) 100%);
    --grad-gold: linear-gradient(135deg, #fcc419 0%, #ffdf5d 100%);
    --gradient-card: linear-gradient(135deg, rgba(22, 18, 61, 0.98) 0%, rgba(44, 36, 97, 0.95) 100%);
    --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.6);
    --shadow-highlight: 0 0 25px var(--brand-gold-glow);
    --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-glow-hover: 0 12px 40px rgba(252, 196, 25, 0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: "Trebuchet MS", "Helvetica Neue", "Segoe UI", sans-serif;
    background: var(--grad-main);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.7;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.01em;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── Header ── */
.header {
    background: rgba(11, 9, 31, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1.1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-soft);
    box-shadow: var(--shadow-subtle);
}
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo a { text-decoration: none; }

.nav { display: flex; list-style: none; gap: 2rem; }
.nav a { color: var(--text-secondary); font-weight: 500; transition: all 0.3s ease; position: relative; }
.nav a:hover, .nav a.active { color: var(--accent); }
.nav a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--brand-gold); transition: width 0.3s ease; border-radius: 2px; }
.nav a:hover::after, .nav a.active::after { width: 100%; }

/* ── Burger ── */
.mobile-menu-toggle {
    display: none; background: none; border: none; color: var(--accent);
    font-size: 1.8rem; cursor: pointer; padding: 4px; line-height: 1;
}
.mobile-nav {
    display: none; background: rgba(11, 9, 31, 0.98);
    position: absolute; top: 100%; left: 0; right: 0;
    padding: 1rem 0; border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}
.mobile-nav.active { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav li { padding: 0.75rem 1.5rem; border-bottom: 1px solid var(--border-soft); }
.mobile-nav li:last-child { border-bottom: none; }
.mobile-nav a { color: var(--text-secondary); font-size: 1.05rem; display: block; transition: color 0.2s; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--accent); }

/* ── Buttons ── */
.btn {
    display: inline-block; padding: 0.85rem 1.8rem; border-radius: 10px;
    text-decoration: none; font-weight: 700; transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    text-align: center; cursor: pointer; border: none; box-shadow: var(--shadow-subtle);
    font-size: 0.95rem; letter-spacing: 0.01em;
}
.btn-primary, .btn-success {
    background: var(--grad-gold); color: var(--deep-void) !important;
    letter-spacing: 0.02em;
}
.btn-primary:hover, .btn-success:hover {
    transform: translateY(-2px); box-shadow: var(--shadow-highlight); filter: brightness(1.04);
}
.btn-outline { background: transparent; border: 2px solid var(--brand-gold); color: var(--brand-gold); }
.btn-outline:hover { background: var(--brand-gold); color: var(--deep-void); }
.btn-lg { padding: 1.1rem 2.4rem; font-size: 1.1rem; }
.btn-full { width: 100%; display: block; }

/* ── Hero Banner ── */
.hero-banner {
    position: relative; width: 100%; min-height: 480px;
    background-image: url('/assets/img/home-spin-big-desktop.webp');
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center;
}
.hero-banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(11,9,31,0.88) 0%, rgba(26,21,77,0.65) 50%, rgba(11,9,31,0.88) 100%);
}
.hero-banner .container { position: relative; z-index: 2; }
.hero-content { text-align: center; padding: 60px 20px; }
.hero-content h1 {
    font-size: clamp(2rem, 6vw, 3.8rem); margin-bottom: 1.2rem;
    color: var(--brand-gold); font-weight: 900; line-height: 1.1; letter-spacing: -1.5px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem); color: var(--text-secondary);
    margin: 0 auto 2rem; max-width: 680px; line-height: 1.7;
}
.hero-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-badge {
    background: rgba(252,196,25,0.09); border: 1px solid var(--border-vibrant);
    color: var(--brand-gold); padding: 6px 16px; border-radius: 20px;
    font-size: 0.85rem; font-weight: 600;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Trust Bar ── */
.trust-bar {
    background: rgba(22,18,61,0.9); border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft); padding: 14px 0;
}
.trust-bar-inner {
    display: flex; gap: 2rem; justify-content: center; align-items: center;
    flex-wrap: wrap; font-size: 0.85rem; color: var(--text-hint);
}
.trust-item { display: flex; align-items: center; gap: 6px; }
.trust-item .icon { color: var(--brand-gold); font-size: 1rem; }

/* ── Sections ── */
.section { padding: 72px 0; }
.section-alt { background: rgba(22,18,61,0.35); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.section-title {
    font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: 1rem;
    color: var(--text-primary); text-align: center; font-weight: 800;
    letter-spacing: -0.5px;
}
.section-subtitle { text-align: center; color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 3rem; max-width: 650px; margin-left: auto; margin-right: auto; }

.section h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-bottom: 1.2rem; color: var(--text-primary); font-weight: 700; }
.section h3 { font-size: 1.25rem; margin: 2rem 0 0.8rem; color: var(--brand-gold); font-weight: 600; }
.section p { margin-bottom: 1rem; line-height: 1.85; color: var(--text-light); font-size: 1.02rem; }
.section ul { margin-left: 1.5rem; margin-bottom: 1rem; }
.section li { margin-bottom: 0.5rem; line-height: 1.8; color: var(--text-light); }

/* ── At-a-Glance Table ── */
.info-table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; border-radius: 12px; overflow: hidden; }
.info-table th, .info-table td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--border-soft); }
.info-table th { background: rgba(44,36,97,0.8); color: var(--brand-gold); font-weight: 600; width: 40%; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.04em; }
.info-table td { background: rgba(22,18,61,0.6); color: var(--text-secondary); }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: none; }

/* Data table (RTP, payments etc) */
.data-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; border-radius: 12px; overflow: hidden; }
.data-table thead th { background: rgba(44,36,97,0.9); color: var(--brand-gold); padding: 13px 16px; text-align: left; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; }
.data-table tbody td { padding: 12px 16px; border-bottom: 1px solid var(--border-soft); background: rgba(22,18,61,0.5); color: var(--text-secondary); font-size: 0.95rem; }
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover td { background: rgba(44,36,97,0.5); }
.check-yes { color: #4ade80; font-weight: 700; }
.check-no  { color: #f87171; font-weight: 700; }

@media (max-width: 600px) {
    .data-table, .data-table thead, .data-table tbody, .data-table th, .data-table td, .data-table tr { display: block; }
    .data-table thead tr { display: none; }
    .data-table td { padding: 8px 14px; border-bottom: none; }
    .data-table td::before { content: attr(data-label); font-weight: 700; color: var(--brand-gold); display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 2px; }
    .data-table tr { border: 1px solid var(--border-soft); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
}

/* ── Games Grid ── */
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.game-card {
    background: var(--grad-card); border-radius: 14px; overflow: hidden;
    border: 1px solid var(--border-soft); transition: all 0.3s ease; cursor: pointer;
}
.game-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow-hover); border-color: var(--border-vibrant); }
.game-image { width: 100%; overflow: hidden; aspect-ratio: 4/3; }
.game-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.game-card:hover .game-image img { transform: scale(1.08); }
.game-info { padding: 1rem 1.2rem; text-align: center; }
.game-info h3 { color: var(--text-primary); font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.game-info .provider { color: var(--text-hint); font-size: 0.82rem; }
.game-info .rtp-badge { display: inline-block; background: rgba(252,196,25,0.12); color: var(--brand-gold); font-size: 0.78rem; font-weight: 700; padding: 2px 10px; border-radius: 10px; margin-top: 6px; border: 1px solid var(--border-vibrant); }

/* ── Provider Cards ── */
.providers-grid { display: grid; gap: 1.5rem; margin-top: 2rem; }
.provider-card { background: var(--grad-card); border-radius: 14px; padding: 1.5rem; border: 1px solid var(--border-soft); transition: border-color 0.3s ease; }
.provider-card:hover { border-color: var(--border-vibrant); }
.provider-card h3 { color: var(--brand-gold); font-size: 1.05rem; margin-bottom: 0.6rem; margin-top: 0; }
.provider-card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.65; margin: 0; }

/* ── FAQ Accordion ── */
.faq-list { margin-top: 2rem; }
.faq-item { border: 1px solid var(--border-soft); border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
.faq-item details { background: rgba(22,18,61,0.5); }
.faq-item summary {
    padding: 16px 20px; cursor: pointer; font-weight: 600; font-size: 1rem;
    color: var(--text-primary); list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--brand-gold); font-size: 1.4rem; font-weight: 300; flex-shrink: 0; margin-left: 12px; }
.faq-item details[open] summary { border-bottom: 1px solid var(--border-soft); background: rgba(44,36,97,0.4); }
.faq-item details[open] summary::after { content: "−"; }
.faq-item .faq-answer { padding: 16px 20px; color: var(--text-secondary); font-size: 0.97rem; line-height: 1.8; background: rgba(11,9,31,0.3); }
.faq-item .faq-answer p { margin-bottom: 0; color: var(--text-secondary); }

/* ── Steps List ── */
.steps-list { list-style: none; margin: 2rem 0; }
.steps-list li { display: flex; gap: 1.2rem; margin-bottom: 1.6rem; align-items: flex-start; }
.step-num {
    flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
    background: var(--grad-gold); color: var(--deep-void);
    font-weight: 900; font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
}
.step-body h4 { color: var(--text-primary); font-size: 1.05rem; margin-bottom: 4px; }
.step-body p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; margin: 0; }

/* ── Bonus Card ── */
.bonus-highlight {
    background: var(--grad-card); border: 2px solid var(--border-vibrant);
    border-radius: 16px; padding: 2rem; text-align: center; margin: 2rem 0;
    box-shadow: var(--shadow-highlight);
}
.bonus-amount { font-size: clamp(2rem, 5vw, 3rem); color: var(--brand-gold); font-weight: 900; margin-bottom: 0.5rem; line-height: 1; }
.bonus-label { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 1.5rem; }
.bonus-badge { display: inline-block; background: var(--grad-gold); color: var(--deep-void); padding: 6px 18px; border-radius: 20px; font-weight: 700; font-size: 0.9rem; }

/* ── Pros Cons ── */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
.pros-card, .cons-card { background: var(--grad-card); border-radius: 14px; padding: 1.5rem; }
.pros-card { border-top: 3px solid #4ade80; }
.cons-card { border-top: 3px solid #f87171; }
.pros-card h3 { color: #4ade80; font-size: 1rem; margin-top: 0; margin-bottom: 1rem; }
.cons-card h3 { color: #f87171; font-size: 1rem; margin-top: 0; margin-bottom: 1rem; }
.pros-list, .cons-list { list-style: none; padding: 0; }
.pros-list li, .cons-list li { padding: 6px 0; font-size: 0.94rem; color: var(--text-secondary); display: flex; gap: 8px; align-items: flex-start; line-height: 1.5; }
.pros-list li::before { content: "✓"; color: #4ade80; font-weight: 700; flex-shrink: 0; }
.cons-list li::before { content: "✗"; color: #f87171; font-weight: 700; flex-shrink: 0; }
@media (max-width: 600px) { .pros-cons-grid { grid-template-columns: 1fr; } }

/* ── Features Grid ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.feature-card { background: var(--grad-card); border-radius: 14px; padding: 1.5rem; border: 1px solid var(--border-soft); text-align: center; transition: border-color 0.3s; }
.feature-card:hover { border-color: var(--border-vibrant); }
.feature-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }
.feature-card h3 { color: var(--brand-gold); font-size: 1rem; margin: 0 0 0.5rem; }
.feature-card p { color: var(--text-secondary); font-size: 0.9rem; margin: 0; line-height: 1.6; }

/* ── Betting Sports Grid ── */
.sports-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; margin: 2rem 0; }
.sport-card { background: var(--grad-card); border-radius: 12px; padding: 1.2rem; text-align: center; border: 1px solid var(--border-soft); transition: all 0.3s; }
.sport-card:hover { border-color: var(--border-vibrant); transform: translateY(-3px); }
.sport-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.sport-card h4 { color: var(--text-primary); font-size: 0.9rem; font-weight: 600; margin: 0; }

/* ── CTA Banner Section ── */
.cta-banner {
    background: linear-gradient(135deg, rgba(44,36,97,0.8) 0%, rgba(22,18,61,0.9) 100%);
    border: 1px solid var(--border-vibrant); border-radius: 16px;
    padding: 3rem 2rem; text-align: center; margin: 2rem 0;
}
.cta-banner h2 { color: var(--brand-gold); margin-bottom: 0.8rem; }
.cta-banner p { color: var(--text-secondary); max-width: 560px; margin: 0 auto 1.8rem; }

/* ── Breadcrumb ── */
.breadcrumb { padding: 12px 0; margin-bottom: 1rem; }
.breadcrumb ol { display: flex; gap: 8px; list-style: none; font-size: 0.85rem; color: var(--text-hint); flex-wrap: wrap; align-items: center; }
.breadcrumb li::after { content: "›"; margin-left: 8px; }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--brand-gold); transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 0.8; }

/* ── Footer ── */
footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 0%, rgba(255, 213, 74, 0.08), transparent 32%),
        linear-gradient(180deg, rgba(13, 10, 34, 0.98), rgba(5, 4, 15, 1));
    border-top: 1px solid rgba(255, 213, 74, 0.18);
    padding: 3.5rem 0 1.6rem;
    margin-top: 0;
}
footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 213, 74, 0.65), transparent);
}
.footer-content {
    display: grid;
    grid-template-columns: minmax(280px, 1.45fr) repeat(3, minmax(150px, 0.7fr));
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
    margin-bottom: 2.25rem;
}
.footer-brand {
    max-width: 520px;
}
.footer-brand img {
    display: block;
    margin-bottom: 1rem;
}
.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-top: 0.8rem;
}
.footer-section h4 {
    color: var(--text-primary);
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.footer-section ul {
    list-style: none;
    display: grid;
    gap: 0.65rem;
}
.footer-section ul li {
    margin-bottom: 0;
}
.footer-section a {
    color: var(--text-secondary);
    font-size: 0.92rem;
    transition: color 0.2s, transform 0.2s;
}
.footer-section a:hover {
    color: var(--brand-gold);
    transform: translateX(2px);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 213, 74, 0.16);
    padding-top: 1.35rem;
    text-align: center;
    font-size: 0.86rem;
    color: var(--text-secondary);
    line-height: 1.75;
}
.footer-bottom a {
    color: var(--brand-gold);
}
.footer-bottom a:hover {
    color: var(--accent);
}
.footer-disclaimer {
    max-width: 880px;
    margin: 0.75rem auto 0;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 213, 74, 0.18);
    border-radius: 14px;
    background: rgba(255, 213, 74, 0.07);
    color: var(--text-primary);
}
@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
    }
}
@media (max-width: 560px) {
    footer {
        padding: 2.5rem 0 1.25rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.35rem;
    }
    .footer-section ul {
        gap: 0.5rem;
    }
    .footer-bottom {
        text-align: left;
    }
}

/* ── Mobile Sticky CTA ── */
.mobile-cta-bar {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(11,9,31,0.97); backdrop-filter: blur(12px);
    padding: 10px 16px 14px; z-index: 999;
    border-top: 2px solid var(--brand-gold);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.6);
    text-align: center;
}
.mobile-cta-bar a { display: block; }
.mcta-bonus { display: block; color: var(--deep-void); font-weight: 800; font-size: 1rem; background: var(--grad-gold); padding: 10px 20px; border-radius: 8px; }
.mcta-sub { display: block; color: var(--text-muted); font-size: 0.7rem; margin-top: 4px; }

/* ── Slot Types ── */
.slot-types { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin: 2rem 0; }
.slot-type-card { background: var(--grad-card); border-radius: 12px; padding: 1.2rem; border: 1px solid var(--border-soft); }
.slot-type-card h4 { color: var(--brand-gold); font-size: 0.95rem; margin-bottom: 0.4rem; }
.slot-type-card p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.5; margin: 0; }

/* ── Payment Methods Grid ── */
.payment-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.payment-item { background: var(--grad-card); border: 1px solid var(--border-soft); border-radius: 10px; padding: 0.9rem; text-align: center; font-size: 0.85rem; color: var(--text-secondary); font-weight: 500; }

/* ── Animations ── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { box-shadow: 0 4px 15px rgba(252,196,25,0.4); } 50% { box-shadow: 0 6px 25px rgba(252,196,25,0.6); } }
.entry-anim { animation: fadeInUp 0.7s cubic-bezier(0.16,1,0.3,1) both; }
.delay-1 { animation-delay: 0.1s; } .delay-2 { animation-delay: 0.15s; }
.delay-3 { animation-delay: 0.2s; } .delay-4 { animation-delay: 0.25s; }

/* ── Responsive ── */
@media (max-width: 992px) {
    .container { padding: 0 24px; }
    .section { padding: 56px 0; }
}
@media (max-width: 768px) {
    .nav { display: none; }
    .mobile-menu-toggle { display: block; }
    .mobile-cta-bar { display: block; }
    main { padding-bottom: 80px; }
    .hero-banner { min-height: 360px; }
    .hero-content { padding: 40px 16px; }
    .games-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .providers-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .container { padding: 0 14px; }
    .hero-content h1 { font-size: 1.7rem; letter-spacing: -0.5px; }
    .section { padding: 40px 0; }
    .games-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .features-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-lg { width: 100%; }
    .sports-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Legal Pages ── */
.legal-content h2 { color: var(--brand-gold); font-size: 1.3rem; margin: 2rem 0 0.8rem; }
.legal-content p, .legal-content li { color: var(--text-secondary); font-size: 0.97rem; line-height: 1.85; }
.legal-content ul { margin-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { margin-bottom: 0.4rem; }
