/* ============================================
   DRAGONIA CASINO - Design System
   Dark Fantasy Maximalist Aesthetic
   Mobile-first responsive design
   ============================================ */

/* ============================================
   OVERFLOW PREVENTION - Safety Net
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

img, video, iframe, embed, object, svg {
    color: var(--foreground);
    height: auto;
}

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

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

pre code,
.code-block code {
    display: block;
    min-width: 0;
}

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

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

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

section {
    overflow: clip;
}

/* ============================================
   RESET & BASE
   Foundation for all elements
   ============================================ */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.28s ease-out;
}

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

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

/* ============================================
   SKIP LINK - Accessibility
   ============================================ */
.skip-link {
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 700;
    border-radius: 0 0 8px 8px;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   TYPOGRAPHY - Cinzel Decorative + Nunito Sans
   Cinzel for headings, Nunito Sans for body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: "Cinzel Decorative", "Georgia", serif;
    line-height: 1.2;
    margin-top: 0;
    color: var(--foreground);
}

h1 {
    font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.5rem, 3vw + 0.25rem, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.875rem;
}

h3 {
    font-size: clamp(1.25rem, 2vw + 0.25rem, 1.625rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: clamp(1.1rem, 1.5vw + 0.25rem, 1.375rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

/* Gold gradient text for special headings */
.text-gold {
    background: linear-gradient(135deg, #E5A833 0%, #FFD700 40%, #E5A833 70%, #C8922A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glow text for hero headings */
.text-glow {
    text-shadow: 0 0 40px rgba(229, 168, 51, 0.3), 0 0 80px rgba(229, 168, 51, 0.1);
}

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

/* Body text size */
.body-text, .seo-content {
    font-size: 16px;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .body-text, .seo-content {
        font-size: 17px;
    }
}

/* ============================================
   LAYOUT - Container, sections, spacing
   Base 8px grid, generous section gaps
   ============================================ */
.container {
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

@media (min-width: 768px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (min-width: 1280px) {
    .container {
        padding-left: 32px;
        padding-right: 32px;
    }
}

/* Section spacing */
.section {
    padding-top: 56px;
    padding-bottom: 56px;
}

@media (min-width: 768px) {
    .section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (min-width: 1024px) {
    .section {
        padding-top: 96px;
        padding-bottom: 96px;
    }
}

/* Full-bleed sections extend edge to edge */
.section--full {
    padding-left: 0;
    padding-right: 0;
}

/* ============================================
   HEADER - Fixed sticky, backdrop blur
   z-index: 1000, semi-transparent dark
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 64px;
    background: rgba(18, 19, 24, 0.92);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease;
}

@media (min-width: 1024px) {
    .site-header {
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .header-inner {
        padding: 0 24px;
    }
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    z-index: 1001;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-text {
    font-family: "Cinzel Decorative", serif;
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #E5A833, #FFD700, #E5A833);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Desktop Navigation */
.main-nav {
    display: none;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 8px 14px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--foreground);
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.28s ease-out, background 0.28s ease-out;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(229, 168, 51, 0.08);
}

.nav-mobile-cta {
    display: none;
}

/* Header action buttons */
.header-actions {
    display: none;
    align-items: center;
    gap: 8px;
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        align-items: center;
    }

    .nav-mobile-cta {
        display: none;
    }

    .header-actions {
        display: flex;
    }
}

/* ============================================
   MOBILE MENU - Full-screen drawer
   Toggle via .is-open class, position: fixed
   ============================================ */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger → X animation */
.mobile-toggle[aria-expanded="true"] .toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

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

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

/* Mobile nav drawer */
.main-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--background);
    padding: 24px 16px 32px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.main-nav.is-open .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
}

.main-nav.is-open .nav-link {
    min-height: 56px;
    font-size: 1.125rem;
    padding: 16px 20px;
    border-radius: 12px;
    justify-content: flex-start;
}

.main-nav.is-open .nav-link:hover {
    background: rgba(229, 168, 51, 0.1);
}

.main-nav.is-open .nav-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    padding-top: 24px;
}

.main-nav.is-open .nav-mobile-cta .btn {
    width: 100%;
    justify-content: center;
}

/* ============================================
   BUTTONS - Primary, outline, sizes, glow
   48px height, molten gold primary
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 24px;
    font-family: "Nunito Sans", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.28s ease-out;
    white-space: nowrap;
    min-width: 0;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #E5A833 0%, #FFD700 50%, #E5A833 100%);
    color: #121318;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(229, 168, 51, 0.3);
}

.btn-primary:hover {
    color: #121318;
    box-shadow: 0 6px 24px rgba(229, 168, 51, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: rgba(229, 168, 51, 0.1);
    color: var(--primary);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--secondary-foreground);
    border-color: transparent;
}

.btn-secondary:hover {
    background: #A01F33;
}

/* Size variants */
.btn-sm {
    height: 40px;
    padding: 0 16px;
    font-size: 0.875rem;
    border-radius: 10px;
}

.btn-lg {
    height: 56px;
    padding: 0 32px;
    font-size: 1.125rem;
    border-radius: 14px;
    min-width: 200px;
}

/* Pulse glow animation on CTA buttons */
.btn-glow {
    animation: btn-pulse 2.5s ease-in-out infinite;
}

@keyframes btn-pulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(229, 168, 51, 0.3);
    }
    50% {
        box-shadow: 0 4px 28px rgba(229, 168, 51, 0.55), 0 0 40px rgba(229, 168, 51, 0.15);
    }
}

/* Gold shimmer sweep on hover */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
    transition: left 0.6s ease;
    pointer-events: none;
}

