/*
Theme Name: champions
Description: description
Version: 1.0
*/

/*
Theme Name: champions
Description: description
Version: 1.0
*/

/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
:root {
  
  --font-logo: "Poppins", Arial Black, sans-serif;
  --font-heading: "Poppins", system-ui, sans-serif;
  --font-body: "Source Sans 3", Georgia, serif;
  --font-mono: "JetBrains Mono", Consolas, monospace;

  
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  
  --heading-hero: clamp(2.5rem, 5vw + 1rem, 4rem);
  --heading-section: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);

  
  --content-width: 760px;
  --content-wide: 1200px;

  
  --bg-primary: #0d1b2a;
  --bg-secondary: #1b2838;
  --bg-card: #1f2d3d;
  --bg-elevated: #263545;
  --bg-header: #0a1628;

  
  --text-primary: #f0f4f8;
  --text-secondary: #a0aec0;
  --text-muted: #718096;

  
  --border-default: #2d3748;
  --border-subtle: #1e2a3a;

  
  --accent-primary: #1e88e5;
  --accent-primary-hover: #1976d2;
  --accent-dark: #0d47a1;

  
  --accent-gold: #ffc107;
  --accent-gold-hover: #ffb300;
  --accent-gold-dark: #ff9800;

  
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b82f6;

  
  --color-odds-up: #10b981;
  --color-odds-down: #ef4444;
  --color-favorite: #ffc107;

  
  --section-gap: 4rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   General Typography
   ========================================================================== */
p {
  text-align: left;
  margin-bottom: 1.25rem;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
  color: var(--text-primary);
  scroll-margin-top: 2rem;
}

h2 {
  font-size: var(--heading-section);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: var(--text-2xl);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: var(--text-xl);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-primary-hover);
}

a:focus {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

strong {
  font-weight: 600;
  color: var(--text-primary);
}

em {
  font-style: italic;
}

ul,
ol {
  text-align: left;
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

blockquote {
  text-align: left;
  border-left: 3px solid var(--accent-primary);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  color: var(--text-secondary);
  font-style: italic;
}

/* ==========================================================================
   Layout - Main & Sections
   ========================================================================== */
main {
  width: 100%;
}

article {
  width: 100%;
}

[data-content] {
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
  margin-bottom: var(--section-gap);
}

[data-content]:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Images & Figures
   ========================================================================== */
figure {
  margin: 1.5em auto;
}

figure img {
  display: block;
  max-width: 100%;
  height: auto;
}

figcaption {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.hero-image,
.article-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

img[loading="lazy"] {
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   Tables
   ========================================================================== */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: var(--text-sm);
}

th,
td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-default);
}

th {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-card);
}

td {
  color: var(--text-secondary);
}

tr:hover td {
  background: var(--bg-card);
}

/* ==========================================================================
   Components: Info Box
   ========================================================================== */
.info-box {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  background: var(--bg-card);
  border-left: 4px solid var(--accent-primary);
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.info-box p {
  text-align: left;
  margin-bottom: 0;
  color: var(--text-secondary);
}

.info-box--tip {
  border-left-color: var(--accent-primary);
}

.info-box--warning {
  border-left-color: var(--color-warning);
}

.info-box--important {
  border-left-color: var(--color-error);
}

/* ==========================================================================
   Components: Odds Card
   ========================================================================== */
.odds-card {
  background: var(--bg-elevated);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border-default);
  margin: 1.5rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.odds-card__match {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
}

.odds-card__vs {
  color: var(--text-muted);
  font-size: var(--text-sm);
}

.odds-card__values {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.odds-card__odd {
  flex: 1;
  text-align: center;
  padding: 0.75rem;
  background: var(--bg-card);
  border-radius: 8px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.odds-card__odd:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 136, 229, 0.2);
}

.odds-card__label {
  display: block;
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.odds-card__value {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--accent-gold);
}

/* ==========================================================================
   Components: Key Takeaway
   ========================================================================== */
.key-takeaway {
  border-top: 2px solid var(--accent-primary);
  padding-top: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.key-takeaway p {
  text-align: left;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0;
  line-height: 1.5;
}

/* ==========================================================================
   Components: Match Card
   ========================================================================== */
.match-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-default);
  margin: 1rem 0;
  transition: border-color 0.2s ease;
}

.match-card:hover {
  border-color: var(--accent-primary);
}

