/* ==========================================================================
   ESPORTS JUNKIE - Gaming & Esports Betting Template
   Dark Theme with Neon Accents - 2026 Design
   ========================================================================== */
/* Google Fonts are loaded via non-blocking <link> tags in seo.html's seo-head
   block, not @import here — @import is render-blocking and delays parsing of
   this entire stylesheet until the external fetch completes. */

:root {
    /* Dark Theme Colors */
    --c-bg-primary: #0d0d0f;
    --c-bg-secondary: #121218;
    --c-bg-card: #1a1a24;
    --c-bg-elevated: #22222e;

    /* Neon Accent Colors */
    --c-neon-cyan: #00d4ff;
    --c-neon-magenta: #ff00ff;
    --c-neon-lime: #00ff88;
    --c-neon-orange: #ff6b00;
    --c-neon-red: #ff3366;
    --c-neon-gold: #ffd700;

    /* Primary accent (cyan) */
    --c-accent: var(--c-neon-cyan);
    --c-accent-hover: #33ddff;

    /* Text Colors */
    --c-text-primary: #ffffff;
    --c-text-secondary: #a0a0b0;
    --c-text-muted: #878991; /* was #6b6b7b (3.7:1, fails WCAG AA for normal text at 12-15px);
                                this hits 4.5:1+ against all 3 dark background tiers used on the site */

    /* Border Colors */
    --c-border: #2a2a3a;
    --c-border-glow: rgba(0, 212, 255, 0.3);

    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-head: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

    /* Layout */
    --h-header: 72px;
    --container-width: 1280px;
    --border-radius: 12px;
    --border-radius-sm: 8px;

    /* Glow Effects */
    --glow-cyan: 0 0 20px rgba(0, 212, 255, 0.4);
    --glow-magenta: 0 0 20px rgba(255, 0, 255, 0.4);
    --glow-lime: 0 0 20px rgba(0, 255, 136, 0.4);
    --glow-orange: 0 0 20px rgba(255, 107, 0, 0.4);
}

/* BASE RESET */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    color: var(--c-text-primary);
    /* Solid dark background as the real base — the animated particle canvas (JS)
       layers on top of this as decoration. Text visibility must not depend on the
       canvas script executing/painting in time: crawlers, slow connections, and
       JS-disabled clients would otherwise render white text on the browser's
       default white background and be completely unreadable. */
    background: var(--c-bg-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Prevent scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   CONTAINER & LAYOUT
   ========================================================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

section {
    padding: 5rem 0;
    position: relative;
}

main,
.main-content {
    padding-top: var(--h-header);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    height: var(--h-header);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 13, 15, 0.95);
    border-bottom: 1px solid var(--c-border);
    z-index: 10000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(13, 13, 15, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 0.75rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 36px;
    width: auto;
}

.logo-text {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--c-text-primary);
    letter-spacing: -0.02em;
}

.logo-text span {
    color: var(--c-accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--c-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.5rem 0;
}

/* Desktop "Games" dropdown */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-caret { font-size: 0.7em; margin-left: 0.15rem; }
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0.5rem;
    min-width: 190px;
    background: rgba(13, 13, 15, 0.98);
    border: 1px solid var(--c-border);
    border-radius: var(--border-radius-sm);
    padding: 0.4rem 0;
    display: none;
    flex-direction: column;
    max-height: 70vh;
    overflow-y: auto;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
    z-index: 10001;
}
/* bridge the hover gap so the menu doesn't close when moving to it */
.nav-dropdown::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 0.6rem; }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--c-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.5rem 1.1rem;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
}
.nav-dropdown-menu a:hover { background: rgba(255, 255, 255, 0.06); color: #fff; }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--c-accent);
    box-shadow: var(--glow-cyan);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--c-text-primary);
}

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

/* Live indicator in nav */
.nav-link.live {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--c-neon-red);
    border-radius: 50%;
    animation: pulse-live 1.5s ease-in-out infinite;
}

@keyframes pulse-live {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.7); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(255, 51, 102, 0); }
}

/* ==========================================================================
   HOMEPAGE 2026 — retention-hub layout (see project_esj_homepage_strategy_icp)
   Compact hero, "Today in Esports" board + odds/schedule placeholder, real-world
   scene coverage (events / venues / players / teams), and existing-bettor betting
   value (line-shopping / second account). Shared helpers first, then per-section.
   ========================================================================== */

/* compact, centered hero so the "Today" board sits high on the page */
.hero--compact { min-height: 0; padding: 4rem 0 3rem; }
.hero--compact .hero-content--center { max-width: 780px; margin: 0 auto; text-align: center; }
.hero--compact .hero-content--center p { margin-left: auto; margin-right: auto; }
.hero-actions--center { justify-content: center; }

/* shared row header (left title + right action) */
.row-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.row-head h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin-top: 0.6rem; }
.row-head .row-sub { color: var(--c-text-secondary); font-size: 0.95rem; margin-top: 0.35rem; max-width: 60ch; }

/* shared small badges used across the new sections */
.gbadge { font-family: var(--font-head); font-weight: 700; font-size: 0.62rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.2rem 0.5rem; border-radius: 4px; background: rgba(255, 255, 255, 0.06); border: 1px solid var(--c-border); color: var(--c-text-secondary); white-space: nowrap; }
.gbadge-soon { color: var(--c-neon-gold); border-color: rgba(255, 215, 0, 0.3); }
.live-badge { font-family: var(--font-head); font-weight: 700; font-size: 0.6rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.2rem 0.45rem; border-radius: 4px; background: var(--c-neon-red); color: #fff; display: inline-flex; align-items: center; gap: 0.3rem; }
.live-badge .d { width: 5px; height: 5px; border-radius: 50%; background: #fff; animation: pulse-live 1.5s ease-in-out infinite; }

/* ---- Today in Esports ---- */
.today-section { padding: 3.5rem 0 4.5rem; }
.today-subhead { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-head); font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--c-text-secondary); margin: 2.25rem 0 1rem; }

