@font-face {
    font-family: "Roboto Regular";
    src: url("Roboto-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto Bold";
    src: url("Roboto-Bold.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body {
    background-color: hsl(172 85% 8% / 1);
    font-family: "Roboto Regular", sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 10px 0; /* Changed 'auto' to '0' */
}

.header {
    display: grid;
    grid-template-columns: auto 1fr;
    background-color: hsl(172 85% 8% / 1);
    box-shadow: 0 0 .625rem hsl(172deg 85% 8% / 50%);
    grid-template-areas:
        "logo top"
        "bottom bottom";
    padding-bottom: .5rem;
    padding-left: .5rem;
    padding-right: .5rem;
}

.header__logo {
    display: flex;
    grid-area: logo;
}

.header__logo-link {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    min-width: max-content;
    padding: .5rem;
    margin: 0 .5rem;
}

.header__top {
    min-height: 3rem;
    align-items: center;
    display: flex;
    grid-area: top;
}

.header__events {
    display: flex;
    flex-grow: 1;
    max-width: -moz-fit-content;
    max-width: fit-content;
    min-width: 0;
}

.header__event {
    align-items: center;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    margin-right: .5rem;
}

.header__event img {
    object-fit: contain;
    max-height: 2rem;
    width: 2rem;
}

.header__event:first-child img {
    margin-left: .25rem;
}

.header__controls {
    align-items: center;
    display: flex;
    gap: .5rem;
    padding: .25rem;
    margin-left: auto;
    margin-right: -.5rem;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: auto;
    border-radius: 8px;
    position: relative;
    background-color: hsl(172 85% 13% / 1);
    transition: background-color .1s, color .1s;
    max-width: 10rem;
    color: hsl(0 0% 100% / 1);
    text-transform: uppercase;
    gap: .25rem;
    min-height: 2rem;
    min-width: 2rem;
    white-space: nowrap;
    text-decoration: none;
    font-size: .875rem;
    line-height: 1rem;
}

.btn:hover {
    background-color: hsl(173, 85%, 18%);
}

.btn.btn--bonus {
    text-align: center;
    padding: .25rem;
}

.btn--bonus span {
    align-items: center;
    display: flex;
    font-weight: 700;
    justify-content: center;
    font-size: .5rem;
    height: .75rem;
    line-height: .5625rem;
    min-width: .75rem;
    border-radius: .5rem;
    background-color: hsl(288 91% 45% / 1);
    padding-left: 3px;
    padding-right: 3px;
    right: 3px;
    position: absolute;
    top: 3px;
    z-index: 50;
    color: hsl(0 0% 100% / 1);
}

.btn--bonus svg {
    fill: rgb(255 255 255);
    font-size: 1rem;
    height: 1em;
    max-width: 100%;
    width: auto;
    transform-origin: center center;
    transition: transform .2s ease;
}

.btn--bonus:hover svg {
    animation: btn-bonus-svg-tilt .5s ease forwards;
}

@keyframes btn-bonus-svg-tilt {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-12deg);
    }

    50% {
        transform: rotate(12deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.btn--accent {
    background-color: hsl(288 91% 45% / 1);
    padding: .25rem 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn--accent:hover {
    background-color: hsl(288, 80%, 52%);
}

.btn--primary {
    padding: .25rem 1rem;
}

.header__bottom {
    color: hsl(0 0% 100% / 1);
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    display: flex;
    grid-area: bottom;
    padding: .25rem;
    background-color: hsl(172 85% 10% / 1);
    border-radius: 8px;
}

.header__menu {
    align-items: center;
    display: flex;
    min-width: 0;
    -moz-column-gap: .75rem;
    column-gap: .75rem;
}

.header__menu-item {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    height: 2rem;
    border-radius: 8px;
    padding: .25rem .5rem;
    transition: opacity .2s;
    color: hsl(0 0% 100% / 1);
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
    font-weight: 700;
    font-size: .875rem;
    letter-spacing: .1px;
    transition: color .2s;
}

.header__menu-item:hover {
    background-color: hsl(172 85% 13% / 1);
}

/* Mobile menu toggle (hamburger) — visible only on desktop in layout, styled on mobile */
.header__menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 0;
    background: hsl(172 85% 13% / 1);
    border-radius: 8px;
    color: hsl(0 0% 100% / 1);
    cursor: pointer;
}

.header__menu-toggle-bar {
    display: block;
    width: 1.25rem;
    height: 2px;
    margin: 0 auto;
    background: currentColor;
    border-radius: 1px;
    transition: transform .2s, opacity .2s;
}

.header--menu-open .header__menu-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header--menu-open .header__menu-toggle-bar:nth-child(2) {
    opacity: 0;
}

.header--menu-open .header__menu-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Нижняя мобильная плашка (скрыта на десктопе) */
.mobile-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    background: hsl(0 0% 100% / 1);
    box-shadow: 0 -2px 12px hsl(0 0% 0% / 0.08);
    padding: 0.35rem 0.25rem calc(0.35rem + env(safe-area-inset-bottom, 0));
    justify-content: space-around;
    align-items: stretch;
    gap: 0.125rem;
}

.mobile-bar__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    min-width: 0;
    padding: 0.25rem 0.125rem;
    text-decoration: none;
    color: hsl(0 0% 35% / 1);
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    -webkit-tap-highlight-color: transparent;
}

.mobile-bar__item:active {
    opacity: 0.85;
}

.mobile-bar__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-bar__label {
    font-size: 0.6rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

/* Mobile menu overlay */
.header__mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    top: 105px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    background: hsl(172 85% 6% / 0.97);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility .25s;
}

.header__mobile-menu-inner {
    padding: 1rem;
    padding-top: 4rem;
}

.header__mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.header__mobile-nav-item {
    padding: 0.75rem 1rem;
    color: hsl(0 0% 100% / 1);
    text-decoration: none;
    text-transform: uppercase;
    font-size: .875rem;
    font-weight: 700;
    border-radius: 8px;
}

.header__mobile-nav-item:hover {
    background: hsl(172 85% 13% / 1);
}

.main {
    padding: 1.5rem .75rem 0;
}

/* Banner carousel */
.banner {
    position: relative;
    overflow: hidden;
    min-height: 12rem;
    background: linear-gradient(135deg, hsl(172 85% 10% / 1) 0%, hsl(260 50% 12% / 1) 100%);
    border-radius: 8px;
    margin: 0 .5rem .5rem;
    height: 248px;
    --banner-current: 0;
    z-index: 0;
}


.banner__track {
    display: flex;
    width: 400%;
    min-height: 12rem;
    height: 100%;
    transition: transform .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(calc(-25% * var(--banner-current)));
}

.banner__slide {
    flex: 0 0 25%;
    width: 25%;
    min-height: 12rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem 2.5rem 1.5rem;
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}

.banner__slide::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    max-width: 600px;
    width: 100%;
    background: linear-gradient(to right, hsl(0 0% 0% / 1) 0%, hsl(0 0% 0% / 1) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.banner__content {
    flex: auto;
    max-width: 37.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: .5rem 2rem .5rem 3.5rem;
    border-radius: 8px;
    position: relative;
    z-index: 2;
}

.banner__title {
    margin: 0 0 .5rem;
    font-family: "Roboto Bold", sans-serif;
    font-size: 1.5rem;
    line-height: 1.25;
    color: hsl(0 0% 100% / 1);
    text-transform: uppercase;
    letter-spacing: .02em;
}

.banner__text {
    margin: 0 0 1rem;
    font-size: .9375rem;
    line-height: 1.4;
    color: hsl(0 0% 100% / 0.9);
}

.banner__btn:hover {
    background: hsl(288 80% 52% / 1);
}

.banner__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 4.5rem;
    padding: 0;
    border: 0;
    background-color: rgba(0, 0, 0, .2);
    color: hsl(0 0% 100% / 0.9);
    cursor: pointer;
    transition: background .2s, color .2s;
    z-index: 2;
}

.banner__arrow:hover {
    background: hsl(0 0% 100% / 0.25);
    color: hsl(0 0% 100% / 1);
}

.banner__arrow--prev {
    left: 0;
    border-radius: 0 8px 8px 0;
}

.banner__arrow--next {
    right: 0;
    border-radius: 8px 0 0 8px;
}

.banner__arrow svg {
    display: block;
    margin: 0 auto;
}

.banner__dots {
    position: absolute;
    bottom: .75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .5rem;
    z-index: 2;
}

.banner__dot {
    width: .5rem;
    height: .5rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: hsl(0 0% 100% / 0.35);
    cursor: pointer;
    transition: background .2s;
}

.banner__dot:hover {
    background: hsl(0 0% 100% / 0.5);
}

.banner__dot--active {
    background: hsl(0 0% 100% / 1);
}

.navigation {
    display: flex;
    gap: .5rem;
    padding: 2rem .5rem .5rem;
    margin-top: 3rem;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    scrollbar-color: hsl(172 85% 10% / 1) hsl(172 85% 13% / 1);
    /* horizontal scroller: JS eases the wheel and adds drag momentum */
    cursor: grab;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
}

.navigation::-webkit-scrollbar {
    display: none;
}

.navigation.is-dragging {
    cursor: grabbing;
    user-select: none;
    -webkit-user-select: none;
}

.navigation .navigation__item {
    -webkit-user-drag: none;
}


.navigation__item {
    align-items: flex-end;
    display: flex;
    min-width: 18.75rem;
    height: 6.25rem;
    width: calc(-0.8rem + 20vw);
    padding: 1rem;
    margin-right: 0.5rem;
    background-image: linear-gradient(90deg, hsl(171 63% 20% / 1) 50%, hsl(170 70% 12% / 1));
    border-radius: 8px;
    color: hsl(0 0% 100% / 1);
    text-decoration: none;
    transition: background .2s, transform .15s;
    position: relative;
}

.navigation__item:hover {
    background: hsl(172 45% 28%);
}

.navigation__item img {
    order: 0;
    align-self: flex-end;
    width: 7.5rem;
    height: 7.5rem;
    object-fit: contain;
    position: absolute;
    bottom: 0;
    right: 0;
    object-fit: scale-down;
}

.navigation__item h3 {
    order: 1;
    margin: 0;
    font-size: .9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.section-title {
    margin-bottom: 0;
    color: hsl(0 0% 100% / 1);
}

/* Content section: TOC, paragraphs, table, lists */
.content {
    max-width: 72rem;           /* wide editorial column, small page edges */
    margin: 0 auto;
    padding: 1.5rem .5rem 2rem;
    color: hsl(0 0% 95% / 1);
}

/* Editorial images. Sources are mostly PORTRAIT phone screenshots (576x1072):
   max-height keeps them inside the fold and centred instead of running the full
   column height. Landscape images are unaffected - they hit max-width first. */
.content img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 70vh;
    margin: 1.25rem auto;
    border-radius: 10px;
    border: 1px solid hsl(172 85% 20% / 1);
}

/* ...but the TOC bullet is chrome, not an editorial image */
.content .toc img {
    display: inline-block;
    width: 20px;
    height: 20px;
    max-height: none;
    margin: 0;
    border: 0;
    border-radius: 0;
}

/* Breadcrumb bar (every non-home page) */
.breadcrumb {
    max-width: 72rem;
    margin: 0 auto;
    padding: .75rem .5rem 0;
    font-size: .8125rem;
    color: hsl(0 0% 70% / 1);
}

.breadcrumb a {
    color: hsl(172 70% 65% / 1);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb__sep {
    margin: 0 .4rem;
    color: hsl(0 0% 45% / 1);
}

.breadcrumb__current {
    color: hsl(0 0% 85% / 1);
}

/* Wide tables scroll inside their own box, never the page */
.table-scroll {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
}

.content h1 {
    margin: 0 0 1rem;
    font-family: "Roboto Bold", sans-serif;
    font-size: 1.75rem;
    color: hsl(0 0% 100% / 1);
}

.content h2 {
    margin: 1.5rem 0 .75rem;
    font-family: "Roboto Bold", sans-serif;
    font-size: 1.25rem;
    color: hsl(172 60% 75% / 1);
    scroll-margin-top: 1rem;
}

.content p {
    margin: 0 0 1rem;
    line-height: 1.6;
    font-size: .9375rem;
}

.content code {
    padding: .15rem .4rem;
    background: hsl(172 85% 12% / 1);
    border-radius: 4px;
    font-size: .875em;
}

.content a {
    color: hsl(172 70% 65% / 1);
    text-decoration: none;
}

.content a:hover {
    color: hsl(172 75% 80% / 1);
    text-decoration: underline;
}

.content a:focus-visible {
    outline: 2px solid hsl(172 75% 55% / 1);
    outline-offset: 2px;
}

.content li {
  line-height: 1.3;
  margin-bottom: 5px;
}

.toc {
    margin-bottom: 1.5rem;
    padding: 0;
    background: hsl(172 85% 12% / 1);
    border-radius: 8px;
    border: 1px solid hsl(172 85% 18% / 1);
}

.toc__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    font-weight: 400;
}

.toc__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 1rem 1.25rem;
    border: 0;
    background: transparent;
    color: hsl(0 0% 100% / 1);
    font: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
}

