:root {
    --c-bg: #0b0f19;
    --c-header: #141821;
    --c-primary: #ff2e63;
    --c-green: #22c55e;
    --c-text: #e2e8f0;
    --c-text-muted: #94a3b8;
    --c-border: #1e2a3a;
    --c-card: #161d2b;
    --c-card2: #1a2234;
    --radius: 12px;
    --radius-sm: 8px;
    --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(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden
}

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

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

a:hover {
    color: #ff5580
}

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

.wrapper {
    position: relative
}

.box {
    border-radius: var(--radius)
}

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

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 16px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto
}

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

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

.header-logo span {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -.5px;
    background: linear-gradient(90deg, var(--c-primary), #ff8c69);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    color: var(--c-text-muted);
    font-size: .875rem;
    font-weight: 500;
    transition: all .2s;
    white-space: nowrap
}

.header-nav a:hover, .header-nav a.active {
    color: var(--c-text);
    background: rgba(255, 255, 255, .05)
}

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

.online-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, .1);
    border: 1px solid rgba(34, 197, 94, .2);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: .75rem;
    color: var(--c-green);
    white-space: nowrap
}

.online-badge .dot {
    width: 7px;
    height: 7px;
    background: var(--c-green);
    border-radius: 50%;
    animation: pulse 2s infinite
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .6;
        transform: scale(1.3)
    }
}

.lang-dropdown {
    position: relative
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    cursor: pointer;
    font-size: .875rem;
    color: var(--c-text);
    transition: all .2s
}

.lang-btn:hover {
    background: rgba(255, 255, 255, .1)
}

.lang-btn svg {
    width: 14px;
    height: 14px;
    transition: transform .2s
}

.lang-dropdown.open .lang-btn svg {
    transform: rotate(180deg)
}

.lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--c-header);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    min-width: 140px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all .2s;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4)
}

.lang-dropdown.open .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.lang-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    color: var(--c-text-muted);
    font-size: .875rem;
    transition: all .2s
}

.lang-menu a:hover {
    background: rgba(255, 255, 255, .05);
    color: var(--c-text)
}

.flag {
    font-size: 1.1rem
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .875rem;
    padding: 9px 18px;
    cursor: pointer;
    transition: all .2s;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: .2px
}

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

.btn--primary:hover {
    background: #e0194f;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 46, 99, .4)
}

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

.btn--green:hover {
    background: #16a34a;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(34, 197, 94, .4)
}

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

.btn--outline:hover {
    background: rgba(255, 255, 255, .05);
    color: var(--c-text)
}

.btn--lg {
    padding: 13px 28px;
    font-size: 1rem;
    border-radius: 10px
}

.btn--sm {
    padding: 6px 14px;
    font-size: .8rem
}

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

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c-text);
    transition: all .3s;
    border-radius: 2px
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--c-header);
    z-index: 999;
    padding: 80px 20px 30px;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto
}

.mobile-menu.open {
    display: flex
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    color: var(--c-text-muted);
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid transparent;
    transition: all .2s
}

.mobile-menu a:hover {
    color: var(--c-text);
    background: rgba(255, 255, 255, .05)
}

.mobile-menu .mobile-cta {
    display: flex;
    gap: 10px;
    margin-top: 12px
}

.mobile-menu .mobile-cta .btn {
    flex: 1;
    justify-content: center;
    padding: 12px
}

/* ===  === */
.hero-section {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 15, 25, .95) 0%, rgba(20, 24, 33, .7) 50%, rgba(11, 15, 25, .9) 100%);
    z-index: 1
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 46, 99, .1);
    border: 1px solid rgba(255, 46, 99, .3);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: .8rem;
    color: var(--c-primary);
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 20px
}

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

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 700px
}

.hero-title span {
    background: linear-gradient(90deg, var(--c-primary), #ff8c69);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--c-text-muted);
    margin-bottom: 32px;
    max-width: 560px;
    line-height: 1.7
}

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

.hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 48px;
    flex-wrap: wrap
}

.hero-stat {
    display: flex;
    flex-direction: column
}

.hero-stat strong {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--c-text)
}

.hero-stat strong span {
    color: var(--c-green)
}

.hero-stat em {
    font-style: normal;
    font-size: .8rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .5px
}

.hero-plane {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    opacity: .15;
    pointer-events: none
}

.hero-plane svg {
    width: 400px;
    height: 400px
}

