/*
 * CSS STYLES
 * Design system foundation for Total Casino
 */

/* ============================================
   OVERFLOW PREVENTION - Safety Net
   Predictable sizing and viewport safety
   ============================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
}

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

[class*="grid"] > *,
[class*="flex"] > *,
.card,
.info-card,
.game-card,
.bonus-card {
    min-width: 0;
}

pre,
code,
.code-block,
[class*="code"] {
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
}

pre code,
.code-block code {
    display: block;
    min-width: 0;
    overflow-x: auto;
    white-space: pre;
}

.table-wrapper,
[class*="table-"] {
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
}

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

a,
code {
    word-break: break-word;
}

a[href^="http"] {
    word-break: break-all;
}

input,
textarea,
select,
button {
    max-width: 100%;
    font: inherit;
}

section,
.hero,
.banner,
.site-footer,
.site-header,
main {
    overflow: clip;
}

/* ============================================
   BASE TYPOGRAPHY AND GLOBAL TOKENS
   Epic fantasy headings + readable body text
   ============================================ */

body {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--foreground);
    background:
        radial-gradient(circle at top right, rgba(59, 108, 245, 0.16), transparent 30%),
        radial-gradient(circle at top left, rgba(212, 160, 23, 0.14), transparent 26%),
        linear-gradient(180deg, #101628 0%, var(--navy-900) 28%, var(--surface-0) 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 1rem;
    font-family: "Cinzel Decorative", serif;
    line-height: 1.2;
    color: var(--foreground);
    letter-spacing: 0.02em;
    text-wrap: balance;
}

h1 {
    font-size: clamp(1.75rem, calc(3vw + 1rem), 3rem);
    line-height: 1.15;
}

h2 {
    font-size: clamp(1.5rem, calc(2vw + 1rem), 2.25rem);
}

h3 {
    font-size: clamp(1.25rem, calc(1vw + 1rem), 1.625rem);
}

h4 {
    font-family: "Outfit", sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
}

p {
    margin: 0 0 1rem;
    max-width: 78ch;
}

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

li + li {
    margin-top: 0.45rem;
}

small,
.text-small {
    font-size: 0.875rem;
    line-height: 1.5;
}

strong {
    color: var(--foreground);
}

a {
    color: var(--gold-300);
    text-decoration: none;
    text-underline-offset: 0.18em;
    transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover,
a:focus-visible {
    color: var(--gold-400);
}

::selection {
    color: var(--secondary-foreground);
    background: rgba(212, 160, 23, 0.85);
}

/* ============================================
   ACCESSIBILITY AND FOCUS
   Keyboard visibility and skip navigation
   ============================================ */

:focus-visible {
    outline: 2px solid var(--gold-400);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: 0.5rem;
    left: 0.5rem;
    z-index: 1200;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: var(--surface-1);
    color: var(--foreground);
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

/* ============================================
   LAYOUT SYSTEM
   Container widths, spacing rhythm, section flow
   ============================================ */

.container {
    width: min(100% - 1.5rem, var(--container));
    margin-inline: auto;
}

.container-narrow {
    width: min(100%, var(--content));
    margin-inline: auto;
}

main {
    display: block;
    padding-top: var(--header-height);
}

section {
    padding-block: 4rem;
}

.section-heading {
    margin-bottom: 1.5rem;
}

.section-heading--centered {
    text-align: center;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: var(--gold-300);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.surface-card {
    background: linear-gradient(180deg, rgba(35, 44, 79, 0.9), rgba(21, 26, 46, 0.95));
    border: 1px solid rgba(240, 201, 90, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

/* ============================================
   HEADER AND NAVIGATION
   Fixed, mobile-first navigation with safe drawer
   ============================================ */

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    border-bottom: 1px solid rgba(240, 201, 90, 0.16);
    background: rgba(21, 26, 46, 0.98);
}

.site-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    gap: 1rem;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    min-width: 0;
    color: var(--foreground);
    flex-shrink: 0;
}

.site-brand:hover,
.site-brand:focus-visible {
    color: var(--foreground);
}

.logo {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    object-fit: cover;
    background:
        radial-gradient(circle at 35% 35%, rgba(240, 201, 90, 0.35), transparent 35%),
        linear-gradient(180deg, rgba(240, 201, 90, 0.18), rgba(59, 108, 245, 0.12));
    border: 1px solid rgba(240, 201, 90, 0.35);
    box-shadow: 0 0 0 1px rgba(240, 201, 90, 0.14), 0 8px 20px rgba(2, 6, 23, 0.3);
}

.site-brand__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.1;
}

.site-brand__text strong {
    font-family: "Cinzel Decorative", serif;
    font-size: 1rem;
    color: var(--gold-300);
}

.site-brand__text small {
    color: var(--muted-foreground);
    font-size: 0.8125rem;
}

.mobile-menu-toggle {
    position: relative;
    z-index: 1001;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
    width: 48px;
    height: 48px;
    padding: 0.75rem;
    border: 1px solid rgba(240, 201, 90, 0.2);
    border-radius: 14px;
    background: var(--surface-1);
    color: var(--foreground);
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--gold-400);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

.site-nav {
    display: none;
}

.site-nav.is-open {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    overflow-y: auto;
    background: var(--background);
}

.site-nav__panel {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.25rem;
    background:
        radial-gradient(circle at top center, rgba(59, 108, 245, 0.16), transparent 35%),
        linear-gradient(180deg, var(--surface-1) 0%, var(--background) 100%);
}

.site-nav__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav__list a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--foreground);
    font-weight: 600;
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible {
    background: rgba(212, 160, 23, 0.12);
    color: var(--gold-400);
}

.site-nav__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.site-nav__mobile-footer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
}

.site-nav__mobile-footer a {
    color: var(--muted-foreground);
}

/* ============================================
   BUTTONS
   Glowing fantasy CTAs and secondary actions
   ============================================ */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.875rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: #1a1a2e;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    border-color: rgba(240, 201, 90, 0.55);
    box-shadow: 0 0 0 1px rgba(240, 201, 90, 0.12), 0 0 22px rgba(212, 160, 23, 0.3);
    animation: magicalPulse 2s ease-in-out infinite;
}

.button-primary:hover,
.button-primary:focus-visible {
    color: #1a1a2e;
    box-shadow: 0 0 0 1px rgba(240, 201, 90, 0.18), 0 0 26px rgba(212, 160, 23, 0.45);
}

.button-secondary {
    background: transparent;
    color: var(--foreground);
    border-color: rgba(240, 201, 90, 0.32);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    color: var(--gold-300);
    border-color: rgba(240, 201, 90, 0.52);
    background: rgba(212, 160, 23, 0.08);
}

.button-small {
    min-height: 44px;
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
}

.button-large {
    min-height: 52px;
    padding-inline: 1.5rem;
    font-size: 1rem;
}

/* ============================================
   HERO AND PAGE BANNERS
   Reusable large scenes for future page builds
   ============================================ */

