@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700;900&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    background: #11111B
}

body {
    font-family: 'Roboto', sans-serif;
    background: #11111B;
    color: #E8E8F0;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    color: #F5C453;
    text-decoration: none
}

a:hover {
    color: #ffd87a
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.25;
    font-weight: 700;
    color: #fff
}

p {
    margin-bottom: 1rem
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem
}

li {
    margin-bottom: .4rem
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem
}

th, td {
    padding: .75rem 1rem;
    border: 1px solid #2e2e45;
    text-align: left
}

th {
    background: #1B1B2C;
    color: #F5C453;
    font-weight: 600
}

tr:nth-child(even) {
    background: #16162a
}

blockquote {
    border-left: 4px solid #F5C453;
    padding: .75rem 1.25rem;
    background: #1a1a2e;
    margin: 1.5rem 0;
    font-style: italic;
    color: #c0c0d8
}

.wrapper {
    min-height: 100vh;
    display: grid;
    grid-template-rows:auto 1fr auto
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px
}

.container--full {
    width: 100%;
    padding: 0
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    border: none;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, opacity .18s ease;
    letter-spacing: .02em;
    text-decoration: none;
    white-space: nowrap
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .4)
}

.btn:active {
    transform: translateY(0);
    box-shadow: none
}

.btn--primary {
    background: #F5C453;
    color: #11111B
}

.btn--primary:hover {
    background: #ffd87a;
    color: #11111B
}

.btn--secondary {
    background: #1B1B2C;
    color: #E8E8F0;
    border: 1px solid #2e2e45
}

.btn--secondary:hover {
    background: #252538;
    color: #fff
}

.btn--lg {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 8px
}

.btn--sm {
    padding: 7px 16px;
    font-size: .82rem
}

.btn--ghost {
    background: transparent;
    color: #F5C453;
    border: 1.5px solid #F5C453
}

.btn--ghost:hover {
    background: #F5C453;
    color: #11111B
}

/* HEADER */
.site-header {
    background: #1B1B2C;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #2a2a40;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .5)
}

.site-header__inner {
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 14px 20px;
    max-width: 1280px;
    margin: 0 auto
}

.site-header__logo img {
    height: 44px;
    width: auto
}

.site-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap
}

.site-header__nav a {
    color: #c8c8dc;
    font-size: .875rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 5px;
    transition: color .15s, background .15s
}

.site-header__nav a:hover {
    color: #F5C453;
    background: rgba(245, 196, 83, .08)
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0
}

.site-header__online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: #a0a0bc;
    background: #13131f;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid #2a2a40
}

.site-header__online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse-green 2s infinite
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, .4)
    }
    50% {
        box-shadow: 0 0 0 6px rgba(74, 222, 128, 0)
    }
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none
}

.burger span {
    width: 24px;
    height: 2px;
    background: #E8E8F0;
    border-radius: 2px;
    transition: transform .3s, opacity .3s
}

.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.burger.active span:nth-child(2) {
    opacity: 0
}

.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.mobile-nav {
    display: none;
    background: #1B1B2C;
    border-top: 1px solid #2a2a40;
    padding: 16px 20px;
    flex-direction: column;
    gap: 4px
}

.mobile-nav a {
    color: #c8c8dc;
    padding: 10px 14px;
    border-radius: 6px;
    font-weight: 500;
    transition: background .15s, color .15s;
    display: block
}

.mobile-nav a:hover {
    background: rgba(245, 196, 83, .08);
    color: #F5C453
}

.mobile-nav.open {
    display: flex
}

/* HERO SLIDER */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: #0d0d18
}

.hero-slides {
    display: flex;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1)
}

.hero-slide {
    min-width: 100%;
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 17, 27, .85) 40%, rgba(17, 17, 27, .2))
}

.hero-slide__content {
    position: relative;
    z-index: 2;
    max-width: 580px;
    padding: 0 48px
}

.hero-slide__tag {
    display: inline-block;
    background: #F5C453;
    color: #11111B;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 16px
}

.hero-slide__title {
    font-size: 2.6rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 14px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .5)
}

.hero-slide__sub {
    font-size: 1.05rem;
    color: #c8c8dc;
    margin-bottom: 28px;
    line-height: 1.55
}

.hero-slider__dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5
}

.hero-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: background .2s, transform .2s;
    border: none
}

.hero-slider__dot.active {
    background: #F5C453;
    transform: scale(1.2)
}

.hero-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(27, 27, 44, .7);
    border: 1px solid #2e2e45;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s
}

.hero-slider__arrow:hover {
    background: #F5C453;
    border-color: #F5C453;
    color: #11111B
}

.hero-slider__arrow--prev {
    left: 16px
}

.hero-slider__arrow--next {
    right: 16px
}