/* ===  === */
.section {
    padding: 70px 0
}

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

.section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--c-primary);
    margin-bottom: 10px
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px
}

.section-desc {
    color: var(--c-text-muted);
    max-width: 580px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7
}

.jackpots-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.jackpot-card {
    flex: 1;
    min-width: 280px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s
}

.jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .4)
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px
}

.jackpot-card.gold::before {
    background: linear-gradient(90deg, #f59e0b, #fcd34d)
}

.jackpot-card.silver::before {
    background: linear-gradient(90deg, #94a3b8, #cbd5e1)
}

.jackpot-card.bronze::before {
    background: linear-gradient(90deg, #b45309, #d97706)
}

.jackpot-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 6px;
    padding: 4px 12px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 16px
}

.jackpot-card.gold .jackpot-badge {
    background: rgba(245, 158, 11, .15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, .3)
}

.jackpot-card.silver .jackpot-badge {
    background: rgba(148, 163, 184, .15);
    color: #94a3b8;
    border: 1px solid rgba(148, 163, 184, .3)
}

.jackpot-card.bronze .jackpot-badge {
    background: rgba(180, 83, 9, .15);
    color: #d97706;
    border: 1px solid rgba(180, 83, 9, .3)
}

.jackpot-amount {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 6px;
    letter-spacing: -1px
}

.jackpot-card.gold .jackpot-amount {
    color: #f59e0b
}

.jackpot-card.silver .jackpot-amount {
    color: #94a3b8
}

.jackpot-card.bronze .jackpot-amount {
    color: #d97706
}

.jackpot-label {
    font-size: .8rem;
    color: var(--c-text-muted);
    margin-bottom: 20px
}

.jackpot-players {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.jackpot-player {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .03);
    border-radius: 8px;
    padding: 8px 12px
}

.jackpot-player-rank {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 700;
    flex-shrink: 0
}

.jackpot-card.gold .jackpot-player-rank {
    background: rgba(245, 158, 11, .2);
    color: #f59e0b
}

.jackpot-card.silver .jackpot-player-rank {
    background: rgba(148, 163, 184, .2);
    color: #94a3b8
}

.jackpot-card.bronze .jackpot-player-rank {
    background: rgba(180, 83, 9, .2);
    color: #d97706
}

.jackpot-player-nick {
    flex: 1;
    font-size: .85rem;
    font-weight: 500
}

.jackpot-player-amount {
    font-size: .85rem;
    font-weight: 700;
    color: var(--c-green)
}

.app-section-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap
}

.app-info {
    flex: 1;
    min-width: 280px
}

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

.app-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 400px
}

.app-table th, .app-table td {
    text-align: left;
    padding: 12px 16px;
    border: 1px solid var(--c-border);
    font-size: .9rem
}

.app-table th {
    background: rgba(255, 255, 255, .04);
    color: var(--c-text-muted);
    font-weight: 600;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .5px
}

.app-table td:first-child {
    color: var(--c-text-muted)
}

.app-table td:last-child {
    color: var(--c-text);
    font-weight: 500
}

.app-table tr:hover td {
    background: rgba(255, 255, 255, .02)
}

.app-downloads {
    flex: 1;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    text-decoration: none;
    color: var(--c-text);
    transition: all .2s;
    cursor: pointer
}

.download-btn:hover {
    border-color: var(--c-primary);
    background: rgba(255, 46, 99, .05);
    transform: translateY(-2px);
    color: var(--c-text)
}

.download-btn svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0
}

.download-btn-text {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.download-btn-text small {
    font-size: .7rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .5px
}

.download-btn-text strong {
    font-size: .95rem;
    font-weight: 700
}

.download-btn.android svg {
    color: #3ddc84
}

.download-btn.ios svg {
    color: #a2b4c8
}

.download-btn.apk svg {
    color: #f59e0b
}

.video-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
    max-width: 860px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5)
}

.video-wrap iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    border: none
}

.demo-wrap {
    border-radius: var(--radius);
    background: #000;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5)
}

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

.demo-cta {
    text-align: center;
    margin-top: 20px
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px
}

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

.faq-item.open {
    border-color: rgba(255, 46, 99, .3)
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    gap: 16px;
    user-select: none
}

.faq-q span {
    font-weight: 600;
    font-size: .975rem;
    line-height: 1.5
}

