/* ============================================
   BIZZO CASINO - DESIGN SYSTEM
   Premium violet + gold, glassmorphism, cinematic
   ============================================ */

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

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

body {
    margin: 0;
    font-family: "Manrope", system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    background-image:
        radial-gradient(ellipse at 20% 0%, rgba(168, 85, 247, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 40%, rgba(236, 72, 153, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(245, 194, 66, 0.08) 0%, transparent 50%),
        var(--background);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

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

.table-scroll { max-width: 100%; overflow-x: auto; min-width: 0; }

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

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

section { overflow: clip; position: relative; }

a { color: var(--secondary); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--secondary-bright); }

ul, ol { margin: 0; padding: 0; }
li { list-style: none; }

/* ============================================
   TYPOGRAPHY
   Unbounded display + Manrope body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: "Unbounded", "Manrope", sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 0.6em;
    color: var(--foreground);
}

h1 {
    font-size: clamp(2.4rem, 6vw + 1rem, 4.5rem);
    font-weight: 900;
}
h2 { font-size: clamp(1.8rem, 3.5vw + 0.8rem, 3.25rem); font-weight: 800; }
h3 { font-size: clamp(1.25rem, 1.5vw + 0.8rem, 2rem); font-weight: 700; }
h4 { font-size: clamp(1.1rem, 1vw + 0.8rem, 1.375rem); font-weight: 700; }

p { margin: 0 0 1.25em; color: var(--foreground); }
p + p { margin-top: 0; }

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

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.display-number {
    font-family: "Unbounded", sans-serif;
    font-size: clamp(3.5rem, 12vw, 6rem);
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.04em;
    line-height: 1;
}

.eyebrow {
    display: inline-block;
    font-family: "Unbounded", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--secondary);
    margin-bottom: 1rem;
    padding: 0.4rem 0.9rem;
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    background: var(--glass-bg);
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    padding: 0.75rem 1rem;
    background: var(--secondary);
    color: var(--secondary-foreground);
    border-radius: 8px;
    z-index: 10000;
    font-weight: 700;
}
.skip-link:focus { top: 1rem; }

/* ============================================
   LAYOUT - Container & sections
   ============================================ */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

@media (min-width: 768px) {
    .container { padding: 0 2rem; }
}

.section {
    padding: 4.5rem 0;
    position: relative;
}

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

.section-sm { padding: 3rem 0; }
.section-header { text-align: center; max-width: 780px; margin: 0 auto 3rem; }

/* ============================================
   BUTTONS - Primary gold CTA + variants
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    min-height: 48px;
    font-family: "Unbounded", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    border-radius: 999px;
    border: 1.5px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--secondary-foreground);
    box-shadow: 0 6px 24px rgba(245, 194, 66, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(245, 194, 66, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    color: var(--secondary-foreground);
}

.btn-ghost {
    background: rgba(245, 234, 213, 0.06);
    border-color: var(--glass-border);
    color: var(--foreground);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.btn-ghost:hover {
    background: rgba(245, 234, 213, 0.12);
    border-color: var(--glass-border-strong);
    color: var(--secondary-bright);
}

.btn-lg { padding: 1.1rem 2.25rem; min-height: 56px; font-size: 1.05rem; }
.btn-sm { padding: 0.65rem 1.1rem; min-height: 40px; font-size: 0.85rem; }

.btn-pulse {
    animation: pulseGold 3s ease-in-out infinite;
}

@keyframes pulseGold {
    0%, 100% { box-shadow: 0 6px 24px rgba(245, 194, 66, 0.35), 0 0 0 0 rgba(245, 194, 66, 0.5); }
    50% { box-shadow: 0 12px 40px rgba(245, 194, 66, 0.55), 0 0 0 16px rgba(245, 194, 66, 0); }
}

/* ============================================
   HEADER - Fixed glass, mobile drawer
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 10, 38, 0.85);
    border-bottom: 1px solid var(--glass-border);
}

@media (min-width: 1024px) {
    .site-header {
        background: rgba(26, 10, 38, 0.6);
        backdrop-filter: blur(18px) saturate(140%);
        -webkit-backdrop-filter: blur(18px) saturate(140%);
    }
}

.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 68px;
}

@media (min-width: 768px) {
    .header-inner { padding: 1rem 2rem; }
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: "Unbounded", sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--foreground);
    letter-spacing: -0.02em;
}
.brand:hover { color: var(--foreground); }
.brand .logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--violet-gradient);
    border: 1px solid var(--glass-border-strong);
    padding: 4px;
}
.brand-name { white-space: nowrap; }
.brand-accent { color: var(--secondary); }

.nav-toggle {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer (default hidden) */
.main-nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    overflow-y: auto;
    padding: 1.5rem 1.25rem 2rem;
    border-top: 1px solid var(--glass-border);
}

.main-nav.is-open { display: flex; flex-direction: column; gap: 1.5rem; }

.nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
}
.nav-list a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 1rem;
    font-family: "Unbounded", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--foreground);
    border-radius: 12px;
    border: 1px solid transparent;
    transition: background 0.2s, border-color 0.2s;
}
.nav-list a:hover {
    background: var(--glass-bg);
    border-color: var(--glass-border);
    color: var(--secondary-bright);
}

