*,
*::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;
}

.header {
    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;
}

.header__left {
    display: flex;
    align-items: center;
    gap: 32px;
    min-width: 0;
    flex-shrink: 1;
}

.header__logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 1px;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.header__logo:hover {
    opacity: 0.85;
}

.logo-text {
    color: var(--white);
}

.logo-o {
    color: var(--red);
    position: relative;
}

.logo-o::after {
    content: '';
    position: absolute;
    top: 2px;
    right: -2px;
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header__nav-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;
}

.header__nav-link:hover {
    color: var(--white);
}

.nav-icon {
    font-size: 16px;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.header__promo {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-light);
    white-space: nowrap;
}

.btn {
    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;
}

.btn--register {
    background: var(--red);
    color: var(--white);
}

.btn--register:hover {
    background: var(--red-hover);
    box-shadow: 0 0 20px rgba(229, 57, 53, 0.4);
}

.btn--login {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--login:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.btn--full {
    width: 100%;
    padding: 14px 24px;
    font-size: 14px;
}

.burger {
    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;
}

.burger:hover {
    background: rgba(255, 255, 255, 0.08);
}

.burger__line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.sidebar {
    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;
}

.sidebar.is-collapsed {
    width: var(--sidebar-collapsed);
}

.sidebar__nav {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 8px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.1) transparent;
}

.sidebar__nav::-webkit-scrollbar {
    width: 4px;
}

.sidebar__nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.sidebar__list {
    display: flex;
    flex-direction: column;
}

.sidebar__link {
    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;
}

.sidebar__link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.sidebar__link--active {
    color: var(--white);
}

.sidebar__link--active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: var(--red);
    border-radius: 0 3px 3px 0;
}

.sidebar__emoji {
    font-size: 18px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
    line-height: 1;
}

.sidebar__text {
    overflow: hidden;
    text-overflow: ellipsis;
    transition: opacity 0.25s, width 0.25s;
}

.sidebar.is-collapsed .sidebar__text {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

.sidebar__badge {
    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;
}

.sidebar.is-collapsed .sidebar__badge {
    position: absolute;
    top: 4px;
    right: 6px;
    padding: 1px 3px;
    font-size: 7px;
}

.sidebar__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 6px 12px;
}

.sidebar__toggle {
    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;
}

.sidebar__toggle:hover {
    background: rgba(255, 255, 255, 0.05);
}

.sidebar__toggle svg {
    width: 18px;
    height: 18px;
    color: var(--gray);
    transition: transform 0.3s ease, color 0.2s;
}

.sidebar__toggle:hover svg {
    color: var(--white);
}

.sidebar.is-collapsed .sidebar__toggle svg {
    transform: rotate(180deg);
}

.sidebar__footer {
    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;
}

.sidebar.is-collapsed .sidebar__footer {
    flex-direction: column;
    gap: 8px;
    padding: 8px;
}

.sidebar__footer-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-light);
    cursor: pointer;
    transition: color 0.2s;
}

.sidebar__footer-item:hover {
    color: var(--white);
}

.sidebar.is-collapsed .sidebar__footer .sidebar__text {
    display: none;
}

.page-content {
    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;
}

.page-content.is-expanded {
    margin-left: var(--sidebar-collapsed);
}

