:root {
    --c-nav: #2B2B43;
    --c-nav-alt: #23233a;
    --c-btn-demo: #4FD8E8;
    --c-btn-play: #35DA02;
    --c-bg: #03828E;
    --c-bg-dark: #026e78;
    --c-bg-light: #04909e;
    --c-text: #ffffff;
    --c-text-muted: rgba(255, 255, 255, 0.75);
    --c-text-dark: #1a1a2e;
    --c-card: rgba(255, 255, 255, 0.08);
    --c-card-border: rgba(255, 255, 255, 0.15);
    --c-gold: #FFD700;
    --c-silver: #C0C0C0;
    --c-bronze: #CD7F32;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    --transition: 0.28s cubic-bezier(.4, 0, .2, 1);
    --font-primary: 'Nunito', 'Rubik', sans-serif;
    --font-heading: 'Fredoka', 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--c-bg);
    color: var(--c-text);
    min-height: 100vh;
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--c-btn-demo);
    text-decoration: none;
    transition: opacity var(--transition);
}

a:hover {
    opacity: .82;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.x7f2a {
    display: none;
}

.wpml-ls {
    display: none;
}

.bx-41a9 {
    overflow: hidden;
}

.rx-f02b {
    visibility: visible;
}

.mx-7c1e {
    position: relative;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

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

.btn:active {
    transform: translateY(0);
}

.btn--demo {
    background: var(--c-btn-demo);
    color: var(--c-text-dark);
}

.btn--play {
    background: var(--c-btn-play);
    color: #fff;
    box-shadow: 0 0 16px rgba(53, 218, 2, 0.4);
}

.btn--play:hover {
    box-shadow: 0 0 28px rgba(53, 218, 2, 0.6);
}

.btn--nav {
    background: transparent;
    border: 1.5px solid var(--c-btn-demo);
    color: var(--c-btn-demo);
    padding: 7px 16px;
    font-size: 13px;
}

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

.btn--lg {
    padding: 14px 32px;
    font-size: 17px;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.section {
    padding: 60px 0;
}

.section--alt {
    background: var(--c-bg-dark);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.25;
}

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

.box {
    background: var(--c-card);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-md);
    padding: 24px;
    backdrop-filter: blur(8px);
}

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

.grid-2 > * {
    flex: 1 1 calc(50% - 10px);
    min-width: 260px;
}

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

.grid-3 > * {
    flex: 1 1 calc(33.333% - 14px);
    min-width: 240px;
}

header.site-header {
    background: var(--c-nav);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    flex-wrap: nowrap;
}

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

.header-logo img {
    height: 40px;
    width: auto;
    border-radius: 6px;
}

.header-logo-text {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

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

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    flex-wrap: nowrap;
}

.header-nav a.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--c-text-muted);
    font-size: 13.5px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

.header-nav a.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

.header-nav a.nav-link svg {
    flex-shrink: 0;
}

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

.online-count {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(79, 216, 232, 0.13);
    border: 1px solid rgba(79, 216, 232, 0.3);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 12px;
    color: var(--c-btn-demo);
    font-weight: 700;
    white-space: nowrap;
}

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

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: .5;
        transform: scale(1.4);
    }
}

.lang-dropdown {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    cursor: pointer;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    transition: background var(--transition);
}

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

.lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--c-nav-alt);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    min-width: 130px;
    overflow: hidden;
    box-shadow: var(--shadow);
    z-index: 100;
}

.lang-menu.open {
    display: block;
}

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

.lang-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px;
    height: 34px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
}

.burger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-nav);
    z-index: 999;
    flex-direction: column;
    padding: 80px 24px 40px;
    gap: 8px;
    overflow-y: auto;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a.nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background var(--transition);
}

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

.mobile-menu-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
}

.mobile-menu-btns {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.mobile-menu-btns .btn {
    flex: 1 1 45%;
    justify-content: center;
}

.hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #01565e 0%, #03828e 50%, #026e78 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/game-hero.png');
    background-size: cover;
    background-position: center;
    opacity: .35;
    transition: opacity 1s;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(3, 130, 142, 0.92) 0%, rgba(3, 130, 142, 0.55) 60%, rgba(3, 130, 142, 0.2) 100%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(79, 216, 232, 0.18);
    border: 1px solid rgba(79, 216, 232, 0.4);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--c-btn-demo);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #fff;
}

.hero-title em {
    color: var(--c-btn-demo);
    font-style: normal;
}

.hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    line-height: 1.65;
}

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

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

.hero-stat {
    text-align: center;
}

.hero-stat-val {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--c-btn-demo);
}