.toc__toggle:hover {
    color: hsl(172 75% 85% / 1);
}

.toc__icon {
    flex-shrink: 0;
    transition: transform .2s ease;
}

.toc.toc--collapsed .toc__icon {
    transform: rotate(-90deg);
}

.toc__body {
    overflow: hidden;
    transition: max-height .25s ease;
}

.toc.toc--collapsed .toc__body {
    max-height: 0 !important;
}

.toc__list {
    margin: 0;
    padding: 0 1.25rem 1rem 1.5rem;
    list-style: none;
    counter-reset: none;
}

.toc__list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: .5rem;
}

.toc__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: hsl(192 85% 55%);
    font-weight: 700;
    font-size: 1rem;
}

.toc__list a {
    color: hsl(172 70% 75% / 1);
    text-decoration: none;
}

.toc__list a:hover {
    text-decoration: underline;
    color: hsl(172 75% 85% / 1);
}

.content__table-wrap {
    overflow-x: auto;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border: 1px solid hsl(172 85% 18% / 1);
}

.content-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9375rem;
}

.content-table th,
.content-table td {
    padding: .6rem .75rem;
    text-align: left;
    border-bottom: 1px solid hsl(172 85% 18% / 1);
}

.content-table thead th {
    background: hsl(172 85% 14% / 1);
    color: hsl(0 0% 100% / 1);
    font-weight: 700;
}