.hero,
.page-hero,
.hero-simple {
    position: relative;
    padding-block: clamp(5rem, calc(7vw + 3rem), 7.5rem);
    background:
        radial-gradient(circle at 20% 20%, rgba(59, 108, 245, 0.18), transparent 28%),
        radial-gradient(circle at 80% 0%, rgba(212, 160, 23, 0.18), transparent 25%),
        linear-gradient(180deg, rgba(21, 26, 46, 0.92), rgba(21, 26, 46, 0.98));
}

.hero::before,
.page-hero::before,
.hero-simple::before {
    content: "";
    position: absolute;
    inset: auto -10% 0;
    height: 45%;
    background: radial-gradient(circle, rgba(240, 201, 90, 0.08), transparent 58%);
    pointer-events: none;
}

.hero__grid,
.page-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.hero__content,
.page-hero__content {
    position: relative;
    z-index: 1;
}

.hero__content p,
.page-hero__content p {
    color: var(--muted-foreground);
    font-size: 1rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.hero__visual,
.page-hero__visual {
    position: relative;
    min-height: 280px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 30% 30%, rgba(59, 108, 245, 0.32), transparent 22%),
        radial-gradient(circle at 70% 30%, rgba(240, 201, 90, 0.24), transparent 24%),
        linear-gradient(180deg, rgba(35, 44, 79, 0.94), rgba(21, 26, 46, 0.98));
    border: 1px solid rgba(240, 201, 90, 0.15);
    box-shadow: var(--shadow-card);
}

.hero__visual::after,
.page-hero__visual::after {
    content: "";
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(240, 201, 90, 0.14);
    border-radius: calc(var(--radius-lg) - 0.5rem);
}

/* ============================================
   CARDS - Content containers
   Premium surfaces for games, bonuses and info
   ============================================ */

.card-grid,
.bonus-grid,
.game-grid,
.info-grid,
.provider-grid,
.social-proof-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

.game-card,
.bonus-card,
.info-card,
.provider-card,
.social-proof-card {
    min-width: 0;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(28, 35, 64, 0.98), rgba(21, 26, 46, 0.98));
    border: 1px solid rgba(240, 201, 90, 0.18);
    box-shadow: var(--shadow-card);
}

.game-card {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.game-card:hover,
.game-card:focus-within {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(240, 201, 90, 0.45);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.45), 0 0 20px rgba(212, 160, 23, 0.18);
}

.game-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(59, 108, 245, 0.28), rgba(21, 26, 46, 0.98));
}

.game-card__media img,
.game-card__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card__placeholder {
    display: grid;
    place-items: center;
    color: var(--gold-300);
    font-family: "Cinzel Decorative", serif;
    font-size: 2rem;
    background:
        radial-gradient(circle at center, rgba(212, 160, 23, 0.2), transparent 35%),
        linear-gradient(180deg, rgba(59, 108, 245, 0.24), rgba(21, 26, 46, 0.98));
}

.game-card__badge,
.game-card__live {
    position: absolute;
    top: 0.75rem;
    border-radius: 999px;
    padding: 0.35rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.game-card__badge {
    right: 0.75rem;
    color: var(--gold-300);
    background: rgba(10, 15, 35, 0.72);
    border: 1px solid rgba(240, 201, 90, 0.24);
}

.game-card__live {
    left: 0.75rem;
    color: #fff;
    background: rgba(230, 57, 70, 0.92);
    box-shadow: 0 0 18px rgba(230, 57, 70, 0.3);
}

.game-card__body {
    display: grid;
    gap: 0.7rem;
    padding: 1rem;
}

.game-card__title {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: var(--foreground);
}

.game-card__provider {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

.game-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.game-card__meta span {
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted-foreground);
    font-size: 0.8rem;
}

.bonus-card {
    position: relative;
    display: grid;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 3px solid var(--gold-500);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-card:hover,
.bonus-card:focus-within {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.bonus-card__icon {
    display: inline-grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    font-size: 1.5rem;
    color: var(--gold-300);
    background: rgba(212, 160, 23, 0.12);
    border: 1px solid rgba(240, 201, 90, 0.22);
}

.bonus-card__title {
    margin-bottom: 0;
    color: var(--foreground);
}

.bonus-card__value {
    margin: 0;
    font-family: "Cinzel Decorative", serif;
    font-size: clamp(2rem, calc(4vw + 1rem), 2.75rem);
    line-height: 1.1;
    color: transparent;
    background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
    background-clip: text;
    -webkit-background-clip: text;
}

.bonus-card__description {
    margin: 0;
    color: var(--muted-foreground);
}

.bonus-card__terms {
    display: grid;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bonus-card__terms li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--muted-foreground);
}

.bonus-card__terms li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold-400);
    font-weight: 800;
}

/* ============================================
   CTA BANNERS AND CONVERSION BANDS
   High-contrast CRO sections
   ============================================ */

.cta-banner,
.cta-section {
    position: relative;
    padding-block: 3rem;
    background:
        radial-gradient(circle at top center, rgba(59, 108, 245, 0.22), transparent 30%),
        linear-gradient(135deg, rgba(21, 26, 46, 0.98), rgba(35, 44, 79, 0.98));
}

.cta-banner::before,
.cta-section::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(240, 201, 90, 0.14);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.cta-banner__inner,
.cta-section__inner {
    position: relative;
    z-index: 1;
    max-width: var(--content);
    margin-inline: auto;
    text-align: center;
}

.cta-banner h2,
.cta-section h2 {
    color: transparent;
    background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
    background-clip: text;
    -webkit-background-clip: text;
}

.cta-banner p,
.cta-section p,
.cta-banner small,
.cta-section small {
    margin-inline: auto;
    color: var(--muted-foreground);
}

/* ============================================
   TRUST BADGES AND LOGO STRIPS
   Static authority signals with muted styling
   ============================================ */

.trust-badges-row {
    padding-block: 2.5rem;
    background: rgba(15, 23, 42, 0.35);
    border-top: 1px solid rgba(240, 201, 90, 0.08);
    border-bottom: 1px solid rgba(240, 201, 90, 0.08);
}

.trust-badges-row__label {
    margin-bottom: 1rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
}

.trust-badges-row__items,
.payment-badges,
.compliance-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.trust-badge,
.payment-badges span,
.compliance-badges span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.65rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--muted-foreground);
    font-size: 0.9rem;
    font-weight: 700;
}

.trust-badge:hover,
.payment-badges span:hover,
.compliance-badges span:hover {
    color: var(--foreground);
    border-color: rgba(240, 201, 90, 0.18);
}

/* ============================================
   FAQ AND EXPANDABLE CONTENT
   Details/summary accordions with fantasy cues
   ============================================ */

.faq-accordion,
.details-stack {
    display: grid;
    gap: 0.85rem;
}

.faq-item,
details.styled-details {
    border: 1px solid rgba(240, 201, 90, 0.16);
    border-radius: var(--radius-md);
    background: rgba(28, 35, 64, 0.82);
    overflow: hidden;
}

.faq-item summary,
details.styled-details > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 56px;
    padding: 1rem 1rem 1rem 1.2rem;
    border-left: 3px solid var(--gold-500);
    color: var(--foreground);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker,
details.styled-details > summary::-webkit-details-marker {
    display: none;
}