/* SECTION COMMON */
.section {
    padding: 70px 0
}

.section--alt {
    background: #13131f
}

.section__heading {
    text-align: center;
    margin-bottom: 48px
}

.section__tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #F5C453;
    margin-bottom: 10px
}

.section__title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px
}

.section__desc {
    font-size: 1rem;
    color: #9898b8;
    max-width: 600px;
    margin: 0 auto
}

/* SCREENSHOTS BLOCK */
.screenshots-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

.screenshots-grid__item {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #2a2a40;
    transition: transform .25s, box-shadow .25s;
    cursor: pointer
}

.screenshots-grid__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .5)
}

.screenshots-grid__item img {
    width: 100%;
    height: 220px;
    object-fit: cover
}

/* WINNERS TABLE */
.winners-block {
    background: #1B1B2C;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #2a2a40;
    overflow-x: auto
}

.winners-table {
    width: 100%;
    min-width: 500px
}

.winners-table th {
    background: transparent;
    color: #F5C453;
    border-color: #2a2a40;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .06em
}

.winners-table td {
    border-color: #252540;
    font-size: .92rem
}

.winners-table tr:nth-child(even) {
    background: rgba(255, 255, 255, .03)
}

.winners-table tr:first-child td, .winners-table tr:first-child th {
    border-top: none
}

.winners-rank {
    font-weight: 700;
    color: #F5C453
}

.winners-rank--1 {
    color: #FFD700
}

.winners-rank--2 {
    color: #C0C0C0
}

.winners-rank--3 {
    color: #CD7F32
}

.winners-amount {
    font-weight: 700;
    color: #4ade80
}

.winners-game {
    color: #9898b8;
    font-size: .85rem
}

/* VIDEO BLOCK */
.video-block {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #2a2a40;
    position: relative;
    padding-bottom: 56.25%;
    height: 0
}

.video-block iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

/* GAMES GRID */
.games-grid {
    display: grid;
    grid-template-columns:repeat(6, 1fr);
    gap: 16px
}

.game-card {
    background: #1B1B2C;
    border-radius: 12px;
    border: 1px solid #2a2a40;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    display: flex;
    flex-direction: column
}

.game-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .5);
    border-color: #F5C453
}

.game-card__img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover
}

.game-card__body {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.game-card__name {
    font-size: .85rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3
}

.game-card__provider {
    font-size: .75rem;
    color: #6868a0
}

/* SLOT MINI GAME */
.slot-machine {
    background: #1B1B2C;
    border-radius: 20px;
    border: 2px solid #F5C453;
    padding: 40px 32px;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    box-shadow: 0 0 60px rgba(245, 196, 83, .12)
}

.slot-machine__reels {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 28px 0
}

.slot-reel {
    width: 80px;
    height: 90px;
    background: #11111B;
    border-radius: 10px;
    border: 2px solid #2e2e45;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    overflow: hidden;
    position: relative;
    transition: border-color .3s
}

.slot-reel.spinning {
    border-color: #F5C453;
    animation: reel-spin .15s linear infinite
}

@keyframes reel-spin {
    0% {
        filter: blur(0)
    }
    50% {
        filter: blur(2px)
    }
    100% {
        filter: blur(0)
    }
}

.slot-machine__result {
    min-height: 48px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #4ade80;
    margin-bottom: 16px
}

.slot-machine__result.lose {
    color: #f87171
}

.slot-machine__bonus-btn {
    display: none;
    margin: 12px auto 0
}

/* REVIEW CONTENT */
.review-content {
    background: #1B1B2C;
    border-radius: 16px;
    border: 1px solid #2a2a40;
    padding: 40px
}

.review-content h2 {
    font-size: 1.6rem;
    color: #fff;
    margin-top: 2rem;
    margin-bottom: .8rem;
    padding-bottom: .4rem;
    border-bottom: 1px solid #2a2a40
}

.review-content h2:first-child {
    margin-top: 0
}

.review-content h3 {
    font-size: 1.25rem;
    color: #E8E8F0;
    margin-top: 1.5rem;
    margin-bottom: .6rem
}

.review-content h4 {
    font-size: 1.05rem;
    color: #c8c8dc;
    margin-top: 1.2rem;
    margin-bottom: .4rem
}

.review-content p {
    color: #b8b8d0;
    line-height: 1.7
}

.review-content ul {
    color: #b8b8d0;
    line-height: 1.7
}

.review-content ol {
    color: #b8b8d0;
    line-height: 1.7
}

.review-content table {
    border-radius: 8px;
    overflow: hidden
}

.review-content a {
    color: #F5C453;
    text-decoration: underline
}

.review-content a:hover {
    color: #ffd87a
}

.review-content strong {
    color: #fff
}

.author-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #13131f;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #2a2a40;
    margin-top: 32px
}

