.um-header *,
.um-header *::before,
.um-header *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  text-decoration: none;
  list-style: none;
}

header {
  width: 100% !important;
}

.um-logo__text {
  display: none !important;;
}

.breadcrumbs {
  width: 100% !important;
}

.sitemap-main {
  padding-left: 1rem;
  padding-right: 1rem;
}

.container {
  width: 100%;
}

.um-header {
  --um-primary-color: inherit;
  --um-bg-color: inherit;
  --um-hover-color: inherit;
  --um-border-color: inherit;
  --um-transition: 0.3s ease;
  --um-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

  all: initial;
  font-family: inherit;
  display: block;
  position: relative;
  background-color: var(--um-bg-color);
  color: var(--um-primary-color);
}

.um-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  padding: 1rem;
  gap: 2rem;
}

.um-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  font-weight: bold;
}

.um-logo__image {
  display: block;
  max-width: 175px;
  height: auto;
}

.um-logo__text {
  font-size: 1.25rem;
}

.um-logo-text {
  text-decoration: none;
  color: inherit;
  font-weight: bold;
  font-size: 1.25rem;
}

.um-burger {
  --um-burger-width: 30px;
  --um-burger-height: 24px;

  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: var(--um-burger-width);
  height: var(--um-burger-height);
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.um-burger__line {
  width: 100%;
  height: 3px;
  background-color: currentColor;
  border-radius: 1px;
  transition:
    transform var(--um-transition),
    opacity var(--um-transition);
}

.um-burger[aria-expanded='true'] .um-burger__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.um-burger[aria-expanded='true'] .um-burger__line:nth-child(2) {
  opacity: 0;
}

.um-burger[aria-expanded='true'] .um-burger__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.um-navigation {
  position: relative;
  z-index: 1000;
}

.um-menu {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}

.um-menu-item {
  position: relative;
}

.um-menu-item__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.um-menu-link {
  display: block;
  padding: 0.75rem 1rem;
  color: inherit;
  text-decoration: none !important;
  flex: 1;
  transition: color var(--um-transition);
  border-radius: 4px;
}

a.um-menu-link:hover {
  color: var(--um-hover-color);
  background-color: rgba(0, 0, 0, 0.03);
}

.um-menu-item--current > .um-menu-item__inner > .um-menu-link {
  color: var(--um-hover-color);
  font-weight: 600;
}

.um-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  border-radius: 4px;
  flex-shrink: 0;
  transition: background-color var(--um-transition);
}

.um-menu-toggle:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.um-menu-toggle__icon {
  transition: transform var(--um-transition);
}

.um-menu-toggle[aria-expanded='true'] .um-menu-toggle__icon {
  transform: rotate(180deg);
}

.um-sub-menu {
  display: none;
  min-width: 200px;
  padding: 0.5rem 0;
  background-color: var(--um-bg-color);
  box-shadow: var(--um-shadow);
  border: 1px solid var(--um-border-color);
  border-radius: 6px;
}

.um-sub-menu--depth-0 {
  position: static;
}

.um-sub-menu--depth-1 {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
}

.um-sub-menu--depth-2 {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 0.5rem;
}

.um-sub-menu.active {
  display: block;
}

.um-sub-menu .um-menu-link {
  padding: 0.625rem 1rem;
  font-size: 0.9375rem;
}

@media (max-width: 1023px) {
  .um-burger {
    display: flex;
  }

  .um-navigation {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--um-bg-color);
    transition: left var(--um-transition);
    overflow-y: auto;
    padding: 5rem 1rem 2rem;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .um-navigation.active {
    left: 0;
  }

  .um-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .um-overlay.active {
    display: block;
  }

  .um-sub-menu--depth-1,
  .um-sub-menu--depth-2 {
    position: static;
    margin-left: 1rem;
    margin-top: 0.5rem;
    box-shadow: none;
    border: none;
    border-left: 1px solid var(--um-border-color);
  }
}