.nav-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

@media (min-width: 1024px) {
    .nav-toggle { display: none; }
    .main-nav {
        display: flex !important;
        position: static;
        background: transparent;
        padding: 0;
        overflow: visible;
        border: none;
        align-items: center;
        flex: 1;
        justify-content: flex-end;
        gap: 2rem;
    }
    .nav-list {
        flex-direction: row;
        gap: 0.25rem;
        align-items: center;
    }
    .nav-list a {
        min-height: 40px;
        padding: 0.5rem 0.9rem;
        font-size: 0.9rem;
    }
    .nav-cta {
        flex-direction: row;
        padding: 0;
        border: none;
        gap: 0.6rem;
    }
}

/* ============================================
   MAIN - offset for fixed header
   ============================================ */
main { padding-top: 68px; }

/* ============================================
   GLASS CARDS - Glassmorphism foundation
   ============================================ */
.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.glass-card {
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

@media (min-width: 768px) {
    .glass-card { padding: 2rem; }
}

.glass-card:hover {
    transform: translateY(-6px);
    border-color: var(--glass-border-strong);
    box-shadow: 0 20px 60px rgba(245, 194, 66, 0.18), 0 0 0 1px var(--glass-border-strong);
}

/* ============================================
   GAME CARD COMPONENT
   ============================================ */
.game-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.game-card:hover {
    transform: translateY(-6px);
    border-color: var(--glass-border-strong);
    box-shadow: 0 16px 48px rgba(245, 194, 66, 0.22);
}
.game-card-media {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: var(--violet-gradient);
}
.game-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.game-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: var(--violet-gradient);
}
.game-card-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--gold-gradient);
    color: var(--secondary-foreground);
    font-family: "Unbounded", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.game-card-tag {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(26, 10, 38, 0.85);
    color: var(--secondary-bright);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
}
.game-card-body {
    padding: 1.25rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}
.game-card-title {
    font-family: "Unbounded", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--foreground);
}
.game-card-desc {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    margin: 0;
    flex: 1;
}
.game-card-cta { margin-top: 0.5rem; align-self: flex-start; }

