:root {
    --clr-bg: #041529;
    --clr-hdr: #071b36;
    --clr-primary: #ed6c70;
    --clr-secondary: #fbfafc;
    --clr-accent: #f0a347;
    --clr-text: #d4dce8;
    --clr-text-muted: #8a9bb5;
    --clr-border: #122847;
    --clr-card: #071e3d;
    --clr-card2: #0a2347;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow: 0 4px 32px rgba(4, 21, 41, .55);
    --shadow-card: 0 2px 18px rgba(4, 21, 41, .45);
    --transition: .25s cubic-bezier(.4, 0, .2, 1);
    --font: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: var(--font);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition)
}

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

ul {
    list-style: none
}

button {
    cursor: pointer;
    font-family: var(--font);
    border: none;
    outline: none
}

input, select, textarea {
    font-family: var(--font)
}

.x7f2a1, .x9c3b2, .xd4e5f, .x1a2b3 {
    display: none !important
}

.wp-block-rnd, .elementor-invisible, .wc-block-grid__products {
    visibility: hidden;
    position: absolute;
    pointer-events: none
}

.xwp-preload {
    display: none;
    width: 0;
    height: 0;
    overflow: hidden
}

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

.container {
    width: 100%;
    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: var(--radius-sm);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .02em;
    transition: all var(--transition);
    white-space: nowrap;
    cursor: pointer;
    border: none
}

.btn--primary {
    background: var(--clr-primary);
    color: #fff
}

.btn--primary:hover {
    background: #d9565a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(237, 108, 112, .35)
}

.btn--secondary {
    background: var(--clr-secondary);
    color: #071b36
}

.btn--secondary:hover {
    background: #e8e6eb;
    transform: translateY(-1px)
}

.btn--outline {
    background: transparent;
    color: var(--clr-secondary);
    border: 1.5px solid rgba(251, 250, 252, .25)
}

.btn--outline:hover {
    background: rgba(251, 250, 252, .08);
    border-color: rgba(251, 250, 252, .5)
}

.btn--lg {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: var(--radius-md)
}

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

.btn--icon {
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--clr-secondary);
    margin-bottom: .4rem
}

.section-subtitle {
    color: var(--clr-text-muted);
    font-size: .95rem;
    margin-bottom: 2rem
}

.section-wrap {
    padding: 60px 0
}

/* HEADER */
.site-header {
    background: var(--clr-hdr);
    position: sticky;
    top: 0;
    z-index: 200;
    border-bottom: 1px solid var(--clr-border);
    box-shadow: var(--shadow)
}

.hdr-inner {
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
    height: 68px
}

.hdr-logo {
    flex-shrink: 0
}

.hdr-logo img {
    height: 42px;
    width: auto;
    object-fit: contain
}

.hdr-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px
}

.hdr-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-size: .85rem;
    font-weight: 500;
    transition: all var(--transition)
}

.hdr-nav a:hover, .hdr-nav a.active {
    background: rgba(251, 250, 252, .07);
    color: var(--clr-secondary)
}

.hdr-nav a svg {
    width: 16px;
    height: 16px;
    opacity: .7
}

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

.hdr-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0
}

.online-counter {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: var(--clr-text-muted)
}

.online-dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(74, 222, 128, .25);
    animation: pulse-dot 2s infinite
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 2px rgba(74, 222, 128, .25)
    }
    50% {
        box-shadow: 0 0 0 4px rgba(74, 222, 128, .12)
    }
}

.lang-select {
    position: relative
}

.lang-select select {
    background: rgba(255, 255, 255, .07);
    color: var(--clr-text);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 5px 28px 5px 10px;
    font-size: .8rem;
    appearance: none;
    cursor: pointer
}

.lang-select::after {
    content: '▾';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--clr-text-muted);
    font-size: .75rem
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: transparent;
    padding: 6px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--clr-border)
}

.burger span {
    display: block;
    height: 2px;
    background: var(--clr-secondary);
    border-radius: 2px;
    transition: all var(--transition)
}

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

.burger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0)
}

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

.mobile-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--clr-hdr);
    border-bottom: 1px solid var(--clr-border);
    padding: 16px 20px;
    flex-direction: column;
    gap: 6px;
    z-index: 199;
    animation: slideDown .2s ease
}

.mobile-nav.open {
    display: flex
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-size: .9rem;
    font-weight: 500;
    transition: all var(--transition)
}