.faq-item__icon,
details.styled-details > summary::after {
    position: relative;
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    border-right: 2px solid var(--gold-400);
    border-bottom: 2px solid var(--gold-400);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-item__icon,
details.styled-details[open] > summary::after {
    transform: rotate(225deg);
}

.faq-item__content,
details.styled-details > *:not(summary) {
    padding: 0 1rem 1rem 1.2rem;
    color: var(--muted-foreground);
}

/* ============================================
   TABLES
   Comparison tables built for SEO and GEO
   ============================================ */

.table-wrapper {
    border-radius: var(--radius-md);
    border: 1px solid rgba(240, 201, 90, 0.14);
    background: rgba(28, 35, 64, 0.72);
    box-shadow: var(--shadow-card);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

thead th {
    background: linear-gradient(180deg, rgba(212, 160, 23, 0.24), rgba(212, 160, 23, 0.1));
    color: var(--foreground);
    font-weight: 800;
}

th,
td {
    padding: 0.95rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--foreground);
}

tbody tr:last-child td {
    border-bottom: 0;
}

.table-recommended,
td.is-recommended,
th.is-recommended {
    background: rgba(212, 160, 23, 0.12);
    box-shadow: inset 0 0 0 1px rgba(240, 201, 90, 0.18);
}

/* ============================================
   CONTENT ENHANCEMENT PATTERNS
   TL;DR, callouts, stats, quotes and proof
   ============================================ */

.summary-box,
.tldr-box {
    padding: 1.25rem;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(59, 108, 245, 0.16), rgba(28, 35, 64, 0.9));
    border: 1px solid rgba(59, 108, 245, 0.28);
    box-shadow: var(--shadow-soft);
}

.summary-box h2,
.summary-box h3,
.tldr-box h2,
.tldr-box h3 {
    margin-bottom: 0.75rem;
}

.callout-box,
.highlight-box,
.note-box {
    padding: 1rem 1rem 1rem 1.25rem;
    border-left: 4px solid var(--gold-500);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    background: rgba(212, 160, 23, 0.08);
    color: var(--foreground);
}

.callout-box--warning {
    border-left-color: var(--accent);
    background: rgba(230, 57, 70, 0.08);
}

.stat-highlight,
.stat-block {
    display: grid;
    gap: 0.4rem;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    background: rgba(28, 35, 64, 0.92);
    border: 1px solid rgba(240, 201, 90, 0.16);
}

.stat-highlight__number,
.stat-block .number {
    font-family: "Cinzel Decorative", serif;
    font-size: clamp(2rem, calc(5vw + 1rem), 3rem);
    line-height: 1;
    color: transparent;
    background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
    background-clip: text;
    -webkit-background-clip: text;
}

.stat-highlight__label,
.stat-block .label,
.stat-highlight__source {
    color: var(--muted-foreground);
}

.pull-quote,
blockquote {
    margin: 1.5rem 0;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--gold-500);
    color: var(--foreground);
}

.pull-quote p,
blockquote p {
    font-size: clamp(1.1rem, calc(1vw + 1rem), 1.5rem);
    line-height: 1.45;
}

.pull-quote cite,
blockquote cite {
    display: block;
    margin-top: 0.75rem;
    color: var(--muted-foreground);
    font-style: normal;
    font-size: 0.95rem;
}

.social-proof-card {
    padding: 1.25rem;
}

.social-proof-card__stars {
    color: var(--gold-400);
    letter-spacing: 0.14em;
}

.social-proof-card__meta {
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

/* ============================================
   FILTERS, PILLS AND NAV CHIPS
   Horizontal controls for game/category navigation
   ============================================ */

.pill-row,
.filter-pills,
.provider-pills {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: thin;
}

.pill-row > *,
.filter-pills > *,
.provider-pills > * {
    flex-shrink: 0;
}

.pill,
.filter-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(240, 201, 90, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--foreground);
    font-weight: 700;
}

/* ============================================
   HOMEPAGE - HERO
   Epic fantasy hero with coin rain and knight
   ============================================ */

.hero--home {
    padding-block: clamp(5rem, calc(8vw + 3rem), 8rem);
    background:
        radial-gradient(circle at 20% 20%, rgba(59, 108, 245, 0.22), transparent 28%),
        radial-gradient(circle at 80% 10%, rgba(212, 160, 23, 0.22), transparent 25%),
        linear-gradient(180deg, rgba(16, 22, 40, 0.97), rgba(21, 26, 46, 0.99));
}

.hero--home .hero__title--golden {
    color: transparent;
    background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
    background-clip: text;
    -webkit-background-clip: text;
}

.hero--home .hero__visual--knight {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 320px;
    background: none;
    border: none;
    box-shadow: none;
}

.hero--home .hero__visual--knight::after {
    display: none;
}

.hero__knight-img {
    max-height: 420px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(212, 160, 23, 0.25));
}

.coin-rain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.coin-particle {
    position: absolute;
    font-size: 1.5rem;
    pointer-events: none;
    z-index: 2;
}

@media (min-width: 768px) {
    .hero__knight-img {
        max-height: 560px;
    }
}

@media (min-width: 1024px) {
    .hero__knight-img {
        max-height: 650px;
    }
}

/* ============================================
   HOMEPAGE - BONUS SHOWCASE
   Princess mascot and bonus cards section
   ============================================ */

.section-bonus-showcase {
    position: relative;
    padding-block: 4rem;
}

.bonus-showcase__princess {
    display: none;
}

@media (min-width: 1024px) {
    .section-bonus-showcase {
        padding-block: 5rem;
    }

    .bonus-showcase__princess {
        display: block;
        position: absolute;
        left: -2rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
        pointer-events: none;
        opacity: 0.3;
    }

    .bonus-showcase__princess-img {
        max-height: 400px;
        width: auto;
    }
}

/* ============================================
   HOMEPAGE - GAMES SECTION
   Carousel-style game grid with wizard mascot
   ============================================ */

.section-games {
    position: relative;
    padding-block: 4rem;
}

.section-games__wizard {
    display: none;
}

@media (min-width: 1024px) {
    .section-games__wizard {
        display: block;
        position: absolute;
        right: -1rem;
        top: 3rem;
        z-index: 1;
        pointer-events: none;
        opacity: 0.22;
    }

    .section-games__wizard-img {
        max-height: 350px;
        width: auto;
    }
}

.game-grid--carousel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .game-grid--carousel {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }
}

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

.pill.is-active {
    background: rgba(212, 160, 23, 0.18);
    border-color: var(--gold-400);
    color: var(--gold-300);
}

/* ============================================
   HOMEPAGE - JACKPOT TICKER
   Dark section with animated counters
   ============================================ */

.section-jackpot {
    position: relative;
    padding-block: 4rem;
    background:
        radial-gradient(circle at center, rgba(59, 108, 245, 0.14), transparent 40%),
        linear-gradient(180deg, rgba(15, 20, 38, 0.98), rgba(21, 26, 46, 0.98));
}

.jackpot-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(2px 2px at 10% 20%, rgba(240, 201, 90, 0.3), transparent),
        radial-gradient(2px 2px at 30% 60%, rgba(59, 108, 245, 0.25), transparent),
        radial-gradient(2px 2px at 70% 30%, rgba(240, 201, 90, 0.2), transparent),
        radial-gradient(2px 2px at 90% 80%, rgba(59, 108, 245, 0.2), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(240, 201, 90, 0.15), transparent);
}

