.odds-hub-shell {
    padding: var(--al-space-9) 0 var(--al-space-10);
}

.odds-hub {
    display: grid;
    gap: var(--al-space-7);
}

.odds-hero,
.odds-section {
    background: var(--al-surface);
    border: 1px solid var(--al-border);
    border-radius: var(--al-radius-xl);
    box-shadow: var(--al-shadow-sm);
}

.odds-hero {
    padding: clamp(24px, 3vw, 36px);
    background:
        radial-gradient(880px 260px at 0% 0%, rgba(37, 99, 235, 0.08), transparent 55%),
        radial-gradient(620px 240px at 100% 100%, rgba(22, 101, 52, 0.08), transparent 58%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.odds-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: var(--al-space-5);
    color: var(--al-muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.odds-breadcrumb a {
    color: var(--al-primary);
    text-decoration: none;
}

.odds-breadcrumb a:hover,
.odds-breadcrumb a:focus-visible {
    color: var(--al-primary-strong);
    text-decoration: underline;
}

.odds-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: var(--al-space-6);
    align-items: start;
}

.odds-hero-grid > * {
    min-width: 0;
}

.odds-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 var(--al-space-3);
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: var(--al-radius-pill);
    background: rgba(37, 99, 235, 0.06);
    color: var(--al-primary-strong);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.odds-hero h1,
.odds-section h2 {
    margin: 0;
    color: var(--al-text);
    font-family: var(--al-font-display);
    font-weight: 900;
    line-height: 1.04;
}

.odds-hero h1 {
    margin-top: var(--al-space-4);
    font-size: clamp(2.2rem, 4.2vw, 3.35rem);
}

.odds-section h2 {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.odds-hero p,
.odds-section p {
    margin: 0;
    color: var(--al-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.odds-hero-copy {
    display: grid;
    gap: var(--al-space-4);
    min-width: 0;
}

.odds-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--al-space-3);
    margin-top: var(--al-space-2);
}

.odds-hero-panel {
    display: grid;
    gap: var(--al-space-4);
    padding: var(--al-space-5);
    border: 1px solid var(--al-border);
    border-radius: var(--al-radius-lg);
    background: rgba(248, 250, 252, 0.9);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    min-width: 0;
}

.odds-hero-panel h2,
.odds-hero-panel h3,
.odds-link-card h3,
.odds-related-card h3,
.odds-pillar h3 {
    margin: 0;
    color: var(--al-text);
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.3;
}

.odds-format-grid,
.odds-pillars,
.odds-child-grid,
.odds-related-grid {
    display: grid;
    gap: var(--al-space-4);
}

.odds-format-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.odds-format-card,
.odds-pillar,
.odds-link-card,
.odds-related-card {
    display: grid;
    gap: var(--al-space-2);
    padding: var(--al-space-4);
    border: 1px solid var(--al-border);
    border-radius: var(--al-radius-lg);
    background: var(--al-surface);
}

.odds-format-label {
    color: var(--al-muted);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.odds-format-card strong {
    color: var(--al-text);
    font-family: var(--al-font-display);
    font-size: 1.55rem;
    line-height: 1;
}

.odds-format-card span:last-child {
    color: var(--al-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.odds-hero-points {
    margin: 0;
    padding-left: 18px;
    color: var(--al-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.odds-hero-points li + li {
    margin-top: 6px;
}

.odds-section {
    display: grid;
    gap: var(--al-space-4);
    padding: clamp(22px, 2.8vw, 32px);
}

.odds-pillars {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.odds-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--al-space-4);
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: odds-steps;
}

.odds-steps li {
    position: relative;
    display: grid;
    gap: var(--al-space-2);
    min-height: 100%;
    padding: var(--al-space-5) var(--al-space-5) var(--al-space-5) 56px;
    border: 1px solid var(--al-border);
    border-radius: var(--al-radius-lg);
    background: var(--al-surface-soft);
    counter-increment: odds-steps;
}

.odds-steps li::before {
    content: counter(odds-steps);
    position: absolute;
    top: var(--al-space-5);
    left: var(--al-space-4);
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    color: var(--al-primary-strong);
    font-size: 0.92rem;
    font-weight: 800;
}

.odds-steps strong {
    color: var(--al-text);
    font-size: 1rem;
    line-height: 1.35;
}

.odds-steps span {
    color: var(--al-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.odds-table-wrap {
    margin: 0;
}

.odds-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
    background: var(--al-surface);
}

.odds-table th,
.odds-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--al-border);
    text-align: left;
    vertical-align: top;
}

.odds-table th {
    color: var(--al-text);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.odds-table td {
    color: var(--al-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.odds-table tbody tr:last-child td {
    border-bottom: 0;
}

.odds-note {
    padding: var(--al-space-4);
    border-left: 4px solid var(--al-primary);
    border-radius: 0 var(--al-radius-md) var(--al-radius-md) 0;
    background: rgba(37, 99, 235, 0.05);
}

.odds-child-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.odds-link-card a,
.odds-related-card a {
    color: inherit;
    text-decoration: none;
}

.odds-link-card h3 a:hover,
.odds-link-card h3 a:focus-visible,
.odds-related-card h3 a:hover,
.odds-related-card h3 a:focus-visible {
    color: var(--al-primary-strong);
}

.odds-link-card__cta {
    width: fit-content;
    margin-top: var(--al-space-1);
    color: var(--al-primary);
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
}

.odds-link-card__cta:hover,
.odds-link-card__cta:focus-visible {
    color: var(--al-primary-strong);
    text-decoration: underline;
}

.odds-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.odds-conclusion {
    gap: var(--al-space-4);
}

.odds-topic-shell {
    padding: var(--al-space-9) 0 var(--al-space-10);
}

.odds-topic {
    display: grid;
    gap: var(--al-space-7);
}

.odds-topic-header,
.odds-topic-section,
.odds-cluster-nav {
    background: var(--al-surface);
    border: 1px solid var(--al-border);
    border-radius: var(--al-radius-xl);
    box-shadow: var(--al-shadow-sm);
}

.odds-topic-header,
.odds-topic-section {
    display: grid;
    gap: var(--al-space-4);
    padding: clamp(22px, 2.8vw, 32px);
}

.odds-topic-header h1,
.odds-topic-section h2,
.odds-summary-card h2,
.odds-topic-card h3,
.odds-fact-card strong,
.odds-cluster-nav__link strong {
    margin: 0;
    color: var(--al-text);
    font-family: var(--al-font-display);
    line-height: 1.08;
}

.odds-topic-header h1 {
    margin-top: var(--al-space-4);
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 900;
}

.odds-topic-section h2,
.odds-summary-card h2 {
    font-size: clamp(1.55rem, 3vw, 2rem);
    font-weight: 900;
}

.odds-topic-header p,
.odds-topic-section p,
.odds-topic-list,
.odds-faq-item div p {
    margin: 0;
    color: var(--al-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.odds-topic-intro {
    display: grid;
    gap: var(--al-space-4);
}

.odds-summary-card {
    display: grid;
    gap: var(--al-space-3);
    padding: var(--al-space-5);
    border: 1px solid var(--al-border);
    border-radius: var(--al-radius-lg);
    background: linear-gradient(180deg, var(--al-surface-soft) 0%, rgba(248, 250, 252, 0.72) 100%);
}

.odds-summary-card__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--al-space-3);
}

.odds-summary-card__head span,
.odds-topic-card__label,
.odds-fact-card span,
.odds-local-nav__kicker,
.odds-cluster-nav__link span {
    color: var(--al-muted);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.odds-local-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--al-space-3);
}

.odds-local-nav__item {
    display: grid;
    gap: 6px;
    min-height: 100%;
    padding: var(--al-space-4);
    border: 1px solid var(--al-border);
    border-radius: var(--al-radius-lg);
    background: var(--al-surface);
    color: inherit;
    text-decoration: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background-color 0.18s ease;
}

.odds-local-nav__item:hover,
.odds-local-nav__item:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: var(--al-shadow-md);
}

.odds-local-nav__item strong {
    color: var(--al-text);
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.35;
}

.odds-local-nav__item--hub {
    background: rgba(37, 99, 235, 0.04);
}

.odds-local-nav__item.is-current {
    border-color: rgba(37, 99, 235, 0.24);
    background: rgba(37, 99, 235, 0.08);
}

.odds-topic-list {
    margin: 0;
    padding-left: 20px;
}

.odds-topic-list li + li {
    margin-top: 8px;
}

.odds-topic-list--compact li + li {
    margin-top: 10px;
}

.odds-card-grid,
.odds-fact-grid {
    display: grid;
    gap: var(--al-space-4);
}

.odds-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.odds-fact-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.odds-topic-card,
.odds-fact-card {
    display: grid;
    gap: var(--al-space-2);
    padding: var(--al-space-4);
    border: 1px solid var(--al-border);
    border-radius: var(--al-radius-lg);
    background: var(--al-surface-soft);
}

.odds-topic-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
}

.odds-topic-card p {
    font-size: 0.95rem;
}

.odds-fact-card strong {
    font-size: 1.35rem;
    font-weight: 900;
}

.odds-example-block {
    background:
        radial-gradient(680px 220px at 100% 0%, rgba(37, 99, 235, 0.06), transparent 56%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.odds-attention-block {
    border-color: rgba(37, 99, 235, 0.12);
    background: rgba(37, 99, 235, 0.03);
}

.odds-faq-list {
    display: grid;
    gap: var(--al-space-3);
}

.odds-faq-item {
    border: 1px solid var(--al-border);
    border-radius: var(--al-radius-lg);
    background: var(--al-surface);
    overflow: hidden;
}

.odds-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: var(--al-space-4) var(--al-space-5);
    color: var(--al-text);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.4;
}

.odds-faq-item summary::-webkit-details-marker {
    display: none;
}

.odds-faq-item[open] summary {
    border-bottom: 1px solid var(--al-border);
}

.odds-faq-item div {
    padding: var(--al-space-4) var(--al-space-5);
}

.odds-cluster-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: stretch;
    gap: var(--al-space-4);
    padding: clamp(20px, 2.8vw, 28px);
}

.odds-cluster-nav__slot {
    display: flex;
}

.odds-cluster-nav__slot--next {
    justify-content: flex-end;
}

.odds-cluster-nav__link {
    display: grid;
    gap: 6px;
    width: 100%;
    padding: var(--al-space-4);
    border: 1px solid var(--al-border);
    border-radius: var(--al-radius-lg);
    background: var(--al-surface-soft);
    color: inherit;
    text-decoration: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.odds-cluster-nav__link:hover,
.odds-cluster-nav__link:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: var(--al-shadow-md);
}

.odds-cluster-nav__link strong {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
}

.odds-cluster-nav__link--next {
    text-align: right;
}

@media (max-width: 980px) {
    .odds-hero-grid,
    .odds-pillars,
    .odds-steps,
    .odds-child-grid,
    .odds-related-grid,
    .odds-local-nav,
    .odds-card-grid,
    .odds-fact-grid,
    .odds-cluster-nav {
        grid-template-columns: 1fr;
    }

    .odds-format-grid {
        grid-template-columns: 1fr;
    }

    .odds-cluster-nav__slot,
    .odds-cluster-nav__slot--next {
        justify-content: stretch;
    }
}

@media (max-width: 768px) {
    .odds-hub-shell,
    .odds-topic-shell {
        padding: var(--al-space-8) 0 var(--al-space-9);
    }

    .odds-hero,
    .odds-section,
    .odds-topic-header,
    .odds-topic-section,
    .odds-cluster-nav {
        border-radius: var(--al-radius-lg);
    }

    .odds-hero h1,
    .odds-topic-header h1 {
        font-size: clamp(2rem, 10vw, 2.7rem);
    }

    .odds-section h2,
    .odds-topic-section h2,
    .odds-summary-card h2 {
        font-size: clamp(1.5rem, 7vw, 1.9rem);
    }

    .odds-steps li {
        padding: var(--al-space-5) var(--al-space-4) var(--al-space-4) 52px;
    }

    .odds-local-nav__item strong,
    .odds-cluster-nav__link strong {
        font-size: 0.95rem;
    }

    .odds-faq-item summary {
        padding: var(--al-space-4);
    }

    .odds-faq-item div {
        padding: 0 var(--al-space-4) var(--al-space-4);
    }

    .odds-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .odds-hero-actions .al-cta {
        width: 100%;
        min-width: 0;
    }

    .table-scroll.odds-table-wrap--bet-types {
        overflow: visible;
    }

    .table-scroll.odds-table-wrap--bet-types > .odds-table--stacked,
    .odds-table--stacked {
        min-width: 0;
        width: 100%;
        background: transparent;
    }

    .odds-table--stacked thead {
        display: none;
    }

    .odds-table--stacked tbody {
        display: grid;
        gap: var(--al-space-4);
    }

    .odds-table--stacked tbody tr {
        display: grid;
        border: 1px solid var(--al-border);
        border-radius: var(--al-radius-lg);
        background: var(--al-surface-soft);
        overflow: hidden;
    }

    .odds-table--stacked tbody tr td {
        display: grid;
        grid-template-columns: minmax(0, 104px) minmax(0, 1fr);
        gap: var(--al-space-3);
        padding: 12px var(--al-space-4);
        border-bottom: 1px solid var(--al-border);
        font-size: 0.92rem;
        line-height: 1.55;
    }

    .odds-table--stacked tbody tr td::before {
        content: attr(data-label);
        color: var(--al-text);
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .odds-table--stacked tbody tr td:first-child {
        grid-template-columns: 1fr;
        gap: 6px;
        background: rgba(37, 99, 235, 0.06);
        color: var(--al-text);
        font-size: 1rem;
        font-weight: 800;
    }

    .odds-table--stacked tbody tr td:first-child::before {
        font-size: 0.7rem;
    }

    .odds-table--stacked tbody tr td:last-child {
        border-bottom: 0;
    }
}