.banners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.banner {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.banner__bg {
    position: relative;
    z-index: 0;
}


.banner--sport .banner__bg {
    background: linear-gradient(135deg, #1a0a00 0%, #8b2e00 40%, #e8820a 80%, #f5a623 100%);
}

.banner--casino .banner__bg {
    background: linear-gradient(135deg, #1a0a0a 0%, #4a1530 30%, #7a2040 60%, #c8a84e 100%);
}

.banner__img {
    width: 100%;
    height: auto;
    display: block;
}

.banner__content {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
}

.banner__text {
    display: flex;
    flex-direction: column;
}

.banner__title {
    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);
}

.banner__subtitle {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.banner__label {
    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);
}

.banner__value {
    font-size: 44px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.banner__value--yellow {
    color: var(--yellow);
    font-size: 56px;
    text-shadow: 0 2px 20px rgba(255, 214, 0, 0.3);
}

.banner__btn {
    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;
}

.banner:hover .banner__btn {
    background: var(--red-hover);
    box-shadow: 0 4px 20px rgba(229, 57, 53, 0.5);
}

.sport-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sport-section__header {
    text-align: center;
    margin-bottom: 32px;
}

.sport-section__title {
    display: block;
    font-size: 40px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
}

.sport-section__desc {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-light);
    margin-top: 6px;
}

.sport-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
}

.sport-card {
    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;
}

.sport-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.sport-card--featured {
    background: linear-gradient(160deg, #1a2e1a 0%, #0f2010 50%, #1a1a1a 100%);
    border-color: rgba(76, 175, 80, 0.2);
}

.sport-card--featured:hover {
    border-color: rgba(76, 175, 80, 0.35);
}

.sport-card__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;
}

.sport-card__league {
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sport-card__teams {
    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;
}

.sport-card__match {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 0;
}

.sport-card__team {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    flex-shrink: 0;
}

.sport-card__logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    padding: 4px;
    display: block;
    flex-shrink: 0;
}

.sport-card__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 70px;
}

.sport-card__date {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray);
}

.sport-card__time {
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 1px;
}

.sport-card__odds {
    display: flex;
    gap: 8px;
}

.sport-card__odd {
    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;
}

.sport-card__odd:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
}

.sport-card__odd-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray);
}

.sport-card__odd-value {
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
}

.btn--sport-cta {
    margin-top: 32px;
    padding: 16px 64px;
    background: var(--red);
    color: var(--white);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: 50px;
}

.btn--sport-cta:hover {
    background: var(--red-hover);
    box-shadow: 0 4px 24px rgba(229, 57, 53, 0.45);
}

.casino-section__header {
    text-align: center;
    margin-bottom: 28px;
}

.casino-section__title {
    display: block;
    font-size: 40px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
}

.casino-section__desc {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-light);
    margin-top: 6px;
}

.casino-tabs {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.casino-tabs__scroll {
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.casino-tabs__scroll::-webkit-scrollbar {
    display: none;
}

.casino-tabs__list {
    display: flex;
    gap: 4px;
    white-space: nowrap;
}

.casino-tabs__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;
}

.casino-tabs__link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.casino-tabs__link--active {
    color: var(--red);
    background: rgba(229, 57, 53, 0.08);
}

.casino-tabs__link--active:hover {
    color: var(--red);
    background: rgba(229, 57, 53, 0.12);
}

.casino-tabs__icon {
    font-size: 22px;
    line-height: 1;
}

.casino-tabs__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    text-align: center;
}

.casino-tabs__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;
}

.casino-tabs__cta:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.casino-games {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.casino-game {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-card);
    transition: transform 0.2s, box-shadow 0.2s;
}

.casino-game:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.casino-game__img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, #2a1a0a, #1a1a2e);
}

.casino-game__name {
    display: block;
    padding: 8px 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.casino-game__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;
}

.casino-game:hover .casino-game__overlay {
    opacity: 1;
}

.casino-game__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;
}

.casino-game:hover .casino-game__play:hover {
    background: var(--red-hover);
}

.casino-game__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;
}

.casino-game:hover .casino-game__demo:hover {
    background: rgba(255, 255, 255, 0.2);
}

.casino-game__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);
}

.casino-game__badge--new {
    background: var(--red);
}

.casino-game__badge--power {
    background: linear-gradient(135deg, #ff6f00, #ffd600);
    color: #1a1a1a;
}

.content {
    width: 100%;
    color: var(--gray-light);
    line-height: 1.7;
    font-size: 15px;
}

.content h1 {
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.content h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    margin-top: 32px;
    margin-bottom: 14px;
}

.content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-top: 24px;
    margin-bottom: 10px;
}

