/* ============================================
   IRWIN CASINO - Ар-деко Berlin Design System
   Single dark theme (фиолетовый шарм Берлина)
   ============================================ */

:root {
    /* Tokens - single dark theme */
    --background: #150d24;
    --background-alt: #1c1232;
    --foreground: #f5ead8;
    --card: #231538;
    --card-alt: #2a1a45;
    --card-foreground: #f5ead8;
    --primary: #8b3fd9;
    --primary-deep: #5b1a96;
    --primary-foreground: #ffffff;
    --secondary: #2d1b47;
    --secondary-foreground: #f5ead8;
    --muted: #3a2a52;
    --muted-foreground: #c9b8e0;
    --accent: #34d399;
    --accent-deep: #0f8a5f;
    --accent-foreground: #0a1f15;
    --gold: #d4af37;
    --gold-bright: #f0c75e;
    --destructive: #f43f5e;
    --border: #3a2a52;
    --border-gold: rgba(212, 175, 55, 0.45);
    --input: #231538;
    --ring: #a855f7;

    /* Typography */
    --font-display: "Poiret One", "Cormorant Garamond", serif;
    --font-accent: "Limelight", "Playfair Display", serif;
    --font-body: "Manrope", system-ui, -apple-system, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    /* Header */
    --header-height: 72px;

    /* Shadows */
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
    --shadow-violet: 0 0 28px rgba(168, 85, 247, 0.45);
    --shadow-gold: 0 0 24px rgba(212, 175, 55, 0.35);
    --shadow-green: 0 0 22px rgba(52, 211, 153, 0.45);

    /* Transitions */
    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
    --t: 300ms;
}



/* ============================================
   OVERFLOW PREVENTION
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
img, video, iframe, embed, object, svg { max-width: 100%; height: auto; }
[class*="grid"] > *, [class*="flex"] > * { min-width: 0; }
pre, code, .code-block { max-width: 100%; overflow-x: auto; }
.table-wrapper { max-width: 100%; overflow-x: auto; }
p, li, td, th { overflow-wrap: break-word; }
input, textarea, select { max-width: 100%; }
section { overflow: clip; }

/* ============================================
   RESET / BASE
   ============================================ */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    background-image:
        radial-gradient(ellipse at top, rgba(107, 33, 168, 0.28), transparent 55%),
        radial-gradient(ellipse at bottom right, rgba(52, 211, 153, 0.10), transparent 50%);
    background-attachment: fixed;
    min-height: 100vh;
}
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.06em;
    margin: 0 0 var(--space-md);
    color: var(--foreground);
    line-height: 1.2;
}
h1 { font-size: clamp(1.75rem, 4vw + 1rem, 2.75rem); }
h2 { font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.125rem); }
h3 { font-size: clamp(1.25rem, 1vw + 0.75rem, 1.5rem); }
p { margin: 0 0 var(--space-md); }
a { color: var(--gold-bright); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color var(--t) var(--ease); }
a:hover, a:focus-visible { color: var(--gold-bright); text-decoration-thickness: 2px; }
.btn, .site-brand, .nav-list a, .footer-links a, .footer-brand, .anchor-card, .skip-link { text-decoration: none; }
.nav-list a:hover, .footer-links a:hover, .site-brand:hover { text-decoration: none; }
ul { padding-left: 1.25rem; }
::selection { background: var(--primary); color: #fff; }

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

.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;
}

/* ============================================
   LAYOUT - Containers and grids
   ============================================ */
.container, .container-fluid {
    width: 100%; max-width: 1280px; margin: 0 auto;
    padding: 0 var(--space-md);
}
@media (min-width: 768px) {
    .container, .container-fluid { padding: 0 var(--space-lg); }
}
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 var(--space-md); }
.dark-violet-bg { background: transparent; }

.section { padding: var(--space-2xl) 0; position: relative; }
@media (min-width: 1024px) { .section { padding: var(--space-3xl) 0; } }