@media (min-width: 1024px) {
  .um-container {
    flex-wrap: nowrap;
  }

  .um-menu {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  .um-menu-toggle {
    display: none;
  }

  .um-menu-item--has-children:hover > .um-sub-menu {
    display: block;
  }

  .um-menu-item:last-child .um-sub-menu--depth-1,
  .um-menu-item:nth-last-child(2) .um-sub-menu--depth-1 {
    left: auto;
    right: 0;
  }
}

.um-menu-toggle:focus-visible,
.um-menu-link:focus-visible,
.um-burger:focus-visible {
  outline-width: 2px;
  outline-style: solid;
  outline-color: var(--um-hover-color);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .um-header * {
    transition: none !important;
    animation: none !important;
  }
}

.um-header.um-theme-minimal {
  --um-bg-color: transparent;
  --um-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.um-hide {
  display: none !important;
}

.um-show {
  display: block !important;
}

.um-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.header-meta time {
  margin: auto;
  font-size: 1rem;
}

.header-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: inherit;
}

.header-meta span {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-meta svg {
  width: 30px;
}
.articles-main {
  padding: 20px 0;
}

.articles-breadcrumbs {
  margin-bottom: 20px;
}

.articles-header {
  text-align: center;
  margin-bottom: 40px;
}

.articles-page-title {
  font-size: 2.5rem;
  margin: 0;
}

.articles-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.article-item {
  flex: 1 1 calc(50% - 30px);
  box-sizing: border-box;
}

.article-card {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sitemap-main h1 {
  text-align: center;
}

.articles-page-title {
  margin-bottom: 1rem;
}

.article-card__image-link {
  display: block;
  text-decoration: none;
}

.article-card__image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.article-card__img {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .article-card__img {
  transform: scale(1.05);
}

.article-card__image--placeholder {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-icon {
  font-size: 60px;
  opacity: 0.7;
}

.article-card__content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card__header {
  margin-bottom: 15px;
}

.article-card__title {
  margin: 0 0 10px 0;
  font-size: 1.4rem;
  line-height: 1.3;
}

.article-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-card__title a:hover {
  color: inherit;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #666;
}

.article-meta__separator {
  color: #999;
  font-size: 0.9em;
}

.article-meta__date,
.article-meta__author,
.article-meta__category,
.article-meta__time {
  display: inline-flex;
  align-items: center;
}

.article-card__excerpt {
  flex: 1;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #e0e0e4;
}

.article-card__footer {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.article-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  transition: gap 0.3s ease;
}

.article-card__read-more:hover {
  gap: 10px;
}

.read-more-arrow {
  transition: transform 0.3s ease;
}

.article-card__read-more:hover .read-more-arrow {
  transform: translateX(3px);
}

.articles-pagination {
  margin-top: 40px;
}

.articles-pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 5px;
}

.articles-pagination li {
  margin: 0;
}

.articles-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 15px;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  transition: all 0.3s ease;
}

.articles-pagination .current {
  background: inherit;
  color: inherit;
  border-color: inherit;
}

.articles-pagination a.page-numbers:hover {
  background: inherit;
  border-color: inherit;
  color: inherit;
}

.articles-empty {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  text-align: center;
}

.articles-empty__content {
  max-width: 500px;
}

.articles-empty__title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 15px;
}

.articles-empty__text {
  color: #666;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.articles-empty__link {
  display: inline-block;
  padding: 12px 30px;
  background: #0073aa;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.articles-empty__link:hover {
  background: #005a87;
}

@media (max-width: 992px) {
  .article-item {
    flex: 1 1 calc(50% - 30px);
  }

  .articles-page-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .articles-grid {
    gap: 20px;
  }

  .article-item {
    flex: 1 1 100%;
  }

  .article-card__content {
    padding: 20px;
  }

  .article-card__image {
    height: 180px;
  }

  .articles-page-title {
    font-size: 1.8rem;
  }

  .article-meta {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .articles-container {
    padding: 0 15px;
  }

  .article-card__image {
    height: 160px;
  }

  .article-card__title {
    font-size: 1.2rem;
  }

  .articles-pagination .page-numbers {
    min-width: 35px;
    height: 35px;
    padding: 0 10px;
    font-size: 0.9rem;
  }
}

:root {
  --bg-page: #0a0a0b;
  --bg-header: #111113;
  --bg-footer: #0d0d0e;
  --text-primary: #e0e0e4;
  --text-secondary: #9a9aa0;
  --accent: #42efd2;
  --accent-hover: #5cf5dd;
  --surface: #2a2a2e;
  --border: #1e1e22;
  --accent-bg: rgba(66, 239, 210, 0.08);
  --content-width: 920px;
  --section-gap: 4.5rem;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── General typography ── */
h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.2;
  color: var(--text-primary);
  text-align: left;
  margin-bottom: 1.25rem;
  scroll-margin-top: 2rem;
}

h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  line-height: 1.2;
  color: var(--text-primary);
  text-align: left;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  scroll-margin-top: 2rem;
}

p {
  text-align: left;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

a:hover { color: var(--accent-hover); }

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

ul, ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
  text-align: left;
}

li { margin-bottom: 0.5rem; }

strong { font-weight: 700; }

blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  color: var(--text-secondary);
  font-style: italic;
}

figure {
  margin: 1.5em auto;
}

figure img {
  display: block;
  max-width: 100%;
  height: auto;
}

figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

/* ── Layout: sections ── */
[data-content] {
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--section-gap);
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

[data-content="intro"] { margin-top: 0; }
[data-content="tldr"] { margin-top: 2.5rem; }

main {
  width: 100%;
}

/* ── Site header ── */
.site-header {
  background: var(--bg-header);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.site-logo img {
  display: block;
  width: 180px;
  height: auto;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-badge {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.header-badge time {
  color: var(--text-secondary);
}

.trust-marker {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

/* ── Hero section ── */
[data-content="hero"] {
  max-width: 100%;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 0;
  padding: 4rem 1.5rem 3.5rem;
  background: var(--bg-page);
  text-align: center;
}

[data-content="hero"] > * {
  position: relative;
  z-index: 1;
}

[data-content="hero"] figure {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--content-width);
  margin-bottom: 2rem;
}

[data-content="hero"] figure img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 4px;
}

.hero-rubric {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
  text-align: center;
}

h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
  max-width: var(--content-width);
  margin: 0 auto 1.25rem;
}

.hero-byline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 1.5rem;
}

.hero-byline span {
  color: var(--text-primary);
  font-weight: 700;
}

.hero-start-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bg-page);
  background: var(--accent);
  padding: 0.65rem 1.75rem;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  margin-top: 0.5rem;
}

