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

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

:root {
    --c-header: #0a0a35;
    --c-bg: #000000;
    --c-btn-primary: #fbec1f;
    --c-btn-secondary: #016d19;
    --c-text: #e8e8f0;
    --c-text-muted: #9898b8;
    --c-accent: #fbec1f;
    --c-border: #1e1e4a;
    --c-card: #0d0d3a;
    --c-card2: #0f0f2e;
    --c-green: #016d19;
    --c-green-light: #02a827;
    --c-radius: 10px;
    --c-radius-lg: 16px;
    --font: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    background: var(--c-bg);
}

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

a {
    color: var(--c-green-light);
    text-decoration: none;
    transition: color .2s;
}

a:hover {
    color: var(--c-accent);
}

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

.x7f2a {
    display: none;
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.wp-block-group {
    display: block;
}

.entry-content {
    display: block;
}

.elementor-widget-wrap {
    display: contents;
}

.wp-post-image {
    display: none;
}

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

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

.box {
    border-radius: var(--c-radius-lg);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s, filter .15s;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 6px 24px rgba(251, 236, 31, .18);
}

.btn--primary {
    background: var(--c-btn-primary);
    color: #000;
}

.btn--secondary {
    background: var(--c-btn-secondary);
    color: #fff;
}

.btn--outline {
    background: transparent;
    color: var(--c-accent);
    border: 2px solid var(--c-accent);
}

.btn--lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 10px;
}

.btn--sm {
    padding: 7px 14px;
    font-size: 13px;
}

.site-header {
    background: var(--c-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .5);
    border-bottom: 1px solid #1e1e55;
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 44px;
    width: auto;
}

.header-logo-text {
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.header-logo-text span {
    color: var(--c-accent);
}

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

.header-nav a {
    color: #cccce8;
    font-size: 13.5px;
    font-weight: 500;
    padding: 7px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background .2s, color .2s;
}

.header-nav a:hover, .header-nav a.active {
    background: rgba(251, 236, 31, .1);
    color: var(--c-accent);
}

.nav-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.online-counter {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--c-text-muted);
    background: rgba(255, 255, 255, .05);
    padding: 5px 10px;
    border-radius: 20px;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #00e676;
    border-radius: 50%;
    animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, .4);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(0, 230, 118, 0);
    }
}

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    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-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 998;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-header);
    z-index: 999;
    flex-direction: column;
    padding: 24px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .3s ease;
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-close {
    align-self: flex-end;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    margin-bottom: 16px;
}

.mobile-nav a {
    color: #e0e0ff;
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #1e1e55;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav .mobile-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.mobile-nav .mobile-btns .btn {
    justify-content: center;
}

.section {
    padding: 64px 0;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
    letter-spacing: -.3px;
}

.section-title span {
    color: var(--c-accent);
}

.section-subtitle {
    color: var(--c-text-muted);
    font-size: 15px;
    margin-bottom: 36px;
}