.jackpot-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin-inline: auto;
}

.jackpot-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(28, 35, 64, 0.85);
    border: 1px solid rgba(240, 201, 90, 0.2);
    text-align: center;
}

.jackpot-card__icon {
    width: 80px;
    height: 80px;
}

.jackpot-card__label {
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-foreground);
}

.jackpot-card__amount {
    margin: 0;
    font-family: "Cinzel Decorative", serif;
    font-size: clamp(2rem, calc(4vw + 1rem), 2.75rem);
    line-height: 1.1;
    color: transparent;
    background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
    background-clip: text;
    -webkit-background-clip: text;
}

.jackpot-card__game {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

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

/* ============================================
   HOMEPAGE - PROVIDER LOGOS
   Muted logo grid with hover effect
   ============================================ */

.section-providers {
    padding-block: 4rem;
    background: rgba(15, 23, 42, 0.25);
}

.provider-grid--logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin-inline: auto;
}

.provider-card--logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    background: rgba(28, 35, 64, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.provider-card--logo:hover {
    border-color: rgba(240, 201, 90, 0.25);
    background: rgba(28, 35, 64, 0.85);
}

.provider-card--logo img {
    height: 48px;
    width: auto;
    max-width: 100%;
    opacity: 0.55;
    filter: grayscale(1);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.provider-card--logo:hover img {
    opacity: 1;
    filter: grayscale(0);
}

.provider-card--logo span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--muted-foreground);
}

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

/* ============================================
   HOMEPAGE - RECENT WINNERS TICKER
   Auto-scrolling social proof strip
   ============================================ */

.section-winners {
    padding-block: 3rem;
    border-top: 1px solid rgba(240, 201, 90, 0.1);
    border-bottom: 1px solid rgba(240, 201, 90, 0.1);
    background: rgba(15, 20, 38, 0.5);
}

.winners-ticker {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.winners-ticker__track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: tickerScroll 35s linear infinite;
}

.winners-ticker__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-size: 0.95rem;
    color: var(--foreground);
}

.winners-ticker__coin {
    font-size: 1.1rem;
}

.winners-ticker__amount {
    color: var(--gold-400);
    font-weight: 800;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   HOMEPAGE - LIVE CASINO TEASER
   Split layout with wizard mascot
   ============================================ */

.section-live-casino {
    padding-block: 4rem;
}

.live-casino-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.live-casino-visual {
    display: flex;
    justify-content: center;
}

.live-casino-visual__img {
    max-height: 380px;
    width: auto;
    filter: drop-shadow(0 0 40px rgba(59, 108, 245, 0.2));
}

.live-casino-cards {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .live-casino-grid {
        grid-template-columns: 0.45fr 0.55fr;
        gap: 3rem;
    }

    .live-casino-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .live-casino-visual__img {
        max-height: 440px;
    }
}

/* ============================================
   HOMEPAGE - SEO CONTENT
   Long-form article styling
   ============================================ */

.section-seo-content {
    padding-block: 4rem;
}

.seo-article h2 {
    margin-top: 2.5rem;
}

.seo-article h2:first-child {
    margin-top: 0;
}

.seo-article h3 {
    margin-top: 2rem;
}

.seo-article ul,
.seo-article ol {
    margin-bottom: 1.5rem;
}

.seo-article .table-wrapper {
    margin-block: 1.5rem;
}

.seo-article .callout-box {
    margin-block: 1.5rem;
}

.seo-article blockquote {
    margin-block: 1.5rem;
}

/* ============================================
   CASINO SPIELE PAGE - HERO
   Wizard mascot hero with floating slot machines
   ============================================ */

.page-hero--games {
    padding-block: clamp(5rem, calc(8vw + 3rem), 8rem);
    background:
        radial-gradient(circle at 25% 15%, rgba(59, 108, 245, 0.22), transparent 28%),
        radial-gradient(circle at 75% 10%, rgba(212, 160, 23, 0.18), transparent 25%),
        linear-gradient(180deg, rgba(16, 22, 40, 0.97), rgba(21, 26, 46, 0.99));
}

.page-hero--games .hero__title--golden {
    color: transparent;
    background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
    background-clip: text;
    -webkit-background-clip: text;
}

.page-hero--games .hero__visual--wizard {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 320px;
    background: none;
    border: none;
    box-shadow: none;
}

.page-hero--games .hero__visual--wizard::after {
    display: none;
}

.hero__wizard-img {
    max-height: 420px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(59, 108, 245, 0.25));
}

@media (min-width: 768px) {
    .hero__wizard-img {
        max-height: 560px;
    }
}

@media (min-width: 1024px) {
    .hero__wizard-img {
        max-height: 650px;
    }
}

/* ============================================
   CASINO SPIELE PAGE - FILTER BAR
   Category pills and provider dropdown
   ============================================ */

.games-filter-bar {
    margin-bottom: 1rem;
}

.provider-filter-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.provider-filter-label {
    color: var(--muted-foreground);
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}

.provider-filter-select {
    min-height: 44px;
    padding: 0.65rem 1rem;
    border: 1px solid rgba(240, 201, 90, 0.22);
    border-radius: 999px;
    background: rgba(28, 35, 64, 0.8);
    color: var(--foreground);
    font-family: "Outfit", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    appearance: auto;
}

.provider-filter-select:focus-visible {
    outline: 2px solid var(--gold-400);
    outline-offset: 2px;
}

.games-count {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.game-grid--full {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .game-grid--full {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }
}

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

/* ============================================
   CASINO SPIELE PAGE - PROVIDER SPOTLIGHT
   Feature cards for top providers
   ============================================ */

.section-provider-spotlight {
    padding-block: 4rem;
    background: rgba(15, 23, 42, 0.25);
}

.provider-spotlight-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

.provider-spotlight-card {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(28, 35, 64, 0.95), rgba(21, 26, 46, 0.98));
    border: 1px solid rgba(240, 201, 90, 0.15);
    border-left: 4px solid var(--gold-500);
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.provider-spotlight-card:hover {
    transform: translateY(-4px);
    border-color: rgba(240, 201, 90, 0.35);
}

.provider-spotlight-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.provider-spotlight-card__header img {
    height: 40px;
    width: auto;
    max-width: 120px;
    opacity: 0.75;
    filter: grayscale(0.3);
}

.provider-spotlight-card__count {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--gold-400);
    white-space: nowrap;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background: rgba(212, 160, 23, 0.12);
    border: 1px solid rgba(240, 201, 90, 0.18);
}

.provider-spotlight-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.provider-spotlight-card p {
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

.provider-spotlight-card__titles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.provider-spotlight-card__titles span {
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted-foreground);
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 768px) {
    .provider-spotlight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .section-provider-spotlight {
        padding-block: 5rem;
    }
}

/* ============================================
   CASINO SPIELE PAGE - NOVOLINE CLASSICS
   Egyptian-themed section with wizard mascot
   ============================================ */

