/*
Theme Name: monochrome
Description: description
Version: 1.0.1.2
*/


/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    /* Accent Colors */
    --accent-primary: #1E40AF;
    --accent-secondary: #F59E0B;
    --accent-primary-light: #3B82F6;
    --accent-primary-dark: #1E3A8A;
    
    /* Background */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-tertiary: #F1F5F9;
    
    /* Text */
    --text-primary: #0F172A;
    --text-secondary: #334155;
    --text-muted: #64748B;
    --text-inverse: #FFFFFF;
    
    /* Borders */
    --border-light: #E2E8F0;
    --border-medium: #CBD5E1;
    
    /* Semantic */
    --success: #059669;
    --warning: #D97706;
    --danger: #DC2626;
    
    /* Header */
    --header-bg: #FFFFFF;
    --header-border: #E2E8F0;
    
    /* Footer */
    --footer-bg: #0F172A;
    --footer-text: #CBD5E1;
    --footer-heading: #F8FAFC;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    
    /* Typography Scale */
    --text-h1: clamp(2rem, 5vw, 3rem);
    --text-h2: clamp(1.5rem, 3vw, 2rem);
    --text-h3: clamp(1.25rem, 2.5vw, 1.5rem);
    --text-h4: clamp(1.125rem, 2vw, 1.25rem);
    --text-base: clamp(1rem, 1.5vw, 1.125rem);
    --text-sm: clamp(0.875rem, 1.2vw, 0.9375rem);
    --text-xs: clamp(0.75rem, 1vw, 0.8125rem);
    
    /* Line Heights */
    --leading-tight: 1.2;
    --leading-normal: 1.6;
    --leading-relaxed: 1.75;
    
    /* Layout */
    --content-width: min(750px, 90vw);
    --section-gap: clamp(3rem, 6vw, 5rem);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: var(--text-secondary);
    background-color: var(--bg-primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   GENERAL TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: var(--leading-tight);
    color: var(--text-primary);
    text-align: left;
}

h1 {
    font-size: var(--text-h1);
}

h2 {
    font-size: var(--text-h2);
    margin-bottom: 1.25rem;
    scroll-margin-top: 2rem;
}

h3 {
    font-size: var(--text-h3);
    margin-bottom: 1rem;
    scroll-margin-top: 2rem;
}

h4 {
    font-size: var(--text-h4);
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.25rem;
    text-align: left;
}

p:last-child {
    margin-bottom: 0;
}

ul, ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    text-align: left;
}

li {
    margin-bottom: 0.5rem;
}

strong {
    font-weight: 600;
    color: var(--text-primary);
}

em {
    font-style: italic;
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent-primary-light);
}

a:focus {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

blockquote {
    border-left: 3px solid var(--accent-primary);
    padding-left: 1.25rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-muted);
}

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;
}

.mono, code {
    font-family: 'Inter', sans-serif;
}

/* ============================================
   TABLES
   ============================================ */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: var(--text-sm);
}

thead {
    background: var(--bg-tertiary);
}

th, td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

th {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
}

tbody tr:hover {
    background: var(--bg-secondary);
}

.table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
}

/* ============================================
   LAYOUT - DATA-CONTENT SECTIONS
   ============================================ */
main {
    width: 100%;
}

