/*
 * Vavada Casino - Design System
 * Dark purple-blue heist theme with neon gold accents.
 * Single dark theme (no light/dark toggle).
 */

:root {
    /* Background tones */
    --background: #0f0c29;
    --background-alt: #15123d;
    --foreground: #f8fafc;
    --card: #15123d;
    --card-foreground: #f8fafc;
    --popover: #15123d;
    --popover-foreground: #f8fafc;

    /* Brand */
    --primary: #818cf8;
    --primary-foreground: #0f0c29;
    --secondary: #1e1b4b;
    --secondary-foreground: #e2e8f0;

    /* Neutrals */
    --muted: #272354;
    --muted-foreground: #94a3b8;

    /* Accent - electric gold */
    --accent: #fbbf24;
    --accent-foreground: #15123d;
    --accent-glow: rgba(251, 191, 36, 0.4);

    /* Semantic */
    --destructive: #f43f5e;
    --destructive-foreground: #000000;
    --border: #312e5f;
    --input: #1e1b4b;
    --ring: #818cf8;

    /* Typography */
    --font-display: "Unbounded", sans-serif;
    --font-body: "Inter", sans-serif;

    /* Spacing scale (8px grid) */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 80px;

    /* Radii */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px var(--accent-glow);
    --shadow-glow-primary: 0 0 20px rgba(129, 140, 248, 0.3);

    /* Transitions */
    --transition-fast: 150ms ease-out;
    --transition-base: 250ms ease-out;
    --transition-slow: 400ms ease-out;

    /* Layout */
    --max-width: 1200px;
    --header-height: 64px;
}

/* ============================================
   RESET & BASE
   ============================================ */

*,
*::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, [class*="code"] {
    max-width: 100%;
    overflow-x: auto;
}

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

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

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

section {
    overflow: clip;
}

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

body {
    margin: 0;
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 var(--space-md);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 28px;
    font-weight: 800;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

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

@media (min-width: 1024px) {
    h1 { font-size: 42px; }
    h2 { font-size: 32px; }
    h3 { font-size: 24px; }
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

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

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

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

/* ============================================
   HEADER
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    min-height: var(--header-height);
    display: flex;
    align-items: center;
}

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

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

.site-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
    color: var(--foreground);
    text-decoration: none;
}

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

.logo {
    display: block;
    border-radius: var(--radius-sm);
}

.brand-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    color: var(--foreground);
    letter-spacing: -0.02em;
}

/* Primary nav */
.primary-nav {
    display: none;
    align-items: center;
    gap: var(--space-xl);
    flex: 1;
    justify-content: center;
}

@media (min-width: 1024px) {
    .primary-nav {
        display: flex;
    }
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--space-lg);
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    color: var(--foreground);
    padding: var(--space-sm) 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta-group {
    display: none;
    align-items: center;
    gap: var(--space-sm);
}

@media (min-width: 1024px) {
    .nav-cta-group {
        display: flex;
    }
}

/* Mobile toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-shrink: 0;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: all var(--transition-base);
}

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

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

/* ============================================
   MOBILE NAV DRAWER
   ============================================ */

.primary-nav.is-open {
    display: flex;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-xl);
    gap: var(--space-md);
    overflow-y: auto;
}

.primary-nav.is-open .nav-list {
    flex-direction: column;
    gap: 0;
}

.primary-nav.is-open .nav-list li {
    border-bottom: 1px solid var(--border);
}

.primary-nav.is-open .nav-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    font-size: 18px;
    padding: var(--space-md) 0;
}

.primary-nav.is-open .nav-link::after {
    display: none;
}

.primary-nav.is-open .nav-cta-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.primary-nav.is-open .nav-cta {
    width: 100%;
    text-align: center;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
    min-height: 44px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
    box-sizing: border-box;
}

.btn-primary {
    background: var(--accent);
    color: var(--accent-foreground);
}