.content-table tbody tr:hover {
    background: hsl(172 85% 14% / 0.5);
}

.content-table tbody td {
    color: hsl(0 0% 90% / 1);
}

.navigation.top-sports {
    margin-top: 1rem;
    padding-top: 0;
}

.top-sports .navigation__item {
    min-width: 179px;
    width: 179px;
    background: linear-gradient(180deg, hsl(172 85% 10% / 1) 0, hsl(172 85% 13% / 1)) padding-box, linear-gradient(to right, hsl(173deg 22% 66% / 20%) 0, hsl(172deg 85% 13% / 20%)) border-box;
    padding: .5rem 1rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background .2s, box-shadow .2s, transform .15s;
}

.top-sports .navigation__item:hover {
    background: linear-gradient(180deg, hsl(172 45% 24% / 1) 0, hsl(172 50% 20% / 1)) padding-box, linear-gradient(to right, hsl(173deg 22% 66% / 25%) 0, hsl(172deg 85% 13% / 25%)) border-box;
    box-shadow: 0 4px 12px hsl(0 0% 0% / 0.2), 0 2px 0 0 hsl(172 60% 45% / 0.2), inset 0 -10px 20px hsl(172 55% 50% / 0.25), inset 0 -2px 0 0 hsl(172 70% 58% / 0.5);
}

.top-sports .navigation__item:hover svg {
    fill: rgb(204 212 211);
}

.top-sports .navigation__item:hover h3 {
    color: rgb(204 212 211);
}

.top-sports .navigation__item svg {
    fill: rgb(181 197 195);
    flex-shrink: 0;
    height: 32px;
    width: 32px;
    margin-bottom: .5rem;
}

.top-sports .navigation__item h3 {
    font-size: .75rem;
}

.footer {
    margin-top: 2rem;
    padding: 1rem .5rem 1.5rem;
    background: hsl(172 85% 8% / 1);
    color: hsl(172 12% 74% / 1);
}

.licenses {
    --columns: 12;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: .5rem;
    margin: 0 auto;
}