.section-novoline {
    position: relative;
    padding-block: 4rem;
    background:
        radial-gradient(circle at 30% 50%, rgba(212, 160, 23, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(15, 20, 38, 0.98), rgba(21, 26, 46, 0.98));
}

.novoline-runes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(2px 2px at 15% 25%, rgba(240, 201, 90, 0.2), transparent),
        radial-gradient(2px 2px at 45% 75%, rgba(240, 201, 90, 0.15), transparent),
        radial-gradient(2px 2px at 85% 35%, rgba(240, 201, 90, 0.18), transparent),
        radial-gradient(1px 1px at 65% 55%, rgba(240, 201, 90, 0.12), transparent);
}

.novoline-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.novoline-content {
    position: relative;
    z-index: 1;
}

.novoline-content ul {
    margin-bottom: 1.5rem;
}

.novoline-visual {
    display: flex;
    justify-content: center;
}

.novoline-visual__img {
    max-height: 380px;
    width: auto;
    filter: drop-shadow(0 0 40px rgba(212, 160, 23, 0.2));
}

@media (min-width: 768px) {
    .novoline-grid {
        grid-template-columns: 0.55fr 0.45fr;
        gap: 3rem;
    }

    .novoline-visual__img {
        max-height: 480px;
    }
}

/* ============================================
   CASINO SPIELE PAGE - WAZDAN FEATURE
   Volatility level explainer cards
   ============================================ */

.section-wazdan {
    padding-block: 4rem;
}

.wazdan-levels-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin-inline: auto;
}

.wazdan-level-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(28, 35, 64, 0.85);
    border: 1px solid rgba(240, 201, 90, 0.15);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.wazdan-level-card:hover {
    transform: translateY(-4px);
    border-color: rgba(240, 201, 90, 0.35);
}

.wazdan-level-card--featured {
    border-color: rgba(240, 201, 90, 0.35);
    background: rgba(28, 35, 64, 0.95);
    box-shadow: 0 0 20px rgba(212, 160, 23, 0.12);
}

.wazdan-level-card__icon {
    font-size: 2rem;
}

.wazdan-level-card__pepper {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
}

.wazdan-level-card h3 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.wazdan-level-card p {
    color: var(--muted-foreground);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.wazdan-games-row {
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .wazdan-levels-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* ============================================
   CASINO SPIELE PAGE - DEMO MODE TEASER
   Split layout with phone visual
   ============================================ */

.section-demo {
    padding-block: 4rem;
}

.demo-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.demo-content ul {
    margin-bottom: 1.5rem;
}

.demo-visual {
    display: flex;
    justify-content: center;
}

.demo-visual__img {
    max-height: 380px;
    width: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-gold);
}

@media (min-width: 768px) {
    .demo-grid {
        grid-template-columns: 0.55fr 0.45fr;
        gap: 3rem;
    }

    .demo-visual__img {
        max-height: 420px;
    }
}

/* ============================================
   CASINO SPIELE PAGE - GAMES GRID SECTION
   Full filterable grid section
   ============================================ */

.section-games-grid {
    padding-block: 4rem;
}

/* ============================================
   BONUS PAGE - HERO
   Princess mascot with treasure chest scene
   ============================================ */

.page-hero--bonus {
    padding-block: clamp(5rem, calc(8vw + 3rem), 8rem);
    background:
        radial-gradient(circle at 25% 15%, rgba(212, 160, 23, 0.22), transparent 28%),
        radial-gradient(circle at 75% 10%, rgba(59, 108, 245, 0.18), transparent 25%),
        linear-gradient(180deg, rgba(16, 22, 40, 0.97), rgba(21, 26, 46, 0.99));
}

.page-hero--bonus .hero__title--golden {
    color: transparent;
    background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
    background-clip: text;
    -webkit-background-clip: text;
}

.page-hero--bonus .hero__visual--princess {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 320px;
    background: none;
    border: none;
    box-shadow: none;
}

.page-hero--bonus .hero__visual--princess::after {
    display: none;
}

.hero__princess-img {
    max-height: 420px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(212, 160, 23, 0.25));
}

@media (min-width: 768px) {
    .hero__princess-img {
        max-height: 560px;
    }
}

@media (min-width: 1024px) {
    .hero__princess-img {
        max-height: 650px;
    }
}

/* ============================================
   BONUS PAGE - NO DEPOSIT HIGHLIGHT
   Featured large bonus card with visual
   ============================================ */

.section-no-deposit {
    padding-block: 4rem;
}

.no-deposit-featured {
    max-width: 900px;
    margin-inline: auto;
}

.no-deposit-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    overflow: hidden;
}

.no-deposit-card__visual {
    position: relative;
    overflow: hidden;
}

.no-deposit-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px;
}

.no-deposit-card__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
}

.no-deposit-card__value {
    margin: 0;
    font-family: "Cinzel Decorative", serif;
    font-size: clamp(2.5rem, calc(5vw + 1rem), 3.5rem);
    line-height: 1.1;
    color: transparent;
    background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
    background-clip: text;
    -webkit-background-clip: text;
}

.no-deposit-card__desc {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 1rem;
}

@media (min-width: 768px) {
    .no-deposit-card {
        grid-template-columns: 0.45fr 0.55fr;
    }

    .no-deposit-card__visual img {
        min-height: 100%;
    }

    .no-deposit-card__content {
        padding: 2rem;
    }
}

/* ============================================
   BONUS PAGE - DEPOSIT BREAKDOWN
   Bonus tiers section with table
   ============================================ */

.section-deposit-bonus {
    padding-block: 4rem;
    background: rgba(15, 23, 42, 0.25);
}

@media (min-width: 1024px) {
    .section-deposit-bonus {
        padding-block: 5rem;
    }
}

/* ============================================
   BONUS PAGE - PROMO CODE GUIDE
   Step-by-step visual flow
   ============================================ */

.section-promo-guide {
    position: relative;
    padding-block: 4rem;
    background:
        radial-gradient(circle at 50% 50%, rgba(59, 108, 245, 0.1), transparent 40%),
        linear-gradient(180deg, rgba(15, 20, 38, 0.98), rgba(21, 26, 46, 0.98));
}

.promo-steps {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin-inline: auto;
}

.promo-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(28, 35, 64, 0.85);
    border: 1px solid rgba(240, 201, 90, 0.15);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.promo-step:hover {
    transform: translateY(-4px);
    border-color: rgba(240, 201, 90, 0.35);
}

.promo-step__number {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-family: "Cinzel Decorative", serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    box-shadow: 0 0 16px rgba(212, 160, 23, 0.3);
}

.promo-step__visual {
    display: flex;
    justify-content: center;
}

.promo-step__visual img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.promo-step h3 {
    margin-bottom: 0.25rem;
    font-size: 1.15rem;
}

.promo-step p {
    color: var(--muted-foreground);
    margin-bottom: 0;
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .promo-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }
}

/* ============================================
   BONUS PAGE - ONGOING PROMOTIONS
   Grid of ongoing promo cards
   ============================================ */

.section-ongoing-promos {
    padding-block: 4rem;
}