.btn-primary:hover::after {
    left: 100%;
}

/* Full-width on mobile */
.btn--block-mobile {
    width: 100%;
}

@media (min-width: 640px) {
    .btn--block-mobile {
        width: auto;
    }
}

/* ============================================
   GAME CARDS - Slot/game display cards
   Ember glow, scale hover, staggered fade-in
   ============================================ */
.game-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

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

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

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

.game-card {
    background: var(--card);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.28s ease-out, box-shadow 0.28s ease-out;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.game-card:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(229, 168, 51, 0.25), 0 0 60px rgba(229, 168, 51, 0.08);
}

.game-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--muted);
}

.game-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-card__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center bottom, rgba(229, 168, 51, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.game-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(229, 168, 51, 0.15) 0%, var(--muted) 70%);
}

.game-card__placeholder-icon {
    font-size: 3rem;
}

.game-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: var(--secondary);
    color: var(--secondary-foreground);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.game-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
}

@media (min-width: 1024px) {
    .game-card__body {
        padding: 28px;
    }
}

.game-card__title {
    font-family: "Cinzel Decorative", serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    margin: 0;
    line-height: 1.3;
}

@media (min-width: 1024px) {
    .game-card__title {
        font-size: 1.25rem;
    }
}

.game-card__provider {
    font-size: 0.8125rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.game-card__desc {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.5;
    flex: 1;
}

.game-card__rtp {
    font-size: 0.8125rem;
    color: var(--accent);
    font-weight: 600;
}

.game-card__cta {
    margin-top: auto;
    align-self: flex-start;
    height: 44px;
    font-size: 0.875rem;
}

/* ============================================
   CTA BANNER - Full-width conversion section
   Crimson radial glow, ambient drift animation
   ============================================ */
.cta-banner {
    position: relative;
    padding: 56px 16px;
    text-align: center;
}

@media (min-width: 1024px) {
    .cta-banner {
        padding: 96px 24px;
    }
}

.cta-banner__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(139, 26, 43, 0.35) 0%, rgba(18, 19, 24, 0.95) 70%);
    animation: cta-drift 15s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes cta-drift {
    0% {
        background: radial-gradient(ellipse at 40% 55%, rgba(139, 26, 43, 0.35) 0%, rgba(18, 19, 24, 0.95) 70%);
    }
    50% {
        background: radial-gradient(ellipse at 60% 45%, rgba(100, 20, 50, 0.3) 0%, rgba(18, 19, 24, 0.95) 70%);
    }
    100% {
        background: radial-gradient(ellipse at 45% 50%, rgba(139, 26, 43, 0.4) 0%, rgba(18, 19, 24, 0.95) 70%);
    }
}

