/* ============================================
   SlotLounge Casino - Design System
   Epic fantasy: royal blue + radiant gold
   Mobile-first, dark-only theme
   ============================================ */

/* ============================================
   RESET & SAFETY NET
   ============================================ */
*,
*::before,
*::after { box-sizing: border-box; }

/* Theme toggle button */
.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(245, 197, 66, 0.35);
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--accent);
    font-size: 1.1rem;
    line-height: 1;
    padding: 0;
    margin-right: 4px;
    transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}
.theme-toggle:hover { background: rgba(245, 197, 66, 0.1); transform: scale(1.05); }
.theme-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.theme-toggle-icon { display: none; }
[data-theme="dark"] .theme-toggle-icon--sun { display: inline; }
[data-theme="light"] .theme-toggle-icon--moon { display: inline; }
[data-theme="light"] .theme-toggle { border-color: rgba(30, 58, 138, 0.4); color: var(--primary); }
[data-theme="light"] .theme-toggle:hover { background: rgba(30, 58, 138, 0.08); }

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

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    background-image:
        radial-gradient(ellipse 80% 60% at 20% 0%, rgba(59, 91, 219, 0.18), transparent 60%),
        radial-gradient(ellipse 60% 50% at 100% 30%, rgba(245, 197, 66, 0.07), transparent 70%),
        radial-gradient(ellipse 100% 80% at 50% 100%, rgba(30, 58, 138, 0.22), transparent 60%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

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

[class*="grid"] > *, [class*="flex"] > * { min-width: 0; }

pre, code, .code-block { max-width: 100%; overflow-x: auto; }

.table-wrapper { max-width: 100%; overflow-x: auto; }
.table-wrapper:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
table { width: 100%; border-collapse: collapse; }

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

input, textarea, select { max-width: 100%; box-sizing: border-box; font: inherit; }

section { overflow: clip; }

a { color: var(--primary); text-decoration: none; transition: color 220ms ease; }
a:hover { color: var(--accent); }

ul, ol { padding-left: 1.25rem; }

/* ============================================
   TYPOGRAPHY
   Cinzel Decorative for headings, Manrope for body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.15;
    margin: 0 0 var(--space-md);
    color: var(--foreground);
    font-weight: 700;
}

h1 {
    font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
    background: linear-gradient(135deg, var(--gold-3) 0%, var(--gold-1) 50%, var(--gold-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 40px rgba(245, 197, 66, 0.25);
    letter-spacing: 0.5px;
}

h2 {
    font-size: clamp(1.6rem, 3.5vw + 0.5rem, 2.75rem);
    color: var(--gold-3);
}

h3 { font-size: clamp(1.25rem, 1.5vw + 0.6rem, 1.875rem); color: var(--foreground); }
h4 { font-size: clamp(1.1rem, 0.8vw + 0.85rem, 1.375rem); color: var(--gold-1); }

p { margin: 0 0 var(--space-md); color: var(--foreground); }

.lead { font-size: 1.125rem; color: var(--muted-foreground); line-height: 1.65; }

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    padding: 6px 14px;
    border: 1px solid rgba(245, 197, 66, 0.35);
    border-radius: var(--radius-pill);
    background: rgba(245, 197, 66, 0.05);
    margin-bottom: var(--space-md);
}

.gold-text {
    background: linear-gradient(135deg, var(--gold-3), var(--gold-1) 50%, var(--gold-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.bonus-number {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(180deg, var(--gold-3), var(--gold-1) 60%, var(--gold-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(245, 197, 66, 0.4);
    line-height: 1;
    display: inline-block;
}

/* ============================================
   LAYOUT - Container & Sections
   ============================================ */
.container {
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

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

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

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--space-xl);
}

.section-head h2 { margin-bottom: var(--space-sm); }

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--accent);
    color: var(--accent-foreground);
    padding: 12px 18px;
    z-index: 9999;
    border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

@media (min-width: 768px) {
    .container { padding: 0 var(--space-lg); }
    .section { padding: var(--space-3xl) 0; }
}

@media (min-width: 1024px) {
    .section { padding: 112px 0; }
}