.bonus-grid--ongoing {
    grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 768px) {
    .bonus-grid--ongoing {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .section-ongoing-promos {
        padding-block: 5rem;
    }
}

/* ============================================
   BONUS PAGE - TERMS TRANSPARENCY
   Clean table section
   ============================================ */

.section-bonus-terms {
    padding-block: 4rem;
    background: rgba(15, 23, 42, 0.25);
}

.section-bonus-terms .table-wrapper table {
    min-width: 700px;
}

/* ============================================
   LIVE CASINO PAGE - HERO
   Armored heroes at live dealer tables
   ============================================ */

.page-hero--live {
    padding-block: clamp(5rem, calc(8vw + 3rem), 8rem);
    background:
        radial-gradient(circle at 20% 20%, rgba(59, 108, 245, 0.22), transparent 28%),
        radial-gradient(circle at 80% 10%, rgba(212, 160, 23, 0.18), transparent 25%),
        linear-gradient(180deg, rgba(16, 22, 40, 0.97), rgba(21, 26, 46, 0.99));
}

.page-hero--live .hero__title--golden {
    color: transparent;
    background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
    background-clip: text;
    -webkit-background-clip: text;
}

.page-hero--live .hero__visual--live-heroes {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 320px;
    background: none;
    border: none;
    box-shadow: none;
}

.page-hero--live .hero__visual--live-heroes::after {
    display: none;
}

.hero__live-heroes-img {
    max-height: 420px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(59, 108, 245, 0.2)) drop-shadow(0 0 20px rgba(212, 160, 23, 0.15));
}

@media (min-width: 768px) {
    .hero__live-heroes-img {
        max-height: 560px;
    }
}

@media (min-width: 1024px) {
    .hero__live-heroes-img {
        max-height: 650px;
    }
}

/* ============================================
   LIVE CASINO PAGE - GAME SHOWCASE
   Grid of live game cards
   ============================================ */

.section-live-showcase {
    padding-block: 4rem;
}

.game-grid--live-showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .game-grid--live-showcase {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .section-live-showcase {
        padding-block: 5rem;
    }
}

/* ============================================
   LIVE CASINO PAGE - PLAYTECH TECH
   Split layout with studio image
   ============================================ */

.section-playtech-tech {
    padding-block: 4rem;
    background: rgba(15, 23, 42, 0.25);
}

.playtech-tech-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.playtech-tech-visual {
    display: flex;
    justify-content: center;
}

.playtech-tech-visual__img {
    max-height: 380px;
    width: auto;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(240, 201, 90, 0.15);
    box-shadow: var(--shadow-card);
}

.playtech-tech-content ul {
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .playtech-tech-grid {
        grid-template-columns: 0.48fr 0.52fr;
        gap: 3rem;
    }

    .playtech-tech-visual__img {
        max-height: 420px;
    }
}

@media (min-width: 1024px) {
    .section-playtech-tech {
        padding-block: 5rem;
    }
}

/* ============================================
   LIVE CASINO PAGE - STAKES TABLE
   Clean bordered data table
   ============================================ */

.section-stakes-table {
    padding-block: 4rem;
}

.section-stakes-table .table-wrapper table {
    min-width: 700px;
}

@media (min-width: 1024px) {
    .section-stakes-table {
        padding-block: 5rem;
    }
}

/* ============================================
   LIVE CASINO PAGE - FEATURED GAMES
   Two large feature cards side by side
   ============================================ */

.section-featured-live {
    position: relative;
    padding-block: 4rem;
    background:
        radial-gradient(circle at 30% 50%, rgba(59, 108, 245, 0.12), transparent 30%),
        radial-gradient(circle at 70% 30%, rgba(212, 160, 23, 0.1), transparent 25%),
        linear-gradient(180deg, rgba(15, 20, 38, 0.98), rgba(21, 26, 46, 0.98));
}

.featured-live-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(2px 2px at 10% 30%, rgba(240, 201, 90, 0.2), transparent),
        radial-gradient(2px 2px at 50% 70%, rgba(59, 108, 245, 0.18), transparent),
        radial-gradient(2px 2px at 85% 20%, rgba(240, 201, 90, 0.15), transparent),
        radial-gradient(1px 1px at 70% 55%, rgba(59, 108, 245, 0.12), transparent);
}

.featured-live-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.featured-live-card {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-live-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.featured-live-card__media {
    position: relative;
    overflow: hidden;
}

.featured-live-card__media img {
    width: 100%;
    height: auto;
    aspect-ratio: 580 / 380;
    object-fit: cover;
}

.featured-live-card__body {
    display: grid;
    gap: 0.75rem;
    padding: 1.5rem;
}

.featured-live-card__body h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
}

.featured-live-card__body p {
    color: var(--muted-foreground);
}

.featured-live-card__body .bonus-card__terms {
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .featured-live-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .section-featured-live {
        padding-block: 5rem;
    }
}

/* ============================================
   LIVE CASINO PAGE - MOBILE LIVE EXPERIENCE
   Split layout with phone mockup
   ============================================ */

.section-mobile-live {
    padding-block: 4rem;
}

.mobile-live-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.mobile-live-content ul {
    margin-bottom: 1.5rem;
}

.mobile-live-visual {
    display: flex;
    justify-content: center;
}

.mobile-live-visual__img {
    max-height: 400px;
    width: auto;
    filter: drop-shadow(0 0 40px rgba(212, 160, 23, 0.2));
}

@media (min-width: 768px) {
    .mobile-live-grid {
        grid-template-columns: 0.55fr 0.45fr;
        gap: 3rem;
    }

    .mobile-live-visual__img {
        max-height: 500px;
    }
}

@media (min-width: 1024px) {
    .section-mobile-live {
        padding-block: 5rem;
    }
}

/* ============================================
   LIVE CASINO PAGE - BONUS SPOTLIGHT
   Knight mascot with bonus cards
   ============================================ */

.section-live-bonus {
    padding-block: 4rem;
    background: rgba(15, 23, 42, 0.25);
}

.live-bonus-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.live-bonus-visual {
    display: flex;
    justify-content: center;
}

.live-bonus-visual__img {
    max-height: 380px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(212, 160, 23, 0.2));
}

.live-bonus-cards {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .live-bonus-grid {
        grid-template-columns: 0.4fr 0.6fr;
        gap: 3rem;
    }

    .live-bonus-visual__img {
        max-height: 440px;
    }
}

@media (min-width: 1024px) {
    .section-live-bonus {
        padding-block: 5rem;
    }
}

/* ============================================
   ABOUT PAGE - HERO
   Compact hero with castle illustration
   ============================================ */

.about-hero {
    padding-block: clamp(5rem, calc(7vw + 3rem), 7rem);
    background:
        radial-gradient(circle at 30% 20%, rgba(212, 160, 23, 0.14), transparent 28%),
        radial-gradient(circle at 70% 10%, rgba(59, 108, 245, 0.16), transparent 25%),
        linear-gradient(180deg, rgba(16, 22, 40, 0.97), rgba(21, 26, 46, 0.99));
}

.about-hero__inner {
    max-width: var(--content);
    margin-inline: auto;
    text-align: center;
    margin-bottom: 2rem;
}