.footer-licenses__container {
    grid-column: span 2;
    align-items: center;
    display: flex;
    gap: .5rem;
    border-radius: 8px;
    justify-content: center;
    background-color: hsl(172 85% 10% / 1);
    padding: .75rem;
}

.footer-licenses__container--full-width {
    grid-column: span 8;
    flex-basis: auto;
    flex-grow: 0;
}

.footer-license-text {
    padding: .25rem 0;
}

.footer-license-text p {
    margin: 0;
}

.footer__tile {
    padding: .75rem;
}

.footer__legal {
    gap: .5rem;
}

.footer-copyright,
.footer__copyright {
    margin: 0;
}

.footer-cookie {
    margin: 0;
}

.footer-cookie__text {
    display: block;
    margin: 0;
}

.footer-cookie__link {
    color: hsl(0 0% 100% / 1);
    text-decoration: none;
}

.footer-cookie__link:hover {
    text-decoration: underline;
}

.footer-socials-icons li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-socials-icons-link__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.footer-socials-icons-link__icon .ico__svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

.footer-socials-icons-link:hover {
    background-color: hsl(172 60% 45% / 1);
    color: hsl(0 0% 100% / 1);
}

.footer-licenses__img {
    height: 3.75rem;
    -o-object-fit: contain;
    object-fit: contain;
}

.footer-licenses__container--full-width p {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    color: hsl(172 12% 74% / 1);
    font-size: .75rem;
    line-height: .875rem;
    word-break: break-word;
}

.footer-grid__element {
    display: flex;
    flex-direction: column;
    justify-content: center;
    --columns: 10;
    border-radius: 8px;
    grid-column: auto / span var(--columns);
    min-height: 0;
    color: hsl(172 12% 74% / 1);
    font-size: .75rem;
    line-height: .875rem;
}

.footer__actions {
    --columns: 2;
    display: flex;
    flex-direction: column;
    row-gap: .5rem;
    grid-column: auto / span var(--columns);
    min-height: 0;
}

.footer__additional {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: .5rem;
}

.footer-socials-icons {
    flex-grow: 5;
    align-items: center;
    -moz-column-gap: .5rem;
    column-gap: .5rem;
    display: flex;
    justify-content: center;
    border-radius: 8px;
    background-color: hsl(172 85% 10% / 1);
    list-style: none;
    padding: .75rem;
    margin: 0;
}

.footer-socials-icons-link {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    background-color: hsl(208 32% 92% / 1);
    transition: background-color .1s, color .1s;
    min-height: 2rem;
    min-width: 2rem;
    color: hsl(0 0% 0% / 1);
}

.ico__svg {
    fill: rgb(0, 0, 0);
    height: 1em;
    max-width: 100%;
    width: auto;
}
.footer__min-ages {
    display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
    gap: .5rem;
}

.footer__tile {
    display: flex;
    justify-content: center;
    background-color: hsl(172 85% 10% / 1);
    color: hsl(0 0% 100% / 1);
    padding: .5rem;
    border-radius: 8px;
    flex-grow: 1;
}
.footer__min-age {
    padding: .75rem;
}
.footer-min-age__text {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.25rem;
    line-height: 1.5rem;
}
.footer__action {
    background-color: hsl(172 85% 13% / 1);
    border-radius: 8px;
    transition: background-color .1s, color .1s;
    color: hsl(0 0% 100% / 1);
    width: 100%;
    text-transform: uppercase;
    text-decoration: none;
}

