@font-face {
    font-family: "Roboto Regular";
    src: url(/assets/Roboto-Regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto Bold";
    src: url(/assets/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' */
}

.topcrest {
    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;
}

.topcrest__logo {
    display: flex;
    grid-area: logo;
}

.topcrest__logo-link {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    min-width: max-content;
    padding: .5rem;
    margin: 0 .5rem;
}

.topcrest__top {
    min-height: 3rem;
    align-items: center;
    display: flex;
    grid-area: top;
}

.topcrest__events {
    display: flex;
    flex-grow: 1;
    max-width: -moz-fit-content;
    max-width: fit-content;
    min-width: 0;
}

.topcrest__event {
    align-items: center;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    margin-right: .5rem;
}

.topcrest__event img {
    object-fit: contain;
    max-height: 2rem;
    width: 2rem;
}

.topcrest__event:first-child img {
    margin-left: .25rem;
}

.topcrest__controls {
    align-items: center;
    display: flex;
    gap: .5rem;
    padding: .25rem;
    margin-left: auto;
    margin-right: -.5rem;
}

.ctrl {
    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;
}

.ctrl:hover {
    background-color: hsl(173, 85%, 18%);
}

.ctrl.ctrl--bonus {
    text-align: center;
    padding: .25rem;
}

.ctrl--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);
}

.ctrl--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;
}

.ctrl--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);
    }
}

.ctrl--accent {
    background-color: hsl(288 91% 45% / 1);
    padding: .25rem 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ctrl--accent:hover {
    background-color: hsl(288, 80%, 52%);
}

.ctrl--primary {
    padding: .25rem 1rem;
}

.topcrest__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;
}

.topcrest__menu {
    align-items: center;
    display: flex;
    min-width: 0;
    -moz-column-gap: .75rem;
    column-gap: .75rem;
}

.topcrest__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;
}

.topcrest__menu-item:hover {
    background-color: hsl(172 85% 13% / 1);
}

/* Mobile menu toggle (hamburger) — visible only on desktop in layout, styled on mobile */
.topcrest__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;
}

.topcrest__menu-toggle-bar {
    display: block;
    width: 1.25rem;
    height: 2px;
    margin: 0 auto;
    background: currentColor;
    border-radius: 1px;
    transition: transform .2s, opacity .2s;
}

.topcrest--menu-open .topcrest__menu-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.topcrest--menu-open .topcrest__menu-toggle-bar:nth-child(2) {
    opacity: 0;
}

.topcrest--menu-open .topcrest__menu-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Нижняя мобильная плашка (скрыта на десктопе) */
.dockbar {
    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;
}

.dockbar__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;
}

.dockbar__item:active {
    opacity: 0.85;
}

.dockbar__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dockbar__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 */
.topcrest__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;
}

.topcrest__mobile-menu-inner {
    padding: 1rem;
    padding-top: 4rem;
}

.topcrest__mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.topcrest__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;
}

.topcrest__mobile-nav-item:hover {
    background: hsl(172 85% 13% / 1);
}

.shellnest {
    padding: 1.5rem .75rem 0;
}

/* Banner carousel */
.promo-slider {
    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;
}


.promo-slider__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)));
}

.promo-slider__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;
}

.promo-slider__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;
}

.promo-slider__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;
}

.promo-slider__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;
}

.promo-slider__text {
    margin: 0 0 1rem;
    font-size: .9375rem;
    line-height: 1.4;
    color: hsl(0 0% 100% / 0.9);
}

.promo-slider__btn:hover {
    background: hsl(288 80% 52% / 1);
}

.promo-slider__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;
}

.promo-slider__arrow:hover {
    background: hsl(0 0% 100% / 0.25);
    color: hsl(0 0% 100% / 1);
}

.promo-slider__arrow--prev {
    left: 0;
    border-radius: 0 8px 8px 0;
}

.promo-slider__arrow--next {
    right: 0;
    border-radius: 8px 0 0 8px;
}