.author-box__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #F5C453
}

.author-box__name {
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 4px
}

.author-box__title {
    font-size: .82rem;
    color: #F5C453;
    margin-bottom: 8px
}

.author-box__bio {
    font-size: .875rem;
    color: #9898b8;
    line-height: 1.6;
    margin-bottom: 8px
}

.author-box__link {
    font-size: .82rem;
    color: #F5C453
}

/* REVIEWS */
.reviews-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px
}

.review-card {
    background: #1B1B2C;
    border-radius: 14px;
    border: 1px solid #2a2a40;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color .2s, box-shadow .2s
}

.review-card:hover {
    border-color: #F5C453;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .3)
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 12px
}

.review-card__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #2a2a40
}

.review-card__meta {
    flex: 1
}

.review-card__name {
    font-weight: 600;
    color: #fff;
    font-size: .95rem
}

.review-card__location {
    font-size: .78rem;
    color: #6868a0
}

.review-card__stars {
    display: flex;
    gap: 3px
}

.review-card__stars svg {
    width: 16px;
    height: 16px;
    fill: #F5C453
}

.review-card__text {
    font-size: .9rem;
    color: #b0b0cc;
    line-height: 1.6
}

.review-card__date {
    font-size: .78rem;
    color: #6868a0
}

.review-form {
    background: #1B1B2C;
    border-radius: 16px;
    border: 1px solid #2a2a40;
    padding: 36px;
    max-width: 600px;
    margin: 0 auto
}

.review-form h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 24px
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.form-group label {
    font-size: .875rem;
    font-weight: 500;
    color: #c0c0d8
}

.form-group input, .form-group textarea {
    background: #11111B;
    border: 1.5px solid #2e2e45;
    border-radius: 8px;
    color: #E8E8F0;
    font-family: 'Roboto', sans-serif;
    font-size: .9rem;
    padding: 11px 16px;
    transition: border-color .2s, box-shadow .2s;
    width: 100%
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #F5C453;
    box-shadow: 0 0 0 3px rgba(245, 196, 83, .12)
}

.form-group textarea {
    resize: vertical;
    min-height: 110px
}

.form-success {
    display: none;
    text-align: center;
    padding: 24px;
    background: rgba(74, 222, 128, .08);
    border-radius: 10px;
    border: 1px solid rgba(74, 222, 128, .25);
    color: #4ade80;
    font-weight: 600
}

/*  */
.site-footer {
    background: #1B1B2C;
    border-top: 1px solid #2a2a40;
    padding: 48px 0 24px
}

.site-footer__inner {
    display: grid;
    grid-template-columns:220px 1fr;
    gap: 40px;
    margin-bottom: 40px
}

.site-footer__logo img {
    height: 40px;
    margin-bottom: 16px
}

.site-footer__tagline {
    font-size: .85rem;
    color: #6868a0;
    line-height: 1.6
}

.site-footer__nav {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

.site-footer__nav-group h4 {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #F5C453;
    margin-bottom: 12px
}

.site-footer__nav-group a {
    display: block;
    color: #8080a0;
    font-size: .85rem;
    margin-bottom: 8px;
    transition: color .15s
}

.site-footer__nav-group a:hover {
    color: #F5C453
}

.site-footer__payments, .site-footer__providers {
    margin-bottom: 28px
}

.site-footer__payments h4, .site-footer__providers h4 {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #6868a0;
    margin-bottom: 14px
}

.payment-logos, .provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center
}

.payment-logo, .provider-logo {
    background: #16162a;
    border: 1px solid #2a2a40;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: .78rem;
    font-weight: 600;
    color: #8080a0;
    transition: border-color .2s, color .2s
}

.payment-logo:hover, .provider-logo:hover {
    border-color: #F5C453;
    color: #F5C453
}

.site-footer__bottom {
    border-top: 1px solid #2a2a40;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.site-footer__copyright {
    font-size: .8rem;
    color: #4a4a70;
    text-align: center
}

.site-footer__legal {
    font-size: .78rem;
    color: #3a3a60;
    text-align: center;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto
}

.site-footer__age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f87171;
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    margin: 0 auto 12px;
    display: flex
}

.sticky-widget {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: linear-gradient(135deg, #1B1B2C 0%, #252540 100%);
    border: 1.5px solid #F5C453;
    border-radius: 60px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .6);
    animation: widget-bounce .3s ease;
    max-width: 90vw
}

@keyframes widget-bounce {
    0% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0
    }
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1
    }
}

.sticky-widget__text {
    font-size: .88rem;
    color: #c0c0d8;
    white-space: nowrap
}

.sticky-widget__bonus {
    color: #F5C453;
    font-weight: 700
}