.mobile-nav a:hover {
    background: rgba(251, 250, 252, .07);
    color: var(--clr-secondary)
}

.mobile-nav a svg {
    width: 17px;
    height: 17px;
    opacity: .75
}

.mobile-nav-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--clr-border)
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* HERO SLIDER */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 520px;
    background: var(--clr-hdr)
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .7s ease;
    display: grid;
    place-items: center
}

.hero-slide.active {
    opacity: 1;
    z-index: 1
}

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

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 21, 41, .85) 0%, rgba(4, 21, 41, .45) 60%, rgba(4, 21, 41, .1) 100%);
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 580px;
    padding: 40px;
    text-align: left
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(237, 108, 112, .15);
    border: 1px solid rgba(237, 108, 112, .35);
    color: var(--clr-primary);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.hero-title {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px;
    text-wrap: balance
}

.hero-text {
    font-size: 1rem;
    color: rgba(212, 220, 232, .85);
    margin-bottom: 28px;
    line-height: 1.6;
    max-width: 440px
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

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

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: all var(--transition)
}

.hero-dot.active {
    background: var(--clr-primary);
    width: 24px;
    border-radius: 4px
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(7, 27, 54, .6);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition)
}

.hero-arrow:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary)
}

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

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

/* ADVANTAGES */
.adv-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px
}

.adv-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all var(--transition)
}

.adv-card:hover {
    transform: translateY(-3px);
    border-color: rgba(237, 108, 112, .3);
    box-shadow: var(--shadow-card)
}

.adv-icon {
    width: 48px;
    height: 48px;
    background: rgba(237, 108, 112, .1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary)
}

.adv-icon svg {
    width: 24px;
    height: 24px
}

.adv-title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--clr-secondary)
}

.adv-text {
    font-size: .82rem;
    color: var(--clr-text-muted);
    line-height: 1.55
}

/* TABLES */
.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border)
}

.site-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px
}

.site-table thead tr {
    background: var(--clr-hdr)
}

.site-table th {
    padding: 13px 16px;
    text-align: left;
    font-size: .8rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    white-space: nowrap;
    border-bottom: 1px solid var(--clr-border)
}

.site-table td {
    padding: 13px 16px;
    font-size: .88rem;
    color: var(--clr-text);
    border-bottom: 1px solid rgba(18, 40, 71, .7);
    vertical-align: middle
}

.site-table tbody tr:last-child td {
    border-bottom: none
}

.site-table tbody tr:hover td {
    background: rgba(7, 27, 54, .4)
}

.pm-logo {
    height: 26px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(.7)
}

.pm-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .76rem;
    font-weight: 600
}

.pm-badge--good {
    background: rgba(74, 222, 128, .12);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, .2)
}

.pm-badge--mid {
    background: rgba(240, 163, 71, .12);
    color: var(--clr-accent);
    border: 1px solid rgba(240, 163, 71, .2)
}

.pm-pm-name {
    font-weight: 600;
    color: var(--clr-secondary);
    font-size: .88rem
}

/* WINNERS */
.winners-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px
}

.winner-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all var(--transition)
}

.winner-card:hover {
    border-color: rgba(237, 108, 112, .25);
    background: var(--clr-card2)
}

.winner-rank {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--clr-text-muted);
    min-width: 28px
}

.winner-rank.gold {
    color: #f5c842
}

.winner-rank.silver {
    color: #b0b8c6
}

.winner-rank.bronze {
    color: #cd7f32
}

.winner-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}

.winner-info {
    flex: 1;
    min-width: 0
}

.winner-name {
    font-size: .88rem;
    font-weight: 600;
    color: var(--clr-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.winner-game {
    font-size: .76rem;
    color: var(--clr-text-muted)
}

.winner-amount {
    font-size: .95rem;
    font-weight: 700;
    color: #4ade80;
    flex-shrink: 0
}

/* APP INFO */
.app-section {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 32px;
    align-items: start
}

.app-table-wrap {
    flex: 1
}

.app-dl {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.app-dl-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-secondary);
    margin-bottom: 4px
}

.app-dl-text {
    font-size: .88rem;
    color: var(--clr-text-muted);
    margin-bottom: 16px;
    line-height: 1.6
}

.app-dl-btns {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    color: var(--clr-secondary)
}

.app-btn:hover {
    border-color: rgba(237, 108, 112, .4);
    background: var(--clr-card2);
    transform: translateX(3px)
}

.app-btn svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--clr-text-muted)
}