/* schedule / odds placeholder board */
.sched-board { margin-top: 0.5rem; }
.sched-note { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: var(--c-text-muted); margin-bottom: 0.9rem; flex-wrap: wrap; }
.odds-soon { font-family: var(--font-mono); font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-neon-gold); background: rgba(255, 215, 0, 0.1); border: 1px solid rgba(255, 215, 0, 0.3); padding: 0.15rem 0.5rem; border-radius: 50px; }
.sched-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--c-border); border-radius: var(--border-radius); background: var(--c-bg-card); }
.sched-table { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 0.9rem; }
.sched-table thead th { text-align: left; font-family: var(--font-mono); font-size: 0.64rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-text-muted); font-weight: 600; padding: 0.8rem 1rem; border-bottom: 1px solid var(--c-border); white-space: nowrap; }
.sched-table td { padding: 0.8rem 1rem; border-bottom: 1px solid var(--c-border); vertical-align: middle; }
.sched-table tbody tr:last-child td { border-bottom: none; }
.sched-table tbody tr { transition: background 0.15s ease; }
.sched-table tbody tr:hover { background: var(--c-bg-elevated); }
.sched-time { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-weight: 700; color: var(--c-text-primary); white-space: nowrap; }
.sched-badge { font-family: var(--font-head); font-weight: 700; font-size: 0.62rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.2rem 0.5rem; border-radius: 4px; background: rgba(255, 255, 255, 0.06); border: 1px solid var(--c-border); color: var(--c-text-secondary); white-space: nowrap; }
.sched-match { font-family: var(--font-head); font-weight: 600; font-size: 0.98rem; color: var(--c-text-primary); }
.sched-vs { color: var(--c-text-muted); font-weight: 500; margin: 0 0.3rem; }
.sched-odds { white-space: nowrap; }
.odds-chip { display: inline-block; min-width: 3.1rem; text-align: center; font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-weight: 700; font-size: 0.82rem; color: var(--c-text-primary); background: var(--c-bg-elevated); border: 1px solid var(--c-border); border-radius: var(--border-radius-sm); padding: 0.3rem 0.5rem; }
.odds-chip + .odds-chip { margin-left: 0.4rem; }
.odds-chip.best { border-color: var(--c-neon-lime); color: var(--c-neon-lime); background: rgba(0, 255, 136, 0.08); }
.is-preview .odds-chip:not(.best) { opacity: 0.5; }
.sched-act { text-align: right; white-space: nowrap; }
.sched-bet { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.5rem 0.9rem; border-radius: var(--border-radius-sm); font-family: var(--font-head); font-weight: 700; font-size: 0.8rem; text-decoration: none; color: #053; background: var(--c-accent); transition: filter 0.2s ease, box-shadow 0.2s ease; }
.sched-bet span { transition: transform 0.2s ease; }
.sched-bet:hover { filter: brightness(1.05); box-shadow: var(--glow-cyan); }
.sched-bet:hover span { transform: translateX(3px); }
.sched-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 1.1rem; font-size: 0.85rem; }
.sched-legal { color: var(--c-text-muted); font-family: var(--font-mono); font-size: 0.72rem; }

/* ---- Events / tournaments ---- */
.ev-section { padding: 4rem 0; background: var(--c-bg-secondary); border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.ev-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; }
.ev-card { background: var(--c-bg-card); border: 1px solid var(--c-border); border-radius: var(--border-radius); padding: 1.3rem; transition: transform 0.2s ease, border-color 0.2s ease; }
.ev-card:hover { border-color: var(--c-accent); transform: translateY(-3px); }
.ev-card.is-live { border-color: rgba(255, 51, 102, 0.4); }
.ev-thumb { aspect-ratio: 16 / 9; background-size: cover; background-position: center; border-radius: var(--border-radius-sm); margin: -0.2rem 0 1rem; border: 1px solid var(--c-border); }
.ev-thumb.ev-logo { background-size: contain; background-repeat: no-repeat; background-color: #0d0d0f; }
.ev-top { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.9rem; }
.ev-card h3 { font-size: 1.15rem; }
.ev-meta { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.9rem; font-size: 0.85rem; }
.ev-meta div { display: flex; align-items: center; gap: 0.5rem; color: var(--c-text-secondary); }
.ev-ic { width: 16px; text-align: center; opacity: 0.8; }
.ev-prize { font-family: var(--font-mono); font-weight: 700; color: var(--c-neon-lime); }
.ev-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--c-border); }
.ev-when { font-size: 0.82rem; color: var(--c-text-secondary); }
.ev-bet { font-family: var(--font-head); font-weight: 700; font-size: 0.78rem; padding: 0.45rem 0.85rem; border-radius: var(--border-radius-sm); background: var(--c-accent); color: #053; text-decoration: none; white-space: nowrap; }
.ev-bet:hover { filter: brightness(1.05); box-shadow: var(--glow-cyan); }

/* ---- Venues ---- */
.vn-section { padding: 4rem 0; }
.vn-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.vn-card { position: relative; border-radius: var(--border-radius); overflow: hidden; aspect-ratio: 3 / 2; border: 1px solid var(--c-border); display: flex; align-items: flex-end; transition: transform 0.2s ease, border-color 0.2s ease; }
.vn-card:hover { transform: translateY(-3px); border-color: var(--c-accent); }
.vn-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.vn-ov { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(13, 13, 15, 0.92)); }
.vn-c { position: relative; padding: 1rem; z-index: 1; }
.vn-card h4 { font-size: 1rem; }
.vn-loc { font-size: 0.78rem; color: var(--c-text-secondary); }
.vn-cap { font-family: var(--font-mono); font-size: 0.72rem; color: var(--c-neon-gold); margin-top: 0.2rem; }

