:root {
    --clr-bg: #0e0e0e;
    --clr-header: #1b1c1d;
    --clr-red: #e50539;
    --clr-red-hover: #c40430;
    --clr-green: #28a909;
    --clr-green-hover: #1f8a07;
    --clr-text: #e8e8e8;
    --clr-text-muted: #9b9b9b;
    --clr-border: #2a2b2c;
    --clr-card: #181819;
    --clr-card-alt: #1e1f21;
    --clr-gold: #f5c518;
    --clr-white: #ffffff;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
    --transition: .22s ease;
    --font-sans: 'Inter', sans-serif;
}

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

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

body {
    background: var(--clr-bg);
    color: var(--clr-text);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased
}

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

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

a:hover {
    color: var(--clr-red-hover)
}

ul {
    list-style: none
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px
}

.box {
    padding: 20px 0
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-size: .875rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none
}

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

.btn--red {
    background: var(--clr-red);
    color: var(--clr-white)
}

.btn--red:hover {
    background: var(--clr-red-hover);
    color: var(--clr-white)
}

.btn--green {
    background: var(--clr-green);
    color: var(--clr-white)
}

.btn--green:hover {
    background: var(--clr-green-hover);
    color: var(--clr-white)
}

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

.btn--outline:hover {
    border-color: var(--clr-red);
    color: var(--clr-red);
    background: transparent
}

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

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

.btn--pulse {
    animation: btnPulse 2.2s ease-in-out infinite
}

@keyframes btnPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(40, 169, 9, .45)
    }
    50% {
        box-shadow: 0 0 0 10px rgba(40, 169, 9, 0)
    }
}

.site-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--clr-border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .5)
}

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

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

.header-logo {
    flex-shrink: 0
}

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--clr-text);
    font-size: .85rem;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition)
}

.header-nav a:hover {
    background: rgba(255, 255, 255, .07);
    color: var(--clr-white)
}

.header-nav a svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0
}

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

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

.header-online .dot {
    width: 7px;
    height: 7px;
    background: var(--clr-green);
    border-radius: 50%;
    animation: dotBlink 1.8s ease-in-out infinite
}

@keyframes dotBlink {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .3
    }
}

.lang-dropdown {
    position: relative
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    font-size: .82rem;
    cursor: pointer;
    transition: background var(--transition)
}

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

.lang-btn .flag {
    width: 18px;
    height: 13px;
    object-fit: cover;
    border-radius: 2px
}

.lang-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--clr-header);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    min-width: 140px;
    overflow: hidden;
    box-shadow: var(--shadow);
    z-index: 200
}

.lang-dropdown-menu.open {
    display: block;
    animation: fadeDown .18s ease
}

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

.lang-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    color: var(--clr-text);
    font-size: .83rem;
    transition: background var(--transition)
}

.lang-dropdown-menu a:hover {
    background: rgba(255, 255, 255, .07);
    color: var(--clr-white)
}

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

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition)
}

.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-menu {
    display: none;
    background: var(--clr-header);
    border-top: 1px solid var(--clr-border);
    padding: 16px
}

.mobile-menu.open {
    display: block;
    animation: fadeDown .2s ease
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 14px
}

.mobile-menu nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--clr-text);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition)
}

.mobile-menu nav a:hover {
    background: rgba(255, 255, 255, .07)
}

.mobile-menu nav a svg {
    width: 16px;
    height: 16px
}

.hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #060607
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/aviator-b.png');
    background-size: cover;
    background-position: center;
    z-index: 0
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14, 14, 14, .88) 40%, rgba(14, 14, 14, .35) 100%)
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
    padding: 60px 0
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(229, 5, 57, .15);
    border: 1px solid rgba(229, 5, 57, .35);
    color: var(--clr-red);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 18px
}

.hero-title {
    font-size: clamp(1.7rem, 4vw, 2.9rem);
    font-weight: 800;
    line-height: 1.18;
    color: var(--clr-white);
    text-wrap: balance;
    margin-bottom: 14px
}

.hero-title span {
    color: var(--clr-red)
}

.hero-desc {
    font-size: 1rem;
    color: rgba(232, 232, 232, .8);
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 460px
}

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

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: .75rem;
    color: var(--clr-text-muted)
}

.hero-badge svg {
    width: 13px;
    height: 13px;
    color: var(--clr-gold)
}

.section {
    padding: 52px 0
}

.section-title {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 800;
    color: var(--clr-white);
    margin-bottom: 8px;
    text-wrap: balance
}

.section-subtitle {
    font-size: .92rem;
    color: var(--clr-text-muted);
    margin-bottom: 32px;
    line-height: 1.55
}

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

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

.jackpot-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition)
}

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

.jackpot-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .07;
    pointer-events: none
}