/* Game card grid */
.card-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.75rem; }
}
@media (min-width: 1024px) {
    .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; }
}
.card-grid-4 { /* four columns on desktop */ }
@media (min-width: 1200px) {
    .card-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    max-width: 860px;
    margin: 0 auto;
}
.faq-intro { color: var(--muted-foreground); text-align: center; margin-bottom: 1rem; }
.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-left: 3px solid var(--secondary);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] {
    border-color: var(--glass-border-strong);
    box-shadow: 0 10px 30px rgba(245, 194, 66, 0.12);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.4rem;
    cursor: pointer;
    list-style: none;
    font-family: "Unbounded", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    min-height: 56px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-q-text { flex: 1; }
.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--secondary-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
    padding: 0 1.4rem 1.4rem 1.4rem;
    background: rgba(15, 6, 24, 0.4);
    border-top: 1px solid var(--border);
}
.faq-answer p { margin: 1rem 0 0; color: var(--muted-foreground); }
.faq-answer p:first-child { margin-top: 1rem; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    margin: 5rem auto;
    max-width: 1180px;
    padding: 3rem 1.5rem;
    border-radius: 32px;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(168, 85, 247, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 60%, rgba(236, 72, 153, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #2a1538 0%, #1a0a26 100%);
    border: 1px solid var(--glass-border-strong);
    overflow: hidden;
    isolation: isolate;
}
@media (min-width: 768px) {
    .cta-banner { padding: 4.5rem 3rem; }
}
.cta-banner-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}
@media (min-width: 900px) {
    .cta-banner-inner {
        flex-direction: row;
        text-align: left;
        justify-content: center;
        gap: 3rem;
    }
}
.cta-banner-mascot {
    position: relative;
    width: 180px;
    height: 180px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mascot-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(245, 194, 66, 0.45) 0%, transparent 65%);
    filter: blur(30px);
    animation: floatGlow 4s ease-in-out infinite;
}
.mascot-emoji {
    position: relative;
    font-size: 7rem;
    filter: drop-shadow(0 10px 30px rgba(245, 194, 66, 0.5));
    animation: mascotBob 4s ease-in-out infinite;
}
@keyframes mascotBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes floatGlow { 0%, 100% { opacity: 0.6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.1); } }

.cta-banner-content { max-width: 560px; }
.cta-bonus-chip {
    display: inline-block;
    padding: 0.45rem 1rem;
    background: rgba(245, 194, 66, 0.15);
    border: 1px solid var(--secondary);
    color: var(--secondary-bright);
    font-family: "Unbounded", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 999px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.cta-banner-heading {
    font-size: clamp(1.75rem, 3.5vw + 0.5rem, 3rem);
    margin-bottom: 1rem;
}
.cta-banner-sub {
    color: var(--muted-foreground);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}
.cta-banner-micro {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--muted-foreground);
    opacity: 0.8;
}

.cta-banner-coins {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.coin {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold-gradient);
    box-shadow: 0 0 20px rgba(245, 194, 66, 0.6);
    animation: coinFloat 6s ease-in-out infinite;
}
.coin.c1 { top: 15%; left: 8%; animation-delay: 0s; }
.coin.c2 { top: 70%; left: 15%; width: 12px; height: 12px; animation-delay: 1.2s; }
.coin.c3 { top: 25%; right: 10%; width: 14px; height: 14px; animation-delay: 2.4s; }
.coin.c4 { top: 80%; right: 18%; animation-delay: 3.6s; }
.coin.c5 { top: 45%; right: 5%; width: 10px; height: 10px; animation-delay: 0.6s; }
@keyframes coinFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-25px) rotate(180deg); opacity: 1; }
}

/* ============================================
   INFO TABLE
   ============================================ */
.info-table-wrap {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 1rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    max-width: 100%;
    overflow: hidden;
}
@media (min-width: 768px) {
    .info-table-wrap { padding: 1.5rem; }
}
.info-table-caption {
    font-family: "Unbounded", sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--secondary);
    text-align: center;
    margin: 0.5rem 0 1rem;
}
.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.info-table thead {
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.5), rgba(61, 27, 71, 0.5));
}
.info-table th {
    padding: 1rem 1.1rem;
    text-align: left;
    font-family: "Unbounded", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--glass-border);
}
.info-table td {
    padding: 1rem 1.1rem;
    border-bottom: 1px solid rgba(74, 46, 92, 0.4);
    color: var(--foreground);
}
.info-table tbody tr:nth-child(even) { background: rgba(61, 27, 71, 0.35); }
.info-table tbody tr:hover { background: rgba(168, 85, 247, 0.12); }
.info-table tr.is-highlight {
    background: rgba(245, 194, 66, 0.12) !important;
    box-shadow: inset 3px 0 0 var(--secondary);
}
.info-table tr.is-highlight td { color: var(--secondary-bright); font-weight: 600; }