.section-title { text-align: center; margin-bottom: var(--space-xl); }
.section-title .kicker {
    display: inline-block; font-family: var(--font-accent);
    color: var(--gold); letter-spacing: 0.2em;
    font-size: 0.875rem; text-transform: uppercase;
    margin-bottom: var(--space-sm);
}
.section-title h2 { color: var(--foreground); }
.section-title p { color: var(--muted-foreground); max-width: 680px; margin: var(--space-md) auto 0; }

/* Decorative section divider */
.deco-divider {
    width: 120px; height: 12px; margin: var(--space-md) auto;
    background:
        linear-gradient(90deg, transparent, var(--gold), transparent);
    position: relative;
}
.deco-divider::before, .deco-divider::after {
    content: ""; position: absolute; top: 50%; width: 8px; height: 8px;
    background: var(--gold); transform: translateY(-50%) rotate(45deg);
}
.deco-divider::before { left: -4px; }
.deco-divider::after { right: -4px; }

/* ============================================
   HEADER - Sticky with art-deco border
   ============================================ */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(21, 13, 36, 0.92);
    border-bottom: 1px solid var(--border-gold);
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
@media (min-width: 768px) {
    .site-header { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
}
.header-inner {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 var(--space-md); height: var(--header-height); gap: var(--space-md);
}
@media (min-width: 768px) { .header-inner { padding: 0 var(--space-lg); } }

.site-brand {
    display: flex; align-items: center; gap: var(--space-sm);
    color: var(--foreground); flex-shrink: 0;
}
.site-brand:hover { color: var(--gold-bright); }
.site-brand .logo {
    width: 44px; height: 44px; border-radius: 50%;
    border: 1.5px solid var(--gold); padding: 2px;
    background: var(--secondary);
}
.brand-text {
    font-family: var(--font-accent); font-size: 1.1rem;
    letter-spacing: 0.12em; text-transform: uppercase; line-height: 1;
}
.brand-text em { color: var(--gold-bright); font-style: normal; }

.primary-nav { display: none; }
@media (min-width: 1024px) {
    .primary-nav { display: flex; align-items: center; gap: var(--space-lg); flex: 1; justify-content: flex-end; }
    .nav-list { list-style: none; display: flex; gap: var(--space-lg); padding: 0; margin: 0; }
    .nav-list a {
        color: var(--foreground); font-family: var(--font-display);
        letter-spacing: 0.08em; font-size: 0.95rem; padding: 0.5rem 0;
        position: relative;
    }
    .nav-list a::after {
        content: ""; position: absolute; left: 0; right: 0; bottom: 0;
        height: 2px; background: var(--gold); transform: scaleX(0);
        transform-origin: left; transition: transform var(--t) var(--ease);
    }
    .nav-list a:hover::after, .nav-list a:focus-visible::after { transform: scaleX(1); }
    .nav-actions { display: flex; gap: var(--space-sm); }
}

.mobile-menu-toggle {
    display: flex; flex-direction: column; justify-content: space-between;
    width: 44px; height: 36px; padding: 8px;
    background: transparent; border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm); cursor: pointer; z-index: 1001;
}
.mobile-menu-toggle span {
    display: block; height: 2px; width: 100%; background: var(--gold);
    transition: transform var(--t) var(--ease), opacity var(--t) var(--ease);
    transform-origin: center;
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) 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(-9px) rotate(-45deg); }
@media (min-width: 1024px) { .mobile-menu-toggle { display: none; } }