.promo-slider__arrow svg {
    display: block;
    margin: 0 auto;
}

.promo-slider__dots {
    position: absolute;
    bottom: .75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .5rem;
    z-index: 2;
}

.promo-slider__dot {
    width: .5rem;
    height: .5rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: hsl(0 0% 100% / 0.35);
    cursor: pointer;
    transition: background .2s;
}

.promo-slider__dot:hover {
    background: hsl(0 0% 100% / 0.5);
}

.promo-slider__dot--active {
    background: hsl(0 0% 100% / 1);
}

.linklist {
    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;
}

.linklist::-webkit-scrollbar {
    display: none;
}

.linklist.is-dragging {
    cursor: grabbing;
    user-select: none;
    -webkit-user-select: none;
}

.linklist .linklist__item {
    -webkit-user-drag: none;
}


.linklist__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;
}

.linklist__item:hover {
    background: hsl(172 45% 28%);
}

.linklist__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;
}

.linklist__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 */
.proseline {
    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. */
.proseline 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 */
.proseline .jumplist img {
    display: inline-block;
    width: 20px;
    height: 20px;
    max-height: none;
    margin: 0;
    border: 0;
    border-radius: 0;
}

/* Breadcrumb bar (every non-home page) */
.routebar {
    max-width: 72rem;
    margin: 0 auto;
    padding: .75rem .5rem 0;
    font-size: .8125rem;
    color: hsl(0 0% 70% / 1);
}

.routebar a {
    color: hsl(172 70% 65% / 1);
    text-decoration: none;
}

.routebar a:hover {
    text-decoration: underline;
}

.routebar__sep {
    margin: 0 .4rem;
    color: hsl(0 0% 45% / 1);
}

.routebar__current {
    color: hsl(0 0% 85% / 1);
}

/* Wide tables scroll inside their own box, never the page */
.table-scroll-pane {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
}

.proseline h1 {
    margin: 0 0 1rem;
    font-family: "Roboto Bold", sans-serif;
    font-size: 1.75rem;
    color: hsl(0 0% 100% / 1);
}

.proseline 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;
}

.proseline p {
    margin: 0 0 1rem;
    line-height: 1.6;
    font-size: .9375rem;
}

.proseline code {
    padding: .15rem .4rem;
    background: hsl(172 85% 12% / 1);
    border-radius: 4px;
    font-size: .875em;
}

.proseline a {
    color: hsl(172 70% 65% / 1);
    text-decoration: none;
}

.proseline a:hover {
    color: hsl(172 75% 80% / 1);
    text-decoration: underline;
}

.proseline a:focus-visible {
    outline: 2px solid hsl(172 75% 55% / 1);
    outline-offset: 2px;
}

.proseline li {
  line-height: 1.3;
  margin-bottom: 5px;
}

.jumplist {
    margin-bottom: 1.5rem;
    padding: 0;
    background: hsl(172 85% 12% / 1);
    border-radius: 8px;
    border: 1px solid hsl(172 85% 18% / 1);
}

.jumplist__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    font-weight: 400;
}

.jumplist__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;
}

.jumplist__toggle:hover {
    color: hsl(172 75% 85% / 1);
}

.jumplist__icon {
    flex-shrink: 0;
    transition: transform .2s ease;
}

.jumplist.jumplist--collapsed .jumplist__icon {
    transform: rotate(-90deg);
}

.jumplist__body {
    overflow: hidden;
    transition: max-height .25s ease;
}

.jumplist.jumplist--collapsed .jumplist__body {
    max-height: 0 !important;
}

.jumplist__list {
    margin: 0;
    padding: 0 1.25rem 1rem 1.5rem;
    list-style: none;
    counter-reset: none;
}

.jumplist__list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: .5rem;
}

.jumplist__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: hsl(192 85% 55%);
    font-weight: 700;
    font-size: 1rem;
}

.jumplist__list a {
    color: hsl(172 70% 75% / 1);
    text-decoration: none;
}

