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

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

:root {
    --c-dark: #0e0405;
    --c-dark-2: #1a0608;
    --c-red: #bb3527;
    --c-red-2: #c73d2f;
    --c-btn-blue: #0184a7;
    --c-btn-blue-hover: #026d8c;
    --c-btn-green: #00be31;
    --c-btn-green-hover: #00a029;
    --c-text-light: #f5f0ee;
    --c-text-muted: #c4b4b0;
    --c-gold: #f0c040;
    --c-gold-2: #d4a020;
    --c-border: rgba(255, 255, 255, 0.12);
    --c-card: rgba(14, 4, 5, 0.72);
    --radius: 10px;
    --radius-lg: 16px;
    --trans: 0.22s ease;
}

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

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--c-red);
    color: var(--c-text-light);
    line-height: 1.55;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 0.6em;
}

h2 {
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    margin-bottom: 0.5em;
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 0.4em;
}

p {
    margin-bottom: 0.9em;
    line-height: 1.6;
}

ul, ol {
    padding-left: 1.4em;
    margin-bottom: 0.9em;
}

li {
    margin-bottom: 0.3em;
    line-height: 1.55;
}

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all var(--trans);
    white-space: nowrap;
    letter-spacing: 0.03em;
}

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

.btn--green:hover {
    background: var(--c-btn-green-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 190, 49, 0.35);
}

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

.btn--blue:hover {
    background: var(--c-btn-blue-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(1, 132, 167, 0.35);
}

.btn--gold {
    background: var(--c-gold);
    color: #1a0608;
}

.btn--gold:hover {
    background: var(--c-gold-2);
    color: #1a0608;
    transform: translateY(-1px);
}

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

.btn--outline:hover {
    background: var(--c-text-light);
    color: var(--c-dark);
}

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

.btn--lg {
    padding: 14px 30px;
    font-size: 1.15rem;
}

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

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

.section-title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--c-gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

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

.card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    backdrop-filter: blur(8px);
}

.card--dark {
    background: var(--c-dark);
}

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

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

.badge--gold {
    background: var(--c-gold);
    color: var(--c-dark);
}

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

.badge--red {
    background: var(--c-red-2);
    color: #fff;
}

.stars {
    color: var(--c-gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
    margin: 2rem 0;
    border: none;
}

.mb-Xr4t1 {
    display: none;
}

.mb-Kq9v2 {
    visibility: hidden;
    position: absolute;
}

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

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

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

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

.header-logo .site-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--c-gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1;
}

.header-logo .site-name span {
    color: var(--c-text-light);
    font-weight: 400;
    font-size: 0.85em;
    display: block;
}

.header-jackpot {
    background: linear-gradient(135deg, var(--c-dark-2), #2a0810);
    border: 1px solid var(--c-gold);
    border-radius: 8px;
    padding: 6px 14px;
    text-align: center;
    animation: jackpotPulse 3s ease-in-out infinite;
}

.header-jackpot .jk-label {
    font-size: 0.72rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.header-jackpot .jk-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--c-gold);
}

@keyframes jackpotPulse {
    0%, 100% {
        box-shadow: 0 0 8px rgba(240, 192, 64, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(240, 192, 64, 0.7);
    }
}

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--c-text-muted);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all var(--trans);
    text-decoration: none;
}

.header-nav a:hover {
    color: var(--c-gold);
    background: rgba(255, 255, 255, 0.06);
}

