html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

*,*:after,*:before {
    box-sizing: border-box;
}

/* в”Ђв”Ђ Base в”Ђв”Ђ */
body {
    background: #0f0f13;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* в”Ђв”Ђ Header в”Ђв”Ђ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #0f0f13;
    border-bottom: 1px solid #1e1e2e;
}

.header__inner {
    display: flex;
    align-items: center;
    gap: 40px;
    height: 68px;
}

/* Logo */
.header__logo {
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Nav */
.header__nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.header__nav-link {
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    color: #aaaacc;
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.header__nav-link:hover {
    color: #ffffff;
    background: #1a1a28;
}

/* Actions */
.header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    white-space: nowrap;
}

.header__btn--login {
    background: transparent;
    border: 1px solid #3a3a5a;
    color: #ccccee;
}

.header__btn--login:hover {
    border-color: #6c5ce7;
    color: #fff;
}

.header__btn--register {
    background: #6c5ce7;
    color: #fff;
    border: 1px solid transparent;
    animation: btn-register-pulse 2.2s ease-in-out infinite;
}

.header__btn--register:hover {
    background: #7d6ff0;
    transform: translateY(-1px);
    animation: none;
}

.header__btn--login {
    animation: btn-login-pulse 2.8s ease-in-out infinite;
}

.header__btn--login:hover {
    animation: none;
}

@keyframes btn-register-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.65);
    }
    55% {
        box-shadow: 0 0 0 9px rgba(108, 92, 231, 0);
    }
}

@keyframes btn-login-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(162, 155, 254, 0.35);
    }
    55% {
        box-shadow: 0 0 0 7px rgba(162, 155, 254, 0);
    }
}

/* Burger */
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: #1a1a28;
    border: 1px solid #2a2a3e;
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    margin-left: auto;
}

.header__burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s, width 0.3s;
}

/* Burger active state */
.header__burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.header__burger.is-active span:nth-child(2) {
    opacity: 0;
    width: 0;
}
.header__burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hide mobile-only actions on desktop */
.header__nav-actions { display: none; }

/* Mobile nav overlay */
@media (max-width: 1023px) {
    .header__burger { display: flex; }
    .header__actions { display: none; }

    .header__nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #0f0f13;
        padding: 24px 20px 32px;
        border-top: 1px solid #1e1e2e;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        z-index: 99;
    }

    .header__nav.is-open {
        transform: translateX(0);
    }

    .header__nav-link {
        font-size: 18px;
        font-weight: 600;
        padding: 14px 16px;
        border-radius: 10px;
        border-bottom: 1px solid #1e1e2e;
        color: #ccccee;
    }

    .header__nav-link:last-child { border-bottom: none; }

    /* Mobile action buttons inside nav */
    .header__nav-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #1e1e2e;
    }

    .header__nav .header__btn {
        width: 100%;
        padding: 14px;
        font-size: 15px;
        border-radius: 12px;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 479px) {
    .header__inner { gap: 0; }
}

/* в”Ђв”Ђ Promo Banner в”Ђв”Ђ */
.promo-banner {
    padding: 32px 0;
}

.promo-banner__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.promo-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 28px 28px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    min-height: 200px;
    transition: transform 0.22s, box-shadow 0.22s;
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.6);
}