.cta-banner__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.cta-banner__headline {
    font-family: "Cinzel Decorative", serif;
    font-size: clamp(1.5rem, 3vw + 0.25rem, 2.25rem);
    font-weight: 700;
    background: linear-gradient(135deg, #E5A833 0%, #FFD700 40%, #E5A833 70%, #C8922A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.cta-banner__text {
    font-size: 1rem;
    color: var(--foreground);
    margin-bottom: 24px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .cta-banner__text {
        font-size: 1.0625rem;
    }
}

.cta-banner__btn {
    margin-bottom: 12px;
}

@media (max-width: 639px) {
    .cta-banner__btn {
        width: calc(100% - 24px);
        max-width: 400px;
    }
}

.cta-banner__micro {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin: 0;
}

/* ============================================
   FAQ ACCORDION - Expandable Q&A
   Uses native <details>/<summary>, zero JS
   ============================================ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-accordion__category {
    font-family: "Cinzel Decorative", serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    margin-top: 16px;
}

@media (min-width: 1024px) {
    .faq-accordion__category {
        font-size: 1.25rem;
    }
}

.faq-item {
    background: var(--card);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px;
    cursor: pointer;
    list-style: none;
    min-height: 48px;
    font-family: "Nunito Sans", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    transition: background 0.2s ease;
}

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

.faq-item__question::marker {
    display: none;
    content: '';
}

@media (min-width: 1024px) {
    .faq-item__question {
        padding: 28px;
        font-size: 1.0625rem;
    }
}

.faq-item__question:hover {
    background: rgba(229, 168, 51, 0.05);
}

.faq-item__q-text {
    flex: 1;
    min-width: 0;
}

.faq-item__chevron {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: transform 0.28s ease-out;
}

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

.faq-item__answer {
    overflow: hidden;
}

.faq-item__answer-inner {
    padding: 0 20px 20px;
    border-left: 3px solid var(--secondary);
    margin-left: 20px;
    padding-left: 16px;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--foreground);
}

@media (min-width: 1024px) {
    .faq-item__answer-inner {
        padding: 0 28px 28px;
        margin-left: 28px;
        padding-left: 20px;
    }
}

.faq-item__answer-inner p {
    margin: 0 0 12px;
}

.faq-item__answer-inner p:last-child {
    margin-bottom: 0;
}

/* ============================================
   INFO TABLE - Comparison/data tables
   Garnet header, zebra striping, gold highlights
   ============================================ */
.info-table-wrapper {
    margin: 24px 0;
    min-width: 0;
}

.info-table__caption {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 8px;
}

.info-table-scroll {
    max-width: 100%;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--border);
    -webkit-overflow-scrolling: touch;
}

/* Scroll indicator gradient on mobile */
.info-table-scroll {
    background:
        linear-gradient(to right, var(--card) 30%, transparent),
        linear-gradient(to left, var(--card) 30%, transparent),
        linear-gradient(to right, rgba(229, 168, 51, 0.15), transparent 20px),
        linear-gradient(to left, rgba(229, 168, 51, 0.15), transparent 20px);
    background-position: left center, right center, left center, right center;
    background-repeat: no-repeat;
    background-size: 20px 100%, 20px 100%, 20px 100%, 20px 100%;
    background-attachment: local, local, scroll, scroll;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
    min-width: 500px;
}

.info-table thead th {
    background: var(--secondary);
    color: var(--secondary-foreground);
    font-family: "Nunito Sans", sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 12px 16px;
    text-align: left;
    white-space: nowrap;
}

.info-table tbody tr {
    border-bottom: 1px solid var(--border);
}

.info-table tbody tr:nth-child(even) {
    background: rgba(42, 43, 53, 0.3);
}

.info-table tbody tr:nth-child(odd) {
    background: var(--card);
}

.info-table td {
    padding: 12px 16px;
    color: var(--foreground);
    font-size: 0.9375rem;
    vertical-align: middle;
}

.info-table__highlight {
    background: rgba(229, 168, 51, 0.06) !important;
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}

/* Gold/Crimson checkmarks for comparison */
.check-gold {
    color: var(--primary);
    font-weight: 700;
}

.check-red {
    color: #F87171;
    font-weight: 700;
}

/* ============================================
   TRUST BADGES - Ratings, license, 18+
   Horizontal flex, 2x2 on mobile
   ============================================ */
.trust-badges {
    padding: 32px 16px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--background);
}

@media (min-width: 1024px) {
    .trust-badges {
        padding: 48px 24px;
    }
}

.trust-badges__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 8px;
    border-radius: 12px;
    transition: box-shadow 0.28s ease-out;
}

.trust-badge:hover {
    box-shadow: 0 0 24px rgba(229, 168, 51, 0.15);
}

.trust-badge__icon {
    font-size: 2rem;
    line-height: 1;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-badge__value {
    font-family: "Cinzel Decorative", serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #E5A833 0%, #FFD700 50%, #E5A833 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .trust-badge__value {
        font-size: 1.75rem;
    }
}