/* Mobile drawer */
@media (max-width: 1023px) {
    .primary-nav {
        position: fixed;
        top: var(--header-height); left: 0; right: 0; bottom: 0;
        background: var(--background);
        border-top: 1px solid var(--border-gold);
        padding: var(--space-xl) var(--space-md);
        overflow-y: auto;
        z-index: 999;
        display: none;
        flex-direction: column;
        gap: var(--space-lg);
    }
    .primary-nav.is-open { display: flex; }
    .nav-list {
        list-style: none; padding: 0; margin: 0;
        display: flex; flex-direction: column; gap: var(--space-sm);
    }
    .nav-list a {
        display: flex; align-items: center; min-height: 56px;
        color: var(--foreground); font-family: var(--font-display);
        letter-spacing: 0.08em; font-size: 1.15rem;
        padding: var(--space-md);
        border-bottom: 1px solid var(--border);
    }
    .nav-actions {
        display: flex; flex-direction: column; gap: var(--space-sm); margin-top: var(--space-md);
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: var(--space-xs);
    min-height: 48px; padding: 0 var(--space-lg);
    font-family: var(--font-display); font-size: 1rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    border: 1.5px solid transparent; border-radius: var(--radius-sm);
    cursor: pointer; text-decoration: none;
    transition: all var(--t) var(--ease);
    background: transparent; color: var(--foreground);
}
.btn-block { width: 100%; }
.btn-lg { min-height: 56px; padding: 0 var(--space-xl); font-size: 1.05rem; }
@media (max-width: 767px) { .btn { min-height: 56px; } }

.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    color: var(--accent-foreground);
    border-color: var(--accent);
    box-shadow: var(--shadow-green);
    font-weight: 600;
}
.btn-accent:hover, .btn-accent:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 0 32px rgba(52, 211, 153, 0.7);
    color: var(--accent-foreground);
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: var(--primary-foreground);
    border-color: var(--primary);
}
.btn-primary:hover { box-shadow: var(--shadow-violet); transform: translateY(-2px); }
.btn-ghost {
    background: transparent; color: var(--foreground);
    border-color: var(--gold);
}
.btn-ghost:hover { background: rgba(212, 175, 55, 0.1); color: var(--gold-bright); }
.btn-pulse { animation: pulse-green 2.4s var(--ease) infinite; }
@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 18px rgba(52, 211, 153, 0.35); }
    50% { box-shadow: 0 0 36px rgba(52, 211, 153, 0.75); }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    padding: var(--space-2xl) 0 var(--space-3xl);
    overflow: clip;
}
.hero::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.25), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(52, 211, 153, 0.12), transparent 50%);
    pointer-events: none;
}
.hero-inner {
    position: relative;
    display: grid; gap: var(--space-xl);
    grid-template-columns: 1fr;
    max-width: 1280px; margin: 0 auto;
    padding: 0 var(--space-md);
    align-items: center;
}
@media (min-width: 1024px) {
    .hero-inner { grid-template-columns: 1.1fr 0.9fr; padding: 0 var(--space-lg); }
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw + 1rem, 3.5rem);
    line-height: 1.1; margin-bottom: var(--space-md);
}
.hero-kicker {
    display: inline-block; font-family: var(--font-accent);
    color: var(--gold); letter-spacing: 0.25em; font-size: 0.85rem;
    text-transform: uppercase; margin-bottom: var(--space-md);
}
.hero-sub { color: var(--muted-foreground); font-size: 1.1rem; margin-bottom: var(--space-lg); }
.hero-highlight {
    font-family: var(--font-accent); color: var(--gold-bright);
    text-shadow: 0 0 18px rgba(212, 175, 55, 0.55);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-md); }
.hero-mascot {
    position: relative; display: flex; justify-content: center;
}
.hero-mascot img {
    width: 100%; max-width: 420px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-violet);
}
.hero-micro {
    font-size: 0.85rem; color: var(--muted-foreground);
    margin-top: var(--space-md);
}

/* ============================================
   ART-DECO DECORATIVE CORNERS
   ============================================ */
.deco-corner {
    position: absolute; width: 24px; height: 24px;
    border: 1.5px solid var(--gold); pointer-events: none;
}
.deco-corner.deco-tl { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.deco-corner.deco-tr { top: 8px; right: 8px; border-left: none; border-bottom: none; }
.deco-corner.deco-bl { bottom: 8px; left: 8px; border-right: none; border-top: none; }
.deco-corner.deco-br { bottom: 8px; right: 8px; border-left: none; border-top: none; }

.deco-fan {
    position: absolute; width: 60px; height: 60px;
    background:
        conic-gradient(from 0deg at 0% 100%,
            transparent 0deg,
            rgba(212, 175, 55, 0.6) 15deg,
            transparent 30deg,
            rgba(212, 175, 55, 0.6) 45deg,
            transparent 60deg,
            rgba(212, 175, 55, 0.6) 75deg,
            transparent 90deg);
    pointer-events: none; opacity: 0.6;
}
.deco-fan.deco-tl { top: 0; left: 0; }
.deco-fan.deco-tr { top: 0; right: 0; transform: scaleX(-1); }
.deco-fan.deco-bl { bottom: 0; left: 0; transform: scaleY(-1); }
.deco-fan.deco-br { bottom: 0; right: 0; transform: scale(-1, -1); }

/* ============================================
   GAME CARD
   ============================================ */
.game-grid {
    display: grid; gap: var(--space-md);
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 600px) { .game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .game-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; } }

