.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;
}

section section {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.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: #555;
}

.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: #0f0f0f;
        --bg-header: #121212;
        --bg-footer: #0a0a0a;
        --text-primary: #e0e0e0;
        --accent: #e53b19;
        --accent-secondary: #ff8c5a;
        --border-color: #2a2a2a;
        --bg-surface: #1a1a1a;
        --text-muted: #888888;
        --font-heading: 'Inter', sans-serif;
        --font-body: 'Source Sans 3', sans-serif;
        --font-mono: 'JetBrains Mono', monospace;
        --font-logo: 'Poppins', sans-serif;
        --content-width: 1000px;
        --section-gap: 4rem;
        --success: #2e7d32;
        --danger: #c62828;
      }

      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }

      html {
        scroll-behavior: smooth;
        overflow-x: hidden;
      }

      body {
        font-family: var(--font-body);
        font-size: 1.125rem;
        line-height: 1.7;
        color: var(--text-primary);
        background-color: var(--bg-page);
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
      }

      /* --- GENERAL TYPOGRAPHY --- */
      h1,
      h2,
      h3 {
        font-family: var(--font-heading);
        font-weight: 700;
        line-height: 1.2;
        color: #ffffff;
      }

      h2 {
        font-size: clamp(1.5rem, 3vw, 2.25rem);
        text-align: left;
        margin-bottom: 1.25rem;
        scroll-margin-top: 2rem;
      }

      h3 {
        font-size: clamp(1.25rem, 2.5vw, 1.75rem);
        text-align: left;
        margin-bottom: 1rem;
        scroll-margin-top: 2rem;
      }

      p {
        text-align: left;
        margin-bottom: 1.25rem;
      }

      ul,
      ol {
        text-align: left;
        padding-left: 1.5rem;
        margin-bottom: 1.25rem;
      }

      li {
        margin-bottom: 0.5rem;
      }

      a {
        color: var(--accent-secondary);
        text-decoration: underline;
        text-underline-offset: 3px;
        transition:
          color 0.2s ease,
          opacity 0.2s ease;
      }

      a:hmás {
        color: var(--accent);
      }

      a:focus-visible {
        outline: 2px solid var(--accent);
        outline-offset: 3px;
        border-radius: 2px;
      }

      strong {
        font-weight: 700;
      }

      blockquote {
        border-left: 3px solid var(--accent);
        padding-left: 1.25rem;
        margin: 1.5rem 0;
        color: var(--text-muted);
        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-muted);
        margin-top: 0.5rem;
      }

      table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 1.25rem;
      }

      th,
      td {
        text-align: left;
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--border-color);
      }

      th {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--text-muted);
      }

      td {
        font-size: 1rem;
      }

      hr {
        border: none;
        border-top: 1px solid var(--border-color);
        margin: 2rem 0;
      }

      /* --- LAYOUT: SECTIONS --- */
      [data-content] {
        max-width: var(--content-width);
        margin-left: auto;
        margin-right: auto;
        margin-bottom: var(--section-gap);
        padding-left: 1.25rem;
        padding-right: 1.25rem;
      }

      main {
        width: 100%;
      }

      /* --- HEADER --- */
      .site-header {
        background-color: var(--bg-header);
        padding: 1rem 1.5rem;
      }

      .site-logo img {
        display: block;
        width: 180px;
        height: auto;
      }

      /* --- HERO --- */
      [data-content='hero'] {
        max-width: none;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 5rem 1.5rem 4rem;
        text-align: center;
        background-color: var(--bg-page);
        position: relative;
        overflow: hidden;
        margin-bottom: var(--section-gap);
      }

      [data-content='hero']::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: repeating-conic-gradient(
          from 0deg at 50% 50%,
          transparent 0deg 45deg,
          rgba(229, 59, 25, 0.04) 45deg 90deg
        );
        background-size: 60px 60px;
        pointer-events: none;
        mask-image: radial-gradient(
          ellipse 70% 70% at 50% 50%,
          black 20%,
          transparent 70%
        );
        -webkit-mask-image: radial-gradient(
          ellipse 70% 70% at 50% 50%,
          black 20%,
          transparent 70%
        );
      }

      [data-content='hero'] .hero-category {
        position: relative;
        z-index: 1;
        font-family: var(--font-heading);
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: var(--accent);
        margin-bottom: 1.5rem;
        display: block;
        text-align: center;
      }

      [data-content='hero'] h1 {
        position: relative;
        z-index: 1;
        font-size: clamp(2rem, 4vw, 3rem);
        max-width: var(--content-width);
        margin: 0 auto 1.25rem;
        text-align: center;
      }

      [data-content='hero'] .hero-subtitle {
        position: relative;
        z-index: 1;
        font-family: var(--font-body);
        font-size: 0.9rem;
        letter-spacing: 0.08em;
        color: var(--accent-secondary);
        margin-bottom: 2rem;
        text-align: center;
      }

      [data-content='hero'] .hero-byline {
        position: relative;
        z-index: 1;
        font-size: 0.85rem;
        color: var(--text-muted);
        margin-bottom: 2.5rem;
        text-align: center;
      }

      [data-content='hero'] figure {
        position: relative;
        z-index: 1;
        margin-left: auto;
        margin-right: auto;
        max-width: var(--content-width);
      }

      [data-content='hero'] figure img {
        border-radius: 6px;
        display: block;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
      }

      /* --- INTRO --- */
      [data-content='intro'] {
        margin-top: 0;
      }

      /* --- TLDR --- */
      .tldr {
        background-color: var(--bg-surface);
        border-left: 3px solid var(--accent);
        border-radius: 0 4px 4px 0;
        padding: 1.75rem 2rem;
      }

      .tldr h2 {
        font-size: clamp(1.1rem, 2vw, 1.25rem);
        margin-bottom: 1rem;
        color: #ffffff;
      }

      .tldr ul {
        list-style: none;
        padding-left: 0;
        margin-bottom: 0;
      }

      .tldr ul li {
        padding-left: 1rem;
        position: relative;
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
        color: var(--text-primary);
      }

      .tldr ul li::before {
        content: '\2014';
        position: absolute;
        left: 0;
        color: var(--accent);
      }

      .tldr ul li:last-child {
        margin-bottom: 0;
      }

      /* --- TOC --- */
      [data-content='toc'] {
        margin-bottom: var(--section-gap);
      }

      .toc-box {
        background-color: var(--bg-surface);
        border: 1px solid var(--border-color);
        border-radius: 4px;
        padding: 1.5rem 1.75rem;
      }

      .toc-title {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--text-primary);
        margin-bottom: 1rem;
      }

      [data-content='toc'] nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      [data-content='toc'] nav ul li {
        margin-bottom: 0.4rem;
      }

      [data-content='toc'] nav ul li a {
        font-size: 0.95rem;
        color: var(--text-primary);
        text-decoration: none;
        transition: color 0.2s ease;
      }

      [data-content='toc'] nav ul li a:hmás {
        color: var(--accent);
      }

      [data-content='toc'] nav ul ul {
        padding-left: 1.25rem;
        margin-top: 0.3rem;
        margin-bottom: 0.3rem;
      }

      [data-content='toc'] nav ul ul li a {
        font-size: 0.85rem;
        color: var(--text-muted);
      }

      [data-content='toc'] nav ul ul li a:hmás {
        color: var(--accent-secondary);
      }

      /* --- COMPONENTS --- */

      /* info-box */
      .info-box {
        background-color: var(--bg-surface);
        border-left: 3px solid var(--accent);
        border-radius: 0 4px 4px 0;
        padding: 1.25rem 1.5rem;
        margin: 1.75rem 0;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
      }

      .info-box p {
        text-align: left;
        color: var(--text-primary);
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
      }

      .info-box p:last-child {
        margin-bottom: 0;
      }

      /* callout */
      .callout {
        background-color: rgba(229, 59, 25, 0.06);
        border: 1px solid rgba(229, 59, 25, 0.2);
        border-radius: 4px;
        padding: 1.25rem 1.5rem;
        margin: 1.75rem 0;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
      }

      .callout p {
        text-align: left;
        color: var(--text-primary);
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
      }

      .callout p:last-child {
        margin-bottom: 0;
      }

      /* key-takeaway */
      .key-takeaway {
        border-top: 2px solid var(--accent);
        padding-top: 1rem;
        margin: 2rem 0;
      }

      .key-takeaway p {
        text-align: left;
        font-family: var(--font-heading);
        font-size: clamp(1.15rem, 2vw, 1.35rem);
        font-weight: 600;
        color: #ffffff;
        line-height: 1.5;
        margin-bottom: 0;
      }

      /* fun-fact */
      .fun-fact {
        position: relative;
        padding-left: 1.5rem;
        margin: 1.75rem 0;
      }

      .fun-fact::before {
        content: '\2014';
        position: absolute;
        left: 0;
        top: 0;
        color: var(--accent);
        font-weight: 700;
      }

      .fun-fact p {
        text-align: left;
        font-style: italic;
        color: var(--text-muted);
        font-size: 0.95rem;
        margin-bottom: 0;
      }

      /* glossary-term */
      .glossary-term {
        display: flex;
        align-items: baseline;
        gap: 0.75rem;
        margin: 1.25rem 0;
      }

      .glossary-term p {
        text-align: left;
        margin-bottom: 0;
      }

      .glossary-term strong {
        font-family: var(--font-mono);
        color: var(--accent-secondary);
        text-decoration: underline;
        text-underline-offset: 4px;
        text-decoration-color: rgba(255, 140, 90, 0.3);
        white-space: nowrap;
      }

      /* odds-example */
      .odds-example {
        background-color: var(--bg-surface);
        border-radius: 4px;
        padding: 1.5rem;
        margin: 1.75rem 0;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
        overflow-x: auto;
      }

      .odds-example table {
        margin-bottom: 1rem;
      }

      .odds-example th {
        color: var(--text-muted);
        font-size: 0.75rem;
        border-bottom-color: var(--border-color);
      }

      .odds-example td {
        font-family: var(--font-mono);
        font-size: 0.9rem;
        color: var(--text-primary);
      }

      .odds-example tr td:last-child {
        color: var(--accent-secondary);
        font-family: var(--font-body);
        font-size: 0.85rem;
      }

      .odds-example p {
        text-align: left;
        font-size: 0.85rem;
        color: var(--text-muted);
        margin-bottom: 0;
      }

      /* comparison */
      .comparison {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin: 1.75rem 0;
      }

      .comparison > div {
        background-color: var(--bg-surface);
        border-radius: 4px;
        padding: 1.25rem 1.5rem;
        border-top: 2px solid var(--accent);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
      }

      .comparison > div:last-child {
        border-top-color: var(--accent-secondary);
      }

      .comparison p {
        text-align: left;
        font-size: 0.9rem;
        color: var(--text-primary);
        margin-bottom: 0.6rem;
      }

      .comparison p:last-child {
        margin-bottom: 0;
      }

      .comparison strong {
        font-family: var(--font-heading);
        font-size: 1.1rem;
        display: block;
        margin-bottom: 0.5rem;
        color: #ffffff;
      }

      /* pre-bet-checklist */
      .pre-bet-checklist {
        margin: 2rem 0;
      }

      .pre-bet-checklist > p {
        text-align: left;
        font-family: var(--font-heading);
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: var(--accent);
        margin-bottom: 1rem;
      }

      .pre-bet-checklist ul {
        list-style: none;
        padding-left: 1.75rem;
        border-left: 2px solid var(--border-color);
        margin-bottom: 0;
      }

      .pre-bet-checklist ul li {
        position: relative;
        padding-left: 0.25rem;
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
        color: var(--text-primary);
      }

      .pre-bet-checklist ul li::before {
        content: '\2610';
        position: absolute;
        left: -1.65rem;
        color: var(--accent);
        background: var(--bg-page);
        padding: 0 2px;
      }

      .pre-bet-checklist ul li:last-child {
        margin-bottom: 0;
      }

      /* at-a-glance */
      .at-a-glance {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 0;
        margin: 1.75rem 0;
        background-color: var(--bg-surface);
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
      }

      .at-a-glance > div {
        padding: 1.25rem 1rem;
        text-align: center;
        border-right: 1px solid var(--border-color);
      }

      .at-a-glance > div:last-child {
        border-right: none;
      }

      .at-a-glance p {
        text-align: center;
        margin-bottom: 0;
      }

      .at-a-glance p:first-child {
        font-family: var(--font-mono);
        font-size: 1.3rem;
        color: #ffffff;
        margin-bottom: 0.35rem;
      }

      .at-a-glance p:last-child {
        font-size: 0.75rem;
        color: var(--text-muted);
        line-height: 1.4;
      }

      /* dos-donts */
      .dos-donts {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin: 1.75rem 0;
      }

      .dos-donts > div {
        padding: 1.25rem 1.5rem;
        border-radius: 4px;
        background-color: var(--bg-surface);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
      }

      .dos-donts > div:first-child {
        border-top: 2px solid var(--success);
      }

      .dos-donts > div:last-child {
        border-top: 2px solid var(--danger);
      }

      .dos-donts p {
        text-align: left;
        color: var(--text-primary);
      }

      .dos-donts strong {
        font-family: var(--font-heading);
        font-size: 0.95rem;
        display: block;
        margin-bottom: 0.75rem;
        color: #ffffff;
      }

      .dos-donts ul {
        padding-left: 1.25rem;
        margin-bottom: 0;
      }

      .dos-donts ul li {
        font-size: 0.9rem;
        color: var(--text-primary);
        margin-bottom: 0.5rem;
      }

      .dos-donts ul li:last-child {
        margin-bottom: 0;
      }

      /* worked-example */
      .worked-example {
        background-color: var(--bg-surface);
        border-radius: 4px;
        padding: 1.75rem 2rem;
        margin: 1.75rem 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      }

      .worked-example p {
        text-align: left;
        color: var(--text-primary);
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
      }

      .worked-example p:first-child {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--accent);
        margin-bottom: 1rem;
      }

      .worked-example p:last-child {
        font-family: var(--font-mono);
        font-size: 0.95rem;
        color: var(--accent-secondary);
        background: rgba(229, 59, 25, 0.06);
        padding: 0.75rem 1rem;
        border-radius: 3px;
        margin-bottom: 0;
      }

      /* section-bridge */
      .section-bridge {
        text-align: center;
        margin: 2.5rem 0;
      }

      .section-bridge p {
        text-align: center;
        font-style: italic;
        color: var(--text-muted);
        font-size: 0.95rem;
        display: inline;
        margin-bottom: 0;
      }

      .section-bridge::before,
      .section-bridge::after {
        content: '\00b7\00a0\00b7\00a0\00b7';
        color: var(--border-color);
        font-size: 0.8rem;
        display: block;
        margin-bottom: 0.5rem;
      }

      .section-bridge::after {
        margin-bottom: 0;
        margin-top: 0.5rem;
      }

      /* author-bio */
      .author-bio {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.8rem;
        color: var(--text-muted);
        font-style: italic;
        border-top: 1px solid var(--border-color);
        padding-top: 1rem;
        margin-top: 2rem;
      }

      /* card-grid */
      .card-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.25rem;
        margin: 1.75rem 0;
      }

      .card-grid > div {
        background-color: var(--bg-surface);
        border-radius: 4px;
        padding: 1.25rem 1.5rem;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
        border-top: 2px solid var(--border-color);
      }

      .card-grid p {
        text-align: left;
        color: var(--text-primary);
        font-size: 0.9rem;
      }

      /* --- FAQ --- */
      [data-content='faq'] details {
        border-bottom: 1px solid var(--border-color);
      }

      [data-content='faq'] details:first-of-type {
        border-top: 1px solid var(--border-color);
      }

      [data-content='faq'] summary {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1rem;
        color: var(--text-primary);
        padding: 1.15rem 0;
        cursor: pointer;
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        transition: color 0.2s ease;
      }

      [data-content='faq'] summary::-webkit-details-marker {
        display: none;
      }

      [data-content='faq'] summary::after {
        content: '+';
        font-size: 1.3rem;
        color: var(--accent);
        flex-shrink: 0;
        transition: transform 0.3s ease;
      }

      [data-content='faq'] details[open] summary::after {
        content: '\2212';
      }

      [data-content='faq'] summary:hmás {
        color: var(--accent-secondary);
      }

      [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 p {
        text-align: left;
        color: var(--text-muted);
        font-size: 0.95rem;
        padding-bottom: 1.15rem;
        margin-bottom: 0;
      }

      /* --- BACK TO TOP --- */
      .back-to-top {
        display: inline-block;
        font-family: var(--font-heading);
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--text-muted);
        text-decoration: none;
        border: 1px solid var(--border-color);
        padding: 0.5rem 1.25rem;
        border-radius: 3px;
        transition:
          color 0.2s ease,
          border-color 0.2s ease;
        margin-top: 1rem;
      }

      .back-to-top:hmás {
        color: var(--accent);
        border-color: var(--accent);
      }

      /* --- FOOTER --- */
      .site-footer {
        background-color: var(--bg-footer);
        padding: 3rem 1.5rem 1.5rem;
        margin-top: var(--section-gap);
      }

      .footer-grid {
        max-width: 960px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
      }

      .footer-col .footer-heading {
        font-family: var(--font-heading);
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: var(--text-muted);
        margin-bottom: 0.75rem;
      }

      .footer-col p,
      .footer-col li,
      .footer-col a {
        font-size: 0.78rem;
        color: #777777;
        line-height: 1.6;
      }

      .footer-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .footer-col ul li {
        margin-bottom: 0.35rem;
      }

      .footer-col a {
        text-decoration: none;
        transition: color 0.2s ease;
      }

      .footer-col a:hmás {
        color: var(--text-primary);
      }

      .footer-bottom {
        max-width: 960px;
        margin: 2rem auto 0;
        padding-top: 1.25rem;
        border-top: 1px solid var(--border-color);
        text-align: center;
        font-size: 0.72rem;
        color: #555555;
        line-height: 1.6;
      }

      /* --- IMAGE CLASSES --- */
      .hero-image {
        display: block;
        max-width: 100%;
        height: auto;
        border-radius: 6px;
      }

      .article-image {
        display: block;
        max-width: 100%;
        height: auto;
        border-radius: 4px;
        margin: 0 auto;
      }

      /* --- MEDIA QUERIES --- */
      @media (max-width: 768px) {
        [data-content] {
          padding-left: 1rem;
          padding-right: 1rem;
        }

        [data-content='hero'] {
          padding: 3.5rem 1rem 3rem;
        }

        .site-header {
          padding: 0.75rem 1rem;
        }

        .comparison {
          grid-template-columns: 1fr;
        }

        .dos-donts {
          grid-template-columns: 1fr;
        }

        .at-a-glance {
          grid-template-columns: 1fr 1fr;
        }

        .at-a-glance > div {
          border-right: none;
          border-bottom: 1px solid var(--border-color);
        }

        .at-a-glance > div:nth-child(odd) {
          border-right: 1px solid var(--border-color);
        }

        .at-a-glance > div:last-child,
        .at-a-glance > div:nth-last-child(2):nth-child(odd) + div {
          border-bottom: none;
        }

        .glossary-term {
          flex-direction: column;
          gap: 0.25rem;
        }

        .footer-grid {
          grid-template-columns: 1fr 1fr;
          gap: 1.5rem;
        }

        .odds-example {
          overflow-x: auto;
        }

        .worked-example {
          padding: 1.25rem 1.25rem;
        }
      }

      @media (max-width: 480px) {
        .at-a-glance {
          grid-template-columns: 1fr;
        }

        .at-a-glance > div {
          border-right: none;
          border-bottom: 1px solid var(--border-color);
        }

        .at-a-glance > div:last-child {
          border-bottom: none;
        }

        .footer-grid {
          grid-template-columns: 1fr;
        }
      }

      .error-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 4rem 1.5rem;
      }
      .error-code {
        font-family: var(--font-heading);
        font-size: clamp(3rem, 8vw, 6rem);
        font-weight: 700;
        color: var(--accent);
        line-height: 1;
        margin-bottom: 1rem;
      }
      .error-title {
        font-family: var(--font-heading);
        font-size: clamp(1.25rem, 3vw, 1.75rem);
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 1rem;
      }
      .error-text {
        color: var(--text-muted);
        max-width: 480px;
        margin-bottom: 2rem;
      }
      .error-link {
        display: inline-block;
        font-family: var(--font-heading);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #ffffff;
        text-decoration: none;
        background-color: var(--accent);
        padding: 0.65rem 1.75rem;
        border-radius: 3px;
        transition:
          background-color 0.2s ease,
          transform 0.15s ease;
      }
      .error-link:hover {
        background-color: var(--accent-secondary);
        color: #ffffff;
        transform: translateY(-1px);
      }

.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(--bg-surface) !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-secondary);
    }

    .sitemap-list a {
        text-decoration: none;
        color: inherit;
        transition: color 0.3s;
    }

    .sitemap-list a:hover {
        color: var(--accent-secondary);
    }

    .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-styles.css — GOLPEPRO image layout */

/* Hero image container */
[data-content="hero"] figure {
  margin-top: 2rem;
  margin-bottom: 0;
}

[data-content="hero"] figure img {
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Article images */
figure {
  margin: 2rem auto;
}

figure img.article-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: #888888;
  margin-top: 0.6rem;
  line-height: 1.5;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  figure {
    margin: 1.5rem auto;
  }

  [data-content="hero"] figure {
    margin-top: 1.5rem;
  }

  figure img.article-image {
    border-radius: 3px;
  }
}

@media (max-width: 480px) {
  figcaption {
    font-size: 0.8rem;
  }
}