.trust-badge__label {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    font-weight: 600;
}

/* ============================================
   HERO SECTION - Full viewport, ambient drift
   Dragon-fire gradient background
   ============================================ */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 80px 16px 56px;
    overflow: clip;
}

@media (min-width: 768px) {
    .hero {
        min-height: 85vh;
        padding: 96px 24px 80px;
    }
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse at 50% 60%, rgba(139, 26, 43, 0.25) 0%, rgba(18, 19, 24, 1) 70%);
    animation: hero-drift 15s ease-in-out infinite alternate;
}

@keyframes hero-drift {
    0% {
        background: radial-gradient(ellipse at 40% 65%, rgba(139, 26, 43, 0.25) 0%, rgba(18, 19, 24, 1) 70%);
    }
    33% {
        background: radial-gradient(ellipse at 55% 50%, rgba(100, 20, 60, 0.2) 0%, rgba(18, 19, 24, 1) 70%);
    }
    66% {
        background: radial-gradient(ellipse at 45% 55%, rgba(140, 30, 45, 0.3) 0%, rgba(18, 19, 24, 1) 70%);
    }
    100% {
        background: radial-gradient(ellipse at 50% 60%, rgba(139, 26, 43, 0.25) 0%, rgba(18, 19, 24, 1) 70%);
    }
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
}

.hero__title {
    margin-bottom: 16px;
}

.hero__subtitle {
    font-size: 1.0625rem;
    color: var(--foreground);
    margin-bottom: 32px;
    max-width: 600px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero__subtitle {
        font-size: 1.1875rem;
    }
}

.hero__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 640px) {
    .hero__actions {
        flex-direction: row;
        gap: 16px;
    }
}

/* Hero image area */
.hero__visual {
    margin-top: 40px;
}

@media (min-width: 768px) {
    .hero--split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }

    .hero--split .hero__visual {
        margin-top: 0;
    }
}

.hero__image {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 16px;
}

/* ============================================
   SECTION HEADINGS - Consistent styling
   Gold gradient option, section intros
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.section-header p a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 56px;
    }

    .section-header p {
        font-size: 1.0625rem;
    }
}

/* ============================================
   SEO CONTENT - Long-form text blocks
   Readable, generous line-height, max-width
   ============================================ */
.seo-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .seo-content {
        padding: 0;
    }
}

.seo-content h2 {
    margin-top: 48px;
    margin-bottom: 16px;
}

.seo-content h3 {
    margin-top: 32px;
    margin-bottom: 12px;
}

.seo-content p {
    margin-bottom: 16px;
}

.seo-content ul,
.seo-content ol {
    margin-bottom: 16px;
    padding-left: 1.5em;
}

.seo-content li {
    margin-bottom: 6px;
}

.seo-content a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.seo-content a:hover {
    text-decoration-color: var(--primary);
}

.seo-content .info-table-wrapper {
    max-width: 100%;
}

/* ============================================
   ENGAGEMENT PATTERNS
   TL;DR box, callout, stat highlight, pull quote
   ============================================ */

/* Summary / TL;DR box */
.tldr-box {
    background: var(--card);
    border: 1px solid var(--primary);
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 24px 0;
}

.tldr-box__title {
    font-family: "Cinzel Decorative", serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tldr-box p {
    margin: 0;
    color: var(--foreground);
}

/* Callout / highlight box */
.callout {
    background: var(--card);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 24px 0;
    border-left: 4px solid var(--primary);
}

.callout--warning {
    border-left-color: var(--destructive);
}

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

.callout--info {
    border-left-color: #5B8DEF;
}

.callout__title {
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--foreground);
}

.callout p {
    margin: 0;
    color: var(--foreground);
}

.callout a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Stat highlight */
.stat-highlight {
    text-align: center;
    padding: 32px 20px;
    margin: 24px 0;
}

.stat-highlight__number {
    font-family: "Cinzel Decorative", serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #E5A833 0%, #FFD700 50%, #E5A833 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-highlight__label {
    font-size: 1rem;
    color: var(--muted-foreground);
    font-weight: 600;
}

.stat-highlight__source {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-top: 4px;
}

/* Pull quote */
.pull-quote {
    border-left: 4px solid var(--primary);
    padding: 24px 28px;
    margin: 32px 0;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--foreground);
    line-height: 1.5;
}