/* ============================================
   HEADER - Fixed translucent
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(10, 14, 36, 0.85);
    border-bottom: 1px solid rgba(245, 197, 66, 0.2);
}

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

main { padding-top: var(--header-h); }

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--foreground);
    font-family: var(--font-display);
    text-decoration: none;
    flex-shrink: 0;
}

.brand .logo {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 197, 66, 0.4), transparent 70%);
    padding: 4px;
    box-shadow: 0 0 20px rgba(245, 197, 66, 0.3);
}

.brand-text { display: inline-flex; flex-direction: column; line-height: 1; }
.brand-name {
    font-size: 1.05rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-3), var(--gold-1));
    -webkit-background-clip: text; background-clip: text; color: transparent;
    letter-spacing: 0.5px;
}
.brand-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--muted-foreground);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 3px;
}

.main-nav { display: none; }

.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid rgba(245, 197, 66, 0.35);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}
.menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--gold-1);
    border-radius: 2px;
    transition: transform 280ms ease, opacity 220ms ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.main-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0; bottom: 0;
    z-index: 999;
    background: var(--background);
    background-image:
        radial-gradient(ellipse at top right, rgba(59, 91, 219, 0.25), transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(245, 197, 66, 0.08), transparent 60%);
    padding: var(--space-lg) var(--space-md);
    overflow-y: auto;
    border-top: 1px solid rgba(245, 197, 66, 0.25);
}

.main-nav.is-open .nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-xs);
}

.main-nav.is-open .nav-list a {
    display: flex;
    align-items: center;
    min-height: 56px;
    padding: 0 var(--space-md);
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--foreground);
    border: 1px solid rgba(245, 197, 66, 0.18);
    border-radius: var(--radius-md);
    background: rgba(17, 22, 52, 0.7);
}
.main-nav.is-open .nav-list a:hover { color: var(--accent); border-color: rgba(245, 197, 66, 0.5); }

.main-nav.is-open .nav-cta-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: auto;
    padding-top: var(--space-lg);
    border-top: 1px dashed rgba(245, 197, 66, 0.25);
}
.main-nav.is-open .nav-cta-group .btn { width: 100%; justify-content: center; }

@media (min-width: 1024px) {
    .menu-toggle { display: none; }
    .main-nav {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        gap: var(--space-lg);
        position: static;
        background: transparent;
        padding: 0;
        border: none;
        flex: 1;
        justify-content: flex-end;
    }
    .main-nav .nav-list {
        display: flex;
        flex-direction: row;
        list-style: none;
        gap: var(--space-md);
        padding: 0; margin: 0;
        align-items: center;
    }
    .main-nav .nav-list a {
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 0.95rem;
        color: var(--foreground);
        padding: 8px 4px;
        border-bottom: 2px solid transparent;
        background: none; border-radius: 0; min-height: 0;
    }
    .main-nav .nav-list a:hover { color: var(--accent); border-bottom-color: var(--accent); }
    .main-nav .nav-cta-group { display: inline-flex; gap: 12px; flex-direction: row; padding: 0; border: none; margin: 0; }
    .main-nav .nav-cta-group .btn { width: auto; }
}

/* Mobile: disable backdrop-filter to avoid containing block trap */
@media (max-width: 1023px) {
    .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; }
}
@media (min-width: 1024px) {
    .site-header { backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    min-height: 48px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
    white-space: nowrap;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-3) 0%, var(--gold-1) 45%, var(--gold-2) 100%);
    color: var(--accent-foreground);
    box-shadow: 0 8px 24px rgba(245, 197, 66, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(245, 197, 66, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    color: var(--accent-foreground);
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border-color: rgba(245, 236, 215, 0.35);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-secondary {
    background: var(--secondary);
    color: var(--foreground);
    border-color: var(--border);
}
.btn-secondary:hover { background: var(--muted); border-color: var(--accent); }

.btn-xl { padding: 18px 38px; font-size: 1.1rem; min-height: 60px; }

@keyframes goldPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(245, 197, 66, 0.35), 0 0 0 0 rgba(245, 197, 66, 0.6); }
    50% { box-shadow: 0 12px 36px rgba(245, 197, 66, 0.6), 0 0 0 14px rgba(245, 197, 66, 0); }
}
.btn-pulse { animation: goldPulse 2.4s ease-in-out infinite; }