.faq-icon {
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .25s
}

.faq-item.open .faq-icon {
    background: rgba(255, 46, 99, .15);
    transform: rotate(45deg)
}

.faq-icon svg {
    width: 10px;
    height: 10px;
    color: var(--c-text-muted)
}

.faq-item.open .faq-icon svg {
    color: var(--c-primary)
}

.faq-a {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: all .3s ease
}

.faq-a p {
    padding-bottom: 18px;
    color: var(--c-text-muted);
    font-size: .925rem;
    line-height: 1.75
}

.faq-item.open .faq-a {
    max-height: 300px
}

.author-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 28px 32px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    max-width: 760px;
    margin: 48px auto 0
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--c-border)
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.author-info {
    flex: 1
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px
}

.author-role {
    font-size: .8rem;
    color: var(--c-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 10px
}

.author-bio {
    font-size: .875rem;
    color: var(--c-text-muted);
    line-height: 1.7;
    margin-bottom: 12px
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--c-text-muted);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 5px 12px;
    transition: all .2s
}

.author-link:hover {
    color: var(--c-text);
    border-color: var(--c-text-muted)
}

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

.content-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 32px 36px;
    margin: 0 auto
}

.content-block h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 16px
}

.content-block h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 24px 0 12px;
    color: var(--c-text)
}

.content-block h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 20px 0 10px;
    color: var(--c-text)
}

.content-block p {
    color: var(--c-text-muted);
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: .95rem
}

.content-block ul, .content-block ol {
    padding-left: 24px;
    margin-bottom: 14px;
    color: var(--c-text-muted)
}

.content-block ul li, .content-block ol li {
    margin-bottom: 7px;
    font-size: .95rem;
    line-height: 1.7
}

.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    overflow-x: auto;
    display: block
}

.content-block table th, .content-block table td {
    padding: 10px 14px;
    border: 1px solid var(--c-border);
    text-align: left;
    font-size: .9rem
}

.content-block table th {
    background: rgba(255, 255, 255, .04);
    color: var(--c-text-muted);
    font-weight: 600
}

.content-block a {
    color: var(--c-primary);
    text-decoration: underline
}

.content-block strong {
    color: var(--c-text);
    font-weight: 700
}

.content-block em {
    font-style: italic;
    color: var(--c-text-muted)
}

.content-block blockquote {
    border-left: 3px solid var(--c-primary);
    padding: 12px 20px;
    background: rgba(255, 46, 99, .05);
    border-radius: 0 8px 8px 0;
    margin: 16px 0;
    color: var(--c-text-muted);
    font-style: italic
}

.reviews-grid {
    display: flex;
    gap: 18px;
    flex-wrap: wrap
}

.review-card {
    flex: 1;
    min-width: 280px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform .2s, box-shadow .2s
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .3)
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px
}

.review-stars svg {
    width: 16px;
    height: 16px;
    color: #f59e0b;
    fill: #f59e0b
}

.review-text {
    font-size: .9rem;
    color: var(--c-text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
    font-style: italic
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px
}

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

.review-name {
    font-weight: 600;
    font-size: .875rem
}

.review-date {
    font-size: .75rem;
    color: var(--c-text-muted)
}

.proscons-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.proscons-card {
    flex: 1;
    min-width: 260px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px 28px
}

.proscons-card.pros {
    border-top: 3px solid var(--c-green)
}

.proscons-card.cons {
    border-top: 3px solid var(--c-primary)
}

.proscons-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px
}

.proscons-card.pros .proscons-title {
    color: var(--c-green)
}

.proscons-card.cons .proscons-title {
    color: var(--c-primary)
}

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

.proscons-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .9rem;
    color: var(--c-text-muted)
}

.proscons-list li::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 3px
}

.proscons-card.pros .proscons-list li::before {
    background: rgba(34, 197, 94, .2);
    border: 1.5px solid var(--c-green);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%2322c55e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center
}

.proscons-card.cons .proscons-list li::before {
    background: rgba(255, 46, 99, .15);
    border: 1.5px solid var(--c-primary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M3 3l4 4M7 3l-4 4' stroke='%23ff2e63' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center
}

.site-footer {
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    margin-top: 60px
}

.footer-top {
    padding: 48px 0 36px;
    border-bottom: 1px solid var(--c-border)
}

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap
}

.footer-col {
    flex: 1;
    min-width: 180px
}