.hero-start-btn:hover {
  background: var(--accent-hover);
  color: var(--bg-page);
  transform: translateY(-1px);
}

/* ── TL;DR component ── */
.tldr {
  background: var(--border);
  border-left: 3px solid var(--accent);
  padding: 1.75rem 2rem;
  border-radius: 0 4px 4px 0;
}

.tldr h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--accent);
}

.tldr ul { margin-bottom: 0; }
.tldr li {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-primary);
}

/* ── TOC ── */
[data-content="toc"] {
  margin-top: 3rem;
}

.toc-card {
  background: var(--bg-header);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.75rem 2rem;
}

.toc-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  column-count: 2;
  column-gap: 2rem;
}

.toc-list > li {
  break-inside: avoid;
  margin-bottom: 0.75rem;
}

.toc-list > li > a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.toc-list > li > a:hover { color: var(--accent); }

.toc-sublist {
  list-style: none;
  padding-left: 1rem;
  margin-top: 0.35rem;
  margin-bottom: 0;
}

.toc-sublist li {
  margin-bottom: 0.3rem;
}

.toc-sublist a {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.toc-sublist a:hover { color: var(--accent); }

/* ── Components: info-box ── */
.info-box {
  background: var(--border);
  border-left: 3px solid var(--accent);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.info-box p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-primary);
  text-align: left;
  margin-bottom: 0;
}