/* ---- Players ---- */
.pl-section { padding: 4rem 0; background: var(--c-bg-secondary); border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.pl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.pl-card { background: var(--c-bg-card); border: 1px solid var(--c-border); border-radius: var(--border-radius); padding: 1.2rem; text-align: center; transition: transform 0.2s ease, border-color 0.2s ease; }
.pl-card:hover { border-color: var(--c-accent); transform: translateY(-3px); }
.pl-av { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 0.8rem; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: #0d0d0f; }
.pl-av.pl-photo { background-size: cover; background-position: center; border: 1px solid var(--c-border); }
.pl-grid.pl-grid-2 { grid-template-columns: repeat(2, minmax(0, 240px)); justify-content: center; }
.pl-card h4 { font-size: 1.05rem; }
.pl-team { font-size: 0.8rem; color: var(--c-text-secondary); margin-bottom: 0.9rem; }
.pl-stats { display: flex; justify-content: center; gap: 1.1rem; border-top: 1px solid var(--c-border); padding-top: 0.9rem; }
.pl-val { font-family: var(--font-mono); font-weight: 700; color: var(--c-text-primary); font-size: 1.05rem; }
.pl-val.pl-w { color: var(--c-neon-lime); }
.pl-lbl { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--c-text-muted); }

/* ---- Teams / transfers ---- */
.tr-section { padding: 4rem 0; }
.tr-list { background: var(--c-bg-card); border: 1px solid var(--c-border); border-radius: var(--border-radius); overflow: hidden; }
.tr-row { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; border-bottom: 1px solid var(--c-border); transition: background 0.15s ease; flex-wrap: wrap; }
.tr-row:last-child { border-bottom: none; }
.tr-row:hover { background: var(--c-bg-elevated); }
.tr-when { font-family: var(--font-mono); font-size: 0.72rem; color: var(--c-text-muted); width: 70px; flex-shrink: 0; }
.tr-who { font-family: var(--font-head); font-weight: 700; color: var(--c-text-primary); flex: 1; min-width: 80px; }
.tr-move { display: flex; align-items: center; gap: 0.6rem; color: var(--c-text-secondary); font-size: 0.9rem; flex-wrap: wrap; }
.tr-move b { color: var(--c-text-primary); }
.tr-arr { color: var(--c-accent); }
.tr-flag { font-family: var(--font-mono); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.06em; padding: 0.15rem 0.45rem; border-radius: 4px; }
.tr-flag.in { color: var(--c-neon-lime); background: rgba(0, 255, 136, 0.08); border: 1px solid rgba(0, 255, 136, 0.3); }
.tr-flag.stay { color: var(--c-accent); background: rgba(0, 212, 255, 0.08); border: 1px solid rgba(0, 212, 255, 0.3); }
.tr-skel { flex: 1; min-width: 120px; height: 12px; border-radius: 6px; background: linear-gradient(90deg, var(--c-bg-elevated), rgba(255, 255, 255, 0.04)); }
.tm-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.tm-card { display: flex; align-items: center; gap: 0.8rem; background: var(--c-bg-card); border: 1px solid var(--c-border); border-radius: var(--border-radius); padding: 0.8rem 1rem; transition: transform 0.2s ease, border-color 0.2s ease; }
.tm-card:hover { transform: translateY(-3px); border-color: var(--c-accent); }
.tm-logo { width: 48px; height: 48px; border-radius: 50%; background-size: cover; background-position: center; border: 1px solid var(--c-border); flex-shrink: 0; }
.tm-name { font-family: var(--font-head); font-weight: 700; color: var(--c-text-primary); font-size: 0.95rem; }

/* ---- Betting value (existing bettor: second account / line-shopping) ---- */
.value-section { padding: 4.5rem 0; background: var(--c-bg-secondary); border-top: 1px solid var(--c-border); }
.value-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5rem; align-items: center; }
.value-section h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0.7rem 0 0.8rem; }
.value-lead { font-size: 1.05rem; margin-bottom: 1.3rem; }
.value-lead b, .value-points b { color: var(--c-text-primary); }
.value-points { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin: 0 0 1.5rem; padding: 0; }
.value-points li { display: flex; gap: 0.7rem; align-items: flex-start; }
.value-points .k { color: var(--c-neon-lime); font-weight: 700; flex-shrink: 0; }
.odds-cmp { background: var(--c-bg-card); border: 1px solid var(--c-border); border-radius: var(--border-radius); padding: 1.4rem; }
.oc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; gap: 0.5rem; }
.oc-match { font-family: var(--font-head); font-weight: 700; color: var(--c-text-primary); }
.oc-row { display: flex; align-items: center; justify-content: space-between; padding: 0.7rem 0; border-top: 1px solid var(--c-border); }
.oc-book { display: flex; align-items: center; gap: 0.6rem; font-weight: 600; color: var(--c-text-secondary); }
.oc-logo { width: 26px; height: 26px; border-radius: 6px; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 0.68rem; color: #0d0d0f; }
.oc-note { font-size: 0.78rem; color: var(--c-text-muted); margin: 0.9rem 0 0; }

/* ---- Guides & reviews (featured-image cards) ---- */
.guide-section { padding: 5rem 0; background: var(--c-bg-secondary); border-top: 1px solid var(--c-border); }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.guide-card { background: var(--c-bg-card); border: 1px solid var(--c-border); border-radius: var(--border-radius); overflow: hidden; text-decoration: none; display: block; transition: transform 0.2s ease, border-color 0.2s ease; }
.guide-card:hover { border-color: var(--c-accent); transform: translateY(-3px); }
.guide-thumb { position: relative; aspect-ratio: 16 / 9; background-size: cover; background-position: center; }
.guide-tag { position: absolute; top: 0.7rem; left: 0.7rem; font-family: var(--font-mono); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em; color: #0d0d0f; background: var(--c-accent); text-transform: uppercase; padding: 0.2rem 0.5rem; border-radius: 4px; }
.guide-tag.review { background: var(--c-neon-gold); }
.guide-body { padding: 1.1rem; }
.guide-body h4 { font-size: 1rem; line-height: 1.4; color: var(--c-text-primary); }

@media (max-width: 992px) {
    .vn-grid, .pl-grid { grid-template-columns: repeat(2, 1fr); }
    .value-grid { grid-template-columns: 1fr; }
    .guide-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
    .tm-strip { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .vn-grid, .pl-grid, .guide-grid { grid-template-columns: 1fr; }
    .pl-grid.pl-grid-2 { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
    .sched-h-odds { display: none; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--border-radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary,
.btn {
    background: linear-gradient(135deg, var(--c-neon-cyan) 0%, #0099cc 100%);
    color: var(--c-bg-primary);
    box-shadow: var(--glow-cyan);
}

.btn-primary:hover,
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--c-text-primary);
    border: 2px solid var(--c-border);
}

.btn-secondary:hover {
    border-color: var(--c-accent);
    color: var(--c-accent);
    box-shadow: var(--glow-cyan);
}

.btn-accent-orange {
    background: linear-gradient(135deg, var(--c-neon-orange) 0%, #cc5500 100%);
    color: var(--c-text-primary);
    box-shadow: var(--glow-orange);
}

.btn-accent-orange:hover {
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.6);
    transform: translateY(-2px);
}

.btn-accent-lime {
    background: linear-gradient(135deg, var(--c-neon-lime) 0%, #00cc6a 100%);
    color: var(--c-bg-primary);
    box-shadow: var(--glow-lime);
}

.btn-accent-lime:hover {
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
    transform: translateY(-2px);
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--c-text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.1rem;
    color: var(--c-text-secondary);
    margin-bottom: 1.5rem;
}

.text-accent {
    color: var(--c-accent);
}

.text-gradient {
    /* Fallback solid color first — if background-clip:text isn't supported/applied
       for any reason, this still renders as legible text instead of invisible
       (transparent-on-transparent) text. */
    color: var(--c-neon-cyan);
    background: linear-gradient(135deg, var(--c-neon-cyan) 0%, var(--c-neon-magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-mono {
    font-family: var(--font-mono);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--c-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-badge .badge-dot {
    width: 6px;
    height: 6px;
    background: var(--c-accent);
    border-radius: 50%;
    animation: pulse-live 2s ease-in-out infinite;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    padding: 6rem 0 4rem;
    min-height: calc(100vh - var(--h-header));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 0, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-badge .live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--c-neon-lime);
    text-transform: uppercase;
}

.hero-badge .live-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--c-neon-lime);
    border-radius: 50%;
    animation: pulse-live 1.5s ease-in-out infinite;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.hero p {
    font-size: 1.25rem;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* Hero Stats Card */
.hero-card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-neon-cyan) 0%, var(--c-neon-magenta) 50%, var(--c-neon-lime) 100%);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--c-border);
}

.stat-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-row:first-child {
    padding-top: 0;
}

.stat-big {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--c-accent);
    display: block;
    line-height: 1;
    margin-bottom: 0.25rem;
    text-shadow: var(--glow-cyan);
}

.stat-big.orange {
    color: var(--c-neon-orange);
    text-shadow: var(--glow-orange);
}

.stat-big.lime {
    color: var(--c-neon-lime);
    text-shadow: var(--glow-lime);
}

.stat-big.magenta {
    color: var(--c-neon-magenta);
    text-shadow: var(--glow-magenta);
}

.stat-lbl {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ==========================================================================
   GAMES/ESPORTS SECTION
   ========================================================================== */
.games-section {
    background: rgba(18, 18, 24, 0.85);
    backdrop-filter: blur(8px);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.game-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    aspect-ratio: 4 / 3;
    border-radius: var(--border-radius);
    border: 1px solid var(--c-border);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    border-color: var(--c-accent);
    box-shadow: var(--glow-cyan);
    transform: translateY(-4px);
}

.game-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(65%) brightness(0.55) contrast(1.05);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.game-card:hover img {
    filter: grayscale(0%) brightness(0.75) contrast(1.1);
    transform: scale(1.06);
}

.game-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 13, 15, 0.1) 0%, rgba(13, 13, 15, 0.55) 55%, rgba(13, 13, 15, 0.92) 100%);
    transition: background 0.4s ease;
}

.game-card:hover .game-card-overlay {
    background: linear-gradient(180deg, rgba(13, 13, 15, 0) 0%, rgba(13, 13, 15, 0.35) 55%, rgba(13, 13, 15, 0.85) 100%);
}

/* Touch devices have no :hover, so cards read as permanently dark. main.js's
   scroll IntersectionObserver adds .visible once a card scrolls into view;
   reuse that here to give touch scrolling the same "light up" treatment. */
@media (hover: none) {
    .game-card.visible img {
        filter: grayscale(0%) brightness(0.75) contrast(1.1);
    }

    .game-card.visible .game-card-overlay {
        background: linear-gradient(180deg, rgba(13, 13, 15, 0) 0%, rgba(13, 13, 15, 0.35) 55%, rgba(13, 13, 15, 0.85) 100%);
    }
}

.game-card-content {
    position: relative;
    z-index: 1;
    padding: 1.5rem;
}

.game-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--c-text-primary);
}