/* ============================================
   CARDS - Generic surfaces
   ============================================ */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-card);
    min-width: 0;
    position: relative;
}

@media (min-width: 768px) { .card { padding: var(--space-lg); } }

.card--accent { border-color: rgba(245, 197, 66, 0.45); }

/* ============================================
   BONUS CARD COMPONENT
   ============================================ */
.bonus-card {
    position: relative;
    background: linear-gradient(180deg, #131a3e 0%, #0d1230 100%);
    border: 1px solid rgba(245, 197, 66, 0.35);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(6, 9, 25, 0.55), 0 0 0 1px rgba(245, 197, 66, 0.12);
    transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.bonus-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(245, 197, 66, 0.7);
    box-shadow: 0 18px 50px rgba(59, 91, 219, 0.4), 0 0 0 1px rgba(245, 197, 66, 0.5);
}
.bonus-card--highlight { border-color: var(--gold-1); box-shadow: 0 0 32px rgba(245, 197, 66, 0.35), 0 14px 36px rgba(6, 9, 25, 0.55); }

.bonus-card__top {
    height: 110px;
    background:
        radial-gradient(ellipse at center, rgba(59, 91, 219, 0.4), transparent 70%),
        linear-gradient(135deg, #1a2150 0%, #0a0e24 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(245, 197, 66, 0.25);
}
.bonus-card__icon {
    font-size: 3rem;
    color: var(--gold-1);
    text-shadow: 0 0 20px rgba(245, 197, 66, 0.6);
}
.bonus-card__rune {
    position: absolute;
    color: rgba(245, 197, 66, 0.35);
    font-size: 1rem;
    font-weight: 700;
}
.bonus-card__rune--tl { top: 10px; left: 12px; }
.bonus-card__rune--tr { top: 10px; right: 12px; }
.bonus-card__rune--bl { bottom: 10px; left: 12px; }
.bonus-card__rune--br { bottom: 10px; right: 12px; }

.bonus-card__body {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
@media (min-width: 768px) { .bonus-card__body { padding: var(--space-lg); } }

.bonus-card__value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(180deg, var(--gold-3), var(--gold-1) 60%, var(--gold-2));
    -webkit-background-clip: text; background-clip: text; color: transparent;
    text-shadow: 0 0 24px rgba(245, 197, 66, 0.4);
}
.bonus-card__title {
    font-size: 1.1rem;
    margin: 0;
    color: var(--foreground);
    font-weight: 700;
}
.bonus-card__code {
    display: inline-block;
    align-self: flex-start;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--gold-1);
    border: 1px solid var(--gold-1);
    border-radius: var(--radius-pill);
    padding: 4px 14px;
    background: rgba(245, 197, 66, 0.08);
}
.bonus-card__code strong { letter-spacing: 1px; }
.bonus-card__desc {
    font-size: 0.95rem;
    color: var(--foreground);
    margin: 0;
    line-height: 1.55;
}
.bonus-card__terms {
    font-size: 0.8rem;
    color: var(--muted-foreground);
    margin: 0;
}
.bonus-card__cta { margin-top: auto; align-self: stretch; }

/* ============================================
   GAME CARD COMPONENT
   ============================================ */
.game-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--border);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    position: relative;
    min-width: 0;
}
.game-card:hover {
    transform: translateY(-4px) scale(1.03);
    border-color: var(--gold-1);
    box-shadow: 0 18px 40px rgba(59, 91, 219, 0.45), 0 0 0 1px rgba(245, 197, 66, 0.55);
}
.game-card__link { display: flex; flex-direction: column; height: 100%; color: var(--foreground); text-decoration: none; }

.game-card__media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: linear-gradient(135deg, #1a2150, #0a0e24);
}
.game-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 320ms ease;
}
.game-card:hover .game-card__media img { transform: scale(1.06); }