/* Mobile: stack table as cards */
@media (max-width: 720px) {
    .info-table thead { display: none; }
    .info-table, .info-table tbody, .info-table tr, .info-table td { display: block; width: 100%; }
    .info-table tr {
        border: 1px solid var(--glass-border);
        border-radius: 14px;
        margin-bottom: 0.9rem;
        padding: 0.5rem 0.75rem;
        background: rgba(42, 21, 56, 0.5);
    }
    .info-table tbody tr:nth-child(even) { background: rgba(42, 21, 56, 0.5); }
    .info-table td {
        border-bottom: 1px dashed var(--border);
        padding: 0.75rem 0.5rem;
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        text-align: right;
    }
    .info-table td:last-child { border-bottom: none; }
    .info-table td::before {
        content: attr(data-label);
        font-family: "Unbounded", sans-serif;
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: var(--secondary);
        text-align: left;
        flex-shrink: 0;
    }
}

/* ============================================
   PROVIDER STRIP
   ============================================ */
.provider-strip {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 1.5rem 1rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.provider-strip-label {
    font-family: "Unbounded", sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary);
    text-align: center;
    margin: 0 0 1rem;
}
.provider-strip-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}
@media (min-width: 900px) {
    .provider-strip-track {
        justify-content: center;
        flex-wrap: wrap;
        overflow: visible;
    }
}
.provider-item {
    flex-shrink: 0;
    scroll-snap-align: start;
    min-width: 120px;
    min-height: 60px;
    padding: 0.8rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 6, 24, 0.5);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: border-color 0.2s, background 0.2s;
}
.provider-item:hover {
    border-color: var(--secondary);
    background: rgba(245, 194, 66, 0.08);
}
.provider-name {
    font-family: "Unbounded", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted-foreground);
    white-space: nowrap;
    transition: color 0.2s;
}
.provider-item:hover .provider-name { color: var(--secondary-bright); }

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
    position: relative;
    padding: 3rem 0 4rem;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: clip;
}
@media (min-width: 1024px) {
    .hero { padding: 5rem 0 6rem; min-height: 90vh; }
}
.hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--hero-gradient);
}
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(168, 85, 247, 0.35) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(236, 72, 153, 0.2) 0%, transparent 50%);
}
.hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.hero-title {
    font-size: clamp(2.25rem, 5vw + 1rem, 4.5rem);
    margin-bottom: 1.25rem;
}
.hero-sub {
    font-size: 1.1rem;
    color: var(--muted-foreground);
    max-width: 640px;
    margin: 0 auto 2rem;
}
.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.hero-bonus-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.hero-bonus-chip {
    padding: 0.5rem 1rem;
    background: rgba(245, 194, 66, 0.12);
    border: 1px solid var(--secondary);
    color: var(--secondary-bright);
    font-family: "Unbounded", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 999px;
}

/* ============================================
   TRUST BADGES & MISC
   ============================================ */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.trust-row .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted-foreground);
    font-family: "Unbounded", sans-serif;
}
.badge-age {
    background: #8a0f4a !important;
    color: #ffffff !important;
    border-color: transparent !important;
}
.trust-row .badge-age { color: #ffffff !important; }

/* ============================================
   STAT BLOCKS
   ============================================ */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
@media (min-width: 768px) { .stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; } }
.stat {
    padding: 1.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.stat-number {
    display: block;
    font-family: "Unbounded", sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   CALLOUT / TL;DR / PULL QUOTE
   ============================================ */
.tldr {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(245, 194, 66, 0.08));
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--secondary);
    border-radius: 18px;
    margin: 2rem 0;
}
.tldr-label {
    font-family: "Unbounded", sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--secondary);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}
.callout {
    padding: 1.25rem 1.5rem;
    background: rgba(245, 194, 66, 0.08);
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--accent);
    border-radius: 14px;
    margin: 1.5rem 0;
}
.callout-title {
    font-family: "Unbounded", sans-serif;
    font-weight: 700;
    color: var(--secondary-bright);
    margin: 0 0 0.5rem;
}
.pull-quote {
    margin: 2.5rem 0;
    padding: 2rem;
    font-family: "Unbounded", sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.4;
    border-left: 4px solid var(--secondary);
    background: var(--glass-bg);
    border-radius: 0 20px 20px 0;
    color: var(--foreground);
}
.pull-quote cite {
    display: block;
    margin-top: 1rem;
    font-family: "Manrope", sans-serif;
    font-size: 0.85rem;
    font-style: normal;
    color: var(--secondary);
    font-weight: 500;
}

/* ============================================
   SEO LONGFORM (article body)
   ============================================ */