.game-card .matches-count {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--c-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.game-card.live .matches-count {
    color: var(--c-neon-lime);
}

/* ==========================================================================
   LIVE STREAM SECTION
   ========================================================================== */
.live-stream-section {
    padding: 5rem 0;
    background:
        linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.02) 50%, transparent 100%),
        var(--c-bg-primary);
    position: relative;
}

.live-stream-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-neon-cyan), transparent);
}

.live-stream-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.live-stream-content h2 {
    font-size: 2.5rem;
    margin: 1rem 0 1.5rem;
}

.live-stream-content p {
    color: var(--c-text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.live-stream-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--c-text-secondary);
}

.feature-item .feature-icon {
    font-size: 1.1rem;
}

.live-stream-embed {
    position: relative;
}

.stream-wrapper {
    background: #000;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--c-border);
    box-shadow:
        0 0 40px rgba(0, 212, 255, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.stream-wrapper::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--border-radius);
    padding: 1px;
    background: linear-gradient(135deg, var(--c-neon-cyan), transparent 50%, var(--c-neon-magenta));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.stream-wrapper #twitch-embed {
    display: block;
}

.stream-wrapper #twitch-embed iframe {
    display: block;
    border-radius: var(--border-radius);
}

.stream-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin-top: 1rem;
}

.stream-channel {
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--c-text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stream-channel::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--c-neon-red);
    border-radius: 50%;
    animation: pulse-live 2s infinite;
}