.game-card__play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(245, 197, 66, 0.95);
    color: var(--accent-foreground);
    border-radius: 50%;
    font-size: 1.4rem;
    opacity: 0;
    transition: opacity 220ms ease, transform 220ms ease;
    box-shadow: 0 0 30px rgba(59, 91, 219, 0.7);
}
.game-card:hover .game-card__play { opacity: 1; transform: scale(1.1); }

.game-card__tag {
    position: absolute;
    top: 10px; left: 10px;
    background: rgba(245, 197, 66, 0.95);
    color: var(--accent-foreground);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

.game-card__info {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: linear-gradient(180deg, #111634, #0a0e24);
}
.game-card__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: var(--foreground);
}
.game-card__provider {
    font-size: 0.78rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.game-card__chips { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }

.chip {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--gold-1);
    color: var(--gold-1);
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(245, 197, 66, 0.06);
}
.chip--alt { color: var(--primary-foreground); border-color: var(--primary); background: rgba(59, 91, 219, 0.18); }

/* ============================================
   GRIDS
   ============================================ */
.grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: minmax(0, 1fr);
}
.grid--2 { grid-template-columns: minmax(0, 1fr); }
.grid--3 { grid-template-columns: minmax(0, 1fr); }
.grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }

@media (min-width: 768px) {
    .grid { gap: var(--space-lg); }
    .grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .grid--4 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-md); }
}

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

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-card);
}
@media (min-width: 768px) { .faq-accordion { padding: var(--space-lg); } }

.faq-accordion__title { margin-bottom: var(--space-md); }

.faq-row {
    border-top: 1px solid rgba(245, 197, 66, 0.18);
    padding: 0;
}
.faq-row:first-child { border-top: none; }

.faq-row__q {
    list-style: none;
    cursor: pointer;
    padding: 18px 8px;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--foreground);
}
.faq-row__q::-webkit-details-marker { display: none; }

.faq-row__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 1px solid var(--gold-1);
    color: var(--gold-1);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform 280ms ease, background 280ms ease;
}

.faq-row[open] .faq-row__icon {
    transform: rotate(45deg);
    background: rgba(245, 197, 66, 0.15);
}

.faq-row[open] {
    border-top-color: var(--gold-1);
    box-shadow: inset 0 1px 0 rgba(245, 197, 66, 0.4);
}

.faq-row__a {
    padding: 6px var(--space-md) var(--space-md);
    border-left: 3px solid var(--gold-1);
    background: rgba(31, 38, 71, 0.6);
    border-radius: var(--radius-sm);
    margin: 0 4px var(--space-sm);
    color: var(--foreground);
}
.faq-row__a p { margin: 0; line-height: 1.65; }
.faq-row__a a {
    color: var(--gold-1);
    text-decoration: underline;
    text-decoration-color: rgba(245, 197, 66, 0.5);
    text-underline-offset: 3px;
}
.faq-row__a a:hover { color: var(--gold-3); text-decoration-color: var(--gold-3); }

@media (min-width: 768px) {
    .faq-row__q { font-size: 1.1rem; padding: 22px 12px; }
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    padding: 80px var(--space-md);
    margin: var(--space-2xl) 0;
    background: linear-gradient(135deg, #0a0e24 0%, #1a2150 50%, #0a0e24 100%);
    border-top: 1px solid rgba(245, 197, 66, 0.3);
    border-bottom: 1px solid rgba(245, 197, 66, 0.3);
    overflow: hidden;
    text-align: center;
}
@media (min-width: 1024px) { .cta-banner { padding: 140px var(--space-md); } }

.cta-banner__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(ellipse at 50% 50%, rgba(59, 91, 219, 0.35), transparent 70%);
}
.cta-banner__rune {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(245, 197, 66, 0.18);
    font-size: 1.5rem;
    letter-spacing: 8px;
    font-weight: 700;
    writing-mode: vertical-rl;
}
.cta-banner__rune--l { left: 12px; }
.cta-banner__rune--r { right: 12px; }
.cta-banner__mascot {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse at 50% 70%, rgba(245, 197, 66, 0.1), transparent 50%);
    opacity: 0.6;
}