.hero {
    background: var(--c-header);
    background-image: url('/img/bets-banner.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0 100px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 53, .92) 0%, rgba(0, 0, 0, .7) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 236, 31, .12);
    border: 1px solid rgba(251, 236, 31, .3);
    color: var(--c-accent);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -.5px;
}

.hero h1 span {
    color: var(--c-accent);
}

.hero-desc {
    font-size: 16px;
    color: #c8c8e8;
    line-height: 1.7;
    margin-bottom: 28px;
}

.hero-promo {
    background: rgba(251, 236, 31, .08);
    border: 2px dashed rgba(251, 236, 31, .4);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-promo-label {
    font-size: 12px;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-promo-code {
    font-size: 22px;
    font-weight: 900;
    color: var(--c-accent);
    letter-spacing: 3px;
}

.hero-promo-btn {
    background: var(--c-accent);
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    font-size: 13px;
    transition: transform .15s;
    white-space: nowrap;
}

.hero-promo-btn:hover {
    transform: scale(1.05);
}

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

.hero-img {
    border-radius: var(--c-radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .6);
}

.hero-img img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pros-box, .cons-box {
    border-radius: var(--c-radius-lg);
    padding: 28px;
}

.pros-box {
    background: linear-gradient(135deg, #021e08 0%, #021a06 100%);
    border: 1px solid #014d10;
}

.cons-box {
    background: linear-gradient(135deg, #1e0606 0%, #1a0202 100%);
    border: 1px solid #4d0101;
}

.pros-cons-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pros-title {
    color: #4ade80;
}

.cons-title {
    color: #f87171;
}

.pros-list, .cons-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pros-list li, .cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.pros-list li::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: #4ade80;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 1px;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.cons-list li::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: #f87171;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 1px;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E") center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 17.59 13.41 12z'/%3E%3C/svg%3E") center/contain no-repeat;
}

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

table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    margin: 0 auto;
}

table th, table td {
    padding: 13px 18px;
    text-align: left;
    border: 1px solid var(--c-border);
    font-size: 14px;
}

table th {
    background: var(--c-header);
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
}

table td {
    background: var(--c-card);
    color: var(--c-text);
}

table tr:hover td {
    background: #111140;
}

table a {
    color: var(--c-green-light);
    font-weight: 600;
}

table a:hover {
    color: var(--c-accent);
}

.mirror-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.mirror-online {
    color: #4ade80;
}

.mirror-online::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
}

.mirror-updated {
    font-size: 12px;
    color: var(--c-text-muted);
    margin-top: 12px;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.screenshot-item {
    border-radius: var(--c-radius);
    overflow: hidden;
    border: 1px solid var(--c-border);
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}

.screenshot-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(251, 236, 31, .12);
}

.screenshot-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.swiper-wrap {
    position: relative;
    overflow: hidden;
}

.swiper-track {
    display: flex;
    gap: 14px;
    transition: transform .4s ease;
}

.swiper-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 10, 53, .8);
    border: 1px solid var(--c-border);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background .2s;
}

.swiper-btn:hover {
    background: var(--c-accent);
    color: #000;
}

.swiper-prev {
    left: -4px;
}

.swiper-next {
    right: -4px;
}

.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.tournament-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius-lg);
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden;
}

.tournament-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-green), var(--c-accent));
}

.tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(251, 236, 31, .1);
}

.tournament-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.tournament-desc {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.5;
    flex: 1;
}

.tournament-prize {
    font-size: 22px;
    font-weight: 900;
    color: var(--c-accent);
}

.tournament-prize-label {
    font-size: 11px;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tournament-timer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.timer-block {
    background: var(--c-header);
    border-radius: 6px;
    padding: 6px 10px;
    text-align: center;
    min-width: 46px;
}

.timer-val {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.timer-lbl {
    font-size: 10px;
    color: var(--c-text-muted);
}

.timer-sep {
    color: var(--c-accent);
    font-weight: 700;
    font-size: 18px;
}

.app-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.app-download-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.dl-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: 10px;
    padding: 12px 18px;
    text-decoration: none;
    color: #fff;
    transition: border-color .2s, background .2s;
}

.dl-btn:hover {
    border-color: var(--c-accent);
    background: #111140;
    color: #fff;
}

.dl-btn-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.dl-btn-label {
    font-size: 11px;
    color: var(--c-text-muted);
}

.dl-btn-store {
    font-size: 16px;
    font-weight: 700;
}

.demo-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    align-items: start;
}

.demo-game-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.demo-game-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: 8px;
    padding: 10px 14px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    font-size: 14px;
    color: var(--c-text);
}

.demo-game-item:hover, .demo-game-item.active {
    border-color: var(--c-accent);
    background: #111140;
    color: #fff;
}

.demo-game-item .game-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--c-border);
}