.app-btn-text small {
    display: block;
    font-size: .7rem;
    color: var(--clr-text-muted);
    font-weight: 400
}

.app-btn-text strong {
    display: block;
    font-size: .95rem;
    font-weight: 700
}

/* VIDEO */
.video-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: var(--clr-card);
    border: 1px solid var(--clr-border)
}

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

/* WHEEL */
.wheel-section {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.wheel-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(237, 108, 112, .08) 0%, transparent 70%);
    pointer-events: none
}

.wheel-container {
    position: relative;
    display: inline-block;
    margin: 0 auto 28px
}

.wheel-canvas {
    border-radius: 50%;
    display: block;
    box-shadow: 0 0 40px rgba(237, 108, 112, .2);
    transition: transform .05s linear
}

.wheel-pointer {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 28px solid var(--clr-primary);
    filter: drop-shadow(0 2px 6px rgba(237, 108, 112, .5))
}

.wheel-result {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px
}

.wheel-result-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-secondary)
}

.wheel-result-sub {
    font-size: .88rem;
    color: var(--clr-text-muted)
}

#wheelSpinBtn {
    min-width: 180px
}

/* CONTENT REVIEW */
.review-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 36px 40px
}

.review-block h2 {
    color: var(--clr-secondary);
    font-size: 1.45rem;
    font-weight: 700;
    margin: 1.4rem 0 .7rem;
    line-height: 1.3
}

.review-block h3 {
    color: var(--clr-secondary);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1.2rem 0 .6rem
}

.review-block h4 {
    color: var(--clr-secondary);
    font-size: 1rem;
    font-weight: 600;
    margin: 1rem 0 .5rem
}

.review-block p {
    color: var(--clr-text);
    font-size: .93rem;
    line-height: 1.72;
    margin-bottom: .9rem
}

.review-block ul, .review-block ol {
    margin: 0 0 1rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 5px
}

.review-block li {
    color: var(--clr-text);
    font-size: .93rem;
    line-height: 1.6
}

.review-block ul li {
    list-style: disc
}

.review-block ol li {
    list-style: decimal
}

.review-block a {
    color: var(--clr-primary);
    border-bottom: 1px dashed rgba(237, 108, 112, .35)
}

.review-block a:hover {
    color: #d9565a;
    border-bottom-color: rgba(237, 108, 112, .7)
}

.review-block strong, .review-block b {
    color: var(--clr-secondary);
    font-weight: 600
}

.review-block em, .review-block i {
    color: var(--clr-accent);
    font-style: italic
}

.review-block blockquote {
    border-left: 3px solid var(--clr-primary);
    padding: 12px 18px;
    background: rgba(237, 108, 112, .06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1rem 0;
    color: var(--clr-text-muted);
    font-style: italic
}

.review-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    border-radius: var(--radius-sm);
    overflow: hidden
}

.review-block table th {
    background: var(--clr-hdr);
    padding: 10px 14px;
    text-align: left;
    color: var(--clr-text-muted);
    font-size: .82rem;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 1px solid var(--clr-border)
}

.review-block table td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(18, 40, 71, .6);
    font-size: .88rem
}

.review-block table tbody tr:hover td {
    background: rgba(7, 27, 54, .3)
}

.review-block hr {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 1.5rem 0
}

.review-block img {
    border-radius: var(--radius-sm);
    max-width: 100%;
    height: auto;
    margin: 1rem 0
}

/* AUTHOR */
.author-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: grid;
    grid-template-columns:auto 1fr;
    gap: 24px;
    align-items: start
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid var(--clr-primary);
    flex-shrink: 0
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-secondary);
    margin-bottom: 3px
}

.author-role {
    font-size: .82rem;
    color: var(--clr-primary);
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .04em
}

.author-bio {
    font-size: .87rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
    margin-bottom: 14px
}

.author-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(7, 27, 54, .6);
    border: 1px solid var(--clr-border);
    border-radius: 20px;
    font-size: .78rem;
    color: var(--clr-text-muted);
    transition: all var(--transition)
}

.author-link:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary)
}

.author-link svg {
    width: 13px;
    height: 13px
}