.cta-banner__content { position: relative; max-width: 760px; margin: 0 auto; }
.cta-banner__headline {
    font-size: clamp(1.8rem, 5vw, 3.25rem);
    margin-bottom: var(--space-md);
}
.cta-banner__sub {
    color: var(--foreground);
    font-size: 1.05rem;
    margin-bottom: var(--space-lg);
}
.cta-banner__micro {
    margin-top: var(--space-md);
    font-size: 0.78rem;
    color: var(--muted-foreground);
}

/* ============================================
   TRUST ROW
   ============================================ */
.trust-row {
    background: linear-gradient(180deg, #060919, #0a0e24);
    border-top: 1px solid rgba(245, 197, 66, 0.25);
    border-bottom: 1px solid rgba(245, 197, 66, 0.25);
    padding: var(--space-md) 0;
}
.trust-row__inner {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
    justify-content: center;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px 14px;
    border: 1px solid rgba(245, 236, 215, 0.2);
    border-radius: var(--radius-md);
    background: rgba(17, 22, 52, 0.5);
    min-width: 130px;
    transition: border-color 220ms ease, transform 220ms ease;
}
.trust-badge:hover { border-color: var(--gold-1); transform: translateY(-2px); }

.trust-badge__label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--gold-1);
    font-weight: 700;
    letter-spacing: 0.5px;
}
.trust-badge__sub {
    font-size: 0.7rem;
    color: var(--muted-foreground);
    margin-top: 2px;
    letter-spacing: 0.5px;
}

/* ============================================
   ENGAGEMENT PATTERNS
   ============================================ */

/* TL;DR / Summary box */
.summary-box {
    background: linear-gradient(135deg, rgba(59, 91, 219, 0.18), rgba(17, 22, 52, 0.9));
    border-left: 4px solid var(--gold-1);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
}
.summary-box__label {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--gold-1);
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
}
.summary-box p:last-child { margin-bottom: 0; }

/* Callout */
.callout {
    border: 1px solid rgba(245, 197, 66, 0.45);
    background: rgba(245, 197, 66, 0.06);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: var(--space-md) 0;
    position: relative;
}
.callout::before {
    content: "✦";
    position: absolute;
    top: -14px; left: 18px;
    background: var(--background);
    color: var(--gold-1);
    padding: 0 8px;
    font-size: 1.4rem;
}
.callout--info { border-color: rgba(59, 91, 219, 0.5); background: rgba(59, 91, 219, 0.1); }
.callout--info::before { color: var(--primary); content: "ℹ"; }
.callout--warn { border-color: rgba(239, 68, 68, 0.5); background: rgba(239, 68, 68, 0.08); }
.callout--warn::before { color: var(--destructive); content: "⚠"; }

/* Stat highlight */
.stat-highlight {
    text-align: center;
    padding: var(--space-md);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}
.stat-highlight__number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    background: linear-gradient(180deg, var(--gold-3), var(--gold-1) 60%, var(--gold-2));
    -webkit-background-clip: text; background-clip: text; color: transparent;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}
.stat-highlight__label {
    color: var(--muted-foreground);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.stat-highlight__source {
    font-size: 0.72rem;
    color: var(--muted-foreground);
    margin-top: 6px;
    display: block;
    font-style: italic;
}

/* Pull quote */
.pull-quote {
    border-left: 4px solid var(--gold-1);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    background: rgba(17, 22, 52, 0.6);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gold-3);
}
.pull-quote cite {
    display: block;
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--muted-foreground);
    font-style: normal;
    font-family: var(--font-body);
    letter-spacing: 1px;
}