.demo-game-item.active .game-dot {
    background: var(--c-accent);
}

.demo-game-name {
    font-weight: 600;
}

.demo-game-provider {
    font-size: 12px;
    color: var(--c-text-muted);
}

.demo-frame-wrap {
    position: relative;
    border-radius: var(--c-radius);
    border: 1px solid var(--c-border);
}

.demo-frame-wrap iframe {
    width: 100%;
    height: 480px;
    border: none;
    display: block;
}

.demo-frame-cta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, .9));
    padding: 32px 24px 20px;
    display: flex;
    justify-content: center;
}

.review-section {
    background: var(--c-card);
    border-radius: var(--c-radius-lg);
    padding: 40px 48px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--c-border);
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--c-header);
    border: 2px solid var(--c-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--c-accent);
    flex-shrink: 0;
}

.author-name {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.author-bio {
    font-size: 13px;
    color: var(--c-text-muted);
    margin-top: 2px;
}

.author-links {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.author-links a {
    font-size: 12px;
    color: var(--c-green-light);
}

.review-content {
    font-size: 15px;
    line-height: 1.75;
    color: var(--c-text);
}

.review-content h2 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 24px 0 12px;
}

.review-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 20px 0 10px;
}

.review-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--c-accent);
    margin: 16px 0 8px;
}

.review-content p {
    margin-bottom: 14px;
}

.review-content ul, .review-content ol {
    margin: 12px 0 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.review-content ul li::marker {
    color: var(--c-accent);
}

.review-content ol li::marker {
    color: var(--c-accent);
}

.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.review-content table th {
    background: var(--c-header);
    color: #fff;
    font-weight: 700;
}

.review-content table td {
    background: var(--c-card2);
    color: var(--c-text);
}

.review-content a {
    color: var(--c-green-light);
}

.review-content strong {
    color: #fff;
    font-weight: 700;
}

.review-content blockquote {
    border-left: 4px solid var(--c-accent);
    padding-left: 16px;
    margin: 16px 0;
    color: var(--c-text-muted);
    font-style: italic;
}

.reg-steps-table table {
    min-width: 400px;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--c-header);
    border: 2px solid var(--c-accent);
    border-radius: 50%;
    font-weight: 800;
    font-size: 13px;
    color: var(--c-accent);
}

.site-footer {
    background: var(--c-header);
    border-top: 1px solid #1e1e55;
    padding: 48px 0 24px;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    gap: 32px;
    margin-bottom: 36px;
}

.footer-logo-col {
}

.footer-logo img {
    height: 40px;
    margin-bottom: 12px;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
}

.footer-logo-text span {
    color: var(--c-accent);
}

.footer-tagline {
    font-size: 13px;
    color: var(--c-text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-flag {
    font-size: 28px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .06);
    border-radius: 8px;
    color: #ccc;
    transition: background .2s, color .2s;
}

.footer-social a:hover {
    background: var(--c-accent);
    color: #000;
}

.footer-nav-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-text-muted);
    margin-bottom: 14px;
}

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

.footer-nav-links a {
    color: #b0b0cc;
    font-size: 13.5px;
    transition: color .2s;
}

.footer-nav-links a:hover {
    color: var(--c-accent);
}

.footer-divider {
    border: none;
    border-top: 1px solid #1e1e55;
    margin: 24px 0;
}

.footer-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-badge {
    background: rgba(255, 255, 255, .06);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-logo-badge svg {
    width: 20px;
    height: 20px;
}

.footer-providers-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-text-muted);
    margin-bottom: 10px;
}

.providers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.provider-chip {
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    color: #aaa;
}

.footer-legal {
    font-size: 12px;
    color: var(--c-text-muted);
    line-height: 1.7;
}

.footer-legal p {
    margin-bottom: 8px;
}

.footer-legal a {
    color: #7070a0;
}