.pull-quote cite {
    display: block;
    font-size: 0.875rem;
    font-style: normal;
    color: var(--muted-foreground);
    margin-top: 12px;
}

/* ============================================
   COMPARISON TABLE - Highlighted column
   ============================================ */
.comparison-table {
    margin: 32px 0;
}

/* ============================================
   STEPS / PROCESS BAR
   Numbered circles connected by line
   ============================================ */
.steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px 0;
}

@media (min-width: 768px) {
    .steps {
        flex-direction: row;
        gap: 16px;
    }
}

.step {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}

@media (min-width: 768px) {
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.step__number {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #E5A833, #FFD700);
    color: #121318;
    font-family: "Cinzel Decorative", serif;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step__content h3 {
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.step__content p {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    margin: 0;
}

.step__content p a,
.step__content li a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ============================================
   FEATURE SECTION - Split layout
   Image left/right, content opposite
   ============================================ */
.feature-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .feature-split {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

.feature-split__visual {
    border-radius: 16px;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(229, 168, 51, 0.1) 0%, var(--card) 70%);
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-split__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-split__content h2 {
    margin-bottom: 16px;
}

.feature-split__content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.feature-split__content li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 1rem;
    color: var(--foreground);
}

.feature-split__content li::before {
    content: '🪙';
    position: absolute;
    left: 0;
    top: 8px;
}

.feature-split__content li a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ============================================
   BADGE PILL - Category filters
   ============================================ */
.pill-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0 12px;
    scrollbar-width: none;
    outline: none;
}

.pill-row:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 8px;
}

.pill-row::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .pill-row {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
    }
}

.pill {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--foreground);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.28s ease-out;
    white-space: nowrap;
}

.pill:hover,
.pill.active {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.pill__count {
    font-size: 0.75rem;
    background: rgba(229, 168, 51, 0.2);
    padding: 2px 8px;
    border-radius: 100px;
}

.pill.active .pill__count {
    background: rgba(18, 19, 24, 0.2);
}

/* ============================================
   PROVIDER STRIP - Logo parade
   Grayscale → color on hover
   ============================================ */
.provider-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
    padding: 24px 0;
}

.provider-logo {
    height: 32px;
    opacity: 0.5;
    filter: grayscale(1);
    transition: all 0.28s ease-out;
}

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

/* ============================================
   SITE NAVIGATION CARDS - Internal linking
   ============================================ */
.nav-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

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

.nav-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--foreground);
    transition: all 0.28s ease-out;
}

.nav-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(229, 168, 51, 0.15);
    transform: translateY(-2px);
    color: var(--foreground);
}

.nav-card__icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 168, 51, 0.1);
    border-radius: 12px;
}

.nav-card__text h3 {
    font-size: 1rem;
    margin: 0 0 2px;
    font-family: "Cinzel Decorative", serif;
}

.nav-card__text p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
}

.nav-card__arrow {
    margin-left: auto;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ============================================
   PROMO BANNER - Tournament, special offers
   Full-bleed with glow
   ============================================ */
.promo-banner {
    position: relative;
    padding: 48px 16px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(229, 168, 51, 0.08) 0%, transparent 60%);
}

@media (min-width: 768px) {
    .promo-banner {
        padding: 80px 24px;
    }
}

.promo-banner__amount {
    font-family: "Cinzel Decorative", serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, #E5A833, #FFD700, #E5A833);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    display: block;
    line-height: 1.1;
    margin-bottom: 8px;
}

.promo-banner__name {
    font-family: "Cinzel Decorative", serif;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--foreground);
    margin-bottom: 24px;
}

/* ============================================
   VIP TIERS - Progressive visual
   ============================================ */
.vip-tiers {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 0;
}

@media (min-width: 768px) {
    .vip-tiers {
        flex-direction: row;
        gap: 8px;
    }
}

.vip-tier {
    flex: 1;
    text-align: center;
    padding: 20px 12px;
    background: var(--card);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.28s ease-out;
}

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

.vip-tier--active {
    border-color: var(--primary);
    background: rgba(229, 168, 51, 0.08);
}

.vip-tier__icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.vip-tier__name {
    font-family: "Cinzel Decorative", serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 4px;
}

.vip-tier__perk {
    font-size: 0.8125rem;
    color: var(--primary);
    font-weight: 600;
}