.hero-stat-label {
    font-size: 11px;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.pros-cons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.pros-block, .cons-block {
    flex: 1 1 calc(50% - 10px);
    min-width: 240px;
    border-radius: var(--radius-md);
    padding: 24px;
}

.pros-block {
    background: rgba(53, 218, 2, 0.1);
    border: 1.5px solid rgba(53, 218, 2, 0.3);
}

.cons-block {
    background: rgba(255, 80, 80, 0.1);
    border: 1.5px solid rgba(255, 80, 80, 0.25);
}

.pros-cons-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pros-cons-title svg {
    flex-shrink: 0;
}

.pros-block .pros-cons-title {
    color: var(--c-btn-play);
}

.cons-block .pros-cons-title {
    color: #ff6060;
}

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

.pros-cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
}

.pros-cons-list li::before {
    content: '';
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pros-block .pros-cons-list li::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2335DA02'%3E%3Cpath d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E") center/18px no-repeat;
}

.cons-block .pros-cons-list li::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23ff6060'%3E%3Cpath d='M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z'/%3E%3C/svg%3E") center/18px no-repeat;
}

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

.jackpot-card {
    flex: 1 1 calc(33.333% - 14px);
    min-width: 220px;
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition);
}

.jackpot-card:hover {
    transform: translateY(-4px);
}

.jackpot-card--gold {
    background: linear-gradient(135deg, #7c5c00, #c8950a, #e8c050);
    border: 2px solid #FFD700;
}

.jackpot-card--silver {
    background: linear-gradient(135deg, #3a3a3a, #7a7a7a, #b0b0b0);
    border: 2px solid #C0C0C0;
}

.jackpot-card--bronze {
    background: linear-gradient(135deg, #4a2800, #8b4500, #cd7f32);
    border: 2px solid #CD7F32;
}

.jackpot-tier {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    opacity: .8;
    margin-bottom: 6px;
}

.jackpot-icon {
    font-size: 36px;
    margin-bottom: 8px;
}

.jackpot-amount {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    margin-bottom: 16px;
    min-height: 2.5rem;
}

.jackpot-players {
    margin-top: 8px;
}

.jackpot-players-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .07em;
    opacity: .65;
    margin-bottom: 10px;
    font-weight: 700;
}

.jackpot-player {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
}

.jackpot-player:last-child {
    border-bottom: none;
}

.player-nick {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.player-win {
    font-weight: 700;
    color: #fff;
}

.bonuses-slider {
    position: relative;
    overflow: hidden;
}

.bonuses-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(.4, 0, .2, 1);
}

.bonus-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 280px;
    background: var(--c-nav);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition);
}

.bonus-card:hover {
    transform: translateY(-3px);
}

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

.bonus-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--c-btn-play), #28b800);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.bonus-casino-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.bonus-amount {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--c-btn-demo);
    margin-bottom: 6px;
    line-height: 1.1;
}

.bonus-desc {
    font-size: 13.5px;
    color: var(--c-text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.bonus-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.bonus-rating svg {
    color: var(--c-gold);
}

.bonus-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 20px;
}

.bonus-features li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
}

.bonus-features li::before {
    content: '✓';
    color: var(--c-btn-play);
    font-weight: 700;
}

.bonus-wager {
    font-size: 11.5px;
    color: var(--c-text-muted);
    margin-bottom: 16px;
}

.slider-controls {
    display: none;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.slider-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.slider-dots {
    display: flex;
    gap: 7px;
    align-items: center;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    padding: 0;
}

.slider-dot.active {
    background: var(--c-btn-demo);
    transform: scale(1.3);
}

.demo-block {
    background: var(--c-nav);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: rgba(0, 0, 0, 0.2);
    flex-wrap: wrap;
    gap: 12px;
}

.demo-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.demo-iframe-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
}

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

.demo-footer {
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    background: rgba(0, 0, 0, 0.15);
}

.demo-info {
    font-size: 13.5px;
    color: var(--c-text-muted);
}

.demo-info span {
    color: var(--c-btn-demo);
    font-weight: 700;
}

.reviews-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.review-card {
    flex: 1 1 calc(33.333% - 14px);
    min-width: 240px;
    background: var(--c-nav);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: transform var(--transition);
}

.review-card:hover {
    transform: translateY(-3px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-btn-demo), var(--c-btn-play));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.review-meta {
    flex: 1;
}

.review-name {
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    margin-bottom: 4px;
}

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

.review-stars svg {
    color: #FFD700;
}

.review-date {
    font-size: 11px;
    color: var(--c-text-muted);
    margin-top: 3px;
}

.review-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
}

.review-form-wrap {
    background: var(--c-nav);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    max-width: 600px;
    margin: 0 auto;
}

.review-form-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

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

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text-muted);
}

.form-input, .form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 14.5px;
    outline: none;
    transition: border-color var(--transition), background var(--transition);
    resize: vertical;
}

.form-input::placeholder, .form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--c-btn-demo);
    background: rgba(255, 255, 255, 0.1);
}

.form-textarea {
    min-height: 100px;
}