.about-hero__title {
    font-size: clamp(1.5rem, calc(2.5vw + 1rem), 2.25rem);
    color: transparent;
    background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
    background-clip: text;
    -webkit-background-clip: text;
}

.about-hero__desc {
    color: var(--muted-foreground);
    font-size: 1rem;
    max-width: 640px;
    margin-inline: auto;
}

.about-hero__visual {
    display: flex;
    justify-content: center;
}

.about-hero__castle-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(240, 201, 90, 0.12);
    box-shadow: var(--shadow-card);
}

/* ============================================
   ABOUT PAGE - BRAND STORY
   Centered text section
   ============================================ */

.section-about-story {
    padding-block: 4rem;
}

.section-about-story h2 {
    margin-top: 0;
}

/* ============================================
   ABOUT PAGE - TECHNOLOGY PARTNERSHIP
   Split layout with visual
   ============================================ */

.section-about-tech {
    padding-block: 4rem;
    background: rgba(15, 23, 42, 0.25);
}

.about-tech-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.about-tech-content ul {
    margin-bottom: 1.5rem;
}

.about-tech-visual {
    display: flex;
    justify-content: center;
}

.about-tech-visual__img {
    max-height: 340px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(212, 160, 23, 0.2));
}

@media (min-width: 768px) {
    .about-tech-grid {
        grid-template-columns: 0.58fr 0.42fr;
        gap: 3rem;
    }

    .about-tech-visual__img {
        max-height: 400px;
    }
}

/* ============================================
   ABOUT PAGE - AWARDS & MILESTONES
   Horizontal milestone cards
   ============================================ */

.section-about-awards {
    padding-block: 4rem;
}

.awards-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

.award-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(28, 35, 64, 0.95), rgba(21, 26, 46, 0.98));
    border: 1px solid rgba(240, 201, 90, 0.18);
    border-top: 3px solid var(--gold-500);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.award-card:hover {
    transform: translateY(-4px);
    border-color: rgba(240, 201, 90, 0.35);
}

.award-card__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-card__icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.award-card h3 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.award-card p {
    color: var(--muted-foreground);
    margin-bottom: 0;
    font-size: 0.95rem;
}

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

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

/* ============================================
   ABOUT PAGE - PROVIDER OVERVIEW
   Badge grid for all 15 studios
   ============================================ */

.section-about-providers {
    padding-block: 4rem;
    background: rgba(15, 23, 42, 0.25);
}

.about-provider-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 900px;
    margin-inline: auto;
}

.about-provider-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    background: rgba(28, 35, 64, 0.8);
    border: 1px solid rgba(240, 201, 90, 0.18);
    color: var(--muted-foreground);
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.about-provider-badge:hover {
    color: var(--gold-300);
    border-color: rgba(240, 201, 90, 0.4);
    background: rgba(212, 160, 23, 0.1);
}

/* ============================================
   ABOUT PAGE - RESPONSIBLE POSITIONING
   Trust badges section
   ============================================ */

.section-about-responsible {
    padding-block: 4rem;
}

.about-responsible-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-block: 1.25rem;
}

.about-responsible-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: rgba(212, 160, 23, 0.08);
    border: 1px solid rgba(240, 201, 90, 0.22);
    color: var(--gold-300);
    font-weight: 700;
    font-size: 0.875rem;
}

/* ============================================
   RESPONSIBLE GAMBLING PAGE
   Muted silver/slate palette, trustworthy tone
   ============================================ */

.hero-simple--responsible {
    padding-block: clamp(5rem, calc(7vw + 3rem), 7rem);
    background:
        radial-gradient(circle at 30% 20%, rgba(59, 108, 245, 0.14), transparent 28%),
        radial-gradient(circle at 70% 10%, rgba(140, 160, 200, 0.1), transparent 25%),
        linear-gradient(180deg, rgba(16, 22, 40, 0.97), rgba(21, 26, 46, 0.99));
}

.responsible-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.responsible-hero__title {
    font-size: clamp(1.5rem, calc(2.5vw + 1rem), 2.25rem);
    line-height: 1.15;
    color: var(--foreground);
}

.responsible-hero__content p {
    color: var(--muted-foreground);
    font-size: 1rem;
}

.responsible-hero__visual {
    display: flex;
    justify-content: center;
}

.responsible-hero__img {
    max-height: 360px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(59, 108, 245, 0.15));
}

@media (min-width: 768px) {
    .responsible-hero__inner {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 2.5rem;
    }

    .responsible-hero__img {
        max-height: 460px;
    }
}

.section-responsible-commitment,
.section-responsible-limits,
.section-responsible-exclusion,
.section-responsible-signs,
.section-responsible-age {
    padding-block: 3rem;
}

.section-responsible-limits {
    background: rgba(15, 23, 42, 0.25);
}

.section-responsible-signs {
    background: rgba(15, 23, 42, 0.25);
}

.responsible-badge-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    margin-block: 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(28, 35, 64, 0.85);
    border: 1px solid rgba(140, 160, 200, 0.2);
}

.responsible-18-badge {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-family: "Cinzel Decorative", serif;
    font-size: 1.25rem;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.9), rgba(180, 40, 50, 0.95));
    box-shadow: 0 0 16px rgba(230, 57, 70, 0.3);
}

.responsible-badge-highlight p {
    margin: 0;
    color: var(--muted-foreground);
}

.responsible-tools-list {
    margin-bottom: 1.5rem;
}

.responsible-tools-list li {
    position: relative;
    padding-left: 0.25rem;
}

.callout-box--info {
    border-left-color: var(--primary);
    background: rgba(59, 108, 245, 0.08);
}

/* Exclusion steps */
.exclusion-steps {
    display: grid;
    gap: 1rem;
    margin-block: 1.5rem;
}

.exclusion-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    background: rgba(28, 35, 64, 0.82);
    border: 1px solid rgba(140, 160, 200, 0.15);
}

.exclusion-step__number {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-family: "Cinzel Decorative", serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--foreground);
    background: rgba(140, 160, 200, 0.15);
    border: 1px solid rgba(140, 160, 200, 0.3);
}

.exclusion-step h3 {
    margin-bottom: 0.35rem;
    font-size: 1.1rem;
}

.exclusion-step p {
    margin-bottom: 0;
    color: var(--muted-foreground);
}

/* Warning signs list */
.warning-signs-list {
    margin-bottom: 1.5rem;
}

.warning-signs-list li {
    position: relative;
    padding-left: 0.25rem;
    color: var(--foreground);
}

/* Help resources */
.section-responsible-help {
    padding-block: 3rem;
}

.help-resources-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.help-resource-card {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(28, 35, 64, 0.85);
    border: 1px solid rgba(140, 160, 200, 0.2);
}

.help-resource-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
    color: var(--foreground);
}