.stream-link {
    color: var(--c-accent);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.stream-link:hover {
    color: var(--c-accent-hover);
}

@media (max-width: 900px) {
    .live-stream-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .live-stream-content {
        text-align: center;
    }

    .live-stream-content h2 {
        font-size: 2rem;
    }

    .live-stream-features {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .live-stream-section {
        padding: 3rem 0;
    }

    .live-stream-features {
        flex-direction: column;
        align-items: center;
    }

    .stream-info {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

/* ==========================================================================
   FEATURED MATCHES / ODDS CARDS
   ========================================================================== */
.matches-section {
    padding: 5rem 0;
}

.matches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.match-card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.match-card:hover {
    border-color: var(--c-accent);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.match-game {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
}

.match-game img {
    width: 20px;
    height: 20px;
}

.match-status {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
}

.match-status.live {
    background: rgba(255, 51, 102, 0.2);
    color: var(--c-neon-red);
    animation: pulse-bg 2s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { background: rgba(255, 51, 102, 0.2); }
    50% { background: rgba(255, 51, 102, 0.3); }
}

.match-status.upcoming {
    background: rgba(0, 212, 255, 0.2);
    color: var(--c-accent);
}

.match-teams {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.team-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--c-bg-elevated);
    border-radius: var(--border-radius-sm);
}

.team-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.team-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.team-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.team-odds {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1rem;
    color: var(--c-neon-lime);
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
}

.team-odds:hover {
    background: rgba(0, 255, 136, 0.2);
    box-shadow: var(--glow-lime);
}

.match-tournament {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    padding-top: 1rem;
    border-top: 1px solid var(--c-border);
}

/* ==========================================================================
   MODULES / SERVICES GRID
   ========================================================================== */
.services-section {
    background: rgba(18, 18, 24, 0.85);
    backdrop-filter: blur(8px);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.module-card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--c-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.module-card:hover {
    border-color: var(--c-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.module-card:hover::before {
    transform: scaleX(1);
}

.mod-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.module-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.module-card p {
    font-size: 0.95rem;
    color: var(--c-text-secondary);
    margin-bottom: 1.5rem;
}

.module-card a {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--c-accent);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.module-card a:hover {
    gap: 0.75rem;
}

/* ==========================================================================
   LOGOS / PARTNERS SECTION
   ========================================================================== */
.logos-section {
    background: rgba(18, 18, 24, 0.9);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    padding: 3rem 0;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    align-items: center;
    justify-items: center;
}

.logo-box {
    padding: 1.25rem;
    border: 1px solid var(--c-border);
    border-radius: var(--border-radius-sm);
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-bg-card);
    transition: all 0.3s ease;
}

.logo-box:hover {
    border-color: var(--c-accent);
    box-shadow: var(--glow-cyan);
}

.logo-box img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-box:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
    background: linear-gradient(135deg, rgba(26, 26, 36, 0.95) 0%, rgba(34, 34, 46, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 5rem 0;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(255, 0, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
}

.cta-banner-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    color: var(--c-text-primary);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: var(--c-text-secondary);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.cta-banner-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-phone {
    background: linear-gradient(135deg, var(--c-neon-lime) 0%, #00cc6a 100%);
    color: var(--c-bg-primary);
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-family: var(--font-head);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--glow-lime);
}

.btn-cta-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.btn-cta-callback {
    background: transparent;
    color: var(--c-text-primary);
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-family: var(--font-head);
    border: 2px solid var(--c-border);
}

.btn-cta-callback:hover {
    border-color: var(--c-accent);
    color: var(--c-accent);
    box-shadow: var(--glow-cyan);
}

/* ==========================================================================
   CONTENT TYPOGRAPHY - Posts & Pages
   ========================================================================== */
.post-body,
.page-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--c-text-secondary);
    max-width: 900px;
}

/* Better page layout for betting content */
.page-content .container {
    max-width: 1000px;
}

/* Content images (screenshots, key art, stock photography) default to large,
   full-width, with the same dark/desaturated-until-hover filter as the homepage
   game cards so they read as part of the site's visual language. Logos, brand
   marks and small avatars are the exception (see allowlist below), not the rule —
   most images dropped into body copy are real photography, not a 40px brand mark. */
.page-body > p > img,
.page-body > img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    margin: 2rem auto;
    padding: 0;
    background: none;
    border: none;
    border-radius: var(--border-radius);
    filter: grayscale(25%) brightness(0.82) contrast(1.05) saturate(1.1);
    transition: filter 0.4s ease, box-shadow 0.4s ease;
}

.page-body > p > img:hover,
.page-body > img:hover {
    filter: grayscale(0%) brightness(0.95) contrast(1.08) saturate(1.15);
    box-shadow: var(--glow-cyan);
}

/* Portrait key art (e.g. Steam's vertical library-capsule format, 2:3) breaks the
   16:9 cover-crop above — it force-crops the top off tall character art. Let known
   portrait assets keep their natural aspect ratio and cap width instead of height. */
.page-body > p > img[src*="dota2-official-key-art-steam-library"],
.page-body > img[src*="dota2-official-key-art-steam-library"] {
    width: auto;
    max-width: 420px;
    aspect-ratio: auto;
    object-fit: contain;
}

/* Logos, brand marks, and small avatars: compact bordered card, not full-bleed
   photography. Matched by "logo" in the filename, .svg (always a vector mark,
   never a photo), the 4 team-author headshots, and known small WP thumbnail
   crops (e.g. "-400x225", "-400x334") that were sized small on purpose. */
.page-body > p > img[src*="logo" i],
.page-body > img[src*="logo" i],
.page-body > p > img[src$=".svg"],
.page-body > img[src$=".svg"],
.page-body > p > img[src*="izane.jpg"],
.page-body > img[src*="izane.jpg"],
.page-body > p > img[src*="rsamal.jpg"],
.page-body > img[src*="rsamal.jpg"],
.page-body > p > img[src*="apete.jpg"],
.page-body > img[src*="apete.jpg"],
.page-body > p > img[src*="bhill.jpg"],
.page-body > img[src*="bhill.jpg"],
.page-body > p > img[src*="-400x225"],
.page-body > img[src*="-400x225"],
.page-body > p > img[src*="-400x334"],
.page-body > img[src*="-400x334"] {
    max-width: 200px;
    width: auto;
    aspect-ratio: auto;
    object-fit: contain;
    margin: 2rem auto 1rem;
    padding: 1rem;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--border-radius-sm);
    filter: none;
}

.page-body > p > img[src*="logo" i]:hover,
.page-body > img[src*="logo" i]:hover,
.page-body > p > img[src$=".svg"]:hover,
.page-body > img[src$=".svg"]:hover,
.page-body > p > img[src*="izane.jpg"]:hover,
.page-body > img[src*="izane.jpg"]:hover,
.page-body > p > img[src*="rsamal.jpg"]:hover,
.page-body > img[src*="rsamal.jpg"]:hover,
.page-body > p > img[src*="apete.jpg"]:hover,
.page-body > img[src*="apete.jpg"]:hover,
.page-body > p > img[src*="bhill.jpg"]:hover,
.page-body > img[src*="bhill.jpg"]:hover,
.page-body > p > img[src*="-400x225"]:hover,
.page-body > img[src*="-400x225"]:hover,
.page-body > p > img[src*="-400x334"]:hover,
.page-body > img[src*="-400x334"]:hover {
    border-color: var(--c-accent);
    box-shadow: var(--glow-cyan);
}

/* First heading - page title styling */
.page-body > h1:first-child {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--c-border);
    background: linear-gradient(135deg, var(--c-neon-cyan) 0%, var(--c-neon-magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Intro paragraph styling (left-aligned per playbook rule 2) */
.page-body > p:first-of-type {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--c-text-secondary);
}

/* Style betting site lists */
.page-body ul {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--border-radius);
    padding: 1.5rem 1.5rem 1.5rem 2.5rem;
    margin: 2rem 0;
}

.page-body ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--c-border);
    color: var(--c-text-primary);
    font-weight: 500;
}

.page-body ul li:last-child {
    border-bottom: none;
}

.page-body ul li::marker {
    color: var(--c-neon-lime);
    font-size: 1.2em;
}

/* Content sections with better spacing */
.page-body h2 {
    margin-top: 3rem;
    padding: 1rem;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.1) 0%, transparent 100%);
    border-left: 4px solid var(--c-accent);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

.page-body h3 {
    color: var(--c-neon-lime);
    margin-top: 2.5rem;
}

/* Style for bonus/offer text patterns */
.page-body strong {
    color: var(--c-neon-orange);
}

/* ==========================================================================
   BETTING SITE CONTENT STYLING
   Enhanced styles for betting site listing pages
   ========================================================================== */

/* Container for better readability */
.page-body {
    padding: 0 1rem;
}

/* External link styling */
.page-body a[href^="http"] {
    color: var(--c-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.page-body a[href^="http"]:hover {
    color: var(--c-accent-hover);
    text-shadow: var(--glow-cyan);
}

/* Better blockquote for bonus info */
.page-body blockquote {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-left-color: var(--c-neon-lime);
}

/* Better horizontal rules */
.page-body hr {
    margin: 3rem 0;
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
}

/* Improve contrast for important terms */
.page-body em {
    color: var(--c-text-primary);
    font-style: normal;
    font-weight: 500;
}

/* ==========================================================================
   BETTING SITE CARDS (JS-generated)
   ========================================================================== */
.betting-card-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.betting-card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.betting-card:hover {
    border-color: var(--c-accent);
    box-shadow: var(--glow-cyan);
    transform: translateY(-4px);
}

.betting-card-logo {
    max-width: 150px;
    max-height: 80px;
    margin: 0 auto 1rem;
    object-fit: contain;
    background: white;
    padding: 0.5rem;
    border-radius: var(--border-radius-sm);
}

.betting-card-name {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--c-text-primary);
    margin-bottom: 0.5rem;
}

.betting-card-name a {
    color: inherit;
    text-decoration: none;
}

.betting-card-name a:hover {
    color: var(--c-accent);
}

.betting-card-rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: var(--c-neon-gold);
}

.betting-card-bonus {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-neon-lime);
    padding: 0.75rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: var(--border-radius-sm);
    margin-bottom: 1rem;
}

.betting-card-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.betting-card-btn {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.betting-card-btn.primary {
    background: linear-gradient(135deg, var(--c-neon-lime) 0%, #00cc6a 100%);
    color: var(--c-bg-primary);
    box-shadow: var(--glow-lime);
}

.betting-card-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.5);
}

.betting-card-btn.secondary {
    background: transparent;
    color: var(--c-accent);
    border: 1px solid var(--c-border);
}

.betting-card-btn.secondary:hover {
    border-color: var(--c-accent);
    box-shadow: var(--glow-cyan);
}