.jumplist__list a:hover {
    text-decoration: underline;
    color: hsl(172 75% 85% / 1);
}

.proseline__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);
}

.linklist.top-sports {
    margin-top: 1rem;
    padding-top: 0;
}

.top-sports .linklist__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 .linklist__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 .linklist__item:hover svg {
    fill: rgb(204 212 211);
}

.top-sports .linklist__item:hover h3 {
    color: rgb(204 212 211);
}

.top-sports .linklist__item svg {
    fill: rgb(181 197 195);
    flex-shrink: 0;
    height: 32px;
    width: 32px;
    margin-bottom: .5rem;
}

.top-sports .linklist__item h3 {
    font-size: .75rem;
}

.footrow {
    margin-top: 2rem;
    padding: 1rem .5rem 1.5rem;
    background: hsl(172 85% 8% / 1);
    color: hsl(172 12% 74% / 1);
}

.clearances {
    --columns: 12;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: .5rem;
    margin: 0 auto;
}

.cert-strip__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;
}

.cert-strip__container--full-width {
    grid-column: span 8;
    flex-basis: auto;
    flex-grow: 0;
}

.permit-copy {
    padding: .25rem 0;
}

.permit-copy p {
    margin: 0;
}

.footrow__tile {
    padding: .75rem;
}

.footrow__legal {
    gap: .5rem;
}

.footer-copyright,
.footrow__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;
}

.social-row li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.social-tile-link__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.social-tile-link__icon .mark__glyph {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

.social-tile-link:hover {
    background-color: hsl(172 60% 45% / 1);
    color: hsl(0 0% 100% / 1);
}

.cert-strip__img {
    height: 3.75rem;
    -o-object-fit: contain;
    object-fit: contain;
}

.cert-strip__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;
}

.foot-column__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;
}

.footrow__actions {
    --columns: 2;
    display: flex;
    flex-direction: column;
    row-gap: .5rem;
    grid-column: auto / span var(--columns);
    min-height: 0;
}

.footrow__additional {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: .5rem;
}

.social-row {
    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;
}

.social-tile-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);
}

.mark__glyph {
    fill: rgb(0, 0, 0);
    height: 1em;
    max-width: 100%;
    width: auto;
}
.footrow__min-ages {
    display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
    gap: .5rem;
}

.footrow__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;
}
.footrow__min-age {
    padding: .75rem;
}
.agebar__text {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.25rem;
    line-height: 1.5rem;
}
.footrow__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;
}
.rail-row {
    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;
}
.rail-row__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}
.rail-row__container.linklist {
    margin: 0;
}
.rail-row__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;
    }

    .rail-row__container {
        gap: .5rem;
    }

    .rail-row__img {
        width: 2.75rem;
        height: 1.5rem;
    }

    .topcrest {
        grid-template-areas:
            "logo top";
        grid-template-rows: auto;
        padding-bottom: 0;
    }

    .topcrest__top {
        justify-content: flex-end;
    }

    .topcrest__events {
        display: none;
    }

    .topcrest__controls .ctrl--bonus {
        display: none;
    }

    .topcrest__controls {
        margin-left: 0;
    }

    /* Плашка замість смуги з бургером */
    .topcrest__bottom {
        display: none;
    }

    .topcrest__menu {
        display: none;
    }

    .topcrest__menu-toggle {
        display: none;
    }

    /* Оверлей над контентом, над плашкою знизу */
    .topcrest__mobile-menu {
        display: block;
        top: 0;
        bottom: var(--mobile-bar-height, 56px);
        z-index: 95;
    }

    .dockbar {
        display: flex;
        min-height: var(--mobile-bar-height);
    }

    .shellnest {
        padding-bottom: calc(var(--mobile-bar-height, 56px) + 1rem);
    }

    .topcrest--menu-open .topcrest__mobile-menu {
        opacity: 1;
        visibility: visible;
    }

    body.topcrest--menu-open {
        overflow: hidden;
    }
    .section-title {
        display: none;
    }
    .linklist.top-sports {
        display: none;
    }
  .clearances {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .promo-slider {
        min-height: 10rem;
        margin-left: .5rem;
        margin-right: .5rem;
    }

    .promo-slider__track {
        min-height: 10rem;
    }

    .promo-slider__slide {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 1.25rem 2.5rem 2.25rem 1rem;
    }

    .promo-slider__content {
        max-width: none;
    }

    .promo-slider__title {
        font-size: 1.2rem;
    }

    .promo-slider__media {
        display: none;
    }

    .promo-slider__arrow {
        width: 2rem;
        height: 2rem;
    }

    .promo-slider__arrow--prev {
        display: none;
    }

    .promo-slider__arrow--next {
        display: none;
    }

    .linklist__item {
        width: calc(50% - .25rem);
    }

    .promo-slider__content {
        flex: none;
        padding: 0;
        margin: 0;
    }

    .cert-strip__container,
    .cert-strip__container--full-width {
        grid-column: span 1;
    }

    .foot-column__element {
        grid-column: span 1 !important;
    }
}