.content img {
    max-width: 100%;
    margin: 0 auto;
    height: auto;
    border-radius: 12px;
    display: block;
    margin-bottom: 16px;
}

.content p {
    margin-bottom: 14px;
}

.content 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);
}

.content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.1) transparent;
}

.content thead {
    background: rgba(255, 255, 255, 0.06);
}

.content th,
.content td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    white-space: nowrap;
    font-size: 14px;
}

.content th {
    font-weight: 700;
    color: var(--white);
}

.content tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.content ul {
    margin: 14px 0;
    padding-left: 24px;
    list-style: disc;
}

.content ul li {
    margin-bottom: 6px;
}

.content ol {
    margin: 14px 0;
    padding-left: 24px;
    list-style: decimal;
}

.content ol li {
    margin-bottom: 6px;
}

.content a {
    color: var(--red);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.content a:hover {
    color: var(--red-hover);
}

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 40px;
}

.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);
}

.footer__col-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
}

.footer__list li {
    margin-bottom: 8px;
}

.footer__list a {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-light);
    transition: color 0.2s;
}

.footer__list a::before {
    content: '•';
    margin-right: 8px;
    color: var(--gray);
}

.footer__list a:hover {
    color: var(--white);
}

.footer__col--support {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col--support .footer__col-title {
    margin-bottom: 6px;
}

.footer__support-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;
}

.footer__support-btn:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.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);
}

.footer__promo-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__promo-links {
    display: flex;
    gap: 24px;
}

.footer__promo-links a {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-light);
    transition: color 0.2s;
}

.footer__promo-links a:hover {
    color: var(--white);
}

.footer__promo-sub {
    font-size: 11px;
    font-weight: 500;
    color: var(--gray);
}

.footer__social-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer__social-icons {
    display: flex;
    gap: 12px;
}

.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;
}

.footer__social-link:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.08);
}

.footer__bottom {
    padding: 28px 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.footer__disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 800px;
}

.footer__age-badge {
    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);
}

.footer__disclaimer p {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray);
    line-height: 1.6;
    text-align: left;
}

.footer__copy {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray);
}

.bottom-nav {
    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;
}

.bottom-nav__list {
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    height: 100%;
}

.bottom-nav__item {
    flex: 1;
    display: flex;
    align-items: stretch;
}

.bottom-nav__item--center {
    flex: 1;
    position: relative;
}

.bottom-nav__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;
}

.bottom-nav__link:hover,
.bottom-nav__link:active {
    color: var(--white);
}

.bottom-nav__emoji {
    font-size: 22px;
    line-height: 1;
}

.bottom-nav__label {
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
}

.bottom-nav__link--menu {
    color: var(--white);
}

.bottom-nav__menu-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;
}

.bottom-nav__link--menu:hover .bottom-nav__menu-circle,
.bottom-nav__link--menu:active .bottom-nav__menu-circle {
    background: var(--red-hover);
    transform: scale(1.08);
}

.bottom-nav__menu-circle svg {
    width: 22px;
    height: 22px;
    color: var(--white);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
    visibility: hidden;
}

.mobile-menu.is-open {
    pointer-events: auto;
    visibility: visible;
}

.mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu.is-open .mobile-menu__backdrop {
    opacity: 1;
}

.mobile-menu__panel {
    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;
}

.mobile-menu.is-open .mobile-menu__panel {
    transform: translateX(0);
}

.mobile-menu__header {
    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;
}

.mobile-menu__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;
}

.mobile-menu__close:hover {
    background: rgba(255, 255, 255, 0.08);
}

.mobile-menu__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
}

.mobile-menu__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu__nav ul {
    display: flex;
    flex-direction: column;
    padding: 0 8px;
}

.mobile-menu__nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu__nav li:last-child {
    border-bottom: none;
}

.mobile-menu__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;
}

.mobile-menu__nav a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu__nav hr {
    border: none;
    background: rgba(255, 255, 255, 0.08);
}