.longform {
    max-width: 860px;
    margin: 0 auto;
}
.longform h2 { margin-top: 3rem; }
.longform h3 { margin-top: 2rem; color: var(--secondary-bright); }
.longform p, .longform li { font-size: 1rem; line-height: 1.75; color: var(--muted-foreground); }
.longform li { list-style: disc; margin-left: 1.25rem; margin-bottom: 0.5rem; }
.longform ul, .longform ol { margin: 0 0 1.5rem 0; padding-left: 0.5rem; }
.longform ol li { list-style: decimal; }
.longform a {
    color: var(--secondary-bright);
    text-decoration: underline;
    text-decoration-color: rgba(245, 194, 66, 0.4);
    text-underline-offset: 3px;
}
.longform a:hover { text-decoration-color: var(--secondary); }
.longform strong { color: var(--foreground); }

/* Inline prose links (outside .longform) must be distinguishable */
main p a, main li a, .text-center a {
    text-decoration: underline;
    text-decoration-color: rgba(245, 194, 66, 0.5);
    text-underline-offset: 3px;
}
main p a:hover, main li a:hover, .text-center a:hover {
    text-decoration-color: var(--secondary);
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    padding: 1rem 0 0;
    font-size: 0.85rem;
}
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.breadcrumb li { color: var(--muted-foreground); }
.breadcrumb li + li::before { content: "›"; margin-right: 0.5rem; color: var(--secondary); }
.breadcrumb a { color: var(--muted-foreground); }
.breadcrumb a:hover { color: var(--secondary); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    margin-top: 4rem;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 6, 24, 0.8) 30%, #0f0618 100%);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
}
.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
@media (min-width: 768px) { .footer-inner { padding: 0 2rem; } }
.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 2rem; } }
.footer-col h3 {
    font-family: "Unbounded", sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--secondary);
    margin: 0 0 1rem;
    font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { color: var(--muted-foreground); font-size: 0.95rem; }
.footer-col a:hover { color: var(--secondary-bright); }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-tagline { color: var(--muted-foreground); font-size: 0.9rem; margin: 0 0 1rem; max-width: 380px; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.trust-badges .badge {
    padding: 0.4rem 0.75rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: "Unbounded", sans-serif;
    color: var(--muted-foreground);
}

.payment-logos { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pay-logo {
    padding: 0.4rem 0.7rem;
    background: var(--glass-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: "Unbounded", sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--muted-foreground);
}

.footer-legal {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: var(--muted-foreground);
}
.footer-legal .responsible { margin-bottom: 0.75rem; }
.footer-legal strong { color: var(--secondary); }
.copyright { margin: 0; opacity: 0.7; }

/* ============================================
   ANIMATIONS - scroll reveal
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll { opacity: 1; transform: none; transition: none; }
    .btn-pulse, .mascot-emoji, .mascot-glow, .coin { animation: none; }
    html { scroll-behavior: auto; }
}

/* ============================================
   HOME - Hero visual, bison stage, VIP ladder, live
   ============================================ */
.hero-home .hero-inner { padding: 1rem 0; }
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}
@media (min-width: 900px) {
    .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; text-align: left; }
    .hero-home .hero-cta-row, .hero-home .hero-bonus-row, .hero-home .trust-row { justify-content: flex-start; }
    .hero-home .hero-sub { margin-left: 0; margin-right: 0; }
}
.hero-copy { position: relative; z-index: 3; }
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 380px;
}