/* Tables */
.table-wrapper { margin: var(--space-md) 0; border-radius: var(--radius-md); border: 1px solid var(--border); }
table { background: var(--card); }
thead { background: linear-gradient(135deg, #1a2150, #0d1230); }
th, td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
th { font-family: var(--font-display); color: var(--gold-1); font-weight: 700; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: rgba(59, 91, 219, 0.08); }
tr.is-recommended { background: rgba(245, 197, 66, 0.08); }
tr.is-recommended td:first-child::before { content: "★ "; color: var(--gold-1); }

/* Lists with magic markers */
.magic-list { list-style: none; padding: 0; }
.magic-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}
.magic-list li::before {
    content: "✦";
    position: absolute;
    left: 0; top: 2px;
    color: var(--gold-1);
    font-size: 1rem;
}

/* SEO text section */
.seo-text {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-2xl) 0;
}
.seo-text h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
.seo-text h3 { color: var(--gold-1); margin-top: var(--space-md); }
.seo-text a {
    color: var(--gold-1);
    text-decoration: underline;
    text-decoration-color: rgba(245, 197, 66, 0.5);
    text-underline-offset: 3px;
}
.seo-text a:hover { color: var(--gold-3); text-decoration-color: var(--gold-3); }

.callout a {
    color: var(--gold-1);
    text-decoration: underline;
    text-decoration-color: rgba(245, 197, 66, 0.5);
    text-underline-offset: 3px;
}
.callout a:hover { color: var(--gold-3); text-decoration-color: var(--gold-3); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--indigo-deep);
    border-top: 1px solid rgba(245, 197, 66, 0.3);
    padding: var(--space-2xl) 0 var(--space-md);
    margin-top: var(--space-2xl);
}
.footer-inner {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-lg);
}
@media (min-width: 768px) { .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: var(--space-xl); padding: 0 var(--space-lg); } }

.footer-col h4 {
    font-family: var(--font-display);
    color: var(--gold-1);
    font-size: 1rem;
    margin-bottom: var(--space-md);
    letter-spacing: 1px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--muted-foreground); font-size: 0.92rem; }
.footer-col a:hover { color: var(--gold-1); }

.footer-tag { color: var(--muted-foreground); font-size: 0.92rem; margin-top: 14px; }