[data-content] {
    max-width: var(--content-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    margin-bottom: var(--section-gap);
}

/* ============================================
   SITE HEADER
   ============================================ */
.site-header {
    background: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
    padding: 1rem 0;
}

.site-header__inner {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.custom-logo {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
}

.header-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-marker {
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.date-badge {
    font-size: var(--text-xs);
    color: var(--text-muted);
    background: var(--bg-tertiary);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: var(--bg-secondary);
    position: relative;
    padding: 4rem 0;
    margin-bottom: var(--section-gap);
    width: 100%;
    margin-left: calc(50% - 50vw);
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(
        ellipse at center,
        rgba(30, 64, 175, 0.08) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0v60M0 30h60' stroke='%231E40AF' stroke-width='0.5' fill='none'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

[data-content="hero"] {
    max-width: var(--content-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    margin-bottom: 0;
}

[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 {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

[data-content="hero"] h1 {
    text-align: center;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: var(--text-sm);
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-align: center;
}

[data-content="hero"] .hero-lead {
    font-size: var(--text-base);
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-align: center;
}

.hero-byline {
    font-style: italic;
}

.btn-primary {
    display: inline-block;
    background: var(--accent-primary);
    color: var(--text-inverse);
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: var(--text-sm);
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background: var(--accent-primary-dark);
    color: var(--text-inverse);
    transform: translateY(-2px);
}

.btn-primary:focus {
    outline: 2px solid var(--accent-secondary);
    outline-offset: 2px;
}

/* ============================================
   TOC - HORIZONTAL COMPACT STYLE
   ============================================ */
.toc {
    background: var(--bg-tertiary);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-bottom: var(--section-gap);
}

.toc__label {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    display: block;
}

.toc-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc__item {
    margin: 0;
}

.toc__link {
    font-size: var(--text-sm);
    color: var(--accent-primary);
    text-decoration: none;
    padding: 0.25rem 0;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.toc__link:hover {
    color: var(--accent-primary-dark);
    border-bottom-color: var(--accent-primary);
}

/* ============================================
   COMPONENTS: TL;DR
   ============================================ */
.tldr {
    background: var(--bg-secondary);
    border-left: 4px solid var(--accent-primary);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
}

.tldr h2 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.tldr ul {
    margin: 0;
    padding-left: 1.25rem;
}

.tldr li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.tldr li:last-child {
    margin-bottom: 0;
}

/* ============================================
   COMPONENTS: INFO BOX
   ============================================ */
.info-box {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1.25rem;
    margin: 1.5rem 0;
    box-shadow: var(--shadow-sm);
}

.info-box p {
    margin: 0;
    text-align: left;
    color: var(--text-secondary);
}

.info-box--tip {
    border-left: 4px solid var(--accent-primary);
}

.info-box--warning {
    border-left: 4px solid var(--warning);
    background: #FFFBEB;
}

.info-box--note {
    border-left: 4px solid var(--text-muted);
}

.info-box strong {
    color: var(--text-primary);
}

/* ============================================
   COMPONENTS: CALLOUT
   ============================================ */
.callout {
    background: var(--bg-secondary);
    border-left: 4px solid var(--accent-secondary);
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.callout p {
    margin: 0;
    text-align: left;
    color: var(--text-secondary);
}

.callout--accent {
    border-left-color: var(--accent-primary);
}

/* ============================================
   COMPONENTS: KEY TAKEAWAY
   ============================================ */
.key-takeaway {
    border-top: 2px solid var(--accent-primary);
    padding-top: 1rem;
    margin: 2rem 0;
}

.key-takeaway p {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

/* ============================================
   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-secondary);
    font-weight: 700;
}

.fun-fact p {
    font-style: italic;
    color: var(--text-muted);
    margin: 0;
    text-align: left;
}

/* ============================================
   COMPONENTS: GLOSSARY TERM
   ============================================ */
.glossary-term {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin: 1rem 0;
}

.glossary-term dfn {
    font-family: 'Inter', sans-serif;
    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: ODDS EXAMPLE
   ============================================ */
.odds-example {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: var(--shadow-sm);
}

.odds-example__header {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    text-align: center;
}

.odds-example__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

.odds-example__row:last-child {
    border-bottom: none;
}

.odds-example__team {
    font-weight: 500;
    color: var(--text-primary);
}

.odds-example__value {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--accent-primary);
}

/* ============================================
   COMPONENTS: MATCH CARD
   ============================================ */
.match-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1.25rem;
    margin: 1rem 0;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease;
}

.match-card:hover {
    box-shadow: var(--shadow-md);
}

.match-card__teams {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.match-card__team {
    font-weight: 600;
    color: var(--text-primary);
}

.match-card__vs {
    color: var(--text-muted);
    font-size: var(--text-sm);
}

.match-card__meta {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* ============================================
   COMPONENTS: GROUP TABLE
   ============================================ */
.group-table {
    width: 100%;
    margin: 1.5rem 0;
}

.group-table caption {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: var(--text-h4);
    color: var(--text-primary);
    text-align: left;
    margin-bottom: 0.75rem;
}

/* ============================================
   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-primary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.card-grid__item h4 {
    margin-bottom: 0.5rem;
}

.card-grid__item p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   COMPONENTS: COMPARISON
   ============================================ */
.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.comparison__side {
    background: var(--bg-tertiary);
    border-radius: 8px;
    padding: 1.25rem;
}

.comparison__side h4 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.comparison__side p {
    margin: 0;
    font-size: var(--text-sm);
}

/* ============================================
   COMPONENTS: DOS AND DONTS
   ============================================ */
.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;
}

.dos-donts__do {
    background: rgba(5, 150, 105, 0.05);
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.dos-donts__dont {
    background: rgba(220, 38, 38, 0.05);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.dos-donts__do h4 {
    color: var(--success);
}

.dos-donts__dont h4 {
    color: var(--danger);
}

.dos-donts ul {
    margin: 0;
    padding-left: 1.25rem;
}

.dos-donts li {
    font-size: var(--text-sm);
    margin-bottom: 0.5rem;
}

/* ============================================
   COMPONENTS: PRE-BET CHECKLIST
   ============================================ */
.pre-bet-checklist {
    margin: 1.5rem 0;
}

.pre-bet-checklist__title {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.pre-bet-checklist ul {
    border-left: 2px solid var(--border-light);
    padding-left: 1.5rem;
    margin: 0;
    list-style: none;
}

.pre-bet-checklist li {
    position: relative;
    padding-left: 0.5rem;
    margin-bottom: 0.75rem;
}

.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(auto-fit, minmax(150px, 1fr));
    gap: 0;
    margin: 1.5rem 0;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
}

.at-a-glance__item {
    padding: 1.25rem;
    border-right: 1px solid var(--border-light);
    text-align: center;
}

.at-a-glance__item:last-child {
    border-right: none;
}

.at-a-glance__value {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    display: block;
}

.at-a-glance__label {
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   COMPONENTS: WORKED EXAMPLE
   ============================================ */
.worked-example {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.worked-example__title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.worked-example__step {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--border-light);
}

.worked-example__step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.worked-example code {
    font-family: 'Inter', sans-serif;
    background: var(--bg-tertiary);
    padding: 0.125rem 0.375rem;
    border-radius: 3px;
    font-size: 0.9em;
}

.worked-example__result {
    font-weight: 600;
    color: var(--accent-primary);
    font-size: 1.125rem;
}

/* ============================================
   COMPONENTS: SECTION BRIDGE
   ============================================ */
.section-bridge {
    text-align: center;
    font-style: italic;
    color: var(--accent-primary);
    margin: 2rem 0;
    position: relative;
}

.section-bridge::before,
.section-bridge::after {
    content: '\2022 \2022 \2022';
    color: var(--border-medium);
    font-size: 0.75rem;
    letter-spacing: 0.5em;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.section-bridge::before {
    right: calc(100% + 1rem);
}

.section-bridge::after {
    left: calc(100% + 1rem);
}

/* ============================================
   COMPONENTS: 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-light);
    padding-top: 1rem;
    margin-top: 2rem;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
[data-content="faq"] details {
    border: 1px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    background: var(--bg-primary);
    overflow: hidden;
}

[data-content="faq"] summary {
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-primary);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

[data-content="faq"] summary::-webkit-details-marker {
    display: none;
}

[data-content="faq"] summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    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-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 {
    padding: 0 1.25rem 1rem;
    margin: 0;
    color: var(--text-secondary);
}

/* ============================================
   SITE FOOTER
   ============================================ */
.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 3rem 0 1.5rem;
    margin-top: var(--section-gap);
}

.site-footer__inner {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.site-footer__col h3 {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--footer-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.site-footer__col p {
    font-size: var(--text-xs);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    color: var(--footer-text);
}

.site-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__col li {
    margin-bottom: 0.5rem;
}

.site-footer__col a {
    font-size: var(--text-xs);
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__col a:hover {
    color: var(--text-inverse);
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.site-footer__copy {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    width: 100%;
    text-align: center;
}

.site-footer__disclaimer {
    font-size: 0.7rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ============================================
   MEDIA QUERIES
   ============================================ */
@media (max-width: 768px) {
    [data-content] {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero {
        padding: 2.5rem 0;
    }
    
    .site-header__inner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .header-meta {
        width: 100%;
        justify-content: center;
    }
    
    .toc-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .comparison,
    .dos-donts {
        grid-template-columns: 1fr;
    }
    
    .at-a-glance {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .at-a-glance__item {
        border-bottom: 1px solid var(--border-light);
    }
    
    .at-a-glance__item:nth-child(odd) {
        border-right: 1px solid var(--border-light);
    }
    
    .at-a-glance__item:nth-child(even) {
        border-right: none;
    }
    
    .at-a-glance__item:nth-last-child(-n+2) {
        border-bottom: none;
    }
    
    .glossary-term {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .table-wrapper {
        overflow-x: auto;
    }
    
    .section-bridge::before,
    .section-bridge::after {
        display: none;
    }
    
    .match-card__teams {
        flex-direction: column;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
    }
    
    .at-a-glance {
        grid-template-columns: 1fr;
    }
    
    .at-a-glance__item {
        border-right: none !important;
        border-bottom: 1px solid var(--border-light);
    }
    
    .at-a-glance__item:last-child {
        border-bottom: none;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
}
    

/* ============================================
   CONTENT IMAGES
   ============================================ */
.content-image {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.content-image figcaption {
    font-size: var(--text-sm);
    color: var(--text-muted);
    padding: 0.75rem 1rem;
    background: var(--bg-tertiary);
    text-align: center;
}

/* ============================================
   RESPONSIVE IMAGES
   ============================================ */
@media (max-width: 768px) {
    .content-image {
        margin: 1.5rem -1rem;
        border-radius: 0;
    }
}

@media (max-width: 375px) {
    .content-image {
        margin: 1rem -0.75rem;
    }
    
    .content-image figcaption {
        padding: 0.5rem 0.75rem;
        font-size: var(--text-xs);
    }
}