.jackpot-card.gold::before {
    background: linear-gradient(135deg, #f5c518, transparent)
}

.jackpot-card.silver::before {
    background: linear-gradient(135deg, #a8a8a8, transparent)
}

.jackpot-card.bronze::before {
    background: linear-gradient(135deg, #cd7f32, transparent)
}

.jackpot-badge {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px
}

.jackpot-card.gold .jackpot-badge {
    background: rgba(245, 197, 24, .15);
    color: var(--clr-gold);
    border: 1px solid rgba(245, 197, 24, .3)
}

.jackpot-card.silver .jackpot-badge {
    background: rgba(168, 168, 168, .15);
    color: #c0c0c0;
    border: 1px solid rgba(168, 168, 168, .3)
}

.jackpot-card.bronze .jackpot-badge {
    background: rgba(205, 127, 50, .15);
    color: #cd7f32;
    border: 1px solid rgba(205, 127, 50, .3)
}

.jackpot-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
    line-height: 1
}

.jackpot-name {
    font-size: .88rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.jackpot-amount {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--clr-white);
    margin-bottom: 16px;
    font-variant-numeric: tabular-nums
}

.jackpot-card.gold .jackpot-amount {
    color: var(--clr-gold)
}

.jackpot-card.silver .jackpot-amount {
    color: #d0d0d0
}

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

.jackpot-players {
    border-top: 1px solid var(--clr-border);
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.jackpot-player {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .8rem
}

.jackpot-player-nick {
    color: var(--clr-text);
    font-weight: 500
}

.jackpot-player-win {
    color: var(--clr-green);
    font-weight: 600;
    font-variant-numeric: tabular-nums
}

.winners-wrap {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden
}

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

.winners-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 420px
}

.winners-table thead th {
    background: var(--clr-card-alt);
    padding: 12px 16px;
    text-align: left;
    font-size: .8rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    border-bottom: 1px solid var(--clr-border)
}

.winners-table tbody tr {
    transition: background var(--transition)
}

.winners-table tbody tr:hover {
    background: rgba(255, 255, 255, .03)
}

.winners-table tbody td {
    padding: 11px 16px;
    font-size: .875rem;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    color: var(--clr-text)
}

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

.w-rank {
    font-weight: 700;
    color: var(--clr-text-muted);
    width: 40px
}

.w-rank.top1 {
    color: var(--clr-gold)
}

.w-rank.top2 {
    color: #c0c0c0
}

.w-rank.top3 {
    color: #cd7f32
}

.w-nick {
    font-weight: 600;
    color: var(--clr-white)
}

.w-mult {
    font-weight: 700;
    color: var(--clr-red);
    font-variant-numeric: tabular-nums
}

.w-win {
    font-weight: 700;
    color: var(--clr-green);
    font-variant-numeric: tabular-nums
}

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

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

.screenshot-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    position: relative;
    cursor: zoom-in
}

.screenshot-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .35s ease
}

.screenshot-item:hover img {
    transform: scale(1.04)
}

.screenshot-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition)
}

.screenshot-item:hover .screenshot-overlay {
    background: rgba(0, 0, 0, .3)
}

.screenshot-overlay svg {
    opacity: 0;
    transform: scale(.7);
    transition: opacity var(--transition), transform var(--transition);
    color: var(--clr-white)
}

.screenshot-item:hover .screenshot-overlay svg {
    opacity: 1;
    transform: scale(1)
}

.demo-wrap {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
}

.demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--clr-border);
    flex-wrap: wrap;
    gap: 10px
}

.demo-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-white);
    display: flex;
    align-items: center;
    gap: 8px
}

.demo-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(229, 5, 57, .12);
    color: var(--clr-red);
    border: 1px solid rgba(229, 5, 57, .25);
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.demo-iframe-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #0a0a0a
}

.demo-iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none
}

.demo-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px
}

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

.demo-info strong {
    color: var(--clr-text)
}

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

.strategy-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition)
}

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

.strategy-img {
    width: 100%;
    height: 148px;
    object-fit: cover
}

.strategy-body {
    padding: 16px
}

.strategy-tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    background: rgba(229, 5, 57, .12);
    color: var(--clr-red);
    border: 1px solid rgba(229, 5, 57, .2);
    border-radius: 20px;
    padding: 3px 9px;
    margin-bottom: 8px
}

.strategy-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 6px
}

.strategy-desc {
    font-size: .83rem;
    color: var(--clr-text-muted);
    line-height: 1.55;
    margin-bottom: 14px
}

.strategy-card .btn {
    width: 100%
}

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

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

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

.author-role {
    font-size: .82rem;
    color: var(--clr-red);
    font-weight: 600;
    margin-bottom: 10px
}

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