.button__container {
    align-items: center;
    align-self: stretch;
    display: flex;
    flex: auto;
    justify-content: center;
    min-width: 0;
    white-space: nowrap;
    gap: .25rem;
    min-height: 2rem;
    min-width: 2rem;
    text-align: center;
    padding: .25rem 1rem;
}
.caption {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: .875rem;
    line-height: 1rem;
}
.footer-payments {
    background-color: hsl(172 85% 10% / 1);
    color: hsl(0 0% 100% / 1);
    border-radius: 8px;
    padding: .75rem;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    scrollbar-color: hsl(172 85% 10% / 1) hsl(172 85% 13% / 1);
    margin-top: 0.75em;
}
.footer-payments__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}
.footer-payments__container.navigation {
    margin: 0;
}
.footer-payments__img {
    flex: 0 0 auto;
    width: 3.5rem;
    height: 1.875rem;
    -o-object-fit: contain;
    object-fit: contain;
}
/* Mobile breakpoint */
@media (max-width: 920px) {
    body {
        --mobile-bar-height: 56px;
    }

    .footer-payments__container {
        gap: .5rem;
    }

    .footer-payments__img {
        width: 2.75rem;
        height: 1.5rem;
    }

    .header {
        grid-template-areas:
            "logo top";
        grid-template-rows: auto;
        padding-bottom: 0;
    }

    .header__top {
        justify-content: flex-end;
    }

    .header__events {
        display: none;
    }

    .header__controls .btn--bonus {
        display: none;
    }

    .header__controls {
        margin-left: 0;
    }

    /* Плашка замість смуги з бургером */
    .header__bottom {
        display: none;
    }

    .header__menu {
        display: none;
    }

    .header__menu-toggle {
        display: none;
    }

    /* Оверлей над контентом, над плашкою знизу */
    .header__mobile-menu {
        display: block;
        top: 0;
        bottom: var(--mobile-bar-height, 56px);
        z-index: 95;
    }

    .mobile-bar {
        display: flex;
        min-height: var(--mobile-bar-height);
    }

    .main {
        padding-bottom: calc(var(--mobile-bar-height, 56px) + 1rem);
    }

    .header--menu-open .header__mobile-menu {
        opacity: 1;
        visibility: visible;
    }

    body.header--menu-open {
        overflow: hidden;
    }
    .section-title {
        display: none;
    }
    .navigation.top-sports {
        display: none;
    }
  .licenses {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .banner {
        min-height: 10rem;
        margin-left: .5rem;
        margin-right: .5rem;
    }

    .banner__track {
        min-height: 10rem;
    }

    .banner__slide {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 1.25rem 2.5rem 2.25rem 1rem;
    }

    .banner__content {
        max-width: none;
    }

    .banner__title {
        font-size: 1.2rem;
    }

    .banner__media {
        display: none;
    }

    .banner__arrow {
        width: 2rem;
        height: 2rem;
    }

    .banner__arrow--prev {
        display: none;
    }

    .banner__arrow--next {
        display: none;
    }

    .navigation__item {
        width: calc(50% - .25rem);
    }

    .banner__content {
        flex: none;
        padding: 0;
        margin: 0;
    }

    .footer-licenses__container,
    .footer-licenses__container--full-width {
        grid-column: span 1;
    }

    .footer-grid__element {
        grid-column: span 1 !important;
    }
}

@media (max-width: 414px) {
    .header__logo-link {
        padding: 0;
        margin: 0;
    }

    .header__logo-img {
        width: 120px;
        height: 24px;
    }

    .btn {
        max-width: 7rem;
        font-size: .74rem;
    }

    .navigation__item {
        width: 100%;
    }

    .main {
        padding: 0.5rem 0.5rem calc(var(--mobile-bar-height, 56px) + 1rem);
    }

    /* .main 8px + .content 14px = 22px side gutter, so prose never hugs the edge */
    .content,
    .breadcrumb {
        padding-left: 0.875rem;
        padding-right: 0.875rem;
    }
}

.faq {
    margin: 20px auto;
    border-radius: 16px;
    color: #f5f5f5;
}
.faq h2 {
    margin-bottom: 10px;
}
.faq-item {
    margin-bottom: 15px;
}
.faq-question {
    position: relative;
    font-weight: 400;
    font-size: 18px;
    color: #f5f5f5;
    padding: 20px 60px 20px 10px;
    border: 1px solid #af00d8;
    border-radius: 16px;
    background: radial-gradient(500px at left, #292B27, #9747ff);
    overflow: hidden;
    cursor: pointer;
    font-size: 20px;
    padding: 30px 100px 30px 15px;
    position: relative;
    width: 100%;
    text-align: left;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    border-radius: 0 0 8px 8px;
    padding: 0 10px;
    color: #f5f5f5;
}
.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 10px 20px;
    margin-bottom: 5px;
}

table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-container {
    width: 100%;
    overflow-x: auto; /* Adds the horizontal scrollbar */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    margin-bottom: 20px;
}

td, th {
    border: 1px solid;
    padding: .5em;
    white-space: nowrap; /* Prevents text from stacking vertically in tiny columns */
}

.cta-inline {
  margin: 30px 0 40px;
  text-align: left;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
  transition: all .3s ease;
}

.cta-btn.primary {
  background: #d3e512;
  color: #292b27;
}

.cta-btn.primary:hover {
  /* Moves the shadow down and makes it dark/transparent */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px); /* Optional: lifts the button slightly */
}

.cta-inline.center {
  text-align: center;
}

.content-list {
    margin: 1.5rem 0;
    padding-left: 0; /* Remove default padding to use custom alignment */
    list-style: none; /* Hide default bullets/numbers */
}

.content-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: hsl(0 0% 90% / 1);
}

/* Custom Bulleted List */
.content-list--bulleted li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em; /* Aligns with the first line of text */
    width: 6px;
    height: 6px;
    background-color: hsl(172 70% 65% / 1);
    border-radius: 50%;
    box-shadow: 0 0 8px hsl(172 70% 65% / 0.4);
}

/* Custom Numbered List */
.content-list--numbered {
    counter-reset: custom-counter;
}

.content-list--numbered li {
    counter-increment: custom-counter;
}

.content-list li:last-child {
    margin-bottom: 0;
}

.content-list--numbered li::before {
    content: counter(custom-counter) ".";
    position: absolute;
    left: 0;
    color: hsl(172 70% 65% / 1);
    font-weight: 700;
    font-family: "Roboto Bold", sans-serif;
    font-size: 0.9em;
}

/* Desktop specific adjustments for tables */
@media (min-width: 921px) {
    .content__table-wrap, 
    .table-container {
        overflow-x: visible; /* No scroll needed on desktop */
    }

    table, 
    .content-table {
        display: table; /* Reset from 'block' to default table behavior */
        width: 100%;    /* Force it to stretch the full width of the container */
        table-layout: auto; /* Allows columns to adjust to content size */
    }

    td, th {
        white-space: normal; /* Allows text to wrap on desktop so columns don't get too wide */
    }
}

.navigation_section {
    order: 1;
    margin: 0;
    font-size: .9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0;
    color: #ffffff;
}

/* ---- site overrides (generated, not part of the shared template) ---- */
/* Header chrome mirrors the spin-better-uzb.org sibling ("perfect template"):
   logo left, Регистрация/Вход pushed right, and a single-line nav row that
   scrolls horizontally on overflow instead of wrapping. No sport-event logos,
   no in-header burger (the mobile menu opens from the bottom bar). */