.footer-copyright {
    font-size: 12px;
    color: #555577;
    margin-top: 16px;
    text-align: center;
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    background: var(--c-header);
    border-top: 2px solid var(--c-accent);
    padding: 12px 0;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5);
    transform: translateY(100%);
    transition: transform .4s ease;
}

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

.widget-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.widget-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--c-accent);
}

.widget-promo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-promo-label {
    font-size: 11px;
    color: var(--c-text-muted);
}

.widget-promo-code {
    font-size: 18px;
    font-weight: 900;
    color: var(--c-accent);
    letter-spacing: 2px;
}

.widget-copy-btn {
    background: rgba(251, 236, 31, .12);
    border: 1px solid rgba(251, 236, 31, .3);
    color: var(--c-accent);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
}

.widget-copy-btn:hover, .widget-copy-btn.copied {
    background: var(--c-accent);
    color: #000;
}

.widget-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.widget-close {
    background: none;
    border: none;
    color: #666;
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    transition: color .2s;
}

.widget-close:hover {
    color: #fff;
}

.section-bg-card {
    background: var(--c-card);
    border-radius: var(--c-radius-lg);
    padding: 40px;
    margin-bottom: 8px;
    border: 1px solid var(--c-border);
}

.section-bg-dark {
    background: #070720;
    border-radius: var(--c-radius-lg);
    padding: 40px;
    border: 1px solid var(--c-border);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius);
    overflow: hidden;
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    font-size: 15px;
    gap: 10px;
}

.faq-q::after {
    content: '+';
    font-size: 22px;
    color: var(--c-accent);
    flex-shrink: 0;
    transition: transform .2s;
}

.faq-item.open .faq-q::after {
    transform: rotate(45deg);
}

.faq-a {
    display: none;
    padding: 0 20px 16px;
    color: var(--c-text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.faq-item.open .faq-a {
    display: block;
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--c-text-muted);
    margin-bottom: 8px;
}

.breadcrumb a {
    color: var(--c-green-light);
}

.breadcrumb span {
    color: #555;
}

.info-page-content {
    max-width: 820px;
    margin: 0 auto;
}

.info-page-content h1 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}

.info-page-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px;
}

.info-page-content p {
    margin-bottom: 14px;
    color: var(--c-text);
    font-size: 15px;
    line-height: 1.75;
}

.info-page-content ul {
    margin: 12px 0 16px 24px;
}

.info-page-content ul li {
    margin-bottom: 6px;
    color: var(--c-text);
}

.d4k9x {
    font-size: 0;
    line-height: 0;
    height: 0;
    display: block;
    overflow: hidden;
}

.wp-image-3471 {
    display: none;
}

.elementor-section {
    display: contents;
}

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

.anim-fade-up {
    animation: fadeInUp .6s ease both;
}

.anim-delay-1 {
    animation-delay: .1s;
}

.anim-delay-2 {
    animation-delay: .2s;
}

.anim-delay-3 {
    animation-delay: .3s;
}