.payment-list { display: flex; flex-wrap: wrap; gap: 8px; }
.payment-list li { margin: 0; }
.pay-chip {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(17, 22, 52, 0.85);
    border: 1px solid rgba(245, 236, 215, 0.2);
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    color: var(--muted-foreground);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-legal {
    margin-top: var(--space-xl);
    padding: var(--space-lg) var(--space-md) 0;
    border-top: 1px solid rgba(245, 197, 66, 0.18);
    max-width: var(--content-max);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.legal-badges {
    display: flex; flex-wrap: wrap; gap: 10px;
    justify-content: center;
    margin-bottom: var(--space-md);
}
.legal-badge {
    padding: 6px 12px;
    border: 1px solid rgba(245, 197, 66, 0.35);
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    color: var(--gold-1);
    background: rgba(245, 197, 66, 0.05);
    font-weight: 600;
    letter-spacing: 0.5px;
}
.legal-badge-warn { border-color: rgba(239, 68, 68, 0.55); color: #fca5a5; background: rgba(239, 68, 68, 0.08); }
.legal-copy { color: var(--muted-foreground); font-size: 0.8rem; max-width: 760px; margin: 0 auto; line-height: 1.6; }

/* ============================================
   HERO PATTERN - used by pages
   ============================================ */
.hero {
    position: relative;
    padding: var(--space-2xl) var(--space-md) var(--space-2xl);
    overflow: hidden;
}
@media (min-width: 1024px) { .hero { padding: var(--space-4xl) var(--space-lg) var(--space-3xl); } }

.hero__inner {
    max-width: var(--content-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-lg);
    align-items: center;
}
@media (min-width: 1024px) {
    .hero__inner { grid-template-columns: 1.1fr 1fr; gap: var(--space-2xl); }
}

.hero__eyebrow { margin-bottom: var(--space-md); }
.hero__headline { margin-bottom: var(--space-md); }
.hero__sub { font-size: 1.1rem; color: var(--foreground); margin-bottom: var(--space-lg); max-width: 540px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.hero__media { position: relative; }
.hero__media img {
    width: 100%;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 30px 60px rgba(59, 91, 219, 0.45));
}

.hero__bg-rune {
    position: absolute;
    pointer-events: none;
    color: rgba(245, 197, 66, 0.08);
    font-size: 14rem;
    font-family: var(--font-display);
    line-height: 1;
}
.hero__bg-rune--top-left { top: 10%; left: -3%; }
.hero__bg-rune--bottom-right { bottom: 6%; right: -4%; }

/* Floating particles backdrop */
@keyframes drift {
    0% { transform: translate(0, 0); opacity: 0.4; }
    50% { opacity: 0.9; }
    100% { transform: translate(20px, -30px); opacity: 0.4; }
}
.hero::before, .hero::after {
    content: "";
    position: absolute;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold-1);
    box-shadow: 0 0 12px var(--gold-1);
    pointer-events: none;
    animation: drift 6s ease-in-out infinite;
}
.hero::before { top: 20%; left: 12%; }
.hero::after { top: 60%; right: 18%; animation-delay: 2s; }

/* ============================================
   ANIMATION UTILITIES
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease, transform 600ms ease;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes mistFadeIn {
    0% { opacity: 0; filter: blur(20px); transform: translateY(40px) scale(0.96); }
    100% { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
}
.mist-reveal { animation: mistFadeIn 1.2s ease-out both; }
.mist-reveal.animate-on-scroll.is-visible { animation: mistFadeIn 1.2s ease-out both; }

@keyframes shimmer {
    0% { background-position: -300px 0; }
    100% { background-position: 300px 0; }
}
.shimmer-text {
    background: linear-gradient(90deg, var(--gold-1) 0%, var(--gold-3) 50%, var(--gold-1) 100%);
    background-size: 600px 100%;
    -webkit-background-clip: text; background-clip: text; color: transparent;
    animation: shimmer 3s linear infinite;
}

/* Scroll-unfurl letter reveal (JS adds .is-visible) */
.scroll-unfurl .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px) rotate(-8deg);
    transition: opacity 400ms ease, transform 400ms ease;
}
.scroll-unfurl.is-visible .letter {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

/* ============================================
   PAGE-SPECIFIC HELPERS
   ============================================ */
.crystal-orb {
    position: relative;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1;
    margin: 0 auto;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.4), transparent 30%),
        radial-gradient(circle at center, rgba(59, 91, 219, 0.65), rgba(10, 14, 36, 0.95) 70%);
    box-shadow:
        0 0 60px rgba(59, 91, 219, 0.6),
        inset 0 0 60px rgba(245, 197, 66, 0.18);
    border: 1px solid rgba(245, 197, 66, 0.4);
}

.tier-ladder { counter-reset: tier; display: flex; flex-direction: column; gap: 8px; }
.tier-row {
    counter-increment: tier;
    display: flex; align-items: center; gap: 12px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
}
.tier-row::before {
    content: counter(tier);
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-3), var(--gold-2));
    color: var(--accent-foreground);
    font-family: var(--font-display);
    font-weight: 900;
    flex-shrink: 0;
}
.tier-row--top { border-color: var(--gold-1); box-shadow: 0 0 20px rgba(245, 197, 66, 0.25); }

/* Reload calendar */
.reload-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
}
@media (min-width: 768px) { .reload-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .reload-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.reload-day {
    padding: var(--space-md);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gold-1);
}
.reload-day__day {
    font-family: var(--font-display);
    color: var(--gold-1);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    margin-bottom: 6px;
}
.reload-day__title { font-weight: 700; margin-bottom: 6px; }
.reload-day__detail { color: var(--muted-foreground); font-size: 0.9rem; margin: 0; }

/* Provider badges */
.provider-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.provider-pill {
    padding: 12px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--foreground);
    font-weight: 700;
    letter-spacing: 1px;
}
.provider-pill:hover { border-color: var(--gold-1); color: var(--gold-1); }

/* Category tabs */
.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: var(--space-lg);
}
.tab {
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--foreground);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 220ms ease;
}
.tab:hover, .tab.is-active {
    background: linear-gradient(135deg, var(--gold-3), var(--gold-2));
    color: var(--accent-foreground);
    border-color: var(--gold-1);
}

/* Breadcrumbs */
.breadcrumbs {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    margin-bottom: var(--space-md);
}
.breadcrumbs a { color: var(--muted-foreground); }
.breadcrumbs a:hover { color: var(--gold-1); }
.breadcrumbs span { color: var(--gold-1); }