.header__top { justify-content: flex-end; }
.header__controls { margin-left: auto; }
.header__menu { overflow-x: auto; scrollbar-width: none; }
.header__menu::-webkit-scrollbar { display: none; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; }
/* Section tiles: the stock min-width is 18.75rem, so five of them overflow the
   row and the last one gets clipped. From the tablet breakpoint up they share
   the width equally instead of scrolling; below it the horizontal scroller and
   the original sizing stay as designed. */
@media (min-width: 721px) {
    .navigation:not(.top-sports) {
        overflow-x: visible;
        cursor: default;
        gap: .625rem;
        padding-top: 1.5rem;
        margin-top: 2rem;
    }
    .navigation:not(.top-sports) .navigation__item {
        flex: 1 1 0;
        min-width: 0;
        width: auto;
        height: 4.75rem;
        margin-right: 0;
        padding: .75rem .875rem;
    }
    .navigation:not(.top-sports) .navigation__item img {
        width: 4.5rem;
        height: 4.5rem;
    }
    .navigation:not(.top-sports) .navigation_section {
        font-size: .8125rem;
        max-width: 55%;
        line-height: 1.15;
    }
}
@media (min-width: 1100px) {
    .navigation:not(.top-sports) .navigation__item { height: 5.25rem; }
    .navigation:not(.top-sports) .navigation__item img { width: 5.25rem; height: 5.25rem; }
    .navigation:not(.top-sports) .navigation_section { font-size: .875rem; }
}
/* ---- editorial typography ------------------------------------------- */
main.content h1 {
    font-size: clamp(1.5rem, 1.15rem + 1.5vw, 2.125rem);
    line-height: 1.2;
    margin: 0 0 1.25rem;
}
main.content h2 {
    position: relative;
    margin: 2.25rem 0 .875rem;
    padding-left: .875rem;
    font-size: clamp(1.1875rem, 1.05rem + .6vw, 1.4375rem);
    line-height: 1.28;
}
main.content h2::before {
    content: "";
    position: absolute;
    left: 0; top: .15em; bottom: .15em;
    width: 4px;
    border-radius: 2px;
    background: linear-gradient(180deg, hsl(288 91% 55% / 1), hsl(288 91% 40% / 1));
}
main.content h3 {
    margin: 1.75rem 0 .625rem;
    font-size: 1.0625rem;
    color: hsl(0 0% 100% / 1);
}
main.content p { line-height: 1.65; margin: 0 0 1rem; }
main.content a:not(.btn) {
    color: hsl(288 80% 72% / 1);
    text-decoration: none;
    border-bottom: 1px solid hsl(288 80% 72% / .35);
}
main.content a:not(.btn):hover { color: hsl(288 90% 80% / 1); border-bottom-color: currentColor; }

/* Featured-snippet paragraph: the answer Google lifts, so give it weight. */
main.content .lede {
    margin-bottom: 1.5rem;
    padding: 1rem 1.125rem;
    border-radius: 10px;
    border-left: 4px solid hsl(288 91% 45% / 1);
    background: hsl(172 60% 12% / 1);
    font-size: 1.0625rem;
    line-height: 1.6;
    color: hsl(0 0% 100% / .95);
}

/* Editorial hero. Sources are 576x1072 phone screenshots — at full width they
   ate most of the fold, so cap them and let the text breathe around them. */
main.content > img {
    float: right;
    width: min(15rem, 42%);
    margin: 0 0 1.25rem 1.75rem;
    border-radius: 12px;
    border: 1px solid hsl(172 85% 22% / 1);
    box-shadow: 0 10px 30px hsl(172 90% 4% / .55);
}
@media (max-width: 640px) {
    main.content > img { float: none; width: min(13rem, 70%); margin: 0 auto 1.25rem; }
}

/* ---- lists ----------------------------------------------------------- */
main.content .content-list { margin: 0 0 1.25rem; padding: 0; list-style: none; }
main.content .content-list li {
    position: relative;
    margin-bottom: .5rem;
    padding-left: 1.75rem;
    line-height: 1.6;
}
main.content .content-list--bulleted li::before {
    content: "";
    position: absolute;
    left: .375rem; top: .6em;
    width: .4375rem; height: .4375rem;
    border-radius: 50%;
    background: hsl(288 91% 55% / 1);
}
main.content .content-list--numbered { counter-reset: step; }
main.content .content-list--numbered li { padding-left: 2.25rem; }
main.content .content-list--numbered li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0; top: .05em;
    width: 1.5rem; height: 1.5rem;
    border-radius: 7px;
    background: hsl(288 91% 45% / 1);
    color: hsl(0 0% 100% / 1);
    font-size: .8125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- tables ---------------------------------------------------------- */
main.content .table-scroll {
    margin: 0 0 1.5rem;
    border-radius: 10px;
    border: 1px solid hsl(172 85% 18% / 1);
}
main.content table { border-collapse: collapse; width: 100%; font-size: .9375rem; }
main.content thead th {
    background: hsl(172 85% 13% / 1);
    color: hsl(0 0% 100% / 1);
    text-align: left;
    font-size: .8125rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: .75rem .875rem;
    white-space: nowrap;
}
main.content tbody td { padding: .6875rem .875rem; border-top: 1px solid hsl(172 85% 16% / 1); }
main.content tbody tr:nth-child(even) { background: hsl(172 70% 11% / .55); }

/* ---- FAQ ------------------------------------------------------------- */
main.content .faq { margin-top: 2.25rem; }
main.content .faq-item {
    border: 1px solid hsl(172 85% 18% / 1);
    border-radius: 10px;
    margin-bottom: .5rem;
    overflow: hidden;
    background: hsl(172 70% 11% / .6);
}
main.content .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .875rem 1rem;
    background: none;
    border: 0;
    color: hsl(0 0% 100% / 1);
    font: inherit;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}