.btn-primary:hover {
    background: #fcd34d;
    color: var(--accent-foreground);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-cta {
    background: linear-gradient(135deg, var(--accent), #f59e0b);
    color: var(--accent-foreground);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    padding: 16px 40px;
    min-height: 56px;
    border-radius: var(--radius-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-cta:hover {
    box-shadow: 0 0 30px var(--accent-glow);
    transform: translateY(-2px);
}

/* ============================================
   HERO SECTIONS
   ============================================ */

.hero {
    position: relative;
    background: linear-gradient(135deg, #0f0c29 0%, #1e1b4b 50%, #15123d 100%);
    padding: var(--space-2xl) 0;
    overflow: hidden;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.5;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .hero-content {
        padding: 0 var(--space-xl);
    }
}

.hero h1 {
    color: var(--accent);
    text-shadow: 0 0 30px var(--accent-glow);
    margin-bottom: var(--space-md);
}

.hero h2,
.hero .hero-subtitle {
    color: var(--primary);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: var(--space-lg);
}

@media (min-width: 1024px) {
    .hero h2,
    .hero .hero-subtitle {
        font-size: 22px;
    }
}

/* Flying coins animation */
.coin {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fcd34d, #f59e0b);
    box-shadow: 0 0 10px var(--accent-glow);
    z-index: 1;
    animation: coin-fly 4s ease-in-out infinite;
    opacity: 0;
}

.coin:nth-child(1) { animation-delay: 0s; top: 20%; left: 10%; }
.coin:nth-child(2) { animation-delay: 0.5s; top: 60%; left: 15%; }
.coin:nth-child(3) { animation-delay: 1s; top: 30%; left: 80%; }
.coin:nth-child(4) { animation-delay: 1.5s; top: 70%; left: 85%; }
.coin:nth-child(5) { animation-delay: 2s; top: 40%; left: 50%; }

@keyframes coin-fly {
    0% { transform: translateY(0) scale(0.5); opacity: 0; }
    20% { opacity: 1; }
    100% { transform: translateY(-100px) scale(1.2); opacity: 0; }
}

/* ============================================
   TL;DR SUMMARY BOX
   ============================================ */

.tldr-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
    .tldr-box {
        padding: var(--space-xl);
    }
}

.tldr-box h2 {
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.tldr-box p {
    color: var(--secondary-foreground);
    margin-bottom: var(--space-sm);
}

.tldr-box p:last-child {
    margin-bottom: 0;
}

/* ============================================
   CONTENT TEXT BLOCKS
   ============================================ */

.content-block {
    margin-bottom: var(--space-2xl);
}

.content-block h2 {
    color: var(--foreground);
    margin-bottom: var(--space-md);
}

.content-block p {
    color: var(--secondary-foreground);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.content-block a,
.tldr-box a,
.section p a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 3px;
    font-weight: 600;
}

.content-block a:hover,
.tldr-box a:hover,
.section p a:hover {
    color: #fcd34d;
}

.content-block ul,
.content-block ol {
    color: var(--secondary-foreground);
    line-height: 1.7;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-md);
}

.content-block li {
    margin-bottom: var(--space-sm);
}

/* ============================================
   INFO CARD GRID
   ============================================ */

.info-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

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

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

.info-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    min-width: 0;
}

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

.info-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent);
}

.info-card-icon {
    font-size: 32px;
    margin-bottom: var(--space-md);
    line-height: 1;
}

.info-card-title {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: var(--space-sm);
}

@media (min-width: 1024px) {
    .info-card-title {
        font-size: 20px;
    }
}

.info-card-text {
    color: var(--secondary-foreground);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.info-card-link {
    color: var(--accent);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.info-card-link:hover {
    color: #fcd34d;
    text-decoration: underline;
}

/* ============================================
   CALLOUT BOX
   ============================================ */

.callout-box {
    position: relative;
    background: var(--secondary);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: var(--space-lg);
    margin-bottom: var(--space-2xl);
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    overflow: hidden;
}

@media (min-width: 768px) {
    .callout-box {
        padding: var(--space-xl);
    }
}

.callout-sparks {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    pointer-events: none;
}

.spark {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--accent);
    animation: spark-rise 2s ease-in-out infinite;
}

.spark:nth-child(1) { left: 0; top: 20%; animation-delay: 0s; }
.spark:nth-child(2) { left: 1px; top: 50%; animation-delay: 0.7s; }
.spark:nth-child(3) { left: -1px; top: 70%; animation-delay: 1.4s; }

@keyframes spark-rise {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-30px); opacity: 0; }
}