@media (max-width: 414px) {
    .topcrest__logo-link {
        padding: 0;
        margin: 0;
    }

    .topcrest__logo-img {
        width: 120px;
        height: 24px;
    }

    .ctrl {
        max-width: 7rem;
        font-size: .74rem;
    }

    .linklist__item {
        width: 100%;
    }

    .shellnest {
        padding: 0.5rem 0.5rem calc(var(--mobile-bar-height, 56px) + 1rem);
    }

    /* .shellnest 8px + .proseline 14px = 22px side gutter, so prose never hugs the edge */
    .proseline,
    .routebar {
        padding-left: 0.875rem;
        padding-right: 0.875rem;
    }
}

.qazone {
    margin: 20px auto;
    border-radius: 16px;
    color: #f5f5f5;
}
.qazone h2 {
    margin-bottom: 10px;
}
.askcard {
    margin-bottom: 15px;
}
.asktitle {
    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;
}

.ask-copy {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    border-radius: 0 0 8px 8px;
    padding: 0 10px;
    color: #f5f5f5;
}
.askcard.active .ask-copy {
    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 */
}

.run-go {
  margin: 30px 0 40px;
  text-align: left;
}

.punt-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;
}

.punt-btn.chief {
  background: #d3e512;
  color: #292b27;
}

.punt-btn.chief: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 */
}

.run-go.midalign2 {
  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) {
    .proseline__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 */
    }
}

.nav_shelf {
    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;
}
/* ---- leaf overrides ---- */
@media (min-width: 921px){
  .topcrest__menu{ overflow-x:auto; flex-wrap:nowrap; scrollbar-width:none; }
  .topcrest__menu::-webkit-scrollbar{ display:none; }
}
.leadframe2{ margin:0 0 1.25rem; }
.leadframe2 img{ margin:0 auto; }
@media (min-width: 921px){
  .linklist:not(.top-sports){ overflow-x:visible; cursor:default; gap:.625rem; padding-top:1.5rem; margin-top:2rem; }
  .linklist:not(.top-sports) .linklist__item{ flex:1 1 0; min-width:0; width:auto; height:4.75rem; margin-right:0; padding:.75rem .875rem; }
  .linklist:not(.top-sports) .linklist__item img{ width:5.25rem; height:5.25rem; }
  .linklist:not(.top-sports) .nav_shelf{ font-size:.8125rem; max-width:55%; line-height:1.15; }
}
.permit-copy{ text-align:center; }
.endmenu{
  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);
}
.endmenu a{ color:hsl(0 0% 100% / .82); text-decoration:none; font-size:.8125rem; font-weight:700; }
.endmenu a:hover{ color:hsl(288 80% 75% / 1); }
.copyline{ margin:0 0 .25rem; font-size:.8125rem; font-weight:700; color:hsl(0 0% 100% / .9); }
.smallprint{ margin:0 auto; max-width:44rem; font-size:.75rem; line-height:1.45; color:hsl(172 14% 66% / 1); }

/* ---- shared editorial blocks ---- */
.quick-verdict{ background:hsl(172 85% 12% / 1); border:1px solid hsl(172 85% 20% / 1);
  border-radius:10px; padding:1rem 1.25rem; margin:0 0 1.5rem; }
.quick-verdict h2{ margin-top:0; }
.note{ background:hsl(172 85% 11% / 1); border-left:3px solid hsl(288 91% 55% / 1);
  border-radius:8px; padding:.85rem 1.1rem; margin:1.25rem 0; color:hsl(0 0% 100% / .92); }
.strengths{ display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin:1.5rem 0; }
.strengths .box{ background:hsl(172 85% 11% / 1); border-radius:10px; padding:1rem 1.25rem;
  border:1px solid hsl(172 85% 18% / 1); }
.strengths h3{ margin-top:0; }
@media (max-width:640px){ .strengths{ grid-template-columns:1fr; } }
.topdash{ position:fixed; right:16px; bottom:72px; z-index:80; display:none;
  width:44px; height:44px; border-radius:50%; border:0; cursor:pointer;
  background:hsl(288 91% 45% / 1); color:#fff; font-size:1.2rem; }
.topdash.show{ display:block; }
@media (min-width:921px){ .topdash{ bottom:24px; } }

/* ---- promo code copy widget ---- */
.promo-widget{ display:flex; flex-direction:column; gap:.65rem; max-width:34rem;
  background:linear-gradient(150deg,hsl(172 85% 13% / 1),hsl(172 85% 9% / 1));
  border:1px dashed hsl(288 91% 55% / 1); border-radius:12px;
  padding:1rem 1.15rem; margin:1.5rem 0; }
.promo-widget__label{ font-size:.78rem; text-transform:uppercase; letter-spacing:.09em;
  color:hsl(288 60% 82% / 1); }
.promo-widget__row{ display:flex; align-items:stretch; gap:.6rem; flex-wrap:wrap; }
.promo-widget__code{ font-family:"Roboto Bold",monospace; font-size:1.05rem; letter-spacing:.16em;
  color:hsl(0 0% 100% / 1); background:hsl(172 85% 7% / 1);
  border:1px solid hsl(172 85% 24% / 1); border-radius:8px;
  padding:.55rem .9rem; user-select:all; }
.promo-widget__hint{ font-size:.85rem; color:hsl(172 20% 72% / 1); margin:0; }
.copy-code{ background:hsl(288 91% 45% / 1); color:#fff; border:0; border-radius:8px;
  padding:.55rem 1.05rem; cursor:pointer; font:inherit; font-weight:700; white-space:nowrap; }
.copy-code:hover{ background:hsl(288 80% 52% / 1); }
.copy-code.is-copied{ background:hsl(150 60% 35% / 1); }

/* ---- generic widget shell ---- */
.wbox{ background:hsl(172 85% 11% / 1); border:1px solid hsl(172 85% 19% / 1);
  border-radius:12px; padding:1.05rem 1.2rem; margin:1.6rem 0; }
.wbox__title{ margin:0 0 .7rem; font-weight:700; color:hsl(172 45% 82% / 1); }
.wbox__out{ margin:.8rem 0 0; min-height:1.4rem; color:hsl(0 0% 100% / .95); }
.wchip{ background:hsl(172 85% 15% / 1); color:#fff; border:1px solid hsl(172 60% 26% / 1);
  border-radius:999px; padding:.42rem .95rem; cursor:pointer; font:inherit; font-size:.9rem;
  margin:0 .4rem .45rem 0; }
.wchip:hover{ border-color:hsl(288 80% 55% / 1); }
.wchip.on{ background:hsl(288 91% 40% / 1); border-color:hsl(288 91% 60% / 1); }
.wbtn{ background:hsl(288 91% 45% / 1); color:#fff; border:0; border-radius:8px;
  padding:.5rem 1.05rem; cursor:pointer; font:inherit; font-weight:700; }
.wbtn:hover{ background:hsl(288 80% 52% / 1); }

/* 1. tip dealer (home) */
.dealer__pool{ list-style:none; margin:.6rem 0 .8rem; padding:0; display:grid; gap:.6rem;
  grid-template-columns:repeat(3,1fr); }
.dealer__tip{ display:none; background:hsl(172 85% 8% / 1); border:1px solid hsl(172 60% 22% / 1);
  border-radius:10px; padding:.75rem .85rem; font-size:.92rem; }
.dealer__tip.on{ display:block; }
@media (max-width:700px){ .dealer__pool{ grid-template-columns:1fr; } }

/* 2. consequence chain (login) */
.chain__out{ list-style:none; margin:.8rem 0 0; padding:0; }
.chain__step{ display:none; position:relative; padding:.6rem .8rem .6rem 2.2rem;
  margin-bottom:.45rem; background:hsl(172 85% 8% / 1); border-radius:9px;
  border:1px solid hsl(172 60% 20% / 1); }
.chain__step.on{ display:block; }
.chain__step::before{ content:counter(chainstep); counter-increment:chainstep;
  position:absolute; left:.7rem; top:.6rem; width:1.15rem; height:1.15rem; border-radius:50%;
  background:hsl(288 91% 45% / 1); color:#fff; font-size:.72rem; line-height:1.15rem;
  text-align:center; font-weight:700; }
.chain__out{ counter-reset:chainstep; }

/* 3. split view (registration) */
.splitview{ position:relative; overflow:hidden; border-radius:10px;
  border:1px solid hsl(172 60% 22% / 1); }
.splitview__pane{ padding:.9rem 1rem; }
.splitview__pane--b{ position:absolute; inset:0; background:hsl(172 85% 8% / 1);
  border-right:2px solid hsl(288 91% 55% / 1); overflow:hidden; }
.splitview__inner{ width:var(--sv-w,100%); }
.splitview__range{ width:100%; margin-top:.7rem; }
.splitview h4{ margin:.2rem 0 .5rem; font-size:.95rem; color:hsl(288 60% 82% / 1); }

/* 4. scratch tiles (promo code) */
.scratch__grid{ display:grid; gap:.6rem; grid-template-columns:repeat(3,1fr); }
.scratch__tile{ background:hsl(172 85% 15% / 1); border:1px dashed hsl(288 70% 50% / 1);
  border-radius:10px; padding:.8rem .7rem; color:#fff; cursor:pointer; font:inherit;
  font-size:.9rem; text-align:left; min-height:5.2rem; }
.scratch__tile.on{ background:hsl(172 85% 8% / 1); border-style:solid;
  border-color:hsl(172 60% 30% / 1); cursor:default; }
.scratch__face{ font-weight:700; }
.scratch__fact{ display:none; margin-top:.35rem; font-weight:400; }
.scratch__tile.on .scratch__fact{ display:block; }
.scratch__tile.on .scratch__face{ color:hsl(172 45% 78% / 1); }
@media (max-width:700px){ .scratch__grid{ grid-template-columns:1fr; } }

/* 5. waterfall (bonus) */
.fall__rows{ margin:.7rem 0 0; }
.fall__row{ display:flex; align-items:center; gap:.7rem; margin-bottom:.4rem; }
.fall__label{ min-width:8.5rem; font-size:.88rem; }
.fall__track{ flex:1; height:14px; background:hsl(172 85% 7% / 1); border-radius:7px; overflow:hidden; }
.fall__fill{ display:block; height:100%; width:0; background:linear-gradient(90deg,hsl(288 91% 45%),hsl(288 70% 65%));
  transition:width .45s ease; }
.fall__val{ min-width:6.5rem; text-align:right; font-size:.88rem; font-weight:700; }

/* 6. bingo (no deposit) */
.bingo__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:.5rem; }
.bingo__cell{ background:hsl(172 85% 15% / 1); border:1px solid hsl(172 60% 24% / 1);
  border-radius:9px; padding:.7rem .6rem; color:#fff; cursor:pointer; font:inherit;
  font-size:.84rem; min-height:4.6rem; text-align:left; }
.bingo__cell.on{ background:hsl(150 55% 26% / 1); border-color:hsl(150 60% 45% / 1); }
.bingo__cell.win{ box-shadow:0 0 0 2px hsl(288 91% 60% / 1) inset; }
@media (max-width:560px){ .bingo__cell{ font-size:.78rem; min-height:4.2rem; } }

/* 7. coin stack (free spins) */
.stack{ display:flex; align-items:flex-end; gap:1.2rem; margin-top:.8rem; }
.stack__col{ display:flex; flex-direction:column-reverse; gap:3px; min-height:8rem;
  justify-content:flex-start; }
.stack__coin{ width:74px; height:15px; border-radius:8px;
  background:linear-gradient(90deg,hsl(45 85% 45%),hsl(45 90% 65%)); opacity:0; transform:translateY(8px);
  transition:opacity .3s ease, transform .3s ease; }
.stack__coin.on{ opacity:1; transform:none; }
.stack__side{ flex:1; }

/* 8. baseline comparator (app) */
.baseline td.delta{ font-size:.85rem; color:hsl(172 45% 74% / 1); }
.baseline tr.base{ background:hsl(288 60% 22% / 1); }
.baseline__pick{ background:none; border:1px solid hsl(172 60% 30% / 1); border-radius:6px;
  color:#fff; cursor:pointer; font:inherit; font-size:.8rem; padding:.2rem .55rem; }
.baseline tr.base .baseline__pick{ background:hsl(288 91% 45% / 1); border-color:hsl(288 91% 60% / 1); }

/* 9. race bars (withdrawal) */
.race__lane{ display:flex; align-items:center; gap:.7rem; margin-bottom:.5rem; }
.race__name{ min-width:8rem; font-size:.88rem; }
.race__track{ flex:1; height:18px; background:hsl(172 85% 7% / 1); border-radius:9px; overflow:hidden; }
.race__fill{ display:block; height:100%; width:0; border-radius:9px;
  background:linear-gradient(90deg,hsl(172 70% 40%),hsl(172 70% 62%)); transition:width 1.2s linear; }
.race__fill.b{ background:linear-gradient(90deg,hsl(288 70% 45%),hsl(288 70% 66%)); }
.race__time{ min-width:5.5rem; text-align:right; font-size:.85rem; }

/* in-page table of contents */
.jumplist{ margin:.35rem 0 1.5rem; padding:1rem 1.25rem; border:1px solid hsl(172 85% 20% / 1);
  border-left:3px solid hsl(288 91% 55% / 1); border-radius:10px;
  background:hsl(172 85% 11% / 1); }
.jumplist .jumplist__title{ margin:0 0 .6rem; font-size:.95rem; text-transform:uppercase;
  letter-spacing:.07em; color:hsl(288 60% 82% / 1); }
/* Single column at every width (user directive) — a wrapped entry then simply
   takes two lines instead of leaving a blank slot beside it. */
.jumplist__list{ margin:0; padding:0; list-style:none; }
.jumplist__list li{ margin:0 0 .45rem; padding-left:1.5rem; position:relative; }
.jumplist__list li:last-child{ margin-bottom:0; }
.jumplist__list a{ color:hsl(0 0% 100% / .88); text-decoration:none;
  border-bottom:1px solid transparent; }
.jumplist__list a:hover, .jumplist__list a:focus-visible{ color:hsl(288 80% 80% / 1);
  border-bottom-color:currentColor; }
html{ scroll-behavior:smooth; }
main.proseline h2{ scroll-margin-top:1rem; }