/* ============================================
   PAYMENT STRIP - Footer payment logos
   ============================================ */
.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.payment-logo {
    padding: 8px 12px;
    background: var(--card);
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--muted-foreground);
    transition: all 0.28s ease-out;
    border: 1px solid var(--border);
}

.payment-logo:hover {
    color: var(--foreground);
    border-color: var(--primary);
}

/* Hero variant - sits on dark hero bg, needs higher contrast */
.payment-logo--hero {
    color: var(--foreground);
    background: rgba(27, 28, 36, 0.85);
    border-color: rgba(46, 47, 58, 0.8);
}

/* ============================================
   LIVE BADGE - Pulsing red indicator
   ============================================ */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: var(--secondary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.live-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FF4444;
    animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ============================================
   FOOTER - 4-column grid, dark theme
   ============================================ */
.site-footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding-top: 48px;
    margin-top: 0;
}

.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .footer-inner {
        padding: 0 24px;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 12px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.footer-logo span {
    font-family: "Cinzel Decorative", serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
}

.footer-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

.footer-heading {
    font-family: "Cinzel Decorative", serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--foreground);
    margin-top: 0;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.28s ease-out;
}

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

/* Footer payments */
.footer-payments {
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}

/* Footer trust */
.footer-trust {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    padding: 8px 12px;
}

.trust-icon {
    font-size: 1.25rem;
}

.age-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
}

/* Responsible gambling */
.footer-responsible {
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.footer-responsible p {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

.footer-responsible a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Footer bottom */
.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin: 0;
}

/* ============================================
   SCROLL ANIMATIONS - Fade-in on viewport entry
   Elements start hidden, JS adds .is-visible
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Staggered delays for grid children */
.stagger-children > .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.stagger-children > .animate-on-scroll:nth-child(2) { transition-delay: 100ms; }
.stagger-children > .animate-on-scroll:nth-child(3) { transition-delay: 200ms; }
.stagger-children > .animate-on-scroll:nth-child(4) { transition-delay: 300ms; }
.stagger-children > .animate-on-scroll:nth-child(5) { transition-delay: 400ms; }
.stagger-children > .animate-on-scroll:nth-child(6) { transition-delay: 500ms; }
.stagger-children > .animate-on-scroll:nth-child(7) { transition-delay: 600ms; }
.stagger-children > .animate-on-scroll:nth-child(8) { transition-delay: 700ms; }

/* ============================================
   EMBER PARTICLES - Decorative floating dots
   Pure CSS, used in hero backgrounds
   ============================================ */
.ember-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.ember {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(229, 168, 51, 0.6);
    animation: ember-float 6s ease-in-out infinite;
}

.ember:nth-child(1) { left: 10%; bottom: 20%; animation-delay: 0s; animation-duration: 7s; }
.ember:nth-child(2) { left: 25%; bottom: 10%; animation-delay: 1s; animation-duration: 5s; }
.ember:nth-child(3) { left: 45%; bottom: 30%; animation-delay: 2s; animation-duration: 8s; }
.ember:nth-child(4) { left: 65%; bottom: 15%; animation-delay: 0.5s; animation-duration: 6s; }
.ember:nth-child(5) { left: 80%; bottom: 25%; animation-delay: 1.5s; animation-duration: 7s; }
.ember:nth-child(6) { left: 55%; bottom: 5%; animation-delay: 3s; animation-duration: 9s; }
.ember:nth-child(7) { left: 35%; bottom: 40%; animation-delay: 2.5s; animation-duration: 6s; }
.ember:nth-child(8) { left: 90%; bottom: 35%; animation-delay: 0.8s; animation-duration: 5s; }

@keyframes ember-float {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 0.8;
    }
    80% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-200px) scale(0.3);
        opacity: 0;
    }
}

/* ============================================
   LOADING SPINNER - For redirect page
   ============================================ */
.loading-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 24px;
}

.loading-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    animation: dot-pulse 1.5s ease-in-out infinite;
}

.loading-dot:nth-child(2) { animation-delay: 0.2s; }
.loading-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dot-pulse {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* ============================================
   REDIRECT PAGE - Centered minimal layout
   ============================================ */
.redirect-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    background: var(--background);
}

.redirect-page__logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    margin-bottom: 24px;
}

@media (max-width: 639px) {
    .redirect-page__logo {
        width: 60px;
        height: 60px;
    }
}

.redirect-page h1 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 12px;
}