/* ── Components: callout ── */
.callout {
  background: var(--accent-bg);
  border-left: 3px solid var(--accent);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.callout p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-primary);
  text-align: left;
  margin-bottom: 0;
}

/* ── Components: key-takeaway ── */
.key-takeaway {
  border-top: 2px solid var(--accent);
  padding-top: 1rem;
  margin: 2rem 0;
}

.key-takeaway p {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-primary);
  text-align: left;
  margin-bottom: 0;
}

/* ── Components: fun-fact ── */
.fun-fact {
  position: relative;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

.fun-fact::before {
  content: '\2014';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.fun-fact p {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  text-align: left;
  margin-bottom: 0;
}

/* ── Components: glossary-term ── */
.glossary-term {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 1.5rem 0;
}

.glossary-term p {
  margin-bottom: 0;
  font-size: 0.95rem;
  text-align: left;
}

.glossary-term p strong {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 400;
}

/* ── Components: odds-example ── */
.odds-example {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.5rem 1.75rem;
  margin: 1.75rem 0;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.odds-example p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-primary);
  text-align: left;
  margin-bottom: 0.75rem;
}

.odds-example p:last-child { margin-bottom: 0; }

.odds-example p strong {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}

/* ── Components: comparison ── */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  margin: 1.75rem 0;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.comparison > div {
  background: var(--surface);
  padding: 1.25rem 1.5rem;
}

.comparison > div p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-primary);
  text-align: left;
  margin-bottom: 0.5rem;
}

.comparison > div p:last-child { margin-bottom: 0; }

.comparison > div p strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--accent);
  display: block;
  margin-bottom: 0.35rem;
}

/* ── Components: pre-bet-checklist ── */
.pre-bet-checklist {
  margin: 2rem 0;
}

.pre-bet-checklist > p {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
  text-align: left;
}

.pre-bet-checklist ul {
  list-style: none;
  border-left: 2px solid var(--border);
  padding-left: 1.75rem;
  margin: 0;
}

.pre-bet-checklist li {
  position: relative;
  padding: 0.4rem 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-primary);
}

.pre-bet-checklist li::before {
  content: '\2610';
  position: absolute;
  left: -1.75rem;
  top: 0.4rem;
  color: var(--accent);
  font-size: 0.85rem;
  background: var(--bg-page);
  padding: 0 2px;
  transform: translateX(-50%);
}

/* ── Components: at-a-glance ── */
.at-a-glance {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  margin: 1.75rem 0;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.at-a-glance > div {
  background: var(--surface);
  padding: 1.25rem;
}

.at-a-glance > div p {
  text-align: left;
  margin-bottom: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-primary);
}

.at-a-glance > div p:first-child {
  margin-bottom: 0.35rem;
}

.at-a-glance > div p:first-child strong {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--accent);
}

.at-a-glance > div p:last-child {
  color: var(--text-secondary);
  font-size: 0.82rem;
}

/* ── Components: card-grid ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.75rem 0;
}

.card-grid > div {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.25rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}

.card-grid > div p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-primary);
  text-align: left;
  margin-bottom: 0;
}

/* ── Components: dos-donts ── */
.dos-donts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  margin: 1.75rem 0;
  overflow: hidden;
}

.dos-donts > div {
  background: var(--surface);
  padding: 1.25rem 1.5rem;
}

.dos-donts > div:first-child p strong { color: #4ade80; }
.dos-donts > div:last-child p strong { color: #f87171; }

.dos-donts > div p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-primary);
  text-align: left;
  margin-bottom: 0.75rem;
}

.dos-donts > div ul {
  padding-left: 1.25rem;
  margin-bottom: 0;
}