.author-dates {
    font-size: .76rem;
    color: var(--clr-text-muted);
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.author-dates span {
    display: flex;
    align-items: center;
    gap: 5px
}

.author-dates span::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--clr-text-muted)
}

/* FOOTER */
.site-footer {
    background: var(--clr-hdr);
    border-top: 1px solid var(--clr-border);
    padding: 48px 0 24px
}

.footer-top {
    display: grid;
    grid-template-columns:220px 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--clr-border)
}

.footer-brand {
}

.footer-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
    margin-bottom: 14px
}

.footer-tagline {
    font-size: .82rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 14px
}

.footer-country {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .8rem;
    color: var(--clr-text-muted)
}

.footer-country img {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px
}

.footer-col-title {
    font-size: .8rem;
    font-weight: 700;
    color: var(--clr-secondary);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 14px
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.footer-links a {
    font-size: .84rem;
    color: var(--clr-text-muted);
    transition: color var(--transition)
}

.footer-links a:hover {
    color: var(--clr-secondary)
}

.footer-socials {
    display: flex;
    gap: 8px;
    margin-top: 14px
}

.footer-social-link {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-muted);
    transition: all var(--transition)
}

.footer-social-link:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: #fff
}

.footer-social-link svg {
    width: 15px;
    height: 15px
}

.footer-mid {
    padding: 24px 0;
    border-bottom: 1px solid var(--clr-border);
    display: flex;
    flex-direction: column;
    gap: 20px
}

.footer-logos-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px
}

.footer-logos-label {
    font-size: .76rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    min-width: 80px
}

.footer-logo-badge {
    height: 30px;
    padding: 5px 12px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    white-space: nowrap;
    transition: all var(--transition)
}

.footer-logo-badge:hover {
    background: rgba(255, 255, 255, .1);
    color: var(--clr-secondary)
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-size: .72rem;
    font-weight: 600;
    background: rgba(74, 222, 128, .06);
    border: 1px solid rgba(74, 222, 128, .15);
    color: #4ade80
}

.trust-badge svg {
    width: 14px;
    height: 14px
}

.age-badge {
    background: var(--clr-primary);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 800;
    flex-shrink: 0
}

.footer-bottom {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.footer-legal {
    font-size: .76rem;
    color: var(--clr-text-muted);
    line-height: 1.7
}

.footer-copyright {
    font-size: .8rem;
    color: var(--clr-text-muted)
}

/* PROMO WIDGET */
.promo-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: linear-gradient(90deg, #071b36 0%, #0c2547 100%);
    border-top: 1px solid var(--clr-border);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 30px rgba(4, 21, 41, .7);
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1)
}

.promo-widget.visible {
    transform: translateY(0)
}

.promo-widget-text {
    font-size: .82rem;
    color: var(--clr-text-muted)
}

.promo-widget-text strong {
    color: var(--clr-secondary)
}

.promo-code-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(237, 108, 112, .1);
    border: 1.5px dashed rgba(237, 108, 112, .4);
    border-radius: var(--radius-sm);
    padding: 7px 14px
}

.promo-code {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-primary);
    letter-spacing: .08em
}

.promo-copy {
    background: transparent;
    color: var(--clr-text-muted);
    padding: 3px 7px;
    border-radius: 4px;
    font-size: .75rem;
    border: 1px solid var(--clr-border);
    transition: all var(--transition)
}

.promo-copy:hover, .promo-copy.copied {
    background: var(--clr-primary);
    color: #fff;
    border-color: var(--clr-primary)
}

.promo-widget-close {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition)
}

.promo-widget-close:hover {
    background: rgba(255, 255, 255, .08);
    color: var(--clr-secondary)
}

/* INFO PAGE */
.info-content {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    margin: 40px 0
}

.info-content h1 {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--clr-secondary);
    margin-bottom: 1.2rem
}

.info-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-secondary);
    margin: 1.5rem 0 .7rem
}

.info-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--clr-secondary);
    margin: 1.2rem 0 .6rem
}

.info-content p {
    color: var(--clr-text);
    font-size: .93rem;
    line-height: 1.72;
    margin-bottom: .9rem
}

.info-content ul, .info-content ol {
    margin: 0 0 1rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 5px
}

.info-content li {
    color: var(--clr-text);
    font-size: .93rem;
    line-height: 1.6
}

.info-content ul li {
    list-style: disc
}