.redirect-page p {
    color: var(--foreground);
    opacity: 1;
    margin-bottom: 24px;
}

.redirect-page a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.redirect-page__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 40%, rgba(229, 168, 51, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.redirect-page__fallback {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 32px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.28s ease-out;
}

.redirect-page__fallback:hover {
    color: var(--primary);
}

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

.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

/* Section link row */
.section-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 16px;
}

.section-link:hover {
    gap: 10px;
}

/* Grid helpers */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

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

/* Inline link underline - ensures links in text blocks are distinguishable */
.inline-link-underline {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Exclusive ribbon badge */
.badge-exclusive {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--secondary), #8B1A2B);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Gold border card variant */
.card-premium {
    border: 2px solid var(--primary);
    box-shadow: 0 0 30px rgba(229, 168, 51, 0.1);
}

/* ============================================
   SLOTS PAGE - Provider badge strip, exclusive section
   ============================================ */
.provider-badge-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.provider-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--muted-foreground);
    transition: all 0.28s ease-out;
    white-space: nowrap;
}

.provider-badge-item:hover {
    color: var(--foreground);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(229, 168, 51, 0.12);
}

.slots-exclusive-section {
    position: relative;
}

.slots-exclusive-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(198, 40, 64, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.slots-exclusive-section .game-card {
    border: 1px solid rgba(229, 168, 51, 0.25);
}

.slots-exclusive-section .game-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 40px rgba(229, 168, 51, 0.3), 0 0 80px rgba(229, 168, 51, 0.08);
}

.slots-exclusive-section .game-card__glow {
    background: radial-gradient(ellipse at center bottom, rgba(229, 168, 51, 0.3) 0%, transparent 70%);
}

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

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

.slots-category-info .callout {
    height: 100%;
}

/* Crypto coin icons styling */
.crypto-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    text-align: center;
}

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

.crypto-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 8px;
    background: var(--card);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.crypto-item__icon {
    font-size: 2rem;
}

.crypto-item__name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted-foreground);
}

/* ============================================
   PAYMENT HERO STATS - 3-stat row
   ============================================ */
.pay-hero-stats {
    margin-top: 32px;
}

.pay-hero-stats__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.pay-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    flex: 1;
    min-width: 140px;
}

.pay-hero-stat__value {
    font-family: "Cinzel Decorative", serif;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #E5A833 0%, #FFD700 50%, #E5A833 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.pay-hero-stat__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--foreground);
    opacity: 0.72;
    text-align: center;
}

@media (max-width: 479px) {
    .pay-hero-stat {
        min-width: 100px;
        padding: 12px 16px;
    }
}

/* ============================================
   BONUS HERO BREAKDOWN - 3-card visual
   ============================================ */
.bonus-hero-breakdown {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 480px;
}

@media (min-width: 768px) {
    .bonus-hero-breakdown {
        gap: 16px;
    }
}

.bonus-hero-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 12px;
    background: var(--card);
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bonus-hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center bottom, rgba(229, 168, 51, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.bonus-hero-card__icon {
    font-size: 2rem;
    line-height: 1;
}

.bonus-hero-card__value {
    font-family: "Cinzel Decorative", serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    background: linear-gradient(135deg, #E5A833 0%, #FFD700 50%, #E5A833 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.bonus-hero-card__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ============================================
   FREE SPINS TIMELINE - 10-day delivery
   ============================================ */
.fs-timeline {
    text-align: center;
    padding: 24px 0;
}

.fs-timeline__track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: relative;
    padding: 0 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.fs-timeline__track::-webkit-scrollbar {
    display: none;
}

.fs-timeline__line {
    display: none;
}

.fs-timeline__day {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding: 8px 4px;
}

.fs-timeline__marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card);
    border: 2px solid var(--primary);
    color: var(--primary);
    font-family: "Cinzel Decorative", serif;
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.28s ease-out;
}

.fs-timeline__day:hover .fs-timeline__marker,
.fs-timeline__day--final .fs-timeline__marker {
    background: linear-gradient(135deg, #E5A833, #FFD700);
    color: #121318;
    border-color: transparent;
}

.fs-timeline__label {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--muted-foreground);
    white-space: nowrap;
}

.fs-timeline__total {
    margin-top: 20px;
}

@media (min-width: 640px) {
    .fs-timeline__day {
        padding: 8px 6px;
    }

    .fs-timeline__marker {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }

    .fs-timeline__label {
        font-size: 0.75rem;
    }
}

@media (min-width: 768px) {
    .fs-timeline__track {
        gap: 8px;
    }

    .fs-timeline__day {
        padding: 8px;
    }
}

/* ============================================
   FAQ PAGE - Hero, section wrappers
   ============================================ */
.faq-hero {
    position: relative;
    padding: 112px 16px 48px;
    text-align: center;
    overflow: clip;
}

@media (min-width: 768px) {
    .faq-hero {
        padding: 128px 24px 56px;
    }
}

.faq-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(229, 168, 51, 0.1) 0%, rgba(18, 19, 24, 1) 60%);
}