.game-card {
    position: relative;
    background: linear-gradient(160deg, var(--card), var(--card-alt));
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
    display: flex; flex-direction: column; gap: var(--space-sm);
}
@media (min-width: 1024px) { .game-card { padding: 20px; } }
.game-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-violet);
}
.game-cover {
    position: relative; border-radius: var(--radius-sm);
    overflow: hidden; aspect-ratio: 4/3; background: var(--secondary);
}
.game-cover img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 500ms var(--ease);
}
.game-card:hover .game-cover img { transform: scale(1.05); }
.cover-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(21, 13, 36, 0.65), transparent 50%);
}
.game-badge {
    position: absolute; top: 10px; right: 10px;
    padding: 4px 10px; border-radius: 999px;
    font-family: var(--font-display); font-size: 0.75rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    background: rgba(21, 13, 36, 0.85);
    color: var(--gold-bright);
    border: 1px solid var(--border-gold);
}
.badge-live, .badge-hot { background: var(--destructive); color: #fff; border-color: var(--destructive); }
.badge-new { background: var(--accent); color: var(--accent-foreground); border-color: var(--accent); }
.game-body { display: flex; flex-direction: column; gap: var(--space-xs); }
.game-title {
    font-family: var(--font-display); font-size: 1.15rem;
    letter-spacing: 0.08em; margin: 0; color: var(--foreground);
}
.game-provider {
    font-size: 0.85rem; color: var(--muted-foreground); margin: 0;
    letter-spacing: 0.05em;
}

/* ============================================
   PROVIDER LOGO TILE
   ============================================ */
.provider-grid {
    display: grid; gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (min-width: 768px) { .provider-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .provider-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); } }

.provider-tile {
    position: relative;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px var(--space-md);
    aspect-ratio: 1.4 / 1;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: var(--space-xs);
    transition: all var(--t) var(--ease);
}
.provider-tile img {
    max-height: 56px; width: auto; object-fit: contain;
    filter: brightness(1.2) saturate(0.4) opacity(0.85);
    transition: filter var(--t) var(--ease);
}
.provider-tile:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}
.provider-tile:hover img { filter: none; }
.provider-name {
    font-family: var(--font-display); font-size: 0.85rem;
    letter-spacing: 0.08em; color: var(--muted-foreground);
}
.provider-fan {
    position: absolute; width: 20px; height: 20px;
    border: 1px solid var(--gold); opacity: 0.7;
}
.provider-fan.deco-tl { top: 6px; left: 6px; border-right: none; border-bottom: none; }
.provider-fan.deco-tr { top: 6px; right: 6px; border-left: none; border-bottom: none; }
.provider-fan.deco-bl { bottom: 6px; left: 6px; border-right: none; border-top: none; }
.provider-fan.deco-br { bottom: 6px; right: 6px; border-left: none; border-top: none; }

/* ============================================
   BONUS CARD
   ============================================ */