/* ============================================
   CLAIM STUB PAGE
   ============================================ */
.claim-stage {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 50% at 50% 30%, rgba(59, 91, 219, 0.35), transparent 70%),
        radial-gradient(ellipse 60% 40% at 50% 80%, rgba(245, 197, 66, 0.18), transparent 70%),
        linear-gradient(180deg, #060919 0%, #0a0e24 50%, #060919 100%);
}

.claim-rune {
    position: absolute;
    font-family: var(--font-display);
    font-size: clamp(4rem, 14vw, 9rem);
    color: rgba(245, 197, 66, 0.08);
    font-weight: 900;
    pointer-events: none;
    line-height: 1;
}
.claim-rune--tl { top: 4%; left: 4%; }
.claim-rune--tr { top: 6%; right: 4%; }
.claim-rune--bl { bottom: 6%; left: 6%; }
.claim-rune--br { bottom: 4%; right: 4%; }

.claim-orb {
    position: absolute;
    top: 50%; left: 50%;
    width: clamp(280px, 60vw, 520px);
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}
.claim-orb__inner {
    position: absolute; inset: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 30%, rgba(255,255,255,0.18), transparent 35%),
        radial-gradient(circle at center, rgba(59, 91, 219, 0.55), rgba(10, 14, 36, 0.0) 70%);
    filter: blur(2px);
    animation: orbPulse 3.6s ease-in-out infinite;
}
.claim-orb__ring {
    position: absolute; inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(245, 197, 66, 0.45);
    box-shadow: 0 0 60px rgba(245, 197, 66, 0.25), inset 0 0 80px rgba(59, 91, 219, 0.35);
    animation: orbRing 6s linear infinite;
}
@keyframes orbPulse {
    0%, 100% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(1.06); opacity: 1; }
}
@keyframes orbRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.claim-brand {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 32px;
    text-decoration: none;
}
.claim-logo {
    width: clamp(72px, 18vw, 110px);
    height: auto;
    filter: drop-shadow(0 0 30px rgba(245, 197, 66, 0.55));
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 197, 66, 0.35), transparent 70%);
    padding: 6px;
}
.claim-brand-name {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-3), var(--gold-1) 50%, var(--gold-2));
    -webkit-background-clip: text; background-clip: text; color: transparent;
    letter-spacing: 1px;
    line-height: 1;
}
.claim-brand-sub {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--muted-foreground);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 4px;
}

.claim-headline {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 5vw, 2.75rem);
    font-weight: 900;
    margin: 0 0 16px;
    max-width: 720px;
    line-height: 1.2;
}

.claim-sub {
    position: relative;
    z-index: 1;
    color: var(--foreground);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 0 32px;
    line-height: 1.6;
}

.claim-loader {
    position: relative;
    z-index: 1;
    width: min(360px, 80vw);
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.claim-loader__bar {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(245, 197, 66, 0.12);
    border: 1px solid rgba(245, 197, 66, 0.3);
    overflow: hidden;
    position: relative;
}
.claim-loader__bar::before {
    content: "";
    position: absolute;
    top: 0; left: -40%;
    height: 100%; width: 40%;
    background: linear-gradient(90deg, transparent, var(--gold-1) 50%, transparent);
    box-shadow: 0 0 14px var(--gold-1);
    animation: claimSlide 1.6s ease-in-out infinite;
}
@keyframes claimSlide {
    0% { left: -40%; }
    100% { left: 100%; }
}
.claim-loader__text {
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-1);
}

.claim-meta {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
    max-width: 640px;
}

.claim-disclaimer {
    position: relative;
    z-index: 1;
    color: var(--muted-foreground);
    font-size: 0.78rem;
    max-width: 580px;
    line-height: 1.55;
    margin: 0;
}
.claim-disclaimer strong { color: var(--gold-3); font-weight: 700; }

@media (min-width: 768px) {
    .claim-stage { padding: 64px 32px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .animate-on-scroll { opacity: 1; transform: none; }
}