.dos-donts > div li {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-primary);
}

/* ── Components: worked-example ── */
.worked-example {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.75rem 2rem;
  margin: 1.75rem 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.worked-example p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-primary);
  text-align: left;
  margin-bottom: 0.75rem;
}

.worked-example p:last-child { margin-bottom: 0; }

.worked-example p strong {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--accent);
}

/* ── Components: section-bridge ── */
.section-bridge {
  text-align: center;
  font-style: italic;
  color: var(--accent);
  font-size: 0.88rem;
  margin: 2.5rem 0;
  position: relative;
}

.section-bridge::before,
.section-bridge::after {
  content: '\00B7\00A0\00B7\00A0\00B7';
  color: var(--border);
  margin: 0 0.75rem;
}

/* ── Components: author-bio ── */
.author-bio {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-style: italic;
  text-align: center;
}

/* ── FAQ section ── */
[data-content="faq"] details {
  border-bottom: 1px solid var(--border);
  interpolate-size: allow-keywords;
}

[data-content="faq"] summary {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.4;
  padding: 1rem 2rem 1rem 0;
  cursor: pointer;
  position: relative;
  list-style: none;
  color: var(--text-primary);
  transition: color 0.2s ease;
}

[data-content="faq"] summary::-webkit-details-marker { display: none; }

[data-content="faq"] summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--accent);
  transition: transform 0.25s ease;
}

[data-content="faq"] details[open] summary::after {
  content: '\2212';
}

[data-content="faq"] details::details-content {
  opacity: 0;
  block-size: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, block-size 0.35s ease, content-visibility 0.3s ease allow-discrete;
  content-visibility: hidden;
}

[data-content="faq"] details[open]::details-content {
  opacity: 1;
  block-size: auto;
  content-visibility: visible;
}

@supports not selector(::details-content) {
  [data-content="faq"] details > div {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease;
  }
  [data-content="faq"] details[open] > div {
    max-height: 500px;
    opacity: 1;
  }
}

[data-content="faq"] details > div {
  padding-bottom: 1rem;
}

[data-content="faq"] details > div p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  text-align: left;
}

[data-content="faq"] summary:hover { color: var(--accent); }

[data-content="faq"] summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ── Footer ── */
.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem 1.5rem;
  margin-top: var(--section-gap);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.footer-col h2 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.footer-col p {
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-secondary);
  text-align: left;
  margin-bottom: 0.5rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li { margin-bottom: 0.35rem; }

.footer-col a {
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  max-width: 960px;
  margin: 2rem auto 0;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 0;
}