.footer-col h4 {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-text-muted);
    margin-bottom: 16px
}

.footer-col a {
    display: block;
    font-size: .875rem;
    color: var(--c-text-muted);
    padding: 5px 0;
    transition: color .2s
}

.footer-col a:hover {
    color: var(--c-text)
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px
}

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

.footer-logo span {
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--c-primary), #ff8c69);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.footer-desc {
    font-size: .825rem;
    color: var(--c-text-muted);
    line-height: 1.7
}

.footer-bottom {
    padding: 24px 0
}

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

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

.footer-payments img {
    height: 28px;
    width: auto;
    opacity: .7;
    filter: brightness(0) invert(.8);
    transition: opacity .2s
}

.footer-payments img:hover {
    opacity: 1
}

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

.footer-licenses img {
    height: 32px;
    width: auto;
    opacity: .6;
    transition: opacity .2s
}

.footer-licenses img:hover {
    opacity: 1
}

.footer-copyright {
    width: 100%;
    text-align: center;
    font-size: .775rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    padding-top: 16px;
    border-top: 1px solid var(--c-border);
    margin-top: 16px
}

.footer-age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--c-text-muted);
    font-size: .7rem;
    font-weight: 800;
    color: var(--c-text-muted);
    margin-right: 8px
}

.provider-logo {
    height: 24px;
    width: auto;
    opacity: .5;
    transition: opacity .2s
}

.provider-logo:hover {
    opacity: .8
}


.game-info-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px
}

.game-stat-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    flex: 1;
    min-width: 150px;
    text-align: center
}

.game-stat-card .val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-text);
    margin-bottom: 4px
}

.game-stat-card .val.green {
    color: var(--c-green)
}

.game-stat-card .val.red {
    color: var(--c-primary)
}

.game-stat-card .lbl {
    font-size: .75rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .5px
}

.tech-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 20px
}

.tech-content h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px
}

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

.tech-content .breadcrumb a {
    color: var(--c-primary)
}

.tech-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 28px 0 12px;
    color: var(--c-text)
}

.tech-content p {
    color: var(--c-text-muted);
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: .95rem
}

.tech-content ul {
    padding-left: 24px;
    margin-bottom: 14px;
    color: var(--c-text-muted)
}

.tech-content ul li {
    margin-bottom: 7px;
    font-size: .95rem;
    line-height: 1.7
}

/**/
.scroll-top {
    position: fixed;
    bottom: 76px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--c-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    z-index: 998;
    box-shadow: 0 4px 15px rgba(255, 46, 99, .4)
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible
}

.scroll-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 46, 99, .5)
}

.scroll-top svg {
    width: 18px;
    height: 18px;
    color: #fff
}

/* ===  === */
.section-divider {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 10px 0
}

/* ===  === */
.text-center {
    text-align: center
}

.mt-4 {
    margin-top: 1rem
}

.mb-4 {
    margin-bottom: 1rem
}

.hidden {
    display: none !important
}

.wp-block-group {
    display: block
}

.elementor-widget-container {
    display: contents
}

.entry-content {
    display: contents
}

.wp-site-blocks {
    display: contents
}

.aioseo-breadcrumbs {
    display: none
}

.yoast-breadcrumbs {
    display: none
}

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

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(.8)
    }
    to {
        opacity: 1;
        transform: scale(1)
    }
}

.anim-fadein {
    animation: fadeIn .5s ease both
}

.anim-fadeup {
    animation: fadeInUp .5s ease both
}

[data-delay="1"] {
    animation-delay: .1s
}

[data-delay="2"] {
    animation-delay: .2s
}

[data-delay="3"] {
    animation-delay: .3s
}

[data-delay="4"] {
    animation-delay: .4s
}

[data-delay="5"] {
    animation-delay: .5s
}

/* ===  === */
@media (max-width: 992px) {
    .header-nav {
        display: none
    }

    .burger {
        display: flex
    }

    .app-section-inner {
        flex-direction: column
    }

    .section {
        padding: 50px 0
    }
}

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

    .hero-stats {
        gap: 18px
    }

    .jackpots-grid {
        flex-direction: column
    }

    .jackpot-card {
        min-width: auto
    }

    .reviews-grid {
        flex-direction: column
    }

    .proscons-grid {
        flex-direction: column
    }

    .footer-grid {
        flex-direction: column;
        gap: 28px
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start
    }

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

    .author-block {
        flex-direction: column;
        align-items: center;
        text-align: center
    }

    .author-block .author-link {
        margin: 0 auto
    }

    .demo-wrap iframe {
        height: 340px
    }

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