.info-content ol li {
    list-style: decimal
}

.info-content a {
    color: var(--clr-primary)
}

.info-content a:hover {
    text-decoration: underline
}

.info-content strong {
    color: var(--clr-secondary)
}

.info-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0
}

.info-content table th, .info-content table td {
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    font-size: .88rem
}

.info-content table th {
    background: var(--clr-hdr);
    color: var(--clr-text-muted);
    font-weight: 600;
    text-align: left
}

/* MISC */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    font-size: .8rem;
    color: var(--clr-text-muted)
}

.breadcrumb a {
    color: var(--clr-text-muted)
}

.breadcrumb a:hover {
    color: var(--clr-primary)
}

.breadcrumb span {
    color: var(--clr-text-muted)
}

.section-head {
    margin-bottom: 28px
}

.section-head .label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(237, 108, 112, .1);
    border: 1px solid rgba(237, 108, 112, .2);
    color: var(--clr-primary);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 10px
}

.divider {
    height: 1px;
    background: var(--clr-border);
    margin: 0
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s ease, transform .55s ease
}

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

.body--widget-open {
    padding-bottom: 68px
}

.xr7k2p, .xm3n9q, .xb8d4w {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none
}

.elementor-column, .elementor-widget, .wp-block-columns, .wp-block-column, .elementor-widget-container {
    display: contents
}

.e-n-tabs-heading, .e-n-tab-title, .e-active {
    display: none !important;
    pointer-events: none
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns:1fr 1fr
    }

    .app-section {
        grid-template-columns:1fr
    }

    .hdr-inner {
        grid-template-columns:auto auto 1fr
    }

    .hdr-nav {
        display: none
    }

    .burger {
        display: flex
    }

    .hdr-meta .online-counter {
        display: none
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 420px
    }

    .hero-content {
        padding: 24px
    }

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

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

    .footer-top {
        grid-template-columns:1fr
    }

    .section-wrap {
        padding: 40px 0
    }

    .review-block, .info-content {
        padding: 22px 18px
    }

    .author-card {
        grid-template-columns:1fr
    }

    .promo-widget {
        gap: 10px;
        padding: 10px 40px 10px 14px
    }

    .app-section {
        grid-template-columns:1fr
    }
}

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

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

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

    .hdr-actions {
        gap: 6px
    }

    .btn--lg {
        padding: 12px 20px;
        font-size: .9rem
    }

    .footer-logos-row {
        gap: 7px
    }

    .promo-code {
        font-size: .88rem
    }
}