main.content .faq-question::after {
    content: "+";
    flex: 0 0 auto;
    font-size: 1.375rem;
    line-height: 1;
    color: hsl(288 80% 65% / 1);
    transition: transform .2s;
}
/* The template toggles `.active` on .faq-item (script.js initFaqToggles) and
   mirrors it on aria-expanded — key off both, and use the literal minus sign:
   a "2" CSS escape written in a non-raw Python string gets eaten as an
   OCTAL escape and ships a control character instead. */
main.content .faq-item.active .faq-question::after,
main.content .faq-question[aria-expanded="true"]::after { content: "−"; }
/* Collapsed answers must have NO vertical padding: overflow:hidden clips at the
   PADDING box, so padding-bottom on a max-height:0 element leaves a visible
   strip of the answer bleeding out under the question. */
main.content .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1rem;
    transition: max-height .28s ease, padding .28s ease;
    line-height: 1.6;
    color: hsl(0 0% 100% / .88);
}
main.content .faq-item.active .faq-answer {
    max-height: 40rem;
    padding: .125rem 1rem 1rem;
}

/* ---- interactive widgets --------------------------------------------- */
main.content .widget {
    margin: 1.5rem 0 1.75rem;
    padding: 1.125rem 1.25rem 1.25rem;
    border-radius: 12px;
    border: 1px solid hsl(172 60% 26% / 1);
    background: linear-gradient(160deg, hsl(172 55% 14% / 1), hsl(172 80% 9% / 1));
}
main.content .widget__head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: .25rem 1rem;
    margin-bottom: .875rem;
}
main.content .widget__title {
    font-weight: 700;
    font-size: 1.0625rem;
    color: hsl(0 0% 100% / 1);
}
main.content .widget__hint { font-size: .8125rem; color: hsl(172 20% 70% / 1); }
main.content .widget-note {
    margin: .875rem 0 0;
    font-size: .8125rem;
    line-height: 1.5;
    color: hsl(172 18% 72% / 1);
}
main.content .widget__control { display: block; margin-bottom: .875rem; }
main.content .widget__label {
    display: block;
    font-size: .8125rem;
    color: hsl(172 20% 72% / 1);
    margin-bottom: .375rem;
}
main.content .widget__range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: hsl(172 60% 20% / 1);
    outline: none;
}
main.content .widget__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: hsl(288 91% 50% / 1);
    border: 2px solid hsl(0 0% 100% / .9);
    cursor: pointer;
}
main.content .widget__range::-moz-range-thumb {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: hsl(288 91% 50% / 1);
    border: 2px solid hsl(0 0% 100% / .9);
    cursor: pointer;
}
main.content .widget__value {
    display: block;
    margin-top: .375rem;
    font-weight: 700;
    color: hsl(288 80% 75% / 1);
}
main.content .widget__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(8.5rem, 1fr));
    gap: .5rem;
}
main.content .widget__cell {
    padding: .625rem .75rem;
    border-radius: 9px;
    background: hsl(172 70% 11% / .8);
    border: 1px solid hsl(172 60% 20% / 1);
}
main.content .widget__cell--accent { border-color: hsl(288 70% 45% / .8); }
main.content .widget__cell-label {
    display: block;
    font-size: .75rem;
    color: hsl(172 18% 70% / 1);
    margin-bottom: .1875rem;
}
main.content .widget__cell b { font-size: 1.0625rem; color: hsl(0 0% 100% / 1); }
main.content .widget__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .375rem;
    margin-bottom: .875rem;
}
main.content .widget__tab {
    padding: .4375rem .875rem;
    border-radius: 8px;
    border: 1px solid hsl(172 60% 22% / 1);
    background: hsl(172 70% 11% / .8);
    color: hsl(0 0% 100% / .85);
    font: inherit;
    font-size: .8125rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s, border-color .15s, color .15s;
}
main.content .widget__tab:hover { border-color: hsl(288 60% 45% / .7); }
main.content .widget__tab.is-active {
    background: hsl(288 91% 45% / 1);
    border-color: hsl(288 91% 45% / 1);
    color: hsl(0 0% 100% / 1);
}
main.content .widget__panel { display: none; }
main.content .widget__panel.is-active { display: block; }
main.content .widget__list { list-style: none; margin: 0; padding: 0; }
main.content .widget__list li {
    padding: .5625rem .75rem;
    border-radius: 8px;
    background: hsl(172 70% 11% / .6);
    margin-bottom: .375rem;
    font-size: .9375rem;
}
main.content .widget__steps { margin: 0; padding-left: 1.25rem; }
main.content .widget__steps li { margin-bottom: .375rem; line-height: 1.55; }
main.content .widget__acc {
    border-radius: 9px;
    border: 1px solid hsl(172 60% 20% / 1);
    margin-bottom: .375rem;
    overflow: hidden;
}
main.content .widget__acc-q {
    width: 100%;
    padding: .6875rem .875rem;
    background: hsl(172 70% 11% / .7);
    border: 0;
    color: hsl(0 0% 100% / 1);
    font: inherit;
    font-weight: 700;
    font-size: .9375rem;
    text-align: left;
    cursor: pointer;
}
main.content .widget__acc-a {
    display: none;
    padding: 0 .875rem .75rem;
    font-size: .9063rem;
    line-height: 1.55;
    color: hsl(0 0% 100% / .86);
}
main.content .widget__acc.is-open .widget__acc-a { display: block; }
main.content .widget__acc.is-open .widget__acc-q { color: hsl(288 80% 75% / 1); }
main.content .widget__check {
    display: flex;
    align-items: center;
    gap: .625rem;
    width: 100%;
    padding: .5625rem .75rem;
    margin-bottom: .375rem;
    border-radius: 8px;
    border: 1px solid hsl(172 60% 20% / 1);
    background: hsl(172 70% 11% / .6);
    color: hsl(0 0% 100% / .9);
    font: inherit;
    font-size: .9375rem;
    text-align: left;
    cursor: pointer;
}
main.content .widget__check-box {
    flex: 0 0 auto;
    width: 1.125rem; height: 1.125rem;
    border-radius: 5px;
    border: 2px solid hsl(172 40% 40% / 1);
}
main.content .widget__check.is-done { border-color: hsl(288 70% 45% / .8); }
main.content .widget__check.is-done .widget__check-box {
    background: hsl(288 91% 45% / 1);
    border-color: hsl(288 91% 45% / 1);
}
main.content .widget__progress {
    height: 6px;
    border-radius: 3px;
    background: hsl(172 60% 18% / 1);
    overflow: hidden;
    margin-top: .625rem;
}
main.content .widget__progress-bar {
    display: block;
    height: 100%;
    width: 0;
    background: hsl(288 91% 50% / 1);
    transition: width .2s;
}
main.content .widget__crash {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .375rem;
    padding: 1.5rem 1rem;
    border-radius: 10px;
    background: hsl(172 80% 8% / 1);
    border: 1px solid hsl(172 60% 18% / 1);
}
main.content .widget__crash-mult {
    font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem);
    font-weight: 700;
    line-height: 1;
    color: hsl(0 0% 100% / 1);
    font-variant-numeric: tabular-nums;
}
main.content .widget__crash-mult.is-bust { color: hsl(4 80% 62% / 1); }
main.content .widget__crash-mult.is-win { color: hsl(140 65% 55% / 1); }
main.content .widget__crash-status {
    font-size: .8125rem;
    color: hsl(172 18% 72% / 1);
    text-align: center;
}
main.content .widget__crash-actions { display: flex; gap: .5rem; margin-top: .75rem; }
main.content .widget__btn {
    flex: 1 1 auto;
    padding: .625rem 1rem;
    border-radius: 9px;
    border: 1px solid hsl(172 60% 24% / 1);
    background: hsl(172 70% 13% / 1);
    color: hsl(0 0% 100% / 1);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}