.match-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 50px;
}

.match-card__day {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--accent-primary);
  line-height: 1;
}

.match-card__month {
  font-size: var(--text-xs);
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.match-card__teams {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.match-card__team {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
}

.match-card__time {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--accent-gold);
  padding: 0.25rem 0.5rem;
  background: var(--bg-elevated);
  border-radius: 4px;
}

.match-card__venue {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ==========================================================================
   Components: Stats Grid
   ========================================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bg-elevated);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.stat-item__value {
  display: block;
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--accent-primary);
  line-height: 1;
  font-family: var(--font-heading);
}

.stat-item__label {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

/* ==========================================================================
   Components: Fun Fact
   ========================================================================== */
.fun-fact {
  position: relative;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

.fun-fact::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-gold);
  font-weight: 600;
}

.fun-fact p {
  text-align: left;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* ==========================================================================
   Components: Callout
   ========================================================================== */
.callout {
  background: var(--bg-card);
  border-left: 4px solid var(--accent-gold);
  padding: 1.25rem 1.5rem;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.callout--sweden {
  border-left-color: var(--accent-gold);
}

.callout__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.callout p {
  text-align: left;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* ==========================================================================
   Components: TL;DR
   ========================================================================== */
.tldr {
  background: var(--bg-card);
  border-left: 4px solid var(--accent-primary);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.tldr h2 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 1rem;
}

.tldr ul {
  text-align: left;
  margin-bottom: 0;
}

.tldr li {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.tldr li:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Components: Glossary Term
   ========================================================================== */
.glossary-term {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 1rem 0;
}

.glossary-term dfn {
  font-family: var(--font-mono);
  font-style: normal;
  color: var(--accent-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.glossary-term span {
  color: var(--text-secondary);
}

/* ==========================================================================
   Components: Dos and Don'ts
   ========================================================================== */
.dos-donts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.dos-donts__do,
.dos-donts__dont {
  padding: 1.25rem;
  border-radius: 8px;
  background: var(--bg-card);
}

.dos-donts__do {
  border-top: 3px solid var(--color-success);
}

.dos-donts__dont {
  border-top: 3px solid var(--color-error);
}

.dos-donts h4 {
  font-size: var(--text-base);
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.dos-donts__do h4 {
  color: var(--color-success);
}

.dos-donts__dont h4 {
  color: var(--color-error);
}

.dos-donts ul {
  margin-bottom: 0;
  padding-left: 1.25rem;
}

.dos-donts li {
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

/* ==========================================================================
   Components: Pre-bet Checklist
   ========================================================================== */
.pre-bet-checklist {
  margin: 1.5rem 0;
}

.pre-bet-checklist h4 {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-primary);
  margin-top: 0;
  margin-bottom: 1rem;
}

.pre-bet-checklist ul {
  list-style: none;
  padding-left: 1.5rem;
  border-left: 2px solid var(--border-default);
  margin-bottom: 0;
}

.pre-bet-checklist li {
  position: relative;
  padding-left: 0.5rem;
  color: var(--text-secondary);
}

.pre-bet-checklist li::before {
  content: "\2610";
  position: absolute;
  left: -1.25rem;
  color: var(--accent-primary);
  background: var(--bg-primary);
  padding: 0 2px;
}

/* ==========================================================================
   Components: At a Glance
   ========================================================================== */
.at-a-glance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 1.5rem 0;
  background: var(--bg-card);
  border-radius: 8px;
  overflow: hidden;
}

.at-a-glance__item {
  padding: 1.25rem;
  text-align: center;
  border-right: 1px solid var(--border-default);
}

.at-a-glance__item:last-child {
  border-right: none;
}

.at-a-glance__item h4 {
  font-size: var(--text-lg);
  color: var(--accent-primary);
  margin-top: 0;
  margin-bottom: 0.5rem;
  text-align: center;
}

.at-a-glance__item p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: 0;
  text-align: center;
}

/* ==========================================================================
   Components: Worked Example
   ========================================================================== */
.worked-example {
  background: var(--bg-elevated);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.worked-example h4 {
  font-size: var(--text-base);
  color: var(--text-primary);
  margin-top: 0;
  margin-bottom: 1rem;
}

.worked-example p {
  text-align: left;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.worked-example p:last-child {
  margin-bottom: 0;
}

.worked-example .result {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: var(--text-base);
}

/* ==========================================================================
   Components: Section Bridge
   ========================================================================== */
.section-bridge {
  text-align: center;
  font-style: italic;
  color: var(--accent-primary);
  margin: 2rem 0;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  position: relative;
}

.section-bridge::before,
.section-bridge::after {
  content: "·";
  padding: 0 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Components: Card Grid
   ========================================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.card-grid__item {
  background: var(--bg-card);
  padding: 1.25rem;
  border-radius: 8px;
  border: 1px solid var(--border-default);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.card-grid__item:hover {
  border-color: var(--accent-primary);
  transform: translateY(-2px);
}

.card-grid__item h4 {
  font-size: var(--text-base);
  color: var(--text-primary);
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.card-grid__item p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: 0;
  text-align: left;
}

/* ==========================================================================
   Components: Comparison
   ========================================================================== */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.comparison__side {
  background: var(--bg-card);
  padding: 1.25rem;
  border-radius: 8px;
  border-top: 3px solid var(--accent-primary);
}

.comparison__side h4 {
  font-size: var(--text-base);
  color: var(--text-primary);
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.comparison__side p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: 0;
  text-align: left;
}

/* ==========================================================================
   Components: Odds Example
   ========================================================================== */
.odds-example {
  background: var(--bg-elevated);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.odds-example p {
  text-align: center;
  margin-bottom: 0.5rem;
}

.odds-example p:last-child {
  margin-bottom: 0;
}

.odds-example .odds-value {
  font-family: var(--font-mono);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--accent-gold);
}

/* ==========================================================================
   Components: Author Bio
   ========================================================================== */
.author-bio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-style: italic;
  border-top: 1px solid var(--border-default);
  padding-top: 1rem;
  margin-top: 2rem;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  background: var(--bg-header);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-logo{
    z-index: 1002;
}
.site-logo img {
  display: block;
  width: 180px;
  height: auto;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.date-badge {
  font-size: var(--text-xs);
  color: var(--text-muted);
  background: var(--bg-card);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
}

.trust-marker {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
[data-content="hero"] {
  max-width: none;
  width: 100%;
  padding: 2rem 1.5rem;
  margin-bottom: var(--section-gap);
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse at center,
    rgba(30, 136, 229, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--content-width);
  margin: 0 auto;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: var(--heading-hero);
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero__hook {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 1.5rem;
}

.hero__description {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__byline {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 0;
}

.hero figure {
  position: relative;
  z-index: 1;
  margin: 2rem auto 0;
  max-width: var(--content-width);
}

.hero figure img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 0 auto;
}

.btn-primary {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--bg-primary);
  background: var(--accent-gold);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  margin-top: 1.5rem;
}

.btn-primary:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-2px);
  color: var(--bg-primary);
}

/* ==========================================================================
   TOC - Horizontal Style
   ========================================================================== */
[data-content="toc"] {
  background: var(--bg-card);
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-default);
}

.toc__title {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
  text-align: left;
}

.toc__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.toc__list li {
  margin-bottom: 0;
}

.toc__list a {
  font-size: var(--text-sm);
  color: var(--accent-primary);
  padding: 0.35rem 0.75rem;
  background: var(--bg-elevated);
  border-radius: 4px;
  display: inline-block;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.toc__list a:hover {
  background: var(--accent-primary);
  color: var(--text-primary);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
[data-content="faq"] details {
  background: var(--bg-card);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  border: 1px solid var(--border-default);
  overflow: hidden;
}

[data-content="faq"] summary {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--text-primary);
  padding: 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
}

[data-content="faq"] summary::-webkit-details-marker {
  display: none;
}

[data-content="faq"] summary::after {
  content: "+";
  font-size: var(--text-lg);
  color: var(--accent-primary);
  transition: transform 0.3s ease;
}

[data-content="faq"] details[open] summary::after {
  transform: rotate(45deg);
}

[data-content="faq"] summary:hover {
  background: var(--bg-elevated);
}

[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 {
  padding: 0 1.25rem 1rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  text-align: left;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--bg-header);
  padding: 3rem 1.5rem 1.5rem;
  margin-top: var(--section-gap);
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h4 {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-top: 0;
  margin-bottom: 1rem;
}

.footer-column p,
.footer-column li {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--accent-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: 0;
  text-align: center;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 768px) {
  :root {
    --section-gap: 3rem;
  }

  [data-content] {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  [data-content="hero"] {
    padding: 4rem 1rem;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }


  .header-meta {
    flex-wrap: wrap;
  }

  .site-logo img {
    width: 150px;
  }

  .toc__list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .toc__list a {
    display: block;
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .match-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .match-card__teams {
    flex-wrap: wrap;
  }

  .dos-donts,
  .comparison {
    grid-template-columns: 1fr;
  }

  .at-a-glance {
    grid-template-columns: 1fr;
  }

  .at-a-glance__item {
    border-right: none;
    border-bottom: 1px solid var(--border-default);
  }

  .at-a-glance__item:last-child {
    border-bottom: none;
  }

  .glossary-term {
    flex-direction: column;
    gap: 4px;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }

  table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 480px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .odds-card__values {
    flex-direction: column;
  }
}

.multilevel-menu ul {
  max-height: 400px;
  overflow: auto;
}
/*
          Note that the theme styles use the "container" class, but it is not defined.
          I recommend adding styles of the "container" class to the "[data-content]" styles
        */

:root {
  --custom-clr-text: #000000;
  --custom-current-opacity: 0.7;
}

nav a {
  padding: 0 8px;
}






.breadcrumbs {
  font-size: 14px;
  padding: 10px 0;
  display: flex !important;
  flex-wrap: wrap;
  max-width: 75rem;
}

.breadcrumbs ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
}

.breadcrumbs a {
  color: var(--custom-clr-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  opacity: var(--custom-current-opacity);
  text-decoration: underline;
}

.breadcrumbs .current {
  opacity: var(--custom-current-opacity);
  font-weight: 500;
  padding: 0 8px;
}

.breadcrumbs .breadcrumb-separator,
.breadcrumbs .separator {
  margin: 0 8px;
  color: var(--custom-clr-text);
  opacity: var(--custom-current-opacity);
}

.breadcrumbs .home {
  font-weight: 500;
}

@media (max-width: 768px) {
  .breadcrumbs {
    font-size: 12px;
    margin: 15px 0;
  }

  .breadcrumbs .separator {
    margin: 0 5px;
  }
}

.footer-navigation {
  margin: 20px 0;
}

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.footer-menu li {
  margin: 0;
}

@media (max-width: 768px) {
  .footer-menu {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-menu a {
    font-size: 16px;
  }
}

.max-100 {
  max-width: 100%;
  height: auto;
  padding-bottom: 16px;
}

img {
  display: block;
  margin: 0 auto;
}



.simple-sitemap {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.sitemap-header {
  text-align: center;
  margin-bottom: 40px;
}

.sitemap-header h1 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 10px;
}

.sitemap-header p {
  color: #666;
  font-size: 1rem;
  margin: 0;
}

.simple-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.simple-page-link {
  display: block;
  font-size: 1.1rem;
  color: #2c3e50;
  text-decoration: none;
  padding: 12px 20px;
  background: #f8f9fa;
  border-radius: 6px;
  border-left: 4px solid #3498db;
  transition: all 0.3s ease;
}

.simple-page-link:hover {
  background: #e3f2fd;
  color: #3498db;
  transform: translateX(5px);
}

.sitemap-stats {
  text-align: center;
  padding: 20px 0;
  color: #666;
  font-size: 0.95rem;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 30px;
}

.sitemap-footer {
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

.no-pages {
  text-align: center;
  padding: 40px;
  color: #666;
  font-size: 1.1rem;
  background: #f9f9f9;
  border-radius: 8px;
  margin: 40px 0;
}

@media (max-width: 768px) {
  .simple-sitemap {
    padding: 30px 15px;
  }

  .sitemap-header h1 {
    font-size: 1.8rem;
  }

  .simple-page-link {
    padding: 10px 15px;
    font-size: 1rem;
  }
}



.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h3 {
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--secondary);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 12px;
}

.footer-section a {
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-section a:hover {
  color: #ffcc00;
}

.footer-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-navigation li {
  margin-bottom: 12px;
}

.footer-navigation a {
  text-decoration: none;
  transition: all 0.3s ease;
  align-items: center;
}

.footer-navigation a:hover {
  color: #ffcc00;
}

.warning-section a {
  color: #ff9966;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-bottom p {
  line-height: 1.6;
}

.copyright {
  margin-top: 15px;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 30px 15px 15px;
  }
}

.table-of-contents {
  background-color: rgba(0, 0, 0, 0);
  padding: 20px;
  margin: 20px 0;
}

.table-of-contents h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.2em;
}

.toc-list {
  margin: 0;
  padding-left: 20px;
}

.toc-list li {
  margin-bottom: 8px;
  line-height: 1.4;
}

.toc-list a {
  text-decoration: none;
}

.toc-list a:hover {
  text-decoration: underline;
}

footer ul {
  padding-left: 0px;
}
footer a {
  color: unset;
}

@media (max-width: 920px) {
  .menu-item {
    padding-left: 0px;
  }
  .menu-item a {
    padding: 0px;
  }
}


.logo-head {
  display: flex;
  justify-content: space-between;
  margin-left: 1rem;
  margin-right: 1rem;
}

.sport-column-standalone {
  background: #fff;
  border: 1px solid #e1e4e8;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}


.main-post {
  border-bottom: 1px solid #eee;
}
.main-post-link {
  text-decoration: none;
  color: inherit;
}
.main-post-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.main-post-info {
  padding: 15px;
}
.main-post-info h3 {
  margin: 0 0 10px 0 !important;
  font-size: 20px !important;
  line-height: 1.3;
  color: #1a2d44;
}
.main-post-info p {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.5;
}


.other-posts {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.small-post {
  border-bottom: 1px solid #f0f0f0;
}
.small-post a {
  display: flex;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  gap: 12px;
  align-items: center;
}
.small-post a:hover {
  background: #f9f9f9;
}
.small-post-image img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.small-post-info h4 {
  margin: 0 0 4px 0 !important;
  font-size: 14px !important;
  line-height: 1.3;
  color: #1a2d44;
}
.small-post-info p {
  font-size: 12px;
  color: #777;
  margin: 0;
  line-height: 1.4;
}


.placeholder {
  width: 100%;
  height: 200px;
  background: #eee;
}


.column-footer {
  background: #1a2d44;
  color: #fff !important;
  text-align: center;
  padding: 10px;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
  margin-top: auto;
}


.category-posts-dropdown {
  min-width: 280px !important;
}

.view-all-link {
  background: #f8f9fa;
  border-top: 2px solid #004a99;
}

@media (max-width: 920px) {
  .sports-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 425px) {
  .logo-head {
    margin-left: 0.4rem;
    margin-right: 0.4rem;
  }
  .cus-logo img {
    height: 50px;
    width: auto;
  }
}

.post-entry {
  padding: 40px 20px;
  background: #fff;
  margin-top: 20px;
  margin-bottom: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.post-header h1 {
  font-size: 32px;
  color: #1a2d44;
  margin-bottom: 10px;
}
.post-meta {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.post-content {
  line-height: 1.8;
  font-size: 18px;
  color: #333;
}
.post-content h2 {
  margin-top: 30px;
  color: #004a99;
}
.post-thumbnail {
  margin-bottom: 30px;
}

summary::after {
  right: 3%;
}


.category-posts-dropdown.scrollable-menu {
  max-height: 350px; 
  overflow-y: auto; 
  overflow-x: hidden; 
  min-width: 280px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);

  
  -webkit-overflow-scrolling: touch;
}


.category-posts-dropdown.scrollable-menu::-webkit-scrollbar {
  width: 6px; 
}

.category-posts-dropdown.scrollable-menu::-webkit-scrollbar-track {
  background: #f1f1f1; 
}

.category-posts-dropdown.scrollable-menu::-webkit-scrollbar-thumb {
  background: #ccc; 
  border-radius: 10px;
}

.category-posts-dropdown.scrollable-menu::-webkit-scrollbar-thumb:hover {
  background: #004a99; 
}


.category-posts-dropdown.scrollable-menu {
  scrollbar-width: thin;
  scrollbar-color: #ccc #f1f1f1;
}


.category-posts-dropdown.scrollable-menu li a {
  white-space: normal; 
  line-height: 1.4;
  padding: 10px 15px;
  border-bottom: 1px solid #f0f0f0;
      background: none !important;
}




.sport-slider-wrapper {
  position: relative;
  margin-bottom: 40px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e1e4e8;
}


.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #f8f9fa;
  border-bottom: 1px solid #eee;
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-btn {
  background: #1a2d44;
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.slider-btn:hover {
  background: #004a99;
}


.slider-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none; 
}

.slider-track::-webkit-scrollbar {
  display: none; 
}

.slider-page {
  flex: 0 0 100%; 
  scroll-snap-align: start;
  box-sizing: border-box;
}


.slider-page .sport-column-standalone {
  border: none;
  margin-bottom: 0;
}

.slider-page .column-footer {
  display: none; 
}
h1 {
  margin-top: 15px;
  margin-bottom: 15px;
}
.container {
  max-width: 750px;
  margin: 0 auto;
}
main {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 15px;
}
.breadcrumbs a,
.breadcrumbs .breadcrumb-separator,
.breadcrumbs .separator {
  color: #fff;
}
.burger-line {
  background: #fff !important;
}
.multilevel-menu {
  justify-content: center;
}
.multilevel-menu a {
  color: #fff !important;
}
.category-posts-dropdown.scrollable-menu {
  right: auto;
  left: 0;
}
.header-inner {
  max-width: 100%;
}
.multilevel-menu {
  flex-wrap: wrap;
}


.mobile-menu-wrapper {
    position: relative;
    z-index: 1000;
}


.burger-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002; 
    position: relative;
}

.burger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}


.burger-menu-toggle.active .burger-line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger-menu-toggle.active .burger-line:nth-child(2) { opacity: 0; }
.burger-menu-toggle.active .burger-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==========================================
   САМО МЕНЮ (БОКОВАЯ ПАНЕЛЬ СЛЕВА)
   ========================================== */
.multilevel-nav {
    position: fixed;
    top: 0;
    left: 0;
    max-width: 500px; 
    width: 100%;
    height: 100vh;
    background-color: #1a2d44 !important; 
    box-shadow: 4px 0 15px rgba(0,0,0,0.3);
    transform: translateX(-100%); 
    transition: transform 0.3s ease-in-out;
    z-index: 1001;
    overflow-y: auto; 
    padding: 80px 10px 20px; 
}

.multilevel-nav.is-open {
    transform: translateX(0); 
}

.mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0; visibility: hidden;
    transition: all 0.3s ease;
}
.mobile-menu-overlay.is-open { opacity: 1; visibility: visible; }

body.menu-open { overflow: hidden; }

/* ==========================================
   СПИСОК МЕНЮ (ВЕРТИКАЛЬНЫЙ)
   ========================================== */
.multilevel-menu {
    display: flex !important;
    flex-direction: column !important; 
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

/* ==========================================
   ПУНКТ МЕНЮ + ИКОНКА НА ОДНОЙ ЛИНИИ
   ========================================== */
.multilevel-menu li {
    display: flex;              
    align-items: center;        
    justify-content: space-between; 
    flex-wrap: wrap;            
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.1); 
    margin-bottom: 0;
}


.multilevel-menu > li > a {
    flex: 1;                    
    padding: 15px 0;            
    color: #ffffff !important;
    text-decoration: none;
    font-size: 16px;
}

/* ==========================================
   КНОПКА-СТРЕЛОЧКА (ПРИЖАТА К ПРАВОМУ КРАЮ)
   ========================================== */
.submenu-toggle {
    position: relative;         
    right: auto;
    top: auto;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 15px 5px;          
    z-index: 10;
    flex-shrink: 0;             
}


.submenu-toggle .toggle-icon {
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    pointer-events: none;
}


.has-submenu.is-open > .submenu-toggle .toggle-icon {
    transform: rotate(-135deg);
}

/* ==========================================
   ВЫПАДАЮЩЕЕ ПОДМЕНЮ (ПОД СТРОКОЙ)
   ========================================== */
.multilevel-menu ul {
    display: none !important;
    width: 100%;                
    flex-basis: 100%;           
    padding-left: 0;
    background-color: rgba(0,0,0,0.15) !important; 
    flex-direction: column !important;
    gap: 0;
}

.multilevel-menu li.is-open > ul {
    display: flex !important;
}


.multilevel-menu ul li {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.multilevel-menu ul a {
    color: #ffffff !important;
    padding: 12px 0;
    display: block;
    transition: opacity 0.2s;
}
.multilevel-menu ul a:hover {
    opacity: 0.7;
}


.scrollable-menu {
    max-height: 300px !important;
    overflow-y: auto !important;
}
.scrollable-menu::-webkit-scrollbar { width: 4px; }
.scrollable-menu::-webkit-scrollbar-track { background: transparent; }
.scrollable-menu::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 10px; }