.header-nav svg {
    width: 15px;
    height: 15px;
}

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

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

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

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    background: var(--c-dark-2);
    border-top: 1px solid var(--c-border);
    padding: 12px 16px 16px;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid var(--c-border);
    color: var(--c-text-light);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    color: var(--c-gold);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    background: var(--c-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-image: url('/images/hero-br.png');
    filter: brightness(0.55);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14, 4, 5, 0.85) 40%, rgba(14, 4, 5, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 3rem 0;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(240, 192, 64, 0.15);
    border: 1px solid var(--c-gold);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--c-gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.hero h1 {
    color: var(--c-text-light);
    font-size: clamp(2rem, 5vw, 3.2rem);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.hero h1 em {
    color: var(--c-gold);
    font-style: normal;
}

.hero p {
    font-size: 1.1rem;
    color: var(--c-text-muted);
    max-width: 480px;
    margin-bottom: 1.5rem;
}

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

.hero-rtp {
    margin-top: 1.5rem;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-rtp-item {
    text-align: center;
}

.hero-rtp-item .rtp-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-gold);
}

.hero-rtp-item .rtp-lbl {
    font-size: 0.75rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.breadcrumbs {
    background: rgba(14, 4, 5, 0.6);
    padding: 10px 0;
    border-bottom: 1px solid var(--c-border);
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs li {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumbs li::after {
    content: '›';
    color: var(--c-text-muted);
    opacity: 0.5;
}

.breadcrumbs li:last-child::after {
    display: none;
}

.breadcrumbs a {
    color: var(--c-text-muted);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--c-gold);
}

.breadcrumbs li:last-child {
    color: var(--c-gold);
}

.main-content {
    padding: 2rem 0;
}

.section-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.section-block--dark {
    background: rgba(14, 4, 5, 0.85);
}

.casino-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.casino-item {
    background: var(--c-dark);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 1.1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    transition: all var(--trans);
    position: relative;
    overflow: hidden;
}

.casino-item:hover {
    border-color: var(--c-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.casino-item--top {
    border-color: var(--c-gold);
}

.casino-item--top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-gold), var(--c-gold-2));
}

.casino-rank {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--c-dark-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--c-text-muted);
    flex-shrink: 0;
}

.casino-item--top .casino-rank {
    background: var(--c-gold);
    color: var(--c-dark);
}

.casino-logo {
    width: 80px;
    flex-shrink: 0;
}

.casino-logo img {
    width: 80px;
    height: 44px;
    object-fit: contain;
    border-radius: 6px;
    background: #fff;
    padding: 4px;
}

.casino-info {
    flex: 1;
    min-width: 200px;
}

.casino-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-text-light);
    margin-bottom: 4px;
}

.casino-bonus {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-btn-green);
    margin-bottom: 4px;
}

.casino-pros {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.casino-pros span {
    font-size: 0.83rem;
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.casino-pros span::before {
    content: '✓';
    color: var(--c-btn-green);
    font-weight: 700;
}

.casino-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
    min-width: 80px;
}

.casino-rating {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--c-gold);
}

.casino-license {
    font-size: 0.75rem;
    color: var(--c-text-muted);
}

.casino-games {
    font-size: 0.78rem;
    color: var(--c-text-muted);
}

.casino-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 130px;
}

.casino-au-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--c-text-muted);
    margin-bottom: 4px;
}

.casino-tc {
    font-size: 0.7rem;
    color: var(--c-text-muted);
    text-align: center;
}

.casino-tc a {
    color: var(--c-text-muted);
    text-decoration: underline;
}

.casino-age {
    font-size: 0.7rem;
    color: var(--c-text-muted);
    text-align: center;
}

.ajax-load-more {
    text-align: center;
    margin-top: 1.25rem;
}

.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

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

.demo-frame-wrap {
    position: relative;
}

.demo-frame-wrap iframe {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    border: 2px solid var(--c-gold);
    background: #000;
}

.demo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 4, 5, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    gap: 12px;
}

.demo-overlay p {
    color: var(--c-text-muted);
    font-size: 0.9rem;
    text-align: center;
    max-width: 260px;
}

.game-details-table {
    width: 100%;
    border-collapse: collapse;
}

.game-details-table tr {
    border-bottom: 1px solid var(--c-border);
}

.game-details-table tr:last-child {
    border-bottom: none;
}

.game-details-table td {
    padding: 9px 12px;
    font-size: 0.9rem;
    vertical-align: middle;
}

.game-details-table td:first-child {
    color: var(--c-text-muted);
    font-weight: 600;
    width: 48%;
    display: flex;
    align-items: center;
    gap: 8px;
}

.game-details-table td:last-child {
    color: var(--c-text-light);
    font-weight: 600;
}

.game-details-table tr:hover {
    background: rgba(255, 255, 255, 0.04);
}

.gdt-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--c-btn-blue);
}