.bonus-grid {
    display: grid; gap: var(--space-lg);
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px) { .bonus-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .bonus-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .bonus-grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.bonus-card {
    position: relative;
    background: linear-gradient(170deg, var(--card), var(--card-alt));
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex; flex-direction: column;
    gap: var(--space-md);
    box-shadow: var(--shadow-card);
}
@media (min-width: 1024px) { .bonus-card { padding: 40px; } }
.bonus-accent-gold { border-left-color: var(--gold); }
.bonus-accent-green { border-left-color: var(--accent); }
.bonus-accent-violet { border-left-color: var(--primary); }
.bonus-icon-wrap {
    width: 80px; height: 80px;
    background: var(--secondary);
    border: 1.5px solid var(--border-gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-gold);
}
.bonus-icon { font-size: 2.2rem; color: var(--gold-bright); }
.bonus-icon-wrap img { width: 60px; height: 60px; object-fit: contain; }
.bonus-title {
    font-family: var(--font-display); font-size: 1.5rem;
    color: var(--foreground); margin: 0; letter-spacing: 0.08em;
}
.bonus-amount {
    font-family: var(--font-accent);
    font-size: clamp(2.5rem, 5vw + 1rem, 3.5rem);
    line-height: 1; color: var(--gold-bright);
    text-shadow: 0 0 24px rgba(212, 175, 55, 0.5);
    display: flex; align-items: baseline; gap: var(--space-xs);
}
.amount-suffix {
    font-family: var(--font-display); font-size: 1.5rem;
    color: var(--gold);
}
.bonus-desc { color: var(--muted-foreground); margin: 0; font-size: 1rem; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 880px; margin: 0 auto; }
.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-bottom: 1px solid var(--gold);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--t) var(--ease);
}
.faq-item[open] { border-left: 3px solid var(--accent); }
.faq-question {
    list-style: none; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-display);
    font-size: 1.1rem; letter-spacing: 0.06em;
    color: var(--foreground);
    min-height: 56px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-icon {
    flex-shrink: 0; width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-bright);
    font-size: 1.5rem; font-family: var(--font-body); font-weight: 300;
    transition: transform var(--t) var(--ease);
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--muted-foreground); font-size: 1rem; line-height: 1.65;
}
.faq-answer p { margin: 0; }

/* ============================================
   PAYMENT METHOD CARD
   ============================================ */
.payment-grid {
    display: grid; gap: var(--space-md);
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 600px) { .payment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .payment-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.payment-card {
    position: relative;
    display: flex; align-items: center; gap: var(--space-md);
    background: linear-gradient(160deg, var(--card), var(--card-alt));
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: all var(--t) var(--ease);
}
.payment-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-violet); }
.payment-logo-wrap {
    width: 64px; height: 64px; flex-shrink: 0;
    background: var(--secondary);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    padding: 8px;
}
.payment-logo-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; }
.payment-info { flex: 1; min-width: 0; }
.payment-name {
    font-family: var(--font-display); font-size: 1.15rem;
    letter-spacing: 0.06em; color: var(--foreground); margin: 0 0 4px;
}
.payment-meta { font-size: 0.85rem; color: var(--muted-foreground); margin: 0; }
.payment-dot {
    position: absolute; top: 16px; right: 16px;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    background:
        linear-gradient(135deg, var(--primary-deep) 0%, #2a1456 40%, var(--background) 100%);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    padding: var(--space-2xl) var(--space-md);
    margin: var(--space-2xl) 0;
    text-align: center;
    overflow: clip;
}
@media (min-width: 1024px) { .cta-banner { padding: var(--space-3xl) var(--space-lg); } }
.cta-banner .deco-fan { width: 80px; height: 80px; }
.cta-inner { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: var(--space-md); }
.cta-mascot img { width: 180px; height: 180px; object-fit: contain; }
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw + 1rem, 2.75rem);
    letter-spacing: 0.08em; color: var(--foreground); margin: 0;
}
.cta-sub { color: var(--muted-foreground); font-size: 1.1rem; margin: 0; max-width: 600px; }
.cta-micro { font-size: 0.8rem; color: var(--muted-foreground); margin: 0; }

/* ============================================
   FEATURE ITEM
   ============================================ */