@media (max-width: 480px) {
    .header-inner {
        padding: 0 14px
    }

    .hero-content {
        padding: 60px 16px
    }

    .container {
        padding: 0 14px
    }

    .header-cta .btn--outline {
        display: none
    }
}

.qbcvfd {
    width: 100%;
    max-width: 1080px;
    margin: 40px auto;
    padding: 42px;
    background: linear-gradient(145deg, #141b29 0%, #0d1320 100%);
    border: 1px solid rgba(255, 46, 99, 0.16);
    border-radius: 30px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
    position: relative;
    overflow: hidden;
}

.qbcvfd::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 46, 99, 0.08), transparent 32%),
    radial-gradient(circle at bottom left, rgba(34, 197, 94, 0.07), transparent 28%);
    pointer-events: none;
}

.qbcvfd > * {
    position: relative;
    z-index: 2;
}

.qbcvfd h1 {
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.12;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 26px;
    letter-spacing: -0.03em;
}

.qbcvfd h2 {
    font-size: clamp(1.35rem, 3vw, 2rem);
    line-height: 1.3;
    font-weight: 700;
    color: #ff2e63;
    margin: 42px 0 18px;
}

.qbcvfd h3 {
    font-size: 1.12rem;
    line-height: 1.45;
    font-weight: 700;
    color: #22c55e;
    margin: 28px 0 14px;
}

.qbcvfd p {
    font-size: 1rem;
    line-height: 1.85;
    color: #c6cfdd;
    margin-bottom: 18px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.qbcvfd strong {
    color: #ffffff;
    font-weight: 700;
}

.qbcvfd ul,
.qbcvfd ol {
    padding-left: 24px;
    margin: 18px 0 26px;
}

.qbcvfd li {
    color: #c6cfdd;
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 10px;
    word-break: break-word;
}

.qbcvfd a {
    color: #ff5a84;
    text-decoration: none;
    word-break: break-all;
    overflow-wrap: anywhere;
    transition: 0.2s ease;
}

.qbcvfd a:hover {
    color: #ffffff;
}

.qbcvfd table {
    width: 100%;
    display: block;
    overflow-x: auto;
    border-collapse: collapse;
    margin: 26px 0;
    border-radius: 18px;
}

.qbcvfd table::-webkit-scrollbar {
    height: 6px;
}

.qbcvfd table::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.14);
    border-radius: 20px;
}

.qbcvfd th {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
}

.qbcvfd td {
    color: #c6cfdd;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.92rem;
}

.qbcvfd img,
.qbcvfd iframe,
.qbcvfd video {
    max-width: 100%;
    display: block;
    border-radius: 20px;
}

.qbcvfd blockquote {
    margin: 28px 0;
    padding: 20px 24px;
    border-left: 4px solid #ff2e63;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    color: #d9e1ec;
}

.qbcvfd pre {
    width: 100%;
    overflow-x: auto;
    background: #0a1019;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 18px;
}

.qbcvfd code {
    color: #22c55e;
    font-size: 0.9rem;
}

@media (max-width: 768px) {

    .qbcvfd {
        margin: 20px 12px;
        padding: 24px 18px;
        border-radius: 22px;
    }

    .qbcvfd h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .qbcvfd h2 {
        font-size: 1.3rem;
        margin: 34px 0 14px;
    }

    .qbcvfd h3 {
        font-size: 1rem;
    }

    .qbcvfd p,
    .qbcvfd li {
        font-size: 0.94rem;
        line-height: 1.75;
    }

    .qbcvfd th,
    .qbcvfd td {
        padding: 10px 12px;
        font-size: 0.84rem;
    }
}

@media (max-width: 480px) {

    .qbcvfd {
        padding: 20px 14px;
        border-radius: 18px;
    }

    .qbcvfd h1 {
        font-size: 1.45rem;
    }

    .qbcvfd h2 {
        font-size: 1.14rem;
    }

    .qbcvfd p,
    .qbcvfd li {
        font-size: 0.9rem;
    }

    .qbcvfd ul,
    .qbcvfd ol {
        padding-left: 18px;
    }
}