.sticky-widget__close {
    background: none;
    border: none;
    color: #6868a0;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    padding: 2px 4px;
    transition: color .15s;
    flex-shrink: 0
}

.sticky-widget__close:hover {
    color: #f87171
}

.wp-caption, .widget_text, .elementor-hidden-phone, .wpcf7-response-output, .wp-block-spacer, .screen-reader-text {
    display: none !important
}

#wpadminbar {
    display: none
}

.rxo-f4e2a, .rxo-b9c1d {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    height: 0;
    overflow: hidden
}

/*  */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .5s ease, transform .5s ease
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0)
}

/*  */
::-webkit-scrollbar {
    width: 6px;
    height: 6px
}

::-webkit-scrollbar-track {
    background: #11111B
}

::-webkit-scrollbar-thumb {
    background: #2e2e45;
    border-radius: 3px
}

::-webkit-scrollbar-thumb:hover {
    background: #F5C453
}

@media (max-width: 1100px) {
    .games-grid {
        grid-template-columns:repeat(3, 1fr)
    }
}

@media (max-width: 900px) {
    .screenshots-grid {
        grid-template-columns:1fr;
        overflow-x: auto;
        display: flex;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch
    }

    .screenshots-grid__item {
        min-width: 80vw;
        scroll-snap-align: start
    }

    .games-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding-bottom: 8px
    }

    .game-card {
        min-width: 160px;
        scroll-snap-align: start;
        flex-shrink: 0
    }

    .reviews-grid {
        grid-template-columns:1fr
    }

    .site-footer__inner {
        grid-template-columns:1fr
    }

    .site-footer__nav {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media (max-width: 768px) {
    .site-header__inner {
        grid-template-columns:auto 1fr auto
    }

    .site-header__nav {
        display: none
    }

    .burger {
        display: flex
    }

    .hero-slide {
        height: 420px
    }

    .hero-slide__content {
        padding: 0 24px
    }

    .hero-slide__title {
        font-size: 1.8rem
    }

    .section {
        padding: 48px 0
    }

    .section__title {
        font-size: 1.6rem
    }

    .slot-machine {
        padding: 28px 16px
    }

    .slot-reel {
        width: 64px;
        height: 76px;
        font-size: 2rem
    }

    .review-form {
        padding: 24px 20px
    }

    .author-box {
        flex-direction: column
    }

    .reviews-grid {
        grid-template-columns:1fr;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 8px
    }

    .review-card {
        min-width: 280px;
        scroll-snap-align: start;
        flex-shrink: 0
    }
}

@media (max-width: 480px) {
    .hero-slide {
        height: 360px
    }

    .hero-slide__title {
        font-size: 1.4rem
    }

    .hero-slide__sub {
        font-size: .9rem;
        display: none
    }

    .sticky-widget {
        flex-wrap: wrap;
        border-radius: 16px;
        text-align: center;
        padding: 14px 20px;
        bottom: 12px
    }

    .site-footer__nav {
        grid-template-columns:1fr
    }
}

@media (max-width: 768px) {

    .section {
        padding: 56px 0;
    }

    .container {
        padding: 0 16px;
    }

    .section__heading {
        margin-bottom: 28px;
        text-align: center;
    }

    .section__tag {
        font-size: 12px;
        letter-spacing: 1.4px;
    }

    .section__title {
        font-size: 30px;
        line-height: 1.2;
        margin: 10px 0 14px;
    }

    .section__desc {
        font-size: 15px;
        line-height: 1.7;
        max-width: 100%;
    }

    .games-grid {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .game-card {
        width: 100%;
        min-width: 0;
        border-radius: 18px;
        overflow: hidden;
        background: #1b1b2c;
    }

    .game-card__img {
        width: 100%;
        aspect-ratio: 1/1;
        object-fit: cover;
    }

    .game-card__body {
        padding: 16px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .game-card__name {
        font-size: 16px;
        line-height: 1.35;
        min-height: 44px;
    }

    .game-card__provider {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .game-card .btn {
        width: 100% !important;
        padding: 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .section {
        padding: 44px 0;
    }

    .container {
        padding: 0 14px;
    }

    .section__title {
        font-size: 26px;
    }

    .section__desc {
        font-size: 14px;
    }

    .games-grid {
        grid-template-columns:1fr;
        gap: 18px;
    }

    .game-card {
        border-radius: 20px;
    }

    .game-card__img {
        aspect-ratio: 16/10;
    }

    .game-card__body {
        padding: 18px;
    }

    .game-card__name {
        font-size: 18px;
        min-height: auto;
    }

    .game-card__provider {
        font-size: 14px;
    }

    .game-card .btn {
        padding: 14px;
        font-size: 15px;
    }
}