.feature-grid {
    display: grid; gap: var(--space-lg);
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 600px) { .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; } }
.feature-grid.cols-3 { grid-template-columns: minmax(0, 1fr); }
@media (min-width: 768px) { .feature-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.feature-item {
    background: linear-gradient(160deg, var(--card), var(--card-alt));
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: var(--space-sm);
    transition: all var(--t) var(--ease);
}
.feature-item:hover { border-color: var(--gold); transform: translateY(-4px); }
.feature-icon-wrap {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--primary-deep);
    border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: var(--space-sm);
    box-shadow: var(--shadow-gold);
}
.feature-icon { font-size: 1.75rem; color: var(--gold-bright); }
.feature-icon-wrap img { width: 36px; height: 36px; object-fit: contain; }
.feature-title {
    font-family: var(--font-display); font-size: 1.25rem;
    letter-spacing: 0.08em; color: var(--foreground); margin: 0;
}
.feature-desc {
    color: var(--muted-foreground); font-size: 1rem;
    max-width: 280px; margin: 0;
}

/* ============================================
   ENGAGEMENT PATTERNS
   ============================================ */
.tldr-box {
    background: var(--card);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
}
.tldr-box .tldr-label {
    font-family: var(--font-accent);
    color: var(--gold); letter-spacing: 0.2em;
    text-transform: uppercase; font-size: 0.85rem;
    display: block; margin-bottom: var(--space-sm);
}
.callout {
    background: var(--secondary);
    border: 1px solid var(--border-gold);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
}
.stat-highlight {
    text-align: center; padding: var(--space-lg);
    background: var(--card); border-radius: var(--radius-md);
    border: 1px solid var(--border-gold);
}
.stat-highlight .stat-number {
    font-family: var(--font-accent);
    font-size: clamp(2.5rem, 4vw + 1rem, 3.5rem);
    color: var(--gold-bright); display: block; line-height: 1;
    text-shadow: 0 0 18px rgba(212, 175, 55, 0.4);
}
.stat-highlight .stat-label {
    font-family: var(--font-display);
    color: var(--muted-foreground); letter-spacing: 0.1em;
    text-transform: uppercase; font-size: 0.85rem;
    margin-top: var(--space-sm); display: block;
}
.pull-quote {
    border-left: 4px solid var(--gold);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-xl) 0;
    font-family: var(--font-display);
    font-size: 1.5rem; line-height: 1.4;
    color: var(--foreground); font-style: italic;
}
.pull-quote cite {
    display: block; font-style: normal;
    font-family: var(--font-body); font-size: 0.95rem;
    color: var(--muted-foreground); margin-top: var(--space-sm);
}

/* Comparison Table */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.compare-table thead {
    background: var(--primary-deep);
}
.compare-table th, .compare-table td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.compare-table th {
    font-family: var(--font-display);
    color: var(--foreground);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.compare-table td { color: var(--muted-foreground); }
.compare-table .recommended { background: rgba(52, 211, 153, 0.08); color: var(--foreground); }
.compare-table tbody tr:hover { background: var(--card-alt); }

/* Trust badges */
.trust-row {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: var(--space-lg); padding: var(--space-lg) 0;
}
.trust-row .badge-chip {
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--border-gold);
    border-radius: 999px;
    font-family: var(--font-display);
    letter-spacing: 0.1em; font-size: 0.85rem;
    color: var(--gold-bright);
    background: var(--secondary);
}

/* Winners ticker */
.winners-grid {
    display: grid; gap: var(--space-md);
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 600px) { .winners-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .winners-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.winner-card {
    display: flex; align-items: center; gap: var(--space-md);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
}
.winner-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--primary-deep); border: 1.5px solid var(--gold);
    flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); color: var(--gold-bright);
}
.winner-info { flex: 1; min-width: 0; }
.winner-name { font-family: var(--font-display); color: var(--foreground); margin: 0; font-size: 1rem; }
.winner-game { font-size: 0.85rem; color: var(--muted-foreground); margin: 0; }
.winner-amount {
    font-family: var(--font-accent); color: var(--gold-bright);
    font-size: 1.1rem; flex-shrink: 0;
}