main.content .widget__btn--accent { background: hsl(288 91% 45% / 1); border-color: hsl(288 91% 45% / 1); }
main.content .widget__btn:disabled { opacity: .45; cursor: default; }
main.content .widget__history { display: flex; flex-wrap: wrap; gap: .3125rem; margin-top: .75rem; }
main.content .widget__chip {
    padding: .1875rem .5rem;
    border-radius: 6px;
    font-size: .75rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    background: hsl(172 70% 13% / 1);
}
main.content .widget__chip.is-bust { color: hsl(4 80% 66% / 1); }
main.content .widget__chip.is-win { color: hsl(140 60% 60% / 1); }

/* ---- footer copyright block (spin-better-uzb.org "perfect template") ---- */
/* The license text block is CENTERED at every width to match the sibling:
   nav row centered with a divider under it, copyright line, then the fine
   legal line capped and auto-centred. */
.footer-license-text { padding: .5rem .25rem; text-align: center; }
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .25rem 1.25rem;
    margin-bottom: .625rem;
    padding-bottom: .625rem;
    border-bottom: 1px solid hsl(172 60% 18% / 1);
}
.footer-nav a {
    color: hsl(0 0% 100% / .82);
    text-decoration: none;
    font-size: .8125rem;
    font-weight: 700;
}
.footer-nav a:hover { color: hsl(288 80% 75% / 1); }
.footer-copy {
    margin: 0 0 .25rem;
    font-size: .8125rem;
    font-weight: 700;
    color: hsl(0 0% 100% / .9);
}
.footer-legal {
    margin: 0 auto;
    max-width: 44rem;
    font-size: .75rem;
    line-height: 1.45;
    color: hsl(172 14% 66% / 1);
}

main.content .note {
    border-left: 3px solid hsl(43 96% 56% / 1);
    background: hsl(172 85% 13% / 1);
    color: hsl(0 0% 100% / .92);
    padding: .75rem 1rem;
    border-radius: 8px;
}
/* CTA after the FAQ: one panel in the same gradient as the navigation tiles,
   copy on the left and a single accent button on the right. The stock .btn is
   `flex: auto` + `max-width: 10rem`, which stretched into a shapeless slab when
   dropped into a plain centred block — hence the explicit sizing below. */
main.content .content-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    margin: 2.25rem 0 .5rem;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    border: 1px solid hsl(172 60% 30% / 1);
    background-image: linear-gradient(90deg, hsl(171 63% 20% / 1) 45%, hsl(170 70% 12% / 1));
}
main.content .content-cta p {
    flex: 1 1 20rem;
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: hsl(0 0% 100% / .93);
}
main.content .content-cta .btn {
    flex: 0 0 auto;
    max-width: none;
    min-height: 2.75rem;
    padding: .6875rem 1.875rem;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: .02em;
    white-space: nowrap;
}
@media (max-width: 560px) {
    main.content .content-cta {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 1rem;
        padding: 1.125rem 1rem;
    }
    /* the row-direction flex-basis would become a 20rem HEIGHT once the panel
       stacks, leaving a large empty gap above the button */
    main.content .content-cta p { flex: 0 0 auto; }
    main.content .content-cta .btn { width: 100%; }
}
main.content img { max-width: 100%; height: auto; border-radius: 12px; }