.faq-hero__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.faq-hero__subtitle {
    font-size: 1.0625rem;
    color: var(--foreground);
    line-height: 1.6;
    margin-top: 12px;
    margin-bottom: 0;
    opacity: 0.85;
}

@media (min-width: 768px) {
    .faq-hero__subtitle {
        font-size: 1.125rem;
    }
}

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

.faq-section-wrapper > h2 {
    margin-bottom: 8px;
}

.faq-section-wrapper > p {
    color: var(--foreground);
    opacity: 0.78;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-section-wrapper > p a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ============================================
   MAIN CONTENT - Top padding for fixed header
   ============================================ */
#main-content {
    padding-top: 64px;
}

/* ============================================
   HOMEPAGE - Hero badge, micro text
   ============================================ */
.hero__badge {
    margin: 0 0 16px;
}

.hero__micro {
    margin-top: 16px;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

/* ============================================
   LIVE CASINO PAGE - Gold Saloon, Provider cards, Table game cards
   ============================================ */

/* Live hero background shift */
.live-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse at 50% 60%, rgba(139, 26, 43, 0.3) 0%, rgba(18, 19, 24, 1) 70%);
    animation: live-hero-drift 15s ease-in-out infinite alternate;
}

@keyframes live-hero-drift {
    0% {
        background: radial-gradient(ellipse at 40% 65%, rgba(139, 26, 43, 0.3) 0%, rgba(18, 19, 24, 1) 70%);
    }
    33% {
        background: radial-gradient(ellipse at 55% 50%, rgba(80, 15, 45, 0.25) 0%, rgba(18, 19, 24, 1) 70%);
    }
    66% {
        background: radial-gradient(ellipse at 45% 55%, rgba(150, 30, 50, 0.3) 0%, rgba(18, 19, 24, 1) 70%);
    }
    100% {
        background: radial-gradient(ellipse at 50% 60%, rgba(139, 26, 43, 0.35) 0%, rgba(18, 19, 24, 1) 70%);
    }
}

/* Gold Saloon section */
.gold-saloon-section {
    position: relative;
    background: linear-gradient(180deg, var(--background) 0%, rgba(229, 168, 51, 0.03) 50%, var(--background) 100%);
}

.gold-saloon-section::before {
    content: '';
    position: absolute;
    inset: 0;
    border-top: 1px solid rgba(229, 168, 51, 0.15);
    border-bottom: 1px solid rgba(229, 168, 51, 0.15);
    pointer-events: none;
}

.gold-saloon-visual {
    border: 2px solid rgba(229, 168, 51, 0.25);
    box-shadow: 0 0 40px rgba(229, 168, 51, 0.08);
}

/* Live provider grid */
.live-provider-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

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

.live-provider-card {
    text-align: center;
    padding: 28px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.28s ease-out;
}

.live-provider-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 24px rgba(229, 168, 51, 0.15);
    transform: translateY(-4px);
}

.live-provider-card__icon {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 12px;
}

.live-provider-card__name {
    font-family: "Cinzel Decorative", serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    margin: 0 0 6px;
}

.live-provider-card__count {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 8px;
}

.live-provider-card__highlight {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.5;
}

/* Table game cards */
.table-game-card {
    padding: 28px 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.28s ease-out;
}

.table-game-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 24px rgba(229, 168, 51, 0.12);
}

.table-game-card__icon {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 4px;
    overflow: hidden;
}

.table-game-card__title {
    font-family: "Cinzel Decorative", serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin: 0;
}

.table-game-card__count {
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #E5A833 0%, #FFD700 50%, #E5A833 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.table-game-card__desc {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin: 0 0 12px;
    flex: 1;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .site-header,
    .site-footer,
    .mobile-toggle,
    .btn-glow,
    .ember-particles {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}