.bison-stage {
    position: relative;
    width: min(100%, 520px);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bison-glow {
    position: absolute;
    inset: 10%;
    background: radial-gradient(circle, rgba(245, 194, 66, 0.45) 0%, rgba(168, 85, 247, 0.25) 40%, transparent 70%);
    filter: blur(40px);
    animation: pulseBison 5s ease-in-out infinite;
    z-index: 0;
}
@keyframes pulseBison {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}
.bison-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(245, 194, 66, 0.3);
    z-index: 1;
}
.bison-ring.ring-1 {
    inset: 5%;
    border-style: dashed;
    animation: spinSlow 40s linear infinite;
}
.bison-ring.ring-2 {
    inset: 15%;
    border-color: rgba(168, 85, 247, 0.35);
    animation: spinSlow 30s linear infinite reverse;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

.bison-img {
    position: relative;
    z-index: 2;
    width: 85%;
    height: 85%;
    object-fit: contain;
    animation: bisonFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(168, 85, 247, 0.5));
}
@keyframes bisonFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}
.float-coin {
    position: absolute;
    font-size: 2rem;
    z-index: 3;
    filter: drop-shadow(0 6px 12px rgba(245, 194, 66, 0.6));
    animation: coinOrbit 5s ease-in-out infinite;
}
.float-coin.fc1 { top: 12%; left: 8%; animation-delay: 0s; }
.float-coin.fc2 { top: 18%; right: 10%; animation-delay: 1.25s; }
.float-coin.fc3 { bottom: 14%; left: 12%; animation-delay: 2.5s; }
.float-coin.fc4 { bottom: 20%; right: 6%; animation-delay: 3.75s; }
@keyframes coinOrbit {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.9; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.hero-particles .p {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-gradient);
    box-shadow: 0 0 15px rgba(245, 194, 66, 0.7);
    animation: particleDrift 10s ease-in-out infinite;
}
.hero-particles .p1 { top: 10%; left: 5%; animation-delay: 0s; }
.hero-particles .p2 { top: 25%; left: 20%; width: 5px; height: 5px; animation-delay: 1.1s; }
.hero-particles .p3 { top: 60%; left: 10%; width: 6px; height: 6px; animation-delay: 2.2s; }
.hero-particles .p4 { top: 80%; left: 25%; animation-delay: 3.3s; }
.hero-particles .p5 { top: 15%; right: 8%; animation-delay: 4.4s; }
.hero-particles .p6 { top: 40%; right: 20%; width: 5px; height: 5px; animation-delay: 5.5s; }
.hero-particles .p7 { top: 70%; right: 5%; width: 7px; height: 7px; animation-delay: 6.6s; }
.hero-particles .p8 { top: 90%; right: 15%; animation-delay: 7.7s; }
.hero-particles .p9 { top: 35%; left: 50%; width: 4px; height: 4px; animation-delay: 8.8s; }
@keyframes particleDrift {
    0%, 100% { transform: translate(0, 0); opacity: 0.4; }
    50% { transform: translate(20px, -30px); opacity: 1; }
}

/* Live casino visual */
.live-visual {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}
.live-visual img { width: 100%; height: auto; object-fit: contain; }
.live-dot {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    background: rgba(236, 72, 153, 0.18);
    border: 1px solid var(--accent);
    color: #fff;
    font-family: "Unbounded", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.live-dot .dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: dotBlink 1.5s ease-in-out infinite;
}
@keyframes dotBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* VIP ladder */
.vip-ladder {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    max-width: 720px;
    margin: 0 auto;
}
@media (min-width: 640px) { .vip-ladder { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .vip-ladder { grid-template-columns: repeat(5, minmax(0, 1fr)); max-width: none; } }
.vip-tier {
    padding: 1.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s, border-color 0.3s;
}
.vip-tier:hover { transform: translateY(-4px); border-color: var(--glass-border-strong); }
.vip-lvl {
    font-family: "Unbounded", sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.vip-name {
    font-family: "Unbounded", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--foreground);
}
.vip-reward {
    font-size: 0.8rem;
    color: var(--muted-foreground);
}
.vip-tier.is-top {
    background: linear-gradient(135deg, rgba(245, 194, 66, 0.2), rgba(168, 85, 247, 0.15));
    border-color: var(--secondary);
    box-shadow: 0 0 40px rgba(245, 194, 66, 0.25);
}
.vip-tier.is-top .vip-reward { color: var(--secondary-bright); font-weight: 600; }

/* ============================================
   UNLOCK SCREEN - transitional loader page
   ============================================ */
.unlock-screen {
    position: fixed;
    inset: 0;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    background: var(--hero-gradient);
    overflow: hidden;
}
.unlock-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(168, 85, 247, 0.4) 0%, transparent 55%),
        radial-gradient(circle at 70% 70%, rgba(236, 72, 153, 0.22) 0%, transparent 55%),
        radial-gradient(circle at 50% 100%, rgba(245, 194, 66, 0.15) 0%, transparent 60%);
    z-index: 0;
}
.unlock-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.unlock-particles .p {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold-gradient);
    box-shadow: 0 0 18px rgba(245, 194, 66, 0.7);
    animation: particleDrift 9s ease-in-out infinite;
}
.unlock-particles .p1 { top: 12%; left: 10%; animation-delay: 0s; }
.unlock-particles .p2 { top: 22%; right: 14%; width: 6px; height: 6px; animation-delay: 1s; }
.unlock-particles .p3 { top: 70%; left: 8%; width: 8px; height: 8px; animation-delay: 2s; }
.unlock-particles .p4 { top: 80%; right: 12%; animation-delay: 3s; }
.unlock-particles .p5 { top: 40%; left: 20%; width: 5px; height: 5px; animation-delay: 4s; }
.unlock-particles .p6 { top: 55%; right: 22%; width: 7px; height: 7px; animation-delay: 5s; }
.unlock-particles .p7 { top: 15%; left: 55%; width: 5px; height: 5px; animation-delay: 6s; }
.unlock-particles .p8 { top: 85%; left: 50%; width: 6px; height: 6px; animation-delay: 7s; }