/* ── Mobile: max-width 768px ── */
@media (max-width: 768px) {
  [data-content] {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  [data-content="hero"] {
    padding: 2.5rem 1rem 2.5rem;
  }

  .site-header {
    padding: 0.5rem 1rem;
  }

  .site-logo img { width: 140px; }

  .header-meta { gap: 0.5rem; }
  .trust-marker { display: none; }

  .toc-list { column-count: 1; }

  .comparison,
  .dos-donts {
    grid-template-columns: 1fr;
  }

  .at-a-glance {
    grid-template-columns: 1fr 1fr;
  }

  .glossary-term {
    flex-direction: column;
    gap: 4px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .hero-start-btn {
    font-size: 0.75rem;
    padding: 0.55rem 1.25rem;
  }
}

@media (max-width: 480px) {
  :root {
    --section-gap: 3rem;
  }

  .at-a-glance {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .tldr { padding: 1.25rem 1.25rem; }
  .toc-card { padding: 1.25rem; }
}

.um-sub-menu {
  position: absolute !important;
  top: 38px !important;
}

.um-sub-menu .um-menu-item {
  background: var(--color-bg) !important;
}

.um-burger[aria-expanded='true'] .um-burger__line:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg) !important;
}

.um-navigation.active {
  background: var(--border) !important;
}

main {
  overflow-x: hidden !important;
}

.um-menu-link {
  padding: 0.75rem 0.7rem !important;
}

h1 {
  color: var(--color-text) !important;
  margin-bottom: 1rem;
}

header {
  max-width: 1380px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

footer {
  max-width: 1380px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.sitemap-main {
  max-width: 1380px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.breadcrumbs {
  margin-bottom: 1rem;
}

.breadcrumbs span {
  font-size: 1rem;
}

.articles-page-title {
  margin-bottom: 1rem;
}

main {
  min-height: 60vh;
}


footer ul {
  list-style: none;
}

.articles-page-title {
  text-align: center;
}


    .sitemap-content {
        margin: 30px 0;
    }

    .sitemap-section {
        margin-bottom: 40px;
        padding: 20px;
        border-radius: 8px;
    }

    .sitemap-section h2 {
        color: inherit;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }

    .sitemap-section h3 {
        color: #555;
        margin: 15px 0 10px 0;
    }

    .sitemap-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    @media (max-width: 1024px) {
        .sitemap-list {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.25rem;
        }
    }

    @media (max-width: 768px) {
        .sitemap-list {
            grid-template-columns: 1fr;
            gap: 1rem;
        }
    }

    .sitemap-list li {
        margin-bottom: 8px;
        padding-left: 15px;
        position: relative;
    }

    .sitemap-list li:before {
        content: "›";
        position: absolute;
        left: 0;
        color: var(--accent);
    }

    .sitemap-list a {
        text-decoration: none;
        color: inherit;
        transition: color 0.3s;
    }

    .sitemap-list a:hover {
        color: var(--accent);
    }

    .category-group {
        margin-bottom: 20px;
    }

    .tags-cloud {
        line-height: 2;
    }

    .tag {
        display: inline-block;
        background: #e9e9e9;
        padding: 5px 10px;
        margin: 3px;
        border-radius: 3px;
        text-decoration: none;
        color: #333;
        font-size: 14px;
        transition: all 0.3s;
    }

    .tag:hover {
        background: #007cba;
        color: white;
    }

    @media (max-width: 768px) {
        .sitemap-section {
            padding: 15px;
        }

        .tag {
            font-size: 12px;
            padding: 3px 8px;
        }
    }

    /* ── Images: responsive and styled ── */
figure {
  margin: 2rem 0;
  padding: 0;
}

figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  border: 1px solid var(--border);
}

figcaption {
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-top: 0.6rem;
  padding: 0 0.5rem;
}

/* Hero image override */
[data-content="hero"] figure {
  margin: 0 auto 2rem;
  max-width: var(--content-width);
}

[data-content="hero"] figure img {
  border: none;
  border-radius: 4px;
}

/* ── Mobile adjustments ── */
@media (max-width: 768px) {
  figure {
    margin: 1.5rem 0;
  }

  figcaption {
    font-size: 0.78rem;
    padding: 0 0.25rem;
  }
}

@media (max-width: 480px) {
  figure {
    margin: 1.25rem 0;
  }
}

:root {
  --bg-page: #0a0a0b;
  --bg-header: #111113;
  --bg-footer: #0d0d0e;
  --text-primary: #e0e0e4;
  --text-secondary: #9a9aa0;
  --accent: #42efd2;
  --accent-hover: #5cf5dd;
  --border: #1e1e22;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
a:hover { color: var(--accent-hover); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.site-header {
  background: var(--bg-header);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
}

.site-logo img {
  display: block;
  width: 180px;
  height: auto;
}

.error-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

main {
  margin-top: 0 !important;
}

.toc-wrap {
  background: var(--bg-header);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.75rem 2rem;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.error-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  max-width: 420px;
}

.error-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bg-page);
  background: var(--accent);
  padding: 0.65rem 1.75rem;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.error-btn:hover {
  background: var(--accent-hover);
  color: var(--bg-page);
  transform: translateY(-1px);
}