.mobile-block .phone-frame {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.phone-mockup {
    width: 220px;
    background: #111;
    border-radius: 32px;
    border: 4px solid #333;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    position: relative;
    padding: 12px 6px;
}

.phone-mockup::before {
    content: '';
    display: block;
    width: 70px;
    height: 8px;
    background: #222;
    border-radius: 4px;
    margin: 0 auto 10px;
}

.phone-mockup img {
    width: 100%;
    border-radius: 18px;
}

.mobile-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.25rem;
}

.mobile-table td {
    padding: 8px 10px;
    font-size: 0.88rem;
    border: 1px solid var(--c-border);
}

.mobile-table td:first-child {
    color: var(--c-text-muted);
    font-weight: 600;
    width: 45%;
}

.mobile-table td:last-child {
    color: var(--c-text-light);
}

.mobile-store-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.video-block iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    border: 2px solid var(--c-border);
    background: #000;
}

.review-block {
    line-height: 1.65;
}

.review-block .author-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(14, 4, 5, 0.6);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 12px 16px;
    margin-bottom: 1.5rem;
}

.author-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-gold), var(--c-gold-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--c-dark);
    flex-shrink: 0;
}

.author-info .author-name {
    font-weight: 700;
    color: var(--c-text-light);
    font-size: 1rem;
}

.author-info .author-title {
    font-size: 0.82rem;
    color: var(--c-text-muted);
}

.author-info a {
    color: var(--c-btn-blue);
    font-size: 0.82rem;
}

.review-block h2 {
    color: var(--c-gold);
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
}

.review-block h3 {
    color: var(--c-text-light);
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
}

.review-block ul li::marker {
    color: var(--c-gold);
}

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

.review-block table th {
    background: var(--c-dark);
    color: var(--c-gold);
    padding: 9px 12px;
    text-align: left;
    font-size: 0.9rem;
    border: 1px solid var(--c-border);
}

.review-block table td {
    padding: 8px 12px;
    border: 1px solid var(--c-border);
    font-size: 0.9rem;
}

.review-block table tr:nth-child(even) {
    background: rgba(14, 4, 5, 0.3);
}

.similar-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.similar-game-card {
    background: var(--c-dark);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--trans);
}

.similar-game-card:hover {
    border-color: var(--c-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.similar-game-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.similar-game-card .game-card-body {
    padding: 10px 12px;
}

.similar-game-card .game-card-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--c-text-light);
    margin-bottom: 4px;
}

.similar-game-card .game-card-desc {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    margin-bottom: 10px;
    line-height: 1.4;
}

.similar-game-card .game-card-btns {
    display: flex;
    gap: 6px;
}

.faq-block {
}