.callout-icon {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}

.callout-heading {
    color: var(--accent);
    font-size: 18px;
    margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
    .callout-heading {
        font-size: 20px;
    }
}

.callout-text {
    color: var(--secondary-foreground);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq-container {
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

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

.faq-item[open] {
    border-left: 3px solid var(--accent);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    cursor: pointer;
    list-style: none;
    min-height: 56px;
}

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

.faq-question-text {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 16px;
    color: var(--foreground);
    flex: 1;
}

@media (min-width: 768px) {
    .faq-question-text {
        font-size: 17px;
    }
}

.faq-icon {
    color: var(--accent);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item[open] .faq-icon-vertical {
    transform: rotate(90deg);
    transition: transform var(--transition-base);
}

.faq-icon svg {
    transition: transform var(--transition-base);
}

.faq-answer {
    padding: 0 var(--space-lg) var(--space-md);
    animation: faq-slide var(--transition-base) ease-out;
}

@keyframes faq-slide {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-answer p {
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--secondary), var(--background-alt));
    text-align: center;
    padding: var(--space-2xl) var(--space-md);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-2xl);
}

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

.cta-section h2 {
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.cta-section p {
    color: var(--secondary-foreground);
    margin-bottom: var(--space-lg);
}

.cta-note {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: var(--space-md);
}

/* ============================================
   STAT HIGHLIGHT
   ============================================ */

.stat-highlight {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    display: block;
    text-shadow: 0 0 20px var(--accent-glow);
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 64px;
    }
}

.stat-label {
    font-size: 16px;
    color: var(--secondary-foreground);
    margin-top: var(--space-sm);
}

.stat-source {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: var(--space-xs);
}

/* ============================================
   PULL QUOTE
   ============================================ */

.pull-quote {
    border-left: 4px solid var(--accent);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-2xl) 0;
    font-size: 20px;
    font-style: italic;
    color: var(--foreground);
    line-height: 1.5;
}

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

/* ============================================
   TABLE STYLES
   ============================================ */

.table-wrapper {
    margin-bottom: var(--space-2xl);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow-x: auto;
}

.table-wrapper:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    box-shadow: var(--shadow-glow);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

thead {
    background: var(--secondary);
}

th {
    text-align: left;
    padding: var(--space-md);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: var(--accent);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

td {
    padding: var(--space-md);
    color: var(--secondary-foreground);
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

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

tbody tr:hover {
    background: var(--muted);
}

/* ============================================
   TRUST BADGES ROW
   ============================================ */

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    align-items: center;
    margin-bottom: var(--space-2xl);
}

.trust-badge {
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--muted-foreground);
    font-size: 14px;
    font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--background-alt);
    border-top: 1px solid var(--border);
    padding: var(--space-2xl) 0 var(--space-lg);
    margin-top: var(--space-3xl);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .footer-inner {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 var(--space-xl);
    }
}

.footer-col {
    min-width: 0;
}

.footer-heading {
    color: var(--accent);
    font-size: 16px;
    margin-bottom: var(--space-md);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-md);
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--secondary-foreground);
    font-size: 14px;
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.footer-license {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.footer-age {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.age-badge {
    background: var(--accent);
    color: var(--accent-foreground);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
}

.age-text {
    font-size: 13px;
    color: var(--muted-foreground);
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.pay-icon {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--muted-foreground);
    background: var(--card);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: var(--space-xl) auto 0;
    padding: var(--space-md) var(--space-md) 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        padding: var(--space-md) var(--space-xl) 0;
    }
}

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

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .coin, .spark {
        animation: none;
    }
    html {
        scroll-behavior: auto;
    }
}

/* ============================================
   UTILITY
   ============================================ */

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

.mb-0 {
    margin-bottom: 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;
}

/* Ensure in-content links visible */
.content-block a,
.info-card a {
    word-break: break-all;
}