.author-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.author-social {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--clr-text-muted);
    font-size: .8rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    transition: background var(--transition), color var(--transition), border-color var(--transition)
}

.author-social:hover {
    background: rgba(229, 5, 57, .1);
    color: var(--clr-red);
    border-color: rgba(229, 5, 57, .3)
}

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

.content-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px 32px
}

.content-block h1, .content-block h2, .content-block h3, .content-block h4, .content-block h5, .content-block h6 {
    color: var(--clr-white);
    line-height: 1.3;
    margin-top: 1.4em;
    margin-bottom: .6em;
    font-weight: 700
}

.content-block h1 {
    font-size: clamp(1.4rem, 3vw, 2rem)
}

.content-block h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.55rem);
    padding-bottom: .4em;
    border-bottom: 1px solid var(--clr-border)
}

.content-block h3 {
    font-size: clamp(1rem, 2vw, 1.25rem)
}

.content-block h4 {
    font-size: 1rem
}

.content-block p {
    color: var(--clr-text);
    line-height: 1.75;
    margin-bottom: 1em;
    font-size: .95rem
}

.content-block ul, .content-block ol {
    color: var(--clr-text);
    line-height: 1.75;
    margin-bottom: 1em;
    padding-left: 1.5em
}

.content-block ul {
    list-style: disc
}

.content-block ol {
    list-style: decimal
}

.content-block li {
    margin-bottom: .4em;
    font-size: .95rem
}

.content-block a {
    color: var(--clr-red);
    text-decoration: underline;
    text-underline-offset: 2px
}

.content-block a:hover {
    color: var(--clr-red-hover)
}

.content-block blockquote {
    border-left: 3px solid var(--clr-red);
    padding: 12px 16px;
    background: rgba(229, 5, 57, .06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.2em 0;
    color: var(--clr-text-muted);
    font-style: italic
}

.content-block table {
    width: auto;
    min-width: 60%;
    margin: 1.2em auto;
    border-collapse: collapse;
    font-size: .88rem
}

.content-block table th, .content-block table td {
    text-align: left;
    padding: 10px 16px;
    border: 1px solid var(--clr-border)
}

.content-block table th {
    background: var(--clr-card-alt);
    color: var(--clr-white);
    font-weight: 700;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .04em
}

.content-block table td {
    color: var(--clr-text)
}

.content-block table tbody tr:nth-child(even) td {
    background: rgba(255, 255, 255, .025)
}

.content-block img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    margin: 1em 0
}

.content-block hr {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 1.6em 0
}

.content-block code {
    background: rgba(255, 255, 255, .08);
    color: var(--clr-gold);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: .85em;
    font-family: monospace
}

.content-block pre {
    background: var(--clr-card-alt);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    overflow-x: auto;
    margin: 1.2em 0
}

.content-block pre code {
    background: none;
    padding: 0;
    color: var(--clr-text)
}

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

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    cursor: pointer;
    font-weight: 600;
    color: var(--clr-white);
    font-size: .93rem;
    gap: 10px;
    transition: background var(--transition)
}

.faq-question:hover {
    background: rgba(255, 255, 255, .03)
}

.faq-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--clr-red);
    transition: transform var(--transition)
}

.faq-item.open .faq-icon {
    transform: rotate(45deg)
}

.faq-answer {
    display: none;
    padding: 0 18px 14px;
    font-size: .88rem;
    color: var(--clr-text-muted);
    line-height: 1.65
}

.faq-item.open .faq-answer {
    display: block;
    animation: fadeDown .18s ease
}

.site-footer {
    background: var(--clr-header);
    border-top: 1px solid var(--clr-border);
    padding: 40px 0 20px
}

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

.footer-logo img {
    height: 34px;
    width: auto;
    margin-bottom: 12px
}

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

.footer-heading {
    font-size: .78rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px
}

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

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

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

.footer-divider {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 24px 0
}

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

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

.payment-badge {
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    font-size: .72rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    white-space: nowrap
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center
}

.trust-badge {
    background: rgba(40, 169, 9, .08);
    border: 1px solid rgba(40, 169, 9, .2);
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    font-size: .72rem;
    font-weight: 700;
    color: var(--clr-green);
    white-space: nowrap
}

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

.footer-provider img {
    height: 24px;
    width: auto;
    opacity: .6;
    filter: brightness(0) invert(1)
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
    justify-content: space-between
}

.footer-copy {
    font-size: .78rem;
    color: var(--clr-text-muted);
    line-height: 1.6
}

.footer-legal {
    font-size: .75rem;
    color: rgba(155, 155, 155, .65);
    line-height: 1.55;
    max-width: 680px;
    text-align: right
}


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

.lightbox.open {
    display: flex;
    animation: fadeIn .22s ease
}

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

.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow)
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, .1);
    border: none;
    color: var(--clr-white);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    transition: background var(--transition)
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, .2)
}