@media (max-width: 1024px) {
    .tournaments-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .demo-inner {
        grid-template-columns: 1fr;
    }

    .demo-game-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .demo-game-item {
        flex: 1 1 calc(50% - 4px);
        min-width: 0;
    }

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

    .footer-logo-col {
        grid-column: 1 / -1;
    }

    .app-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .header-nav {
        display: none;
    }

    .online-counter {
        display: none;
    }

    .burger {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero-img {
        display: none;
    }

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

    .screenshots-grid {
        display: none;
    }

    .screenshots-swiper {
        display: block !important;
    }

    .tournaments-grid {
        display: none;
    }

    .tournaments-swiper {
        display: block !important;
    }

    .section-bg-card, .section-bg-dark {
        padding: 24px 18px;
    }

    .review-section {
        padding: 24px 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .widget-inner {
        flex-wrap: wrap;
        gap: 10px;
    }

    .widget-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 48px 0 60px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 22px;
    }

    .hero-promo {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }


}

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

    body {
        font-size: 16px;
    }

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

    .container {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin-left: auto;
        margin-right: auto;
        padding-left: 14px;
        padding-right: 14px;
    }

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

    .site-header {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10000;
        width: 100%;
        background: var(--c-header);
    }

    body {
        padding-top: 58px;
    }

    .site-header .container {
        padding-left: 12px;
        padding-right: 12px;
    }

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

    .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: 31px;
        max-width: 105px;
        object-fit: contain;
    }

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

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


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

    .burger {
        position: relative;
        z-index: 10003;
        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(251, 236, 31, 0.18);
        border-radius: 8px;
        background: rgba(251, 236, 31, 0.06);
    }

    .burger span {
        width: 20px;
    }

    .mobile-nav-overlay {
        position: fixed;
        inset: 58px 0 0;
        z-index: 9998;
        display: block;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        background: rgba(0, 0, 0, 0.72);
        transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    .mobile-nav-overlay.open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-nav {
        position: fixed;
        top: 58px;
        right: 0;
        bottom: 0;
        left: auto;
        z-index: 9999;
        display: flex !important;
        width: min(88vw, 360px);
        max-width: 100%;
        min-width: 0;
        padding: 16px 12px 22px;
        overflow-x: hidden;
        overflow-y: auto;
        flex-direction: column;
        background: var(--c-header);
        border-left: 1px solid var(--c-border);
        box-shadow: -14px 0 40px rgba(0, 0, 0, 0.6);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateX(100%);
        transition: transform 0.3s ease,
        opacity 0.25s ease,
        visibility 0.3s ease;
    }

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

    .mobile-nav-close {
        display: flex;
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        align-items: center;
        justify-content: center;
        align-self: flex-end;
        margin: 0 0 10px;
        color: #fff;
        font-size: 1.6rem;
        border: 1px solid var(--c-border);
        border-radius: 9px;
        background: rgba(255, 255, 255, 0.05);
    }

    .mobile-nav nav {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 6px;
    }

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

    .mobile-nav nav a svg {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
        color: var(--c-accent);
    }

    .mobile-btns {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 8px;
        margin-top: auto;
        padding-top: 16px;
    }

    .mobile-btns .btn {
        width: 100%;
        min-width: 0;
        min-height: 44px;
        padding: 10px 12px;
        font-size: 0.78rem;
        white-space: normal;
        text-align: center;
    }

    body.menu-open {
        overflow: hidden;
    }

    .hero {
        width: 100%;
        padding: 42px 0 34px;
        background-position: 62% center;
    }

    .hero::before {
        background: linear-gradient(
                180deg,
                rgba(10, 10, 53, 0.18) 0%,
                rgba(10, 10, 53, 0.72) 40%,
                rgba(0, 0, 0, 0.97) 100%
        );
    }

    .hero-inner {
        display: grid;
        grid-template-columns: 1fr !important;
        width: 100%;
        min-width: 0;
        gap: 20px;
    }

    .hero-inner > div {
        width: 100%;
        min-width: 0;
    }

    .hero-img {
        display: none !important;
    }

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

    .hero h1 {
        max-width: 100%;
        margin-bottom: 12px;
        font-size: clamp(1.55rem, 7vw, 1.95rem);
        line-height: 1.13;
        overflow-wrap: anywhere;
    }

    .hero-desc {
        max-width: 100%;
        margin-bottom: 18px;
        font-size: 0.84rem;
        line-height: 1.58;
        overflow-wrap: anywhere;
    }

    .hero-promo {
        display: flex;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding: 12px;
        margin-bottom: 17px;
    }

    .hero-promo > div {
        min-width: 0;
    }

    .hero-promo-code {
        max-width: 100%;
        font-size: 1rem;
        letter-spacing: 0.08em;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-promo-btn {
        flex-shrink: 0;
        padding: 8px 10px;
        font-size: 0.72rem;
    }

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

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

    .section {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 34px 0 !important;
    }

    .section-title {
        max-width: 100%;
        margin-bottom: 8px;
        font-size: 1.28rem;
        line-height: 1.28;
        overflow-wrap: anywhere;
    }

    .section-subtitle {
        max-width: 100%;
        margin-bottom: 21px;
        font-size: 0.82rem;
        line-height: 1.58;
        overflow-wrap: anywhere;
    }

    .breadcrumb {
        max-width: 100%;
        flex-wrap: wrap;
        font-size: 0.72rem;
        overflow-wrap: anywhere;
    }

    .section-bg-card,
    .section-bg-dark {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 18px 13px !important;
        border-radius: 12px;
    }

    .pros-cons-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        width: 100%;
        gap: 13px;
    }

    .pros-box,
    .cons-box {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 17px 14px;
        border-radius: 11px;
    }

    .pros-cons-title {
        align-items: flex-start;
        margin-bottom: 13px;
        font-size: 0.95rem;
    }

    .pros-list,
    .cons-list {
        width: 100%;
        gap: 8px;
    }

    .pros-list li,
    .cons-list li {
        min-width: 0;
        font-size: 0.79rem;
        line-height: 1.55;
        overflow-wrap: anywhere;
    }

    .pros-list li::before,
    .cons-list li::before {
        width: 17px;
        height: 17px;
        flex: 0 0 17px;
    }

    .tbl-wrap {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        border-radius: 9px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .tbl-wrap table {
        width: max-content;
        min-width: 620px;
        max-width: none;
    }

    .tbl-wrap table th,
    .tbl-wrap table td {
        min-width: 105px;
        padding: 9px 10px;
        font-size: 0.73rem;
        white-space: nowrap;
    }

    .tbl-wrap table th:nth-child(2),
    .tbl-wrap table td:nth-child(2) {
        min-width: 150px;
    }

    .tbl-wrap table a {
        white-space: nowrap;
    }

    .mirror-updated {
        font-size: 0.68rem;
        line-height: 1.5;
    }

    .screenshots-grid {
        display: none !important;
    }

    .screenshots-swiper {
        display: block !important;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .screenshots-swiper .swiper-track {
        display: flex;
        width: max-content;
        max-width: none;
        gap: 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        transform: none !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .screenshots-swiper .swiper-track::-webkit-scrollbar {
        display: none;
    }

    .screenshots-swiper .swiper-item {
        flex: 0 0 calc(88vw - 30px);
        width: calc(88vw - 30px);
        min-width: calc(88vw - 30px) !important;
        max-width: 330px !important;
        scroll-snap-align: start;
    }

    .screenshot-item {
        width: 100%;
        border-radius: 10px;
    }

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

    .screenshot-item img {
        width: 100%;
        height: auto;
        min-height: 155px;
        aspect-ratio: 16 / 8;
        object-fit: cover;
    }

    .swiper-btn {
        display: none !important;
    }

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

    .tournaments-swiper {
        display: none !important;
    }

    .tournament-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 18px 14px;
        gap: 10px;
        border-radius: 11px;
    }

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

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

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

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

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

    .timer-block {
        width: 100%;
        min-width: 0;
        padding: 7px 3px;
    }

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

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

    .timer-sep {
        display: none;
    }

    .tournament-card .btn {
        width: 100%;
        min-height: 39px;
        margin-top: auto;
        white-space: normal;
    }

    .app-info-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        width: 100%;
        gap: 21px;
    }

    .app-info-grid > div {
        width: 100%;
        min-width: 0;
    }

    .app-info-grid .tbl-wrap table {
        width: 100%;
        min-width: 0;
        table-layout: fixed;
    }

    .app-info-grid .tbl-wrap tbody,
    .app-info-grid .tbl-wrap tr {
        display: block;
        width: 100%;
    }

    .app-info-grid .tbl-wrap tr {
        padding: 10px;
        border-bottom: 1px solid var(--c-border);
    }

    .app-info-grid .tbl-wrap th,
    .app-info-grid .tbl-wrap td {
        display: block;
        width: 100%;
        min-width: 0;
        padding: 0;
        border: 0;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .app-info-grid .tbl-wrap th {
        margin-bottom: 4px;
        color: var(--c-text-muted);
        background: transparent;
        font-size: 0.68rem;
    }

    .app-info-grid .tbl-wrap td {
        background: transparent;
        font-size: 0.78rem;
    }

    .app-download-btns {
        width: 100%;
        gap: 9px;
    }

    .dl-btn {
        width: 100%;
        min-width: 0;
        padding: 11px 12px;
        gap: 11px;
    }

    .dl-btn > div {
        min-width: 0;
    }

    .dl-btn-icon {
        width: 31px;
        height: 31px;
    }

    .dl-btn-label {
        font-size: 0.66rem;
    }

    .dl-btn-store {
        font-size: 0.88rem;
        overflow-wrap: anywhere;
    }

    .demo-inner {
        display: grid;
        grid-template-columns: 1fr !important;
        width: 100%;
        gap: 15px;
    }

    .demo-inner > div {
        width: 100%;
        min-width: 0;
    }

    .demo-game-list {
        display: flex;
        width: 100%;
        max-width: 100%;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
        padding-bottom: 5px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .demo-game-item {
        flex: 0 0 150px !important;
        width: 150px;
        min-width: 150px !important;
        padding: 9px 10px;
        scroll-snap-align: start;
    }

    .demo-game-name {
        font-size: 0.74rem;
        overflow-wrap: anywhere;
    }

    .demo-game-provider {
        font-size: 0.65rem;
    }

    .demo-frame-wrap {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        border-radius: 9px;
    }

    .demo-frame-wrap iframe {
        display: block;
        width: 100% !important;
        height: auto;
        min-height: 230px;
        aspect-ratio: 16 / 10;
    }

    .demo-frame-cta {
        position: static;
        width: 100%;
        padding: 11px;
        background: var(--c-header);
    }

    .demo-frame-cta .btn {
        width: 100%;
        min-width: 0;
        padding: 10px;
        font-size: 0.75rem;
        white-space: normal;
        text-align: center;
    }

    .review-section {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 18px 13px !important;
        overflow: hidden;
        border-radius: 12px;
    }

    .review-author {
        align-items: flex-start;
        width: 100%;
        gap: 11px;
        margin-bottom: 18px;
        padding-bottom: 16px;
    }

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

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

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

    .author-bio {
        font-size: 0.7rem;
        line-height: 1.5;
        overflow-wrap: anywhere;
    }

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

    .review-content,
    .review-content .text {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .review-content {
        font-size: 0.81rem;
        line-height: 1.65;
    }

    .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 h2 {
        margin-top: 21px;
        font-size: 1.14rem;
    }

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

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

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

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

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

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

    .review-content blockquote {
        padding: 10px 11px;
        margin: 14px 0;
    }

    .reg-steps-table .tbl-wrap table {
        width: 100%;
        min-width: 0;
        table-layout: fixed;
    }

    .reg-steps-table .tbl-wrap thead {
        display: none;
    }

    .reg-steps-table .tbl-wrap tbody,
    .reg-steps-table .tbl-wrap tr,
    .reg-steps-table .tbl-wrap td {
        display: block;
        width: 100%;
    }

    .reg-steps-table .tbl-wrap tr {
        position: relative;
        padding: 12px 10px 12px 48px;
        border: 1px solid var(--c-border);
        border-radius: 9px;
        margin-bottom: 8px;
        background: var(--c-card2);
    }

    .reg-steps-table .tbl-wrap td {
        min-width: 0;
        padding: 0;
        border: 0;
        background: transparent;
        white-space: normal;
        font-size: 0.76rem;
        line-height: 1.55;
        overflow-wrap: anywhere;
    }

    .reg-steps-table .tbl-wrap td:first-child {
        position: absolute;
        top: 12px;
        left: 10px;
        width: 28px;
    }

    .reg-steps-table .tbl-wrap td:nth-child(2) {
        margin-bottom: 5px;
    }

    .reg-steps-table .btn--lg {
        width: 100%;
        min-width: 0;
        padding: 11px;
        font-size: 0.76rem;
        white-space: normal;
    }

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

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

    .faq-q {
        width: 100%;
        min-width: 0;
        align-items: flex-start;
        padding: 13px 11px;
        gap: 9px;
        font-size: 0.82rem;
        line-height: 1.45;
        overflow-wrap: anywhere;
    }

    .faq-q::after {
        flex: 0 0 auto;
        font-size: 1.15rem;
    }

    .faq-a {
        padding: 0 11px 13px;
        font-size: 0.77rem;
        line-height: 1.65;
        overflow-wrap: anywhere;
    }

    .site-footer {
        padding: 32px 0 88px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        width: 100%;
        gap: 23px;
        margin-bottom: 25px;
    }

    .footer-logo-col,
    .footer-grid > div {
        width: 100%;
        min-width: 0;
        grid-column: auto !important;
    }

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

    .footer-nav-links {
        gap: 7px;
    }

    .footer-logos-row,
    .providers-grid {
        gap: 6px;
    }

    .footer-logo-badge,
    .provider-chip {
        max-width: 100%;
        padding: 5px 7px;
        font-size: 0.64rem;
        white-space: normal;
    }

    .footer-legal,
    .footer-copyright {
        font-size: 0.67rem;
        line-height: 1.55;
        overflow-wrap: anywhere;
    }

    .sticky-widget {
        width: 100%;
        max-width: 100%;
        padding: 8px 0;
    }

    .sticky-widget .container {
        padding-left: 9px;
        padding-right: 9px;
    }

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

    .widget-text {
        display: none !important;
    }

    .widget-promo {
        min-width: 0;
        gap: 6px;
    }

    .widget-promo > div {
        min-width: 0;
    }

    .widget-promo-label {
        font-size: 0.62rem;
    }

    .widget-promo-code {
        max-width: 100%;
        font-size: 0.8rem;
        letter-spacing: 0.06em;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .widget-copy-btn {
        flex-shrink: 0;
        padding: 6px 8px;
        font-size: 0.65rem;
    }

    .widget-actions {
        gap: 5px;
    }

    .widget-actions .btn {
        padding: 7px 8px;
        font-size: 0.64rem;
    }

    .widget-actions .btn--secondary {
        display: none;
    }

    .widget-close {
        font-size: 1rem;
    }
}

@media (max-width: 420px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .header-logo img {
        max-width: 88px;
        height: 27px;
    }

    .header-actions .btn--primary {
        padding: 7px;
        font-size: 0.6rem;
    }

    .mobile-nav {
        width: 92vw;
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero {
        padding-top: 34px;
        padding-bottom: 28px;
    }

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

    .hero-promo {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-promo-btn {
        width: 100%;
    }

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

    .section-bg-card,
    .section-bg-dark,
    .review-section {
        padding-left: 11px !important;
        padding-right: 11px !important;
    }

    .screenshots-swiper .swiper-item {
        flex-basis: calc(100vw - 34px);
        width: calc(100vw - 34px);
        min-width: calc(100vw - 34px) !important;
    }

    .tournament-timer {
        gap: 4px;
    }

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

    .demo-game-item {
        flex-basis: 135px !important;
        width: 135px;
        min-width: 135px !important;
    }

    .widget-actions .btn--primary {
        padding-left: 7px;
        padding-right: 7px;
        font-size: 0.6rem;
    }
}