.betting-card-terms {
    font-size: 0.75rem;
    color: var(--c-text-muted);
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--c-border);
}

/* Betting Banner (shortcode) - Esports Style matching old site */
.betting-banner {
    background: linear-gradient(135deg, #1a1a2a 0%, #0a0a0f 100%);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-right: 4px solid var(--c-neon-magenta);
    border-radius: 0;
    padding: 0;
    margin: 2rem -1rem;
    overflow: hidden;
    box-shadow:
        0 0 30px rgba(255, 0, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
}

.betting-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 255, 0.05));
    pointer-events: none;
}

.betting-banner-inner {
    display: flex;
    align-items: center;
    padding: 1.25rem 2rem;
    gap: 2rem;
}

.betting-banner-logo {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.betting-banner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.betting-banner-info {
    flex-shrink: 0;
    min-width: 140px;
}

.betting-banner-name {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: #ff66ff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.betting-banner-text {
    flex: 1;
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    padding: 0 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.betting-banner-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2.5rem;
    background: transparent;
    color: #fff;
    border: 2px solid var(--c-neon-magenta);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.2);
}

.betting-banner-btn:hover {
    background: var(--c-neon-magenta);
    color: #000;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.6);
    transform: translateY(-2px);
}

.betting-banner-legal {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 2rem 0.75rem;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Tablet layout */
@media (max-width: 900px) {
    .betting-banner {
        margin: 1.5rem 0;
    }

    .betting-banner-inner {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1rem 1.5rem;
    }

    .betting-banner-text {
        flex-basis: 100%;
        order: 3;
        text-align: left;
        padding: 0;
        font-size: 1.25rem;
    }
}

/* Mobile layout */
@media (max-width: 640px) {
    .betting-banner {
        margin: 1rem 0;
    }

    .betting-banner-inner {
        padding: 1rem;
        gap: 0.75rem;
    }

    .betting-banner-logo {
        width: 65px;
        height: 50px;
    }

    .betting-banner-name {
        font-size: 0.85rem;
    }

    .betting-banner-text {
        font-size: 1.1rem;
    }

    .betting-banner-btn {
        flex-basis: 100%;
        order: 4;
        padding: 0.75rem 1.5rem;
    }

    .betting-banner-legal {
        padding: 0.5rem 1rem;
    }
}

/* Disclaimer box */
.disclaimer-box {
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: var(--border-radius-sm);
    padding: 1rem;
    font-size: 0.85rem;
    color: var(--c-neon-orange);
    text-align: center;
    margin: 1.5rem 0;
}

/* Quick list of betting sites */
.betting-quick-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.betting-quick-item {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--border-radius-sm);
    padding: 1rem;
    text-align: center;
    transition: all 0.2s ease;
}

.betting-quick-item:hover {
    border-color: var(--c-neon-lime);
    box-shadow: var(--glow-lime);
}

.betting-quick-item a {
    color: var(--c-text-primary);
    font-weight: 600;
    text-decoration: none;
}

.betting-quick-item:hover a {
    color: var(--c-neon-lime);
}

.post-body h2,
.page-body h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--c-border);
    color: var(--c-text-primary);
}

.post-body h3,
.page-body h3 {
    font-size: 1.35rem;
    margin: 2rem 0 0.75rem;
    color: var(--c-text-primary);
}

.post-body h4,
.page-body h4 {
    font-size: 1.15rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--c-text-primary);
}

.post-body p,
.page-body p {
    margin-bottom: 1.25rem;
}

.post-body ul,
.post-body ol,
.page-body ul,
.page-body ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.post-body li,
.page-body li {
    margin-bottom: 0.5rem;
    color: var(--c-text-secondary);
}

.post-body ul li::marker {
    color: var(--c-accent);
}

/* Tables */
.post-body table,
.page-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0 2rem;
    font-size: 0.95rem;
    background: var(--c-bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--c-border);
}

.post-body thead,
.page-body thead {
    background: var(--c-bg-elevated);
}

.post-body th,
.page-body th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-text-primary);
    border-bottom: 1px solid var(--c-border);
}

.post-body td,
.page-body td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--c-border);
    vertical-align: top;
    color: var(--c-text-secondary);
}

.post-body tbody tr:last-child td,
.page-body tbody tr:last-child td {
    border-bottom: none;
}

.post-body tbody tr:hover,
.page-body tbody tr:hover {
    background: var(--c-bg-elevated);
}

/* Blockquotes */
.post-body blockquote,
.page-body blockquote {
    margin: 1.5rem 0 2rem;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    background: var(--c-bg-card);
    border-left: 4px solid var(--c-accent);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    font-style: italic;
    color: var(--c-text-secondary);
}

.post-body blockquote p:last-child,
.page-body blockquote p:last-child {
    margin-bottom: 0;
}

.post-body blockquote cite,
.page-body blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 600;
    color: var(--c-accent);
}

.post-body blockquote cite::before,
.page-body blockquote cite::before {
    content: "— ";
}

/* Code */
.post-body code,
.page-body code {
    background: var(--c-bg-card);
    padding: 0.2em 0.4em;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.9em;
    color: var(--c-neon-magenta);
    border: 1px solid var(--c-border);
}

.post-body pre,
.page-body pre {
    background: var(--c-bg-card);
    color: var(--c-text-secondary);
    padding: 1.25rem 1.5rem;
    border-radius: var(--border-radius-sm);
    overflow-x: auto;
    margin: 1.5rem 0 2rem;
    font-size: 0.9rem;
    line-height: 1.6;
    border: 1px solid var(--c-border);
}

.post-body pre code,
.page-body pre code {
    background: none;
    padding: 0;
    color: inherit;
    font-size: inherit;
    border: none;
}

/* Images in content */
.post-body img,
.page-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-sm);
}

.post-body figure,
.page-body figure {
    margin: 1.5rem 0 2rem;
    padding: 0;
}

.post-body figure img,
.page-body figure img {
    margin: 0;
    display: block;
}

/* WordPress figure classes */
.wp-block-image {
    margin: 1.5rem 0 2rem;
}

.wp-block-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-sm);
}

.wp-block-image.is-resized img {
    width: auto;
    max-width: 100%;
}

.wp-block-image.aligncenter {
    text-align: center;
}

.wp-block-image.aligncenter img {
    margin: 0 auto;
}

.post-body figcaption,
.page-body figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--c-text-muted);
    margin-top: 0.75rem;
    font-style: italic;
}

/* WordPress embed classes */
.wp-block-embed {
    margin: 1.5rem 0 2rem;
}

.wp-block-embed__wrapper {
    position: relative;
}