.lightbox-close svg {
    width: 22px;
    height: 22px
}

.swiper-screenshots {
    display: none
}

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

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

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

    .footer-top > div:first-child {
        grid-column: 1/-1
    }
}

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

    .header-nav {
        display: none
    }

    .burger {
        display: flex
    }

    .screenshots-grid {
        display: none
    }

    .swiper-screenshots {
        display: block
    }

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

    .author-card {
        grid-template-columns:1fr;
        text-align: center
    }

    .author-avatar {
        margin: 0 auto
    }

    .author-socials {
        justify-content: center
    }

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

    .footer-legal {
        text-align: left;
        max-width: 100%
    }

    .demo-header {
        flex-direction: column;
        align-items: flex-start
    }

    .hero-content {
        padding: 40px 0
    }

    .content-block {
        padding: 20px 16px
    }

    .content-block table {
        font-size: .8rem
    }

    .content-block table th, .content-block table td {
        padding: 7px 10px
    }
}

@media (max-width: 480px) {
    .btn--lg {
        padding: 12px 22px;
        font-size: .9rem
    }

    .jackpot-amount {
        font-size: 1.6rem
    }

    .widget-cta {
        padding: 10px 12px
    }

    .header-actions .btn--sm {
        font-size: .74rem;
        padding: 7px 10px
    }
}

.wpc-df20x {
    display: none !important
}

.ept-3fa {
    visibility: hidden;
    height: 0;
    overflow: hidden;
    position: absolute
}

.wp-block-u7f {
    pointer-events: none;
    opacity: 0;
    position: fixed;
    bottom: -9999px
}

.qr92-widget {
    display: none
}

.zx41-loop {
    animation: none !important;
    display: none !important
}

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

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

.section--dark {
    background: var(--clr-card-alt)
}

.divider-wave {
    height: 32px;
    overflow: hidden;
    line-height: 0
}

.divider-wave svg {
    display: block;
    width: 100%;
    height: 32px
}

.container.hfjf {
    max-width: 980px;
    margin: 0 auto;
    padding: 28px 28px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.container.hfjf h1 {
    font-size: clamp(1.55rem, 3.2vw, 2.15rem);
    font-weight: 800;
    line-height: 1.18;
    color: var(--clr-white);
    margin: 0 0 14px;
}

.container.hfjf h2 {
    font-size: clamp(1.15rem, 2.4vw, 1.45rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--clr-white);
    margin: 26px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--clr-border);
}

.container.hfjf p {
    font-size: .96rem;
    line-height: 1.75;
    color: rgba(232, 232, 232, .88);
    margin: 0 0 14px;
}

.container.hfjf a {
    color: var(--clr-red);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.container.hfjf a:hover {
    color: var(--clr-red-hover);
}

.container.hfjf ul {
    list-style: disc;
    padding-left: 1.25em;
    margin: 0 0 16px;
}

.container.hfjf li {
    color: rgba(232, 232, 232, .88);
    line-height: 1.7;
    margin: 0 0 8px;
}

.container.hfjf strong {
    color: var(--clr-white);
}

.container.hfjf blockquote {
    margin: 18px 0;
    padding: 12px 16px;
    border-left: 3px solid var(--clr-red);
    background: rgba(229, 5, 57, .06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--clr-text-muted);
}

.container.hfjf hr {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 22px 0;
}

.container.hfjf table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    overflow-x: auto;
    display: block;
    border-radius: var(--radius-md);
}

.container.hfjf table th,
.container.hfjf table td {
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    font-size: .9rem;
    text-align: left;
    white-space: nowrap;
}

.container.hfjf table th {
    background: var(--clr-card-alt);
    color: var(--clr-white);
    font-weight: 700;
}

.container.hfjf table td {
    color: rgba(232, 232, 232, .88);
    background: rgba(255, 255, 255, .02);
}

@media (max-width: 900px) {
    .container.hfjf {
        max-width: 760px;
        padding: 22px 18px;
    }
}

@media (max-width: 600px) {
    .container.hfjf {
        max-width: none;
        padding: 18px 16px;
        border-radius: var(--radius-md);
    }

    .container.hfjf p,
    .container.hfjf li {
        font-size: .94rem;
    }

    .container.hfjf table th,
    .container.hfjf table td {
        padding: 8px 10px;
        font-size: .82rem;
    }
}

@media (max-width: 600px) {
    #game .demo-iframe-wrap {
        padding-top: 0;
        height: calc(100dvh - 64px);
        min-height: 520px;
    }

    #game .demo-iframe-wrap iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

}

@media (max-width: 600px) and (orientation: landscape) {
    #game .demo-iframe-wrap {
        height: calc(100dvh - 56px);
        min-height: 420px;
    }
}