.mobile-menu__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) {
    .header__promo {
        display: none;
    }

    .sport-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .casino-games {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer__top {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0 16px;
        height: 56px;
    }

    .header__nav {
        display: none;
    }

    .header__promo {
        display: none;
    }

    .header__right {
        gap: 8px;
    }

    .header__right .btn--register {
        padding: 8px 16px;
        font-size: 12px;
        letter-spacing: 0.3px;
    }

    .header__right .btn--login {
        padding: 8px 16px;
        font-size: 12px;
        letter-spacing: 0.3px;
    }

    .burger {
        display: flex;
        width: 36px;
        height: 36px;
    }

    .header__logo {
        font-size: 24px;
    }

    .sidebar {
        display: none;
    }

    .page-content {
        margin-left: 0;
        padding: 16px;
        padding-bottom: calc(var(--bottom-nav-height) + 16px);
        gap: 32px;
    }

    .page-content.is-expanded {
        margin-left: 0;
    }

    .bottom-nav {
        display: block;
    }

    .banners {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .banner {
        min-height: 240px;
    }

    .banner__content {
        min-height: 240px;
        padding: 24px;
    }

    .banner__title {
        font-size: 36px;
    }

    .banner__subtitle {
        font-size: 22px;
    }

    .banner__value {
        font-size: 36px;
    }

    .banner__value--yellow {
        font-size: 44px;
    }

    .banner__btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .sport-section__title {
        font-size: 28px;
    }

    .sport-section__desc {
        font-size: 13px;
    }

    .sport-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .sport-card {
        padding: 16px;
    }

    .sport-card__time {
        font-size: 20px;
    }

    .btn--sport-cta {
        width: 100%;
        padding: 14px 32px;
        font-size: 14px;
        text-align: center;
    }

    .casino-section__title {
        font-size: 28px;
    }

    .casino-section__desc {
        font-size: 13px;
    }

    .casino-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .casino-tabs__cta {
        text-align: center;
    }

    .casino-games {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .casino-game__play {
        padding: 8px 16px;
        font-size: 11px;
    }

    .casino-game__demo {
        padding: 5px 12px;
        font-size: 10px;
    }

    .content h1 {
        font-size: 26px;
    }

    .content h2 {
        font-size: 20px;
    }

    .content h3 {
        font-size: 18px;
    }

    .content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer__middle {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .footer__social-col {
        align-items: flex-start;
    }

    .footer__disclaimer {
        flex-direction: column;
        align-items: center;
    }

    .footer__disclaimer p {
        text-align: center;
    }
}

@media (max-width: 420px) {
    .header {
        padding: 0 12px;
        gap: 8px;
    }

    .header__logo {
        font-size: 22px;
    }

    .header__right {
        gap: 6px;
    }

    .header__right .btn--register {
        padding: 7px 10px;
        font-size: 10px;
    }

    .header__right .btn--login {
        padding: 7px 10px;
        font-size: 10px;
    }

    .burger {
        width: 34px;
        height: 34px;
    }

    .burger__line {
        width: 18px;
    }

    .banner {
        min-height: 200px;
    }

    .banner__content {
        min-height: 200px;
        padding: 20px;
    }

    .banner__title {
        font-size: 30px;
    }

    .banner__subtitle {
        font-size: 18px;
    }

    .banner__value {
        font-size: 30px;
    }

    .banner__value--yellow {
        font-size: 38px;
    }

    .banner__btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .casino-games {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

@media (max-width: 340px) {
    .header__right .btn--login {
        display: none;
    }

    .mobile-menu__panel {
        width: 100%;
        max-width: 100vw;
    }
}

.header__nav ul {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header__nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-light);
    transition: color 0.2s;
    white-space: nowrap;
}

.header__nav a:hover {
    color: var(--white);
}

.header__nav ul > li:nth-child(4),
.header__nav ul > li:nth-child(5),
.header__nav ul > li:nth-child(6),
.mobile-menu__nav ul > li:nth-child(4),
.mobile-menu__nav ul > li:nth-child(5),
.mobile-menu__nav ul > li:nth-child(6) {
	display: none !important;
}