.form-success {
    display: none;
    background: rgba(53, 218, 2, 0.15);
    border: 1.5px solid rgba(53, 218, 2, 0.4);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--c-btn-play);
    font-weight: 600;
    margin-top: 14px;
    font-size: 14.5px;
}

.form-success.show {
    display: block;
}

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

.faq-item {
    background: var(--c-nav);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: none;
    border: none;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    gap: 10px;
    transition: background var(--transition);
}

.faq-q:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-q-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(79, 216, 232, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-q-icon {
    transform: rotate(180deg);
    background: var(--c-btn-demo);
}

.faq-a {
    display: none;
    padding: 0 20px 16px;
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.65;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

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

.content-block {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.content-block h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--c-btn-demo);
    margin: 24px 0 10px;
}

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

.content-block h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #fff;
    margin: 18px 0 8px;
}

.content-block p {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    font-size: 15px;
}

.content-block ul, .content-block ol {
    margin: 10px 0 12px 20px;
}

.content-block li {
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
    font-size: 15px;
}

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

.content-block th {
    background: rgba(79, 216, 232, 0.15);
    color: var(--c-btn-demo);
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.content-block td {
    padding: 9px 14px;
    font-size: 14px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
}

.content-block tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.04);
}

.author-block {
    background: var(--c-nav);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.12);
    max-width: 800px;
    margin: 0 auto;
}

.author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4FD8E8, #35DA02);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.author-role {
    font-size: 13px;
    color: var(--c-btn-demo);
    font-weight: 600;
    margin-bottom: 10px;
}

.author-bio {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
    margin-bottom: 12px;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(79, 216, 232, 0.15);
    border: 1px solid rgba(79, 216, 232, 0.3);
    color: var(--c-btn-demo);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: background var(--transition);
}

.author-link:hover {
    background: rgba(79, 216, 232, 0.25);
}

footer.site-footer {
    background: var(--c-nav);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 48px 0 0;
    margin-top: auto;
}

.footer-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.footer-col {
    flex: 1 1 200px;
}

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

.footer-logo img {
    height: 36px;
    border-radius: 5px;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

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

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

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
}

.footer-links a {
    font-size: 13.5px;
    color: var(--c-text-muted);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--c-btn-demo);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.footer-badge {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: .05em;
}

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

.footer-payment {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}

.footer-provider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.footer-provider img {
    height: 28px;
    opacity: .75;
    filter: grayscale(20%);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 20px 0;
    text-align: center;
}

.footer-legal {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 10px;
}

.footer-copyright {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.45);
}

.footer-copyright a {
    color: rgba(255, 255, 255, 0.5);
}

.tag-cloud {
    display: none;
}

.wpcf7 {
    display: none;
}

.elementor-widget-container {
    display: none;
}

.entry-meta-yx4b {
    display: none;
}

.wp-block-kf9a {
    display: none;
}

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

.tech-content h2 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    color: var(--c-btn-demo);
    margin: 28px 0 10px;
}

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

.tech-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
    margin: 18px 0 8px;
}

.tech-content p {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    font-size: 15px;
}

.tech-content ul, .tech-content ol {
    margin: 10px 0 14px 22px;
}

.tech-content li {
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.6;
}

.games-section {
    padding: 0;
}

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

.game-info-table th {
    background: rgba(79, 216, 232, 0.12);
    color: var(--c-btn-demo);
    padding: 10px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.game-info-table td {
    padding: 9px 16px;
    font-size: 14px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.82);
}

.game-info-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.04);
}

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

.fade-in {
    animation: fadeInUp 0.6s ease both;
}

.fade-in-delay-1 {
    animation-delay: 0.1s;
}

.fade-in-delay-2 {
    animation-delay: 0.2s;
}

.fade-in-delay-3 {
    animation-delay: 0.3s;
}

@media (max-width: 900px) {
    .header-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .bonus-card {
        flex: 0 0 calc(80vw);
        min-width: calc(80vw);
    }

    .slider-controls {
        display: flex;
    }

    .bonuses-track {
        overflow-x: visible;
    }
}

@media (max-width: 700px) {
    .hero-content {
        padding: 40px 0;
    }

    .pros-block, .cons-block {
        flex: 1 1 100%;
    }

    .jackpot-card {
        flex: 1 1 100%;
    }

    .review-card {
        flex: 1 1 100%;
    }

    .bonus-card {
        flex: 0 0 calc(92vw);
        min-width: calc(92vw);
    }

    .grid-2 > *, .grid-3 > * {
        flex: 1 1 100%;
    }

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

    .footer-grid {
        gap: 24px;
    }

    .sticky-widget {
        flex-direction: column;
        padding: 12px 14px;
        gap: 8px;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .section {
        padding: 40px 0;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        justify-content: center;
    }

    .hero-stats {
        gap: 16px;
    }
}