.unlock-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 480px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.unlock-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: "Unbounded", sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}
.unlock-logo-wrap {
    display: inline-flex;
    width: 52px;
    height: 52px;
    padding: 5px;
    border-radius: 14px;
    background: var(--violet-gradient);
    border: 1px solid var(--glass-border-strong);
}
.unlock-logo-wrap img { width: 100%; height: 100%; object-fit: contain; }

.unlock-mascot {
    position: relative;
    width: min(260px, 60vw);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem 0;
}
.unlock-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(245, 194, 66, 0.5) 0%, rgba(168, 85, 247, 0.3) 45%, transparent 70%);
    filter: blur(35px);
    animation: pulseBison 4s ease-in-out infinite;
    z-index: 0;
}
.unlock-ring {
    position: absolute;
    inset: 5%;
    border-radius: 50%;
    border: 1px dashed rgba(245, 194, 66, 0.4);
    animation: spinSlow 25s linear infinite;
    z-index: 1;
}
.unlock-mascot img {
    position: relative;
    z-index: 2;
    width: 88%;
    height: 88%;
    object-fit: contain;
    filter: drop-shadow(0 18px 35px rgba(168, 85, 247, 0.55));
    animation: bisonFloat 5s ease-in-out infinite;
}

.unlock-title {
    font-family: "Unbounded", sans-serif;
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
    font-weight: 800;
    margin: 0.5rem 0 0.25rem;
    color: var(--foreground);
    letter-spacing: -0.02em;
}
.unlock-dots { display: inline-block; }
.unlock-dots span {
    display: inline-block;
    color: var(--secondary);
    animation: dotWave 1.4s ease-in-out infinite;
}
.unlock-dots span:nth-child(2) { animation-delay: 0.2s; }
.unlock-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotWave {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

.unlock-sub {
    color: var(--muted-foreground);
    font-size: 1rem;
    margin: 0 0 0.5rem;
}

.unlock-loader {
    display: inline-flex;
    gap: 0.6rem;
    padding: 0.5rem 0;
}
.unlock-loader span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold-gradient);
    box-shadow: 0 0 12px rgba(245, 194, 66, 0.6);
    animation: loaderBounce 1.2s ease-in-out infinite;
}
.unlock-loader span:nth-child(2) { animation-delay: 0.15s; }
.unlock-loader span:nth-child(3) { animation-delay: 0.3s; }
@keyframes loaderBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
    40% { transform: scale(1.1); opacity: 1; }
}

.unlock-micro {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    opacity: 0.75;
    margin: 1rem 0 0;
    letter-spacing: 0.02em;
}

@media (prefers-reduced-motion: reduce) {
    .unlock-particles .p,
    .unlock-glow,
    .unlock-ring,
    .unlock-mascot img,
    .unlock-dots span,
    .unlock-loader span { animation: none; }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 1rem; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }

.two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}
@media (min-width: 900px) {
    .two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 3rem; }
}

/* Focus styles */
:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--background-deep); }
::-webkit-scrollbar-thumb { background: var(--primary-deep); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }