*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0d0d0d;
    --bg-header: #1a1a1a;
    --bg-sidebar: #141414;
    --bg-card: #1e1e1e;
    --red: #e53935;
    --red-hover: #ff1744;
    --yellow: #ffd600;
    --yellow-light: #fff176;
    --white: #ffffff;
    --gray-light: #b0b0b0;
    --gray: #757575;
    --gray-dark: #2a2a2a;
    --font: 'Montserrat', sans-serif;
    --sidebar-width: 210px;
    --sidebar-collapsed: 56px;
    --header-height: 60px;
    --bottom-nav-height: 64px;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background-color: var(--bg-dark);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-header);
    padding: 0 24px;
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    gap: 16px;
}

.topbar__start {
    display: flex;
    align-items: center;
    gap: 32px;
    min-width: 0;
    flex-shrink: 1;
}

.topbar__brand {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 1px;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.topbar__brand:hover {
    opacity: 0.85;
}

.brand-name {
    color: var(--white);
}

.brand-accent {
    color: var(--red);
    position: relative;
}

.brand-accent::after {
    content: '';
    position: absolute;
    top: 2px;
    right: -2px;
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
}

.topbar__menu-list {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar__menu-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-light);
    transition: color 0.2s;
    white-space: nowrap;
}

.topbar__menu-link:hover {
    color: var(--white);
}

.menu-icon {
    font-size: 16px;
}

.topbar__end {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.topbar__offer {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-light);
    white-space: nowrap;
}

.action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.action--signup {
    background: var(--red);
    color: var(--white);
}

.action--signup:hover {
    background: var(--red-hover);
    box-shadow: 0 0 20px rgba(229, 57, 53, 0.4);
}

.action--signin {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.action--signin:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.action--wide {
    width: 100%;
    padding: 14px 24px;
    font-size: 14px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: background 0.2s;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.08);
}

.hamburger__stripe {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.panel {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: var(--sidebar-width);
    height: calc(100vh - var(--header-height));
    background: var(--bg-sidebar);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 900;
    display: flex;
    flex-direction: column;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.panel.is-collapsed {
    width: var(--sidebar-collapsed);
}

.panel__nav {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 8px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.1) transparent;
}

.panel__nav::-webkit-scrollbar {
    width: 4px;
}

.panel__nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.panel__list {
    display: flex;
    flex-direction: column;
}

.panel__anchor {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-light);
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
    position: relative;
}

.panel__anchor:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.panel__anchor--current {
    color: var(--white);
}

.panel__anchor--current::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: var(--red);
    border-radius: 0 3px 3px 0;
}

.panel__icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
    line-height: 1;
}

.panel__label {
    overflow: hidden;
    text-overflow: ellipsis;
    transition: opacity 0.25s, width 0.25s;
}

.panel.is-collapsed .panel__label {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

.panel__tag {
    font-size: 9px;
    font-weight: 800;
    background: var(--red);
    color: var(--white);
    padding: 2px 5px;
    border-radius: 3px;
    line-height: 1;
    flex-shrink: 0;
    transition: opacity 0.25s;
}

.panel.is-collapsed .panel__tag {
    position: absolute;
    top: 4px;
    right: 6px;
    padding: 1px 3px;
    font-size: 7px;
}

.panel__separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 6px 12px;
}

.panel__switch {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    background: none;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}

.panel__switch:hover {
    background: rgba(255, 255, 255, 0.05);
}

.panel__switch svg {
    width: 18px;
    height: 18px;
    color: var(--gray);
    transition: transform 0.3s ease, color 0.2s;
}

.panel__switch:hover svg {
    color: var(--white);
}

.panel.is-collapsed .panel__switch svg {
    transform: rotate(180deg);
}

.panel__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.panel.is-collapsed .panel__bottom {
    flex-direction: column;
    gap: 8px;
    padding: 8px;
}

.panel__bottom-unit {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-light);
    cursor: pointer;
    transition: color 0.2s;
}

.panel__bottom-unit:hover {
    color: var(--white);
}

.panel.is-collapsed .panel__bottom .panel__label {
    display: none;
}

.main-wrap {
    margin-left: var(--sidebar-width);
    min-height: calc(100vh - var(--header-height));
    transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.main-wrap.is-expanded {
    margin-left: var(--sidebar-collapsed);
}

.promos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.promo {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.promo:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.promo__bg {
    position: relative;
    z-index: 0;
}


.promo--sport .promo__bg {
    background: linear-gradient(135deg, #1a0a00 0%, #8b2e00 40%, #e8820a 80%, #f5a623 100%);
}

.promo--casino .promo__bg {
    background: linear-gradient(135deg, #1a0a0a 0%, #4a1530 30%, #7a2040 60%, #c8a84e 100%);
}

.promo__img {
    width: 100%;
    height: auto;
    display: block;
}

.promo__inner {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
}

.promo__text {
    display: flex;
    flex-direction: column;
}

.promo__heading {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    color: var(--white);
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.promo__subheading {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.promo__mark {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-top: 12px;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.promo__amount {
    font-size: 44px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.promo__amount--gold {
    color: var(--yellow);
    font-size: 56px;
    text-shadow: 0 2px 20px rgba(255, 214, 0, 0.3);
}

.promo__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 14px 32px;
    background: var(--red);
    color: var(--white);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: background 0.2s, box-shadow 0.2s;
    text-shadow: none;
}

.promo:hover .promo__cta {
    background: var(--red-hover);
    box-shadow: 0 4px 20px rgba(229, 57, 53, 0.5);
}

.matches-area {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.matches-area__top {
    text-align: center;
    margin-bottom: 32px;
}

.matches-area__heading {
    display: block;
    font-size: 40px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
}

.matches-area__note {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-light);
    margin-top: 6px;
}

.match-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
}

.match-tile {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.match-tile:hover {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.match-tile--highlighted {
    background: linear-gradient(160deg, #1a2e1a 0%, #0f2010 50%, #1a1a1a 100%);
    border-color: rgba(76, 175, 80, 0.2);
}

.match-tile--highlighted:hover {
    border-color: rgba(76, 175, 80, 0.35);
}

.match-tile__badge {
    display: inline-flex;
    align-self: center;
    padding: 4px 12px;
    background: var(--red);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.match-tile__league {
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.match-tile__rivals {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    min-height: 34px;
}

.match-tile__versus {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 0;
}

.match-tile__side {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    flex-shrink: 0;
}

.match-tile__emblem {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    padding: 4px;
    display: block;
    flex-shrink: 0;
}

.match-tile__details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 70px;
}

.match-tile__date {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray);
}

.match-tile__clock {
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 1px;
}

.match-tile__bets {
    display: flex;
    gap: 8px;
}

.match-tile__bet {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.match-tile__bet:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
}

.match-tile__bet-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray);
}

.match-tile__bet-num {
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
}

.action--match-link {
    margin-top: 32px;
    padding: 16px 64px;
    background: var(--red);
    color: var(--white);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: 50px;
}

.action--match-link:hover {
    background: var(--red-hover);
    box-shadow: 0 4px 24px rgba(229, 57, 53, 0.45);
}

.slots-area__top {
    text-align: center;
    margin-bottom: 28px;
}

.slots-area__heading {
    display: block;
    font-size: 40px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
}

.slots-area__note {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-light);
    margin-top: 6px;
}

.slots-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.slots-nav__scroll {
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.slots-nav__scroll::-webkit-scrollbar {
    display: none;
}

.slots-nav__list {
    display: flex;
    gap: 4px;
    white-space: nowrap;
}

.slots-nav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    color: var(--gray-light);
    min-width: 80px;
}

.slots-nav__link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.slots-nav__link--current {
    color: var(--red);
    background: rgba(229, 57, 53, 0.08);
}

.slots-nav__link--current:hover {
    color: var(--red);
    background: rgba(229, 57, 53, 0.12);
}

.slots-nav__icon {
    font-size: 22px;
    line-height: 1;
}

.slots-nav__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    text-align: center;
}

.slots-nav__cta {
    flex-shrink: 0;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.3px;
    transition: border-color 0.2s, background 0.2s;
    white-space: nowrap;
}

.slots-nav__cta:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.slot-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-card);
    transition: transform 0.2s, box-shadow 0.2s;
}

.slot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.slot-card__img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, #2a1a0a, #1a1a2e);
}

.slot-card__name {
    display: block;
    padding: 8px 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.slot-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.25s ease;
    border-radius: 12px;
}

.slot-card:hover .slot-card__overlay {
    opacity: 1;
}

.slot-card__play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 24px;
    background: var(--red);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    border-radius: 8px;
    letter-spacing: 0.5px;
    transition: background 0.15s;
}

.slot-card:hover .slot-card__play:hover {
    background: var(--red-hover);
}

.slot-card__demo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
    letter-spacing: 0.3px;
    transition: background 0.15s;
}

.slot-card:hover .slot-card__demo:hover {
    background: rgba(255, 255, 255, 0.2);
}

.slot-card__badge {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    padding: 3px 8px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(4px);
}

.slot-card__badge--fresh {
    background: var(--red);
}

.slot-card__badge--boost {
    background: linear-gradient(135deg, #ff6f00, #ffd600);
    color: #1a1a1a;
}

.article {
    width: 100%;
    color: var(--gray-light);
    line-height: 1.7;
    font-size: 15px;
}

.article h1 {
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.article h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    margin-top: 32px;
    margin-bottom: 14px;
}

.article h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-top: 24px;
    margin-bottom: 10px;
}

.article img {
    max-width: 100%;
    margin: 0 auto;
    height: auto;
    border-radius: 12px;
    display: block;
    margin-bottom: 16px;
}

.article p {
    margin-bottom: 14px;
}

.article blockquote {
    border-left: 4px solid var(--red);
    padding: 14px 20px;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--gray-light);
}

.article table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.1) transparent;
}

.article thead {
    background: rgba(255, 255, 255, 0.06);
}

.article th,
.article td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    white-space: nowrap;
    font-size: 14px;
}

.article th {
    font-weight: 700;
    color: var(--white);
}

.article tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.article ul {
    margin: 14px 0;
    padding-left: 24px;
    list-style: disc;
}

.article ul li {
    margin-bottom: 6px;
}

.article ol {
    margin: 14px 0;
    padding-left: 24px;
    list-style: decimal;
}

.article ol li {
    margin-bottom: 6px;
}

.article a {
    color: var(--red);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.article a:hover {
    color: var(--red-hover);
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 40px;
}

.site-footer__top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__col-heading {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
}

.site-footer__links li {
    margin-bottom: 8px;
}

.site-footer__links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-light);
    transition: color 0.2s;
}

.site-footer__links a::before {
    content: '•';
    margin-right: 8px;
    color: var(--gray);
}

.site-footer__links a:hover {
    color: var(--white);
}

.site-footer__col--help {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__col--help .site-footer__col-heading {
    margin-bottom: 6px;
}

.site-footer__help-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    transition: border-color 0.2s, background 0.2s;
}

.site-footer__help-btn:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.site-footer__middle {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__promo-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__promo-links {
    display: flex;
    gap: 24px;
}

.site-footer__promo-links a {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-light);
    transition: color 0.2s;
}

.site-footer__promo-links a:hover {
    color: var(--white);
}

.site-footer__promo-sub {
    font-size: 11px;
    font-weight: 500;
    color: var(--gray);
}

.site-footer__social-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.site-footer__social-icons {
    display: flex;
    gap: 12px;
}

.site-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    font-size: 20px;
    transition: background 0.2s, transform 0.15s;
}

.site-footer__social-link:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.08);
}

.site-footer__bottom {
    padding: 28px 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.site-footer__disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 800px;
}

.site-footer__age-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: 2px solid var(--red);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 900;
    color: var(--red);
}

.site-footer__disclaimer p {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray);
    line-height: 1.6;
    text-align: left;
}

.site-footer__copy {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray);
}

.dock-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--bottom-nav-height);
    background: var(--bg-header);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
}

.dock-bar__list {
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    height: 100%;
}

.dock-bar__item {
    flex: 1;
    display: flex;
    align-items: stretch;
}

.dock-bar__item--center {
    flex: 1;
    position: relative;
}

.dock-bar__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 100%;
    color: var(--gray);
    transition: color 0.2s;
    padding: 8px 4px;
}

.dock-bar__link:hover,
.dock-bar__link:active {
    color: var(--white);
}

.dock-bar__icon {
    font-size: 22px;
    line-height: 1;
}

.dock-bar__label {
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
}

.dock-bar__link--menu {
    color: var(--white);
}

.dock-bar__circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--red);
    border-radius: 50%;
    margin-top: -22px;
    box-shadow: 0 4px 20px rgba(229, 57, 53, 0.5);
    transition: background 0.2s, transform 0.15s;
}

.dock-bar__link--menu:hover .dock-bar__circle,
.dock-bar__link--menu:active .dock-bar__circle {
    background: var(--red-hover);
    transform: scale(1.08);
}

.dock-bar__circle svg {
    width: 22px;
    height: 22px;
    color: var(--white);
}

.drawer {
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
    visibility: hidden;
}

.drawer.is-open {
    pointer-events: auto;
    visibility: visible;
}

.drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.drawer.is-open .drawer__overlay {
    opacity: 1;
}

.drawer__sheet {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: var(--bg-header);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.drawer.is-open .drawer__sheet {
    transform: translateX(0);
}

.drawer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.drawer__close {
    position: relative;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer__close:hover {
    background: rgba(255, 255, 255, 0.08);
}

.drawer__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
}

.drawer__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.drawer__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.drawer__nav ul {
    display: flex;
    flex-direction: column;
    padding: 0 8px;
}

.drawer__nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.drawer__nav li:last-child {
    border-bottom: none;
}

.drawer__nav a {
    display: flex;
    align-items: center;
    padding: 14px 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-light);
    transition: color 0.2s, background 0.2s;
    border-radius: 6px;
}

.drawer__nav a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.drawer__nav hr {
    border: none;
    background: rgba(255, 255, 255, 0.08);
}

.drawer__promo {
    margin-top: auto;
    padding: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray);
    line-height: 1.5;
    text-align: center;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .topbar__offer {
        display: none;
    }

    .match-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .slots-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .site-footer__top {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .topbar {
        padding: 0 16px;
        height: 56px;
    }

    .topbar__menu {
        display: none;
    }

    .topbar__offer {
        display: none;
    }

    .topbar__end {
        gap: 8px;
    }

    .topbar__end .action--signup {
        padding: 8px 16px;
        font-size: 12px;
        letter-spacing: 0.3px;
    }

    .topbar__end .action--signin {
        padding: 8px 16px;
        font-size: 12px;
        letter-spacing: 0.3px;
    }

    .hamburger {
        display: flex;
        width: 36px;
        height: 36px;
    }

    .topbar__brand {
        font-size: 24px;
    }

    .panel {
        display: none;
    }

    .main-wrap {
        margin-left: 0;
        padding: 16px;
        padding-bottom: calc(var(--bottom-nav-height) + 16px);
        gap: 32px;
    }

    .main-wrap.is-expanded {
        margin-left: 0;
    }

    .dock-bar {
        display: block;
    }

    .promos {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .promo {
        min-height: 240px;
    }

    .promo__inner {
        min-height: 240px;
        padding: 24px;
    }

    .promo__heading {
        font-size: 36px;
    }

    .promo__subheading {
        font-size: 22px;
    }

    .promo__amount {
        font-size: 36px;
    }

    .promo__amount--gold {
        font-size: 44px;
    }

    .promo__cta {
        padding: 12px 24px;
        font-size: 13px;
    }

    .matches-area__heading {
        font-size: 28px;
    }

    .matches-area__note {
        font-size: 13px;
    }

    .match-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .match-tile {
        padding: 16px;
    }

    .match-tile__clock {
        font-size: 20px;
    }

    .action--match-link {
        width: 100%;
        padding: 14px 32px;
        font-size: 14px;
        text-align: center;
    }

    .slots-area__heading {
        font-size: 28px;
    }

    .slots-area__note {
        font-size: 13px;
    }

    .slots-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .slots-nav__cta {
        text-align: center;
    }

    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .slot-card__play {
        padding: 8px 16px;
        font-size: 11px;
    }

    .slot-card__demo {
        padding: 5px 12px;
        font-size: 10px;
    }

    .article h1 {
        font-size: 26px;
    }

    .article h2 {
        font-size: 20px;
    }

    .article h3 {
        font-size: 18px;
    }

    .article table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .site-footer__middle {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .site-footer__social-col {
        align-items: flex-start;
    }

    .site-footer__disclaimer {
        flex-direction: column;
        align-items: center;
    }

    .site-footer__disclaimer p {
        text-align: center;
    }
}

@media (max-width: 420px) {
    .topbar {
        padding: 0 12px;
        gap: 8px;
    }

    .topbar__brand {
        font-size: 22px;
    }

    .topbar__end {
        gap: 6px;
    }

    .topbar__end .action--signup {
        padding: 7px 10px;
        font-size: 10px;
    }

    .topbar__end .action--signin {
        padding: 7px 10px;
        font-size: 10px;
    }

    .hamburger {
        width: 34px;
        height: 34px;
    }

    .hamburger__stripe {
        width: 18px;
    }

    .promo {
        min-height: 200px;
    }

    .promo__inner {
        min-height: 200px;
        padding: 20px;
    }

    .promo__heading {
        font-size: 30px;
    }

    .promo__subheading {
        font-size: 18px;
    }

    .promo__amount {
        font-size: 30px;
    }

    .promo__amount--gold {
        font-size: 38px;
    }

    .promo__cta {
        padding: 10px 20px;
        font-size: 12px;
    }

    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

@media (max-width: 340px) {
    .topbar__end .action--signin {
        display: none;
    }

    .drawer__sheet {
        width: 100%;
        max-width: 100vw;
    }
}

.topbar__menu ul {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar__menu a {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-light);
    transition: color 0.2s;
    white-space: nowrap;
}

.topbar__menu a:hover {
    color: var(--white);
}

.topbar__menu ul > li:nth-child(4),
.topbar__menu ul > li:nth-child(5),
.topbar__menu ul > li:nth-child(6),
.drawer__nav ul > li:nth-child(4),
.drawer__nav ul > li:nth-child(5),
.drawer__nav ul > li:nth-child(6) {
	display: none !important;
}