.faq-item {
    border-bottom: 1px solid var(--c-border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    color: var(--c-text-light);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transition: color var(--trans);
}

.faq-q:hover {
    color: var(--c-gold);
}

.faq-q .faq-icon {
    color: var(--c-gold);
    font-size: 1.2rem;
    transition: transform var(--trans);
    flex-shrink: 0;
}

.faq-item.active .faq-q {
    color: var(--c-gold);
}

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

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-a-inner {
    padding-bottom: 14px;
    color: var(--c-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

footer.site-footer {
    background: var(--c-dark);
    border-top: 2px solid var(--c-red);
    padding: 2.5rem 0 1rem;
    margin-top: 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--c-border);
}

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

.footer-logo img {
    height: 52px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    line-height: 1.5;
}

.footer-nav h4 {
    color: var(--c-gold);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li {
    margin-bottom: 6px;
}

.footer-nav ul li a {
    color: var(--c-text-muted);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color var(--trans);
}

.footer-nav ul li a:hover {
    color: var(--c-text-light);
}

.footer-nav-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.footer-logos {
}

.footer-logos h4 {
    color: var(--c-gold);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.footer-logo-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 12px;
}

.footer-logo-pill {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.footer-trust-badge {
    background: rgba(14, 4, 5, 0.8);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.footer-bottom {
    padding-top: 1.2rem;
    text-align: center;
}

.footer-legal {
    font-size: 0.78rem;
    color: var(--c-text-muted);
    line-height: 1.5;
    margin-bottom: 8px;
}

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


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

table.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 400px;
}

.data-table th {
    background: var(--c-dark);
    color: var(--c-gold);
    padding: 10px 14px;
    text-align: left;
    font-weight: 700;
    border: 1px solid var(--c-border);
    white-space: nowrap;
}

.data-table td {
    padding: 9px 14px;
    border: 1px solid var(--c-border);
    color: var(--c-text-light);
    vertical-align: middle;
}

.data-table tr:nth-child(even) {
    background: rgba(14, 4, 5, 0.35);
}

.data-table tr:hover {
    background: rgba(240, 192, 64, 0.06);
}

.star-rating {
    display: flex;
    gap: 2px;
}

.star {
    color: var(--c-gold);
    font-size: 0.95rem;
}

.star.empty {
    color: var(--c-text-muted);
}

.provider-logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.provider-logo img {
    height: 28px;
    width: auto;
}

.social-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    transition: all var(--trans);
    text-decoration: none;
    font-size: 0;
}

.social-link:hover {
    background: var(--c-btn-blue);
    color: #fff;
    border-color: var(--c-btn-blue);
    transform: translateY(-2px);
}

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

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

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

.info-page {
    padding: 2.5rem 0;
}

.info-page h1 {
    color: var(--c-gold);
    margin-bottom: 1.2rem;
}

.info-page h2 {
    color: var(--c-text-light);
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
    font-size: 1.3rem;
}

.info-page p, .info-page li {
    color: var(--c-text-muted);
    line-height: 1.65;
}

.info-page a {
    color: var(--c-btn-blue);
}

.text-content h1, .text-content h2, .text-content h3 {
    margin-top: 1.4rem;
    margin-bottom: 0.5rem;
}

.text-content h1 {
    color: var(--c-gold);
}

.text-content h2 {
    color: var(--c-text-light);
    font-size: 1.4rem;
}

.text-content h3 {
    color: var(--c-text-light);
    font-size: 1.2rem;
}

.text-content p {
    color: var(--c-text-muted);
}

.text-content ul, .text-content ol {
    color: var(--c-text-muted);
}

.text-content ul li::marker {
    color: var(--c-gold);
}

.text-content a {
    color: var(--c-btn-blue);
}

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

.text-content table th {
    background: var(--c-dark);
    color: var(--c-gold);
    padding: 9px 12px;
    text-align: left;
    border: 1px solid var(--c-border);
    font-size: 0.9rem;
}

.text-content table td {
    padding: 8px 12px;
    border: 1px solid var(--c-border);
    font-size: 0.9rem;
    color: var(--c-text-light);
}

.text-content table tr:nth-child(even) {
    background: rgba(14, 4, 5, 0.3);
}

.text-content blockquote {
    border-left: 3px solid var(--c-gold);
    padding: 10px 16px;
    background: rgba(14, 4, 5, 0.4);
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
    color: var(--c-text-muted);
    font-style: italic;
}

.text-content img {
    border-radius: var(--radius);
    max-width: 100%;
}

.wp-class-mznq9 {
    display: inline;
}

.wp-content-area-bx71 {
    position: static;
}

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

    .burger {
        display: flex;
    }

    .header-jackpot {
        display: none;
    }

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

@media (max-width: 768px) {
    .casino-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .casino-actions {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .similar-games-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }


    .hero {
        min-height: 340px;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
    }

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

    .mobile-store-btns {
        flex-direction: column;
    }
}

.game-demo-x7m4p9,
.game-video-r8k2m5 {
    width: 100%;
    padding: 48px 16px;
    background: #180707;
}

.game-video-r8k2m5 {
    background: #220a08;
}

.game-demo-x7m4p9 *,
.game-video-r8k2m5 * {
    box-sizing: border-box;
}

.game-demo-x7m4p9__container,
.game-video-r8k2m5__container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.game-demo-x7m4p9__title,
.game-video-r8k2m5__title {
    margin: 0 0 10px;
    color: #f0c040;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.15;
    text-align: center;
}

.game-demo-x7m4p9__text {
    max-width: 720px;
    margin: 0 auto 24px;
    color: #d4c8c4;
    font-size: 17px;
    line-height: 1.5;
    text-align: center;
}

.game-demo-x7m4p9__frame,
.game-video-r8k2m5__frame {
    position: relative;
    width: 100%;
    max-width: 100%;
    background: #000;
    border: 2px solid rgba(240, 192, 64, 0.35);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    isolation: isolate;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.game-demo-x7m4p9__frame {
    height: 620px;
}

.game-video-r8k2m5__frame {
    aspect-ratio: 16 / 9;
}

.game-demo-x7m4p9__frame iframe,
.game-video-r8k2m5__frame iframe {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: #000;
    pointer-events: auto;
    touch-action: auto;
    -webkit-user-select: auto;
    user-select: auto;
}

.game-demo-x7m4p9__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}

.game-demo-x7m4p9__button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 0;
    border-radius: 10px;
    font: inherit;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    touch-action: manipulation;
}

.game-demo-x7m4p9__button--demo {
    background: #0184a7;
    color: #fff;
}

.game-demo-x7m4p9__button--real {
    background: #00be31;
    color: #fff;
}

@media (max-width: 767px) {
    .game-demo-x7m4p9,
    .game-video-r8k2m5 {
        padding: 20px 12px;
    }

    .game-demo-x7m4p9 {
        min-height: 100svh;
        display: flex;
    }

    .game-demo-x7m4p9__container {
        min-height: calc(100svh - 40px);
        display: flex;
        flex-direction: column;
    }

    .game-demo-x7m4p9__title,
    .game-video-r8k2m5__title {
        font-size: 25px;
    }

    .game-demo-x7m4p9__text {
        margin-bottom: 16px;
        font-size: 15px;
    }

    .game-demo-x7m4p9__frame {
        flex: 1;
        min-height: 540px;
        height: auto;
        border-radius: 12px;
    }

    .game-video-r8k2m5__frame {
        width: 100%;
        aspect-ratio: 16 / 9;
        border-radius: 12px;
    }

    .game-demo-x7m4p9__frame iframe,
    .game-video-r8k2m5__frame iframe {
        pointer-events: auto !important;
        touch-action: manipulation !important;
    }

    .game-demo-x7m4p9__actions {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 14px;
    }

    .game-demo-x7m4p9__button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .game-demo-x7m4p9__frame {
        min-height: 500px;
    }
}

.xhdr,
.xhdr * {
    box-sizing: border-box;
}

.xhdr {
    top: 0;
    z-index: 9999;
    width: 100%;
    background: #0e0405;
    border-bottom: 2px solid #bb3527;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.xhdr__container {
    width: 100%;
    max-width: 1240px;
    min-height: 68px;
    margin: 0 auto;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.xhdr__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.xhdr__logo img {
    display: block;
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.xhdr__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-left: auto;
}

.xhdr__nav a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 12px;
    border-radius: 8px;
    color: #c4b4b0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.xhdr__nav a:hover {
    color: #f0c040;
    background: rgba(255, 255, 255, 0.07);
}

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

.xhdr__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 18px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    touch-action: manipulation;
}

.xhdr__button--green {
    background: #00be31;
}

.xhdr__button--blue {
    background: #0184a7;
}

.xhdr__burger {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    touch-action: manipulation;
}

.xhdr__burger span {
    display: block;
    width: 23px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

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

.xhdr__burger.is-open span:nth-child(2) {
    opacity: 0;
}

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

.xhdr-mobile {
    width: 100%;
    background: #170608;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.xhdr-mobile[hidden] {
    display: none;
}

.xhdr-mobile__inner {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 10px 16px 18px;
    display: flex;
    flex-direction: column;
}

.xhdr-mobile a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 46px;
    padding: 12px 4px;
    color: #f5f0ee;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.xhdr-mobile__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 14px;
}

.xhdr-mobile__actions .xhdr__button {
    width: 100%;
    border-bottom: 0;
}

body.xhdr-menu-open {
    overflow: hidden;
}

@media (max-width: 991px) {
    .xhdr__container {
        min-height: 62px;
        gap: 10px;
    }

    .xhdr__logo img {
        width: 42px;
        height: 42px;
    }

    .xhdr__nav {
        display: none;
    }

    .xhdr__actions {
        margin-left: auto;
    }

    .xhdr__burger {
        display: flex;
    }
}

@media (max-width: 560px) {
    .xhdr__container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .xhdr__actions > .xhdr__button {
        padding: 9px 12px;
        font-size: 13px;
    }
}

@media (max-width: 390px) {
    .xhdr__actions > .xhdr__button--blue {
        display: none;
    }

    .xhdr-mobile__actions {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 992px) {
    .xhdr-mobile {
        display: none !important;
    }
}