@media (max-width: 768px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-x: hidden;
    }

    body {
        font-size: 16px;
    }

    .wrapper,
    main,
    .header-box,
    .hero-section,
    .section,
    .footer-box {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    main > .container {
        width: 100%;
        max-width: none;
        padding: 0;
        margin: 0;
    }

    .container,
    .section-inner,
    .footer-inner {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin-left: auto;
        margin-right: auto;
        padding-left: 16px;
        padding-right: 16px;
    }

    img,
    svg,
    video,
    iframe,
    canvas {
        max-width: 100%;
    }

    .header-box {
        position: sticky;
        top: 0;
        z-index: 10000;
    }

    .header-box > .container {
        padding: 0;
    }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-width: 0;
        min-height: 58px;
        gap: 8px;
        padding: 8px 14px;
    }

    .header-logo {
        display: flex;
        flex: 1 1 auto;
        min-width: 0;
    }

    .header-logo a {
        display: flex;
        align-items: center;
        max-width: 100%;
    }

    .header-logo img {
        width: auto;
        height: 32px;
        max-width: 110px;
        object-fit: contain;
    }

    .header-nav,
    .header-meta {
        display: none !important;
    }

    .header-buttons {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 0 0 auto;
        gap: 6px;
    }

    .header-buttons .btn--secondary {
        display: none;
    }

    .header-buttons .btn--primary {
        min-height: 34px;
        padding: 7px 9px;
        font-size: 0.68rem;
        line-height: 1;
        white-space: nowrap;
    }

    .burger {
        position: relative;
        z-index: 10002;
        display: flex !important;
        flex: 0 0 38px;
        width: 38px;
        height: 38px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        padding: 7px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 9px;
        background: rgba(255, 255, 255, 0.05);
    }

    .burger span {
        width: 20px;
        height: 2px;
    }

    .mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 10001;
        display: flex !important;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 70px 14px 24px;
        gap: 6px;
        overflow-y: auto;
        background: #071b36;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateX(100%);
        transition: transform 0.3s ease,
        opacity 0.25s ease,
        visibility 0.3s ease;
    }

    .mobile-menu.active {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }

    .mobile-menu-close {
        position: fixed;
        top: 12px;
        right: 12px;
        z-index: 10003;
        width: 38px;
        height: 38px;
        font-size: 1.4rem;
    }

    .mobile-menu > a {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 46px;
        gap: 11px;
        padding: 11px 12px;
        font-size: 0.88rem;
        line-height: 1.35;
        color: var(--clr-text);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 9px;
        background: rgba(255, 255, 255, 0.025);
    }

    .mobile-menu > a svg {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
        color: var(--clr-btn-primary);
    }

    body.menu-open {
        overflow: hidden;
    }

    .hero-section {
        min-height: auto;
        align-items: flex-end;
    }

    .hero-bg {
        background-position: 58% center;
    }

    .hero-overlay {
        background: linear-gradient(
                180deg,
                rgba(4, 21, 41, 0.18) 0%,
                rgba(4, 21, 41, 0.72) 42%,
                rgba(4, 21, 41, 0.98) 100%
        );
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 42px 16px 30px;
    }

    .hero-badge {
        max-width: 100%;
        margin-bottom: 12px;
        padding: 5px 10px;
        font-size: 0.66rem;
        line-height: 1.35;
        white-space: normal;
    }

    .hero-title {
        max-width: 100%;
        margin-bottom: 13px;
        font-size: clamp(1.55rem, 7.5vw, 2rem);
        line-height: 1.12;
        overflow-wrap: anywhere;
    }

    .hero-title br {
        display: none;
    }

    .hero-desc {
        max-width: 100%;
        margin-bottom: 20px;
        font-size: 0.86rem;
        line-height: 1.6;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 8px;
    }

    .hero-actions .btn {
        width: 100%;
        min-width: 0;
        min-height: 44px;
        padding: 11px 12px;
        font-size: 0.82rem;
        white-space: normal;
        text-align: center;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 10px;
        margin-top: 24px;
    }

    .hero-stat {
        min-width: 0;
        padding: 12px 8px;
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 10px;
        background: rgba(7, 31, 58, 0.72);
    }

    .hero-stat-val {
        font-size: 1.15rem;
    }

    .hero-stat-lbl {
        font-size: 0.68rem;
    }

    .section {
        padding: 34px 0 !important;
    }

    .section-inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section-title {
        display: flex;
        align-items: flex-start;
        max-width: 100%;
        gap: 9px;
        margin-bottom: 8px;
        font-size: 1.3rem;
        line-height: 1.28;
        overflow-wrap: anywhere;
    }

    .section-title svg {
        width: 20px;
        height: 20px;
        margin-top: 2px;
        flex: 0 0 20px;
    }

    .section-sub {
        max-width: 100%;
        margin-bottom: 22px;
        font-size: 0.84rem;
        line-height: 1.6;
    }

    .section-divider {
        margin-bottom: 20px;
    }

    .info-table-wrap,
    .mirror-table-wrap {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        border-radius: 12px;
    }

    .info-table {
        width: 100%;
        min-width: 0 !important;
        table-layout: fixed;
    }

    .info-table tr {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        padding: 12px;
    }

    .info-table td {
        display: flex;
        width: 100% !important;
        min-width: 0;
        padding: 0;
        border: 0;
        font-size: 0.8rem;
        overflow-wrap: anywhere;
    }

    .info-table td:first-child {
        width: 100%;
        margin-bottom: 7px;
        color: var(--clr-text-muted);
        font-size: 0.72rem;
    }

    .info-table td:last-child {
        padding-left: 42px;
        color: var(--clr-text);
        font-weight: 600;
    }

    .td-icon {
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
    }

    .badge-good {
        max-width: 100%;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .jackpot-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        width: 100%;
        gap: 12px;
    }

    .jackpot-card {
        width: 100%;
        min-width: 0;
        padding: 20px 15px;
        border-radius: 12px;
    }

    .jackpot-card:hover {
        transform: none;
    }

    .jackpot-icon {
        margin-bottom: 7px;
        font-size: 1.7rem;
    }

    .jackpot-label {
        font-size: 0.7rem;
    }

    .jackpot-amount {
        font-size: 1.45rem;
        overflow-wrap: anywhere;
    }

    .jackpot-game {
        font-size: 0.74rem;
    }

    .mirror-timestamp {
        align-items: flex-start;
        font-size: 0.76rem;
        line-height: 1.5;
    }

    .mirror-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mirror-table {
        width: max-content;
        min-width: 650px;
    }

    .mirror-table th,
    .mirror-table td {
        min-width: 105px;
        padding: 10px 11px;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .mirror-table th:nth-child(2),
    .mirror-table td:nth-child(2) {
        min-width: 155px;
    }

    .mirror-table .btn {
        padding: 7px 10px;
        font-size: 0.7rem;
    }

    .winners-list {
        width: 100%;
        gap: 7px;
    }

    .winner-item {
        display: grid;
        grid-template-columns: 32px minmax(0, 1fr) auto !important;
        width: 100%;
        min-width: 0;
        gap: 9px;
        padding: 10px;
        border-radius: 10px;
    }

    .winner-item:hover {
        transform: none;
    }

    .winner-rank {
        width: 30px;
        height: 30px;
        font-size: 0.72rem;
    }

    .winner-name {
        min-width: 0;
        font-size: 0.78rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .winner-game {
        font-size: 0.68rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .winner-amount {
        font-size: 0.76rem;
    }

    .winner-time {
        display: none !important;
    }

    .tournaments-slider {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .tournaments-track {
        display: flex !important;
        width: auto;
        max-width: none;
        gap: 12px;
        padding-bottom: 5px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .tournament-card {
        flex: 0 0 calc(100vw - 48px);
        width: calc(100vw - 48px);
        min-width: calc(100vw - 48px) !important;
        max-width: 340px;
        padding: 18px 14px;
        gap: 11px;
        border-radius: 12px;
        scroll-snap-align: start;
    }

    .tournament-card:hover {
        transform: none;
    }

    .tournament-name {
        font-size: 0.96rem;
    }

    .tournament-desc {
        font-size: 0.79rem;
    }

    .tournament-prize {
        font-size: 1.15rem;
    }

    .tournament-timer {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        width: 100%;
        gap: 5px;
    }

    .timer-block {
        min-width: 0;
        padding: 6px 3px;
    }

    .timer-val {
        font-size: 0.88rem;
    }

    .timer-lbl {
        font-size: 0.52rem;
    }

    .timer-sep {
        display: none;
    }

    .tournament-cta .btn {
        width: 100%;
    }

    .slider-arrows,
    .slider-nav {
        display: flex !important;
    }

    .slot-machine {
        width: 100%;
        max-width: 350px;
        padding: 20px 12px;
        border-radius: 12px;
    }

    .slot-title {
        margin-bottom: 18px;
        font-size: 1rem;
    }

    .slot-reels {
        width: 100%;
        gap: 7px;
        margin-bottom: 18px;
    }

    .reel {
        flex: 1 1 0;
        width: auto;
        min-width: 0;
        max-width: 78px;
        height: 76px;
        font-size: 2rem;
    }

    .slot-result {
        min-height: 44px;
        margin-bottom: 15px;
    }

    .slot-machine .btn {
        width: 100%;
    }

    .author-card {
        align-items: flex-start;
        width: 100%;
        min-width: 0;
        gap: 11px;
        padding: 15px 13px;
        margin-bottom: 18px;
        border-radius: 11px;
    }

    .author-avatar {
        width: 43px;
        height: 43px;
        flex: 0 0 43px;
        font-size: 1rem;
    }

    .author-card > div:last-child {
        min-width: 0;
    }

    .author-name {
        font-size: 0.9rem;
    }

    .author-bio {
        font-size: 0.71rem;
        overflow-wrap: anywhere;
    }

    .author-links {
        flex-wrap: wrap;
    }

    .review-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 18px 13px !important;
        border-radius: 12px;
        font-size: 0.83rem;
        line-height: 1.65;
        overflow: hidden;
    }

    .review-content h1,
    .review-content h2,
    .review-content h3,
    .review-content h4,
    .review-content p,
    .review-content li,
    .review-content a {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .review-content h1 {
        font-size: 1.3rem;
    }

    .review-content h2 {
        font-size: 1.16rem;
    }

    .review-content h3 {
        font-size: 1rem;
    }

    .review-content h4 {
        font-size: 0.92rem;
    }

    .review-content ul,
    .review-content ol {
        margin-left: 17px;
    }

    .review-content table {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .review-content th,
    .review-content td {
        min-width: 115px;
        padding: 9px 10px;
        font-size: 0.74rem;
    }

    .review-content blockquote {
        padding: 11px 13px;
    }

    .review-content iframe,
    .review-content video {
        width: 100% !important;
        height: auto;
        min-height: 210px;
    }

    .steps-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        width: 100%;
        gap: 12px;
    }

    .step-card {
        width: 100%;
        min-width: 0;
        padding: 18px 15px;
        border-radius: 12px;
    }

    .step-card:hover {
        transform: none;
    }

    .step-num {
        width: 36px;
        height: 36px;
        margin-bottom: 11px;
        font-size: 0.9rem;
    }

    .step-icon {
        font-size: 1.3rem;
    }

    .step-title {
        font-size: 0.92rem;
    }

    .step-desc {
        font-size: 0.79rem;
    }

    .steps-section .btn--lg {
        width: 100%;
        padding: 11px 12px;
        font-size: 0.8rem;
        white-space: normal;
    }

    .faq-list {
        width: 100%;
        max-width: 100%;
        gap: 8px;
    }

    .faq-item {
        width: 100%;
        min-width: 0;
        border-radius: 11px;
    }

    .faq-question {
        width: 100%;
        min-width: 0;
        gap: 10px;
        padding: 14px 12px;
        font-size: 0.84rem;
        line-height: 1.45;
    }

    .faq-question > span {
        min-width: 0;
        flex: 1;
        overflow-wrap: anywhere;
    }

    .faq-chevron {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
    }

    .faq-answer {
        padding: 0 12px 14px;
        font-size: 0.8rem;
        line-height: 1.65;
    }

    .footer-box {
        padding: 34px 0 88px;
    }

    .footer-top {
        grid-template-columns: 1fr !important;
        width: 100%;
        gap: 24px;
    }

    .footer-brand,
    .footer-nav-grid,
    .footer-nav-col {
        width: 100%;
        min-width: 0;
    }

    .footer-nav-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .footer-logo img {
        max-width: 145px;
        height: auto;
    }

    .footer-logos,
    .footer-trust {
        gap: 6px;
    }

    .footer-logo-badge,
    .trust-badge {
        max-width: 100%;
        padding: 6px 8px;
        font-size: 0.67rem;
        white-space: normal;
    }

    .footer-legal,
    .footer-copyright {
        font-size: 0.69rem;
        line-height: 1.55;
    }

    .sticky-widget {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        width: 100%;
        gap: 7px 9px;
        padding: 9px 40px 9px 12px;
    }

    .widget-text {
        min-width: 0;
        font-size: 0.7rem;
        line-height: 1.35;
    }

    .widget-bonus {
        font-size: 0.74rem;
        overflow-wrap: anywhere;
    }

    .sticky-widget .btn {
        padding: 8px 10px;
        font-size: 0.68rem;
    }

    .widget-close {
        position: absolute;
        top: 8px;
        right: 8px;
    }

    .scroll-top {
        right: 12px;
        bottom: 82px;
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 420px) {
    .container,
    .section-inner,
    .footer-inner {
        padding-left: 12px;
        padding-right: 12px;
    }

    .header-inner {
        padding-left: 10px;
        padding-right: 10px;
    }

    .header-logo img {
        max-width: 94px;
        height: 28px;
    }

    .header-buttons .btn--primary {
        padding: 7px 8px;
        font-size: 0.62rem;
    }

    .hero-content {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-title {
        font-size: 1.42rem;
    }

    .hero-stats {
        gap: 7px;
    }

    .hero-stat {
        padding: 10px 5px;
    }

    .section-title {
        font-size: 1.16rem;
    }

    .tournament-card {
        flex-basis: calc(100vw - 32px);
        width: calc(100vw - 32px);
        min-width: calc(100vw - 32px) !important;
    }

    .jackpot-amount {
        font-size: 1.25rem;
    }

    .reel {
        max-width: 68px;
        height: 70px;
        font-size: 1.8rem;
    }

    .sticky-widget {
        grid-template-columns: 1fr;
    }

    .sticky-widget .btn {
        width: 100%;
    }
}