.wp-block-embed-twitter {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* Links in content */
.post-body a,
.page-body a {
    color: var(--c-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.post-body a:hover,
.page-body a:hover {
    color: var(--c-accent-hover);
    text-shadow: var(--glow-cyan);
}

/* Horizontal rule */
.post-body hr,
.page-body hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 2.5rem 0;
}

/* Responsive tables */
@media (max-width: 768px) {
    .post-body table,
    .page-body table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .post-body th,
    .post-body td,
    .page-body th,
    .page-body td {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   LANDSCAPE BANNER
   ========================================================================== */
.landscape-banner {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-top: 4rem;
}

.landscape-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: filter 0.5s ease;
}

.landscape-banner:hover img {
    filter: grayscale(0%);
}

.landscape-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(13, 13, 15, 0.9));
    padding: 3rem 2rem 1.5rem;
    text-align: center;
}

.landscape-overlay span {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-text-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .landscape-banner {
        height: 200px;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background:
        linear-gradient(180deg, rgba(18, 18, 28, 0.98) 0%, rgba(8, 8, 12, 0.99) 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.01) 2px,
            rgba(255, 255, 255, 0.01) 4px
        );
    border-top: none;
    padding: 5rem 0 2rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

/* Animated neon top border */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--c-neon-cyan),
        var(--c-neon-magenta),
        var(--c-neon-lime),
        var(--c-neon-cyan)
    );
    background-size: 300% 100%;
    animation: footerGlow 8s linear infinite;
    box-shadow:
        0 0 20px rgba(0, 255, 255, 0.4),
        0 0 40px rgba(255, 0, 255, 0.2);
}

/* Floating particles effect */
.site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(0, 255, 255, 0.3) 1px, transparent 1px),
        radial-gradient(1px 1px at 80% 20%, rgba(255, 0, 255, 0.3) 1px, transparent 1px),
        radial-gradient(1px 1px at 40% 70%, rgba(0, 255, 102, 0.2) 1px, transparent 1px),
        radial-gradient(1px 1px at 60% 50%, rgba(0, 255, 255, 0.2) 1px, transparent 1px),
        radial-gradient(1px 1px at 90% 80%, rgba(255, 0, 255, 0.2) 1px, transparent 1px),
        radial-gradient(1px 1px at 10% 90%, rgba(0, 255, 102, 0.3) 1px, transparent 1px);
    background-size: 250px 250px;
    animation: footerParticles 20s linear infinite;
    pointer-events: none;
    opacity: 0.6;
}

@keyframes footerGlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

@keyframes footerParticles {
    0% { transform: translateY(0); }
    100% { transform: translateY(-250px); }
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand img {
    height: 35px;
    width: auto;
}

.footer-desc {
    font-size: 0.95rem;
    color: var(--c-text-muted);
    max-width: 280px;
    margin-bottom: 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--c-neon-cyan);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--c-neon-cyan), transparent);
}

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav a {
    color: var(--c-text-muted);
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

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

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--c-text-muted);
    transition: all 0.3s ease;
    position: relative;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 4px;
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, var(--c-neon-cyan) 50%, transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    border-color: transparent;
    color: var(--c-neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transform: translateY(-3px);
}

.social-icon:hover::before {
    opacity: 1;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid transparent;
    background-image: linear-gradient(rgba(18, 18, 28, 1), rgba(18, 18, 28, 1)),
                      linear-gradient(90deg, transparent, var(--c-neon-magenta), var(--c-neon-cyan), transparent);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   RATING BADGES
   ========================================================================== */
.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: 50px;
}

.rating-badge .stars {
    color: var(--c-neon-gold);
    font-size: 0.9rem;
}

.rating-badge .score {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--c-text-primary);
}

/* ==========================================================================
   PROGRESS BARS
   ========================================================================== */
.progress-bar {
    height: 8px;
    background: var(--c-bg-elevated);
    border-radius: 50px;
    overflow: hidden;
}

.progress-bar .progress {
    height: 100%;
    background: linear-gradient(90deg, var(--c-neon-cyan) 0%, var(--c-neon-lime) 100%);
    border-radius: 50px;
    transition: width 0.5s ease;
}

/* ==========================================================================
   VIDEO CONTAINER
   ========================================================================== */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    background: var(--c-bg-card);
    margin: 2rem 0;
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-page {
    padding: 2rem 0;
}

.contact-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-intro {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--c-text-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

/* Contact Methods Cards */
.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--border-radius);
    padding: 1.75rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--c-accent);
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--c-accent);
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-head);
    color: var(--c-text-primary);
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    margin-bottom: 0.75rem;
}

.contact-link {
    font-weight: 600;
    color: var(--c-accent);
    font-size: 1rem;
    display: inline-block;
}

.contact-link:hover {
    text-decoration: underline;
    text-shadow: var(--glow-cyan);
}

.contact-locations {
    font-size: 0.95rem;
    color: var(--c-text-secondary);
    font-weight: 500;
}

.contact-card-social {
    grid-column: span 2;
}

.contact-social {
    display: flex;
    gap: 1rem;
}

.contact-social a {
    width: 40px;
    height: 40px;
    background: var(--c-bg-elevated);
    border: 1px solid var(--c-border);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
    transition: all 0.2s ease;
}

.contact-social a:hover {
    border-color: var(--c-accent);
    color: var(--c-accent);
    box-shadow: var(--glow-cyan);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--border-radius);
    padding: 2.5rem;
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--c-text-primary);
}

.contact-form-header p {
    color: var(--c-text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--c-text-primary);
}

.form-group .optional {
    font-weight: 400;
    color: var(--c-text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid var(--c-border);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    font-family: var(--font-main);
    transition: all 0.2s ease;
    background: var(--c-bg-elevated);
    color: var(--c-text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--c-text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23a0a0b0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-privacy {
    padding: 1rem;
    background: var(--c-bg-elevated);
    border-radius: var(--border-radius-sm);
    margin-top: 0.5rem;
}

.form-privacy p {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin: 0;
    line-height: 1.5;
}

.form-privacy a {
    color: var(--c-accent);
    text-decoration: underline;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--c-neon-cyan) 0%, #0099cc 100%);
    color: var(--c-bg-primary);
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-head);
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
    box-shadow: var(--glow-cyan);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.btn-submit svg {
    transition: transform 0.2s ease;
}

.btn-submit:hover svg {
    transform: translateX(4px);
}

.form-success {
    text-align: center;
    padding: 3rem 2rem;
}

.form-success svg {
    color: var(--c-neon-lime);
    margin-bottom: 1.5rem;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--c-text-primary);
}

.form-success p {
    color: var(--c-text-muted);
    margin: 0;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-methods {
        order: 2;
    }

    .contact-form-wrapper {
        order: 1;
    }
}

@media (max-width: 640px) {
    .contact-hero h2 {
        font-size: 1.75rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .contact-card-social {
        grid-column: span 1;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   MOBILE RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero p {
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .matches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    section {
        padding: 3rem 0;
    }

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

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .matches-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-phone,
    .btn-cta-callback {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: 1fr;
    }

    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--c-text-primary);
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: var(--glow-cyan);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
    }
}

.glow-animation {
    animation: glow-pulse 2s ease-in-out infinite;
}

/* ==========================================================================
   SCROLLBAR STYLING
   ========================================================================== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--c-bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--c-border);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--c-text-muted);
}

/* ==========================================================================
   SELECTION STYLING
   ========================================================================== */
::selection {
    background: var(--c-accent);
    color: var(--c-bg-primary);
}

::-moz-selection {
    background: var(--c-accent);
    color: var(--c-bg-primary);
}

/* ==========================================================================
   MOBILE NAVIGATION MENU
   ========================================================================== */
.mobile-nav {
    position: fixed;
    top: var(--h-header);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-bg-secondary);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: none;
}

.mobile-nav.active {
    transform: translateX(0);
}

@media (max-width: 1024px) {
    .mobile-nav {
        display: block;
    }
}

.mobile-nav-content {
    padding: 2rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 640px) {
    .mobile-nav-content {
        grid-template-columns: 1fr;
    }
}

.mobile-nav-section h4 {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-accent);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--c-border);
}