.help-resource-card p {
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.help-resource-card__phone {
    font-family: "Cinzel Decorative", serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.help-resource-card__link {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}

.help-resource-card__detail {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.85rem;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .help-resources-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .section-responsible-commitment,
    .section-responsible-limits,
    .section-responsible-exclusion,
    .section-responsible-signs,
    .section-responsible-help,
    .section-responsible-age {
        padding-block: 4rem;
    }
}

.cta-banner--muted {
    background:
        radial-gradient(circle at top center, rgba(140, 160, 200, 0.1), transparent 30%),
        linear-gradient(135deg, rgba(21, 26, 46, 0.98), rgba(28, 35, 64, 0.98));
}

/* ============================================
   CLAIM / REDIRECT LOADER PAGE
   Centered branding with magical spinner
   ============================================ */

.claim-redirect .site-header,
.claim-redirect .site-footer {
    display: none;
}

.claim-redirect main {
    padding-top: 0;
}

.claim-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem 1rem;
    background:
        radial-gradient(circle at 50% 30%, rgba(212, 160, 23, 0.12), transparent 40%),
        radial-gradient(circle at 30% 70%, rgba(59, 108, 245, 0.1), transparent 35%),
        linear-gradient(180deg, #101628 0%, var(--navy-900) 50%, #0e1224 100%);
}

.claim-loader__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 420px;
}

.claim-loader__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    color: var(--foreground);
}

.claim-loader__brand:hover,
.claim-loader__brand:focus-visible {
    color: var(--foreground);
}

.claim-loader__logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(212, 160, 23, 0.25), 0 0 60px rgba(212, 160, 23, 0.1);
}

.claim-loader__brand-text {
    font-family: "Cinzel Decorative", serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-300);
    letter-spacing: 0.04em;
}

.claim-loader__spinner {
    position: relative;
    width: 56px;
    height: 56px;
    margin-bottom: 2rem;
}

.claim-loader__ring {
    position: absolute;
    inset: 0;
    border: 3px solid rgba(240, 201, 90, 0.15);
    border-top-color: var(--gold-400);
    border-radius: 50%;
    animation: claimSpin 1.2s linear infinite;
    box-shadow: 0 0 16px rgba(212, 160, 23, 0.3), inset 0 0 8px rgba(212, 160, 23, 0.1);
}

.claim-loader__particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-400);
    box-shadow: 0 0 8px rgba(240, 201, 90, 0.6);
    animation: claimOrbit 2.4s linear infinite;
}

.claim-loader__particle--1 {
    animation-delay: 0s;
}

.claim-loader__particle--2 {
    animation-delay: -0.6s;
    width: 4px;
    height: 4px;
    background: var(--gold-300);
}

.claim-loader__particle--3 {
    animation-delay: -1.2s;
    width: 5px;
    height: 5px;
}

.claim-loader__particle--4 {
    animation-delay: -1.8s;
    width: 3px;
    height: 3px;
    background: rgba(59, 108, 245, 0.7);
    box-shadow: 0 0 8px rgba(59, 108, 245, 0.5);
}

.claim-loader__title {
    font-family: "Outfit", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    letter-spacing: 0;
}

.claim-loader__desc {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    max-width: 320px;
    margin-bottom: 0;
}

@keyframes claimSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes claimOrbit {
    0% {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(0deg) translateX(32px) scale(1);
        opacity: 0.9;
    }
    50% {
        opacity: 0.4;
        transform: translate(-50%, -50%) rotate(180deg) translateX(32px) scale(0.6);
    }
    100% {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(360deg) translateX(32px) scale(1);
        opacity: 0.9;
    }
}

/* ============================================
   MOBILE STICKY CTA
   Reusable footer action bar for mobile pages
   ============================================ */

.mobile-sticky-cta {
    position: fixed;
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    z-index: 950;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 999px;
    background: rgba(21, 26, 46, 0.92);
    border: 1px solid rgba(240, 201, 90, 0.18);
    box-shadow: var(--shadow-card);
    transform: translateY(140%);
    transition: transform 0.3s ease;
}

.mobile-sticky-cta.is-visible {
    transform: translateY(0);
}

/* ============================================
   FOOTER
   Dense information architecture with trust signals
   ============================================ */

.site-footer {
    padding-block: 3rem 1.5rem;
    background:
        linear-gradient(180deg, rgba(21, 26, 46, 0.94), rgba(15, 23, 42, 0.98));
    border-top: 1px solid rgba(240, 201, 90, 0.1);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
}

.site-footer__title {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: var(--gold-300);
}

.site-footer__links {
    display: grid;
    gap: 0.6rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__links a,
.site-footer__brand p,
.site-footer__bottom p {
    color: var(--muted-foreground);
}

.site-brand--footer {
    margin-bottom: 1rem;
}

.footer-inline-link {
    display: inline-flex;
    margin-top: 0.5rem;
    color: var(--gold-300);
    font-weight: 700;
}

.site-footer__bottom {
    display: grid;
    gap: 0.4rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ============================================
   ANIMATIONS AND REVEALS
   Shared motion language across future pages
   ============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes magicalPulse {
    0%,
    100% {
        box-shadow: 0 0 0 1px rgba(240, 201, 90, 0.12), 0 0 16px rgba(212, 160, 23, 0.22);
    }
    50% {
        box-shadow: 0 0 0 1px rgba(240, 201, 90, 0.18), 0 0 26px rgba(212, 160, 23, 0.4);
    }
}

/* ============================================
   RESPONSIVE ENHANCEMENTS - TABLET
   Larger layouts, denser grids, inline header
   ============================================ */

@media (min-width: 768px) {
    :root {
        --header-height: 84px;
    }

    body {
        font-size: 17px;
    }

    section {
        padding-block: 5rem;
    }

    .container {
        width: min(100% - 2rem, var(--container));
    }

    .card-grid,
    .bonus-grid,
    .info-grid,
    .provider-grid,
    .social-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .game-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero__grid,
    .page-hero__grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 2.5rem;
    }

    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ============================================
   RESPONSIVE ENHANCEMENTS - DESKTOP
   Full nav, blurred header, multi-column layout
   ============================================ */

@media (min-width: 1024px) {
    .site-header {
        background: rgba(21, 26, 46, 0.78);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .mobile-menu-toggle {
        display: none;
    }

    .site-nav {
        display: block;
        flex: 1;
    }

    .site-nav__panel {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        min-height: auto;
        padding: 0;
        background: transparent;
    }

    .site-nav__list {
        flex-direction: row;
        justify-content: center;
        gap: 0.25rem;
        margin-inline: auto;
        padding-inline: 1rem;
    }

    .site-nav__list a {
        min-height: 44px;
        padding: 0.75rem 0.95rem;
        background: transparent;
    }

    .site-nav__actions {
        display: flex;
        align-items: center;
        grid-template-columns: none;
        margin-top: 0;
    }

    .site-nav__mobile-footer {
        display: none;
    }

    .card-grid,
    .bonus-grid,
    .provider-grid,
    .social-proof-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .game-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .site-footer__grid {
        grid-template-columns: 1.2fr 0.85fr 0.85fr 1fr;
    }
}

/* ============================================
   RESPONSIVE ENHANCEMENTS - MAX WIDTH
   Comfortable reading on very wide screens
   ============================================ */

@media (min-width: 1280px) {
    .hero,
    .page-hero {
        padding-block: 7rem;
    }
}

/* ============================================
   MOBILE HEADER SAFETY
   No backdrop-filter on parents of fixed drawer
   ============================================ */

@media (max-width: 1023.98px) {
    .site-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}