/* Two-column block */
.two-col {
    display: grid; gap: var(--space-xl);
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
}
@media (min-width: 1024px) { .two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.two-col img { border-radius: var(--radius-lg); box-shadow: var(--shadow-violet); }

/* Anchor cards (sitemap-on-home) */
.anchor-grid {
    display: grid; gap: var(--space-md);
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 600px) { .anchor-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .anchor-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.anchor-card {
    background: var(--card); border: 1px solid var(--border-gold);
    border-radius: var(--radius-md); padding: var(--space-lg);
    display: block; color: var(--foreground);
    transition: all var(--t) var(--ease);
}
.anchor-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow-gold); color: var(--foreground); }
.anchor-card h3 { color: var(--gold-bright); margin: 0 0 var(--space-sm); }
.anchor-card p { color: var(--muted-foreground); margin: 0; font-size: 0.95rem; }

/* Filter tabs */
.filter-tabs {
    display: flex; gap: var(--space-sm); flex-wrap: wrap;
    justify-content: center; margin-bottom: var(--space-xl);
}
.filter-tabs .tab-btn {
    padding: var(--space-sm) var(--space-lg);
    background: var(--card); border: 1px solid var(--border-gold);
    border-radius: 999px; color: var(--foreground);
    font-family: var(--font-display); letter-spacing: 0.08em;
    cursor: pointer; transition: all var(--t) var(--ease);
}
.filter-tabs .tab-btn:hover, .filter-tabs .tab-btn.active {
    background: var(--primary-deep); border-color: var(--gold); color: var(--gold-bright);
}

/* Live widget (sports) */
.live-widget {
    background: linear-gradient(160deg, var(--card), var(--card-alt));
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}
.live-tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 10px; border-radius: 999px;
    background: #b8132f; color: #fff;
    font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
    font-weight: 700;
}
.live-tag::before {
    content: ""; width: 8px; height: 8px; border-radius: 50%;
    background: #fff; animation: pulse-dot 1.4s infinite;
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.match-row {
    display: flex; align-items: center; justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border);
}
.match-row:last-child { border-bottom: none; }
.match-teams { font-family: var(--font-display); font-size: 1.05rem; color: var(--foreground); }
.match-odds { display: flex; gap: var(--space-sm); }
.odd-chip {
    padding: var(--space-xs) var(--space-md);
    background: var(--secondary); border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm); color: var(--gold-bright);
    font-family: var(--font-accent); font-size: 1.05rem;
}

/* Footer */
.site-footer {
    margin-top: var(--space-3xl);
    background: linear-gradient(180deg, var(--background-alt), #0d0818);
    border-top: 2px solid var(--border-gold);
    padding: var(--space-2xl) 0 var(--space-md);
}
.footer-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid; gap: var(--space-xl);
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px) { .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0 var(--space-lg); } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr; } }
.footer-brand {
    display: flex; align-items: center; gap: var(--space-sm);
    margin-bottom: var(--space-md);
}
.footer-brand .logo {
    width: 44px; height: 44px; border-radius: 50%;
    border: 1.5px solid var(--gold); padding: 2px; background: var(--secondary);
}
.footer-tagline { color: var(--muted-foreground); font-size: 0.95rem; margin-bottom: var(--space-md); }
.license-row { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.license-badge, .age-badge {
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    letter-spacing: 0.1em; font-size: 0.85rem;
    border: 1px solid var(--gold); color: var(--gold-bright);
    background: var(--secondary);
}
.age-badge { color: var(--accent); border-color: var(--accent); }
.footer-title {
    font-family: var(--font-display); font-size: 1.1rem;
    color: var(--gold-bright); letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-links a { color: var(--muted-foreground); }
.footer-links a:hover { color: var(--gold-bright); }
.footer-text { color: var(--muted-foreground); font-size: 0.9rem; }
.payment-logos { display: flex; flex-wrap: wrap; gap: var(--space-xs); }
.pay-chip {
    padding: 4px 10px; border-radius: var(--radius-sm);
    background: var(--secondary); border: 1px solid var(--border);
    color: var(--muted-foreground); font-size: 0.8rem;
    font-family: var(--font-display); letter-spacing: 0.05em;
}
.footer-bottom {
    max-width: 1280px; margin: var(--space-xl) auto 0;
    padding: var(--space-md) var(--space-md) 0;
    border-top: 1px solid var(--border);
    text-align: center; color: var(--muted-foreground); font-size: 0.85rem;
}

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

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

/* Focus visible */
:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: 3px;
}