.mobile-nav-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-nav-section ul li a {
    color: var(--c-text-secondary);
    font-size: 1rem;
    transition: all 0.2s ease;
    display: block;
    padding: 0.25rem 0;
}

.mobile-nav-section ul li a:hover {
    color: var(--c-text-primary);
    padding-left: 0.5rem;
}

/* Mobile Menu Toggle Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   FOOTER GAMBLING NOTICE
   ========================================================================== */
.footer-gambling-notice {
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: var(--border-radius-sm);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.footer-gambling-notice .gambleaware-logo {
    display: block;
}

.footer-gambling-notice .gambleaware-logo img {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.footer-gambling-notice .gambleaware-logo:hover img {
    opacity: 1;
}

.footer-gambling-notice p {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin: 0;
    line-height: 1.6;
    max-width: 700px;
}

.footer-gambling-notice strong {
    color: var(--c-neon-orange);
}

.footer-gambling-notice p a {
    color: var(--c-accent);
    text-decoration: underline;
}

.footer-gambling-notice p a:hover {
    text-shadow: var(--glow-cyan);
}

/* ==========================================================================
   BETTING SITE CARD COMPONENT
   ========================================================================== */
.betting-site-card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.3s ease;
}

.betting-site-card:hover {
    border-color: var(--c-accent);
    box-shadow: var(--glow-cyan);
}

.betting-site-logo {
    width: 80px;
    height: 80px;
    background: var(--c-bg-elevated);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.betting-site-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.betting-site-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.betting-site-info .rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.betting-site-info .rating .stars {
    color: var(--c-neon-gold);
}

.betting-site-info .rating .score {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--c-text-primary);
}

.betting-site-info .features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.betting-site-info .feature-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 4px;
    color: var(--c-accent);
}

.betting-site-bonus {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: var(--border-radius-sm);
    min-width: 180px;
}

.betting-site-bonus .bonus-amount {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-neon-lime);
    display: block;
    margin-bottom: 0.25rem;
}

.betting-site-bonus .bonus-label {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    margin-bottom: 1rem;
    display: block;
}

.betting-site-bonus .btn {
    width: 100%;
}

@media (max-width: 768px) {
    .betting-site-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .betting-site-logo {
        margin: 0 auto;
    }

    .betting-site-info .features {
        justify-content: center;
    }
}

/* ==========================================================================
   ODDS DISPLAY COMPONENT
   ========================================================================== */
.odds-display {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--c-bg-elevated);
    border: 1px solid var(--c-border);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-mono);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.odds-display:hover {
    border-color: var(--c-neon-lime);
    background: rgba(0, 255, 136, 0.1);
}

.odds-display .odds-value {
    color: var(--c-neon-lime);
    font-size: 1.1rem;
}

.odds-display .odds-label {
    color: var(--c-text-muted);
    font-size: 0.8rem;
    font-weight: 500;
}

/* ==========================================================================
   TOURNAMENT BADGE
   ========================================================================== */
.tournament-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--c-text-secondary);
}

.tournament-badge img {
    width: 16px;
    height: 16px;
}

.tournament-badge.major {
    border-color: var(--c-neon-gold);
    color: var(--c-neon-gold);
}

/* ==========================================================================
   LIVE STREAM INDICATOR
   ========================================================================== */
.live-stream-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: rgba(255, 51, 102, 0.15);
    border: 1px solid rgba(255, 51, 102, 0.4);
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--c-neon-red);
    text-transform: uppercase;
}

.live-stream-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--c-neon-red);
    border-radius: 50%;
    animation: pulse-live 1.5s ease-in-out infinite;
}

/* ==========================================================================
   COUNTDOWN TIMER
   ========================================================================== */
.countdown-timer {
    display: flex;
    gap: 0.5rem;
    font-family: var(--font-mono);
}

.countdown-unit {
    text-align: center;
    padding: 0.5rem;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--border-radius-sm);
    min-width: 50px;
}

.countdown-unit .value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--c-accent);
    display: block;
}

.countdown-unit .label {
    font-size: 0.65rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
}

/* ==========================================================================
   POST & PAGE HEADERS
   ========================================================================== */
.post-header,
.page-header {
    padding: 3rem 0 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--c-border);
}

.post-title,
.page-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.post-date {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--c-text-muted);
}

.post-author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.post-author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--c-border);
}

.post-author-info {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.post-author-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-text-primary);
    transition: color 0.2s ease;
}

.post-author:hover .post-author-name {
    color: var(--c-accent);
}

.post-author-specialty {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.post-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.category-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    color: var(--c-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.category-tag:hover {
    background: rgba(0, 212, 255, 0.2);
    box-shadow: var(--glow-cyan);
}

/* ==========================================================================
   CATEGORY PAGE
   ========================================================================== */
.category-header {
    padding: 4rem 0 3rem;
    text-align: center;
    border-bottom: 1px solid var(--c-border);
    margin-bottom: 3rem;
}

.category-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.category-description {
    font-size: 1.15rem;
    color: var(--c-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   POSTS GRID
   ========================================================================== */
.posts-section {
    padding: 3rem 0;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
}

.post-card {
    padding: 1.5rem;
}

.post-card-title {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.post-card-title a {
    color: var(--c-text-primary);
    transition: color 0.2s ease;
}

.post-card-title a:hover {
    color: var(--c-accent);
}

.post-excerpt {
    font-size: 0.9rem;
    color: var(--c-text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--c-accent);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    gap: 0.75rem;
}

/* Bookmaker screenshot pair: desktop + mobile side by side, equal height.
   Column ratio matches the capture aspect ratios (1440x900 vs 780x1688). */
.screenshot-pair {
    display: grid;
    grid-template-columns: 3.46fr 1fr;
    gap: 1rem;
    align-items: start;
    margin: 1.5rem 0 2rem;
}
.screenshot-pair img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}
.screenshot-pair figcaption,
.screenshot-caption {
    grid-column: 1 / -1;
    font-size: 0.8rem;
    color: var(--c-text-secondary, #9aa0b0);
    margin-top: 0.25rem;
}
@media (max-width: 768px) {
    .screenshot-pair {
        grid-template-columns: 1fr;
    }
    .screenshot-pair img:first-child {
        order: 2; /* mobile visitors see the mobile capture first (playbook rule 5) */
    }
}