.promo-card--1 { background-color: #1a0a2e; }
.promo-card--2 { background-color: #0a1a10; }
.promo-card--3 { background-color: #0a1a10; }

.promo-card {
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

/* Label badge */
.promo-card__label {
    position: absolute;
    top: 18px;
    left: 20px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 50px;
}

/* Content area (left side) */
.promo-card__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    max-width: 52%;
}

/* SEO H1 вЂ” visually subtle, semantically correct */
.promo-card__h1 {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.2px;
    line-height: 1.45;
    margin-bottom: 6px;
}

/* Title */
.promo-card__title {
    font-size: 26px;
    font-weight: 900;
    line-height: 1.15;
    color: #c8ff00;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.promo-card--2 .promo-card__title,
.promo-card--3 .promo-card__title {
    color: #c8ff00;
}

.promo-card__title span {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    opacity: 0.9;
    margin-top: 4px;
}

/* Button */
.promo-card__btn {
    display: inline-block;
    background: #22c55e;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px;
    transition: background 0.2s, transform 0.15s;
}

.promo-card:hover .promo-card__btn {
    background: #16a34a;
    transform: scale(1.04);
}

/* в”Ђв”Ђ Responsive Promo в”Ђв”Ђ */
@media (max-width: 959px) {
    .promo-banner__grid { grid-template-columns: 1fr; gap: 12px; }
    .promo-card { min-height: 160px; padding: 20px 22px 22px; }
    .promo-card__img { max-width: 45%; }
    .promo-card__content { max-width: 58%; }
    .promo-card__title { font-size: 22px; }
}

@media (max-width: 719px) {
    .promo-card { min-height: 150px; }
    .promo-card__title { font-size: 20px; }
    .promo-card__img { max-width: 42%; }
}

@media (max-width: 479px) {
    .promo-card { min-height: 140px; padding: 16px 18px 18px; }
    .promo-card__title { font-size: 18px; }
    .promo-card__label { font-size: 10px; padding: 4px 10px; }
    .promo-card__img { max-width: 40%; }
    .promo-card__content { max-width: 62%; }
}

/* в”Ђв”Ђ Top Games в”Ђв”Ђ */
.top-games { padding: 48px 0; }

.top-games__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.top-games__title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.top-games__view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #2a2a3a;
    border-radius: 50px;
    padding: 10px 20px;
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s;
}

.top-games__view-all:hover { background: #3a3a50; }

.top-games__view-all span {
    background: #6c5ce7;
    border-radius: 50px;
    padding: 2px 9px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.top-games__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

/* в”Ђв”Ђ Game Card в”Ђв”Ђ */
.game-card {
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a28;
    transition: transform 0.22s, box-shadow 0.22s;
    position: relative;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.55);
}

.game-card__img-wrap {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}

.game-card__img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.game-card:hover .game-card__img-wrap img { transform: scale(1.06); }

.game-card__heart {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    background: rgba(0,0,0,0.55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s;
}

.game-card:hover .game-card__heart { background: rgba(108,92,231,0.75); }

.game-card__heart svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.game-card__info { padding: 10px 12px 12px; }

.game-card__name {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}

.game-card__provider {
    font-size: 11px;
    color: #8888aa;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* в”Ђв”Ђ New Games в”Ђв”Ђ */
.new-games { padding: 0 0 48px; }

.new-games__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.new-games__title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.new-games__controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.new-games__view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #2a2a3a;
    border-radius: 50px;
    padding: 10px 20px;
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s;
}

.new-games__view-all:hover { background: #3a3a50; }

.new-games__view-all span {
    background: #6c5ce7;
    border-radius: 50px;
    padding: 2px 9px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.new-games__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #2a2a3a;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}

.new-games__arrow:hover { background: #6c5ce7; }

.new-games__arrow svg {
    width: 18px;
    height: 18px;
}

.new-games__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

/* Prerelease badge */
.game-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #22c55e;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 1199px) {
    .new-games__grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 959px) {
    .new-games__grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 719px) {
    .new-games__grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .new-games__title { font-size: 22px; }
    .new-games__view-all { font-size: 13px; padding: 8px 14px; }
}
@media (max-width: 479px) {
    .new-games__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .new-games__title { font-size: 20px; }
}

/* в”Ђв”Ђ Lucky Bets в”Ђв”Ђ */
.bets {
    padding: 0 0 48px;
}

.bets__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #1e1e2e;
    margin-bottom: 0;
    flex-wrap: wrap;
    gap: 12px;
}

.bets__tabs {
    display: flex;
    align-items: center;
    gap: 4px;
}

.bets__tab {
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #6666aa;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.bets__tab:hover { color: #ffffff; }

.bets__tab--active {
    color: #ffffff;
    border-bottom-color: #22c55e;
}

.bets__toggles {
    display: flex;
    gap: 8px;
    padding: 8px 0;
}

.bets__toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    border-radius: 50px;
    background: #1a1a28;
    border: 1px solid #2a2a3e;
    color: #8888aa;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.bets__toggle svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.bets__toggle:hover {
    background: #2a2a3e;
    color: #fff;
}

.bets__toggle--active {
    background: #2a2a3e;
    border-color: #6c5ce7;
    color: #ffffff;
}

.bets__toggle--active svg { color: #6c5ce7; }

/* Scroll wrapper */
.bets__scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.bets__scroll-wrap::-webkit-scrollbar {
    height: 4px;
}

.bets__scroll-wrap::-webkit-scrollbar-track {
    background: #1a1a28;
}

.bets__scroll-wrap::-webkit-scrollbar-thumb {
    background: #3a3a5a;
    border-radius: 4px;
}

/* Table */
.bets__table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
}

.bets__table thead th {
    padding: 14px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: #6666aa;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-bottom: 1px solid #1e1e2e;
    white-space: nowrap;
}

.bets__table tbody tr {
    border-bottom: 1px solid #14141e;
    transition: background 0.15s;
}

.bets__table tbody tr:hover { background: #1e1e30; }

.bets__row--alt { background: #13131e; }
.bets__row--alt:hover { background: #1e1e30; }

.bets__table tbody td {
    padding: 13px 16px;
    font-size: 14px;
    color: #ccccdd;
    white-space: nowrap;
}

.bets__row-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.bets__row-link:hover { color: #ffffff; }

.bets__emoji {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
}

.bets__time { color: #6666aa; }

.bets__amount {
    display: inline-block;
    background: #2a2040;
    border: 1px solid #4a3a6a;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 13px;
    font-weight: 600;
    color: #ccaaff;
}

.bets__multi {
    display: inline-block;
    background: #1a2a50;
    border: 1px solid #2a4a8a;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 13px;
    font-weight: 700;
    color: #6699ff;
}

.bets__payout {
    color: #22c55e !important;
    font-weight: 700;
}

@media (max-width: 719px) {
    .bets__tab { padding: 12px 14px; font-size: 14px; }
    .bets__toggle { padding: 7px 14px; font-size: 12px; }
}

@media (max-width: 479px) {
    .bets__header { gap: 0; }
    .bets__tabs { width: 100%; border-bottom: none; }
    .bets__toggles { width: 100%; padding: 8px 0 0; border-top: 1px solid #1e1e2e; }
}

/* в”Ђв”Ђ SEO Content в”Ђв”Ђ */
.seo-content {
    padding: 56px 0 72px;
    background: #0d0d16;
    border-top: 1px solid #1e1e2e;
    border-bottom: 1px solid #1e1e2e;
}

/* Two-column layout: h2 left, content right вЂ” auto-placement, no explicit grid-column */
.seo-content__body {
    display: grid;
    grid-template-columns: 260px 1fr;
    column-gap: 56px;
    align-items: start;
}

.seo-content h2 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    padding: 20px 0 20px 16px;
    border-left: 3px solid #6c5ce7;
    margin: 0;
}

.seo-content h2 strong {
    font-weight: inherit;
}

.seo-content__col {
    padding: 20px 0 40px;
    border-bottom: 1px solid #1a1a28;
}

.seo-content__col:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.seo-content p {
    font-size: 15px;
    line-height: 1.85;
    color: #a0a0bc;
    margin-bottom: 16px;
}

.seo-content p:last-child {
    margin-bottom: 0;
}

.seo-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.seo-content ul li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #a0a0bc;
}

.seo-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}

/* Table scroll wrapper */
.seo-content__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 4px 0 20px;
    border-radius: 10px;
    border: 1px solid #252535;
}

.seo-content__table-wrap::-webkit-scrollbar { height: 4px; }
.seo-content__table-wrap::-webkit-scrollbar-track { background: #1a1a28; }
.seo-content__table-wrap::-webkit-scrollbar-thumb { background: #6c5ce7; border-radius: 4px; }

.seo-content__table {
    width: 100%;
    min-width: 380px;
    border-collapse: collapse;
}

.seo-content__table tbody tr {
    border-bottom: 1px solid #1e1e2e;
    transition: background 0.15s;
}

.seo-content__table tbody tr:last-child { border-bottom: none; }
.seo-content__table tbody tr:hover { background: #1e1e30; }
.seo-content__table tbody tr:nth-child(even) { background: #131320; }

.seo-content__table-head {
    background: #181828 !important;
}

.seo-content__table td {
    padding: 13px 20px;
    font-size: 14px;
    line-height: 1.5;
    color: #ccccdd;
    vertical-align: top;
    white-space: nowrap;
}

.seo-content__table-head td {
    color: #a29bfe;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.9px;
}

/* Responsive: collapse to single column */
@media (max-width: 1023px) {
    .seo-content__body {
        grid-template-columns: 1fr;
    }
    .seo-content h2 {
        position: static;
        padding: 36px 0 8px 16px;
    }
    .seo-content h2:first-child { padding-top: 0; }
    .seo-content__col {
        padding: 4px 0 28px;
        border-bottom: none;
    }
}

@media (max-width: 719px) {
    .seo-content { padding: 40px 0 56px; }
    .seo-content h2 { font-size: 16px; }
    .seo-content p,
    .seo-content ul li { font-size: 14px; }
    .seo-content__table td { padding: 11px 14px; font-size: 13px; }
}

@media (max-width: 479px) {
    .seo-content h2 { font-size: 15px; }
}

/* в”Ђв”Ђ Footer в”Ђв”Ђ */
.site-footer {
    background: #0a0a10;
    border-top: 1px solid #1e1e2e;
    padding: 60px 0 0;
    margin-top: 40px;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid #1e1e2e;
}

.footer__about-text {
    font-size: 14px;
    line-height: 1.75;
    color: #9090b0;
    margin-bottom: 24px;
}

.footer__cta {
    display: inline-block;
    background: #6c5ce7;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    transition: background 0.2s, transform 0.15s;
}

.footer__cta:hover {
    background: #7d6ff0;
    transform: translateY(-2px);
}

.footer__col-title {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
}

.footer__nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__nav a {
    color: #9090b0;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.2s;
}

.footer__nav a:hover { color: #ffffff; }

.footer__middle {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 36px 0;
    border-bottom: 1px solid #1e1e2e;
    flex-wrap: wrap;
}

.footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
}

.footer__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #161622;
    border: 1px solid #2a2a3e;
    border-radius: 8px;
    padding: 8px 14px;
    color: #9090b0;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.footer__badge:hover {
    border-color: #6c5ce7;
    color: #fff;
}

.footer__badge svg {
    width: 16px;
    height: 16px;
    fill: #6c5ce7;
    flex-shrink: 0;
}

.footer__disclaimer {
    font-size: 12px;
    line-height: 1.7;
    color: #5a5a7a;
    flex: 2;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__copy {
    font-size: 13px;
    color: #5a5a7a;
}

.footer__legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer__legal a {
    font-size: 13px;
    color: #5a5a7a;
    text-decoration: none;
    transition: color 0.2s;
}

.footer__legal a:hover { color: #9090b0; }

/* в”Ђв”Ђ Responsive в”Ђв”Ђ */
@media (max-width: 1199px) {
    .top-games__grid { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 1023px) {
    .footer__top { grid-template-columns: 1fr 1fr 1fr; }
    .footer__about { grid-column: 1 / -1; }
}

@media (max-width: 959px) {
    .top-games__grid { grid-template-columns: repeat(4, 1fr); }
    .container { padding: 0 24px; }
}

@media (max-width: 719px) {
    .top-games__grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .top-games__title { font-size: 22px; }
    .container { padding: 0 16px; }
    .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer__about { grid-column: 1 / -1; }
    .site-footer { padding: 40px 0 0; }
}

@media (max-width: 479px) {
    .top-games__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .top-games__title { font-size: 20px; }
    .top-games__view-all { font-size: 13px; padding: 8px 14px; }
    .footer__top { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; align-items: flex-start; }
    .footer__legal { gap: 16px; }
}