:root {
    --c-dark: #0e0405;
    --c-darker: #080102;
    --c-bg: #bb3527;
    --c-bg-dark: #a02d21;
    --c-blue: #0184a7;
    --c-blue-dark: #016f8d;
    --c-green: #00be31;
    --c-green-dark: #009e29;
    --c-text-light: #f5f0ee;
    --c-text-muted: #d4c8c5;
    --c-card-bg: rgba(14, 4, 5, 0.82);
    --c-card-border: rgba(255, 255, 255, 0.1);
    --c-gold: #f5c842;
    --c-silver: #b8c4cc;
    --c-bronze: #cd7f32;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --transition: 0.22s ease;
    --font: 'Rajdhani', sans-serif;
}

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

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

body {
    font-family: var(--font);
    background-color: var(--c-bg);
    color: var(--c-text-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

a:hover {
    color: #01a8d4;
}

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

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

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

.header-inner {
    padding: 10px 0;
}

.hdr-inner {
    min-height: 60px;
}

.logo-img {
    width: 140px;
    height: auto;
    object-fit: contain;
}

.nav-list {
    gap: 4px;
}

.nav-item {
}

.nav-lnk {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    color: var(--c-text-muted);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

.nav-lnk:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--c-text-light);
}

.nav-ico {
    flex-shrink: 0;
    width: 15px;
    height: 15px;
}

.lang-picker {
    position: relative;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    color: var(--c-text-muted);
    padding: 6px 10px;
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    color: var(--c-text-light);
}

.lang-drop {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--c-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    min-width: 150px;
    z-index: 200;
    box-shadow: var(--shadow);
    overflow: hidden;
}

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

.lang-opt {
    display: block;
    padding: 8px 14px;
    color: var(--c-text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    transition: background var(--transition), color var(--transition);
}

.lang-opt:hover, .lang-opt.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--c-text-light);
}

.btn-site {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-site:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    text-decoration: none;
}

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

.btn-play, .btn-play-hero, .btn-play-money, .btn-play-sm, .btn-play-jk, .btn-review-submit {
    background: var(--c-green);
    color: #fff;
}

.btn-play:hover, .btn-play-hero:hover, .btn-play-money:hover, .btn-play-sm:hover, .btn-play-jk:hover, .btn-review-submit:hover {
    background: var(--c-green-dark);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 190, 49, 0.3);
}

.btn-bonus, .btn-demo-hero, .btn-demo, .btn-demo-sm, .wgt-btn {
    background: var(--c-blue);
    color: #fff;
}

.btn-bonus:hover, .btn-demo-hero:hover, .btn-demo:hover, .btn-demo-sm:hover, .wgt-btn:hover {
    background: var(--c-blue-dark);
    color: #fff;
    box-shadow: 0 6px 20px rgba(1, 132, 167, 0.35);
}

.btn-demo-sm, .btn-play-sm {
    padding: 6px 13px;
    font-size: 0.82rem;
}

.burger-btn {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    width: 40px;
    height: 40px;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    transition: background var(--transition);
}

.burger-btn:hover {
    background: rgba(255, 255, 255, 0.14);
}

.burger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--c-text-light);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.burger-btn.is-active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-btn.is-active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-btn.is-active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    background: var(--c-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 12px 0;
}

.mobile-nav.is-open {
    display: block;
}

.mob-nav-list {
    padding: 0 16px;
}

.mob-nav-lnk {
    display: block;
    padding: 11px 0;
    color: var(--c-text-muted);
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color var(--transition);
}

.mob-nav-lnk:hover {
    color: var(--c-text-light);
}

.mob-lang {
    padding-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mob-lang-label {
    color: var(--c-text-muted);
    font-size: 0.88rem;
}

.mob-lang-opt {
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: var(--c-text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    transition: background var(--transition), color var(--transition);
}

.mob-lang-opt:hover, .mob-lang-opt.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--c-text-light);
}

.hero-section {
    background-image: url('/img/banner.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    position: relative;
    padding: 60px 0 50px;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 4, 5, 0.85) 0%, rgba(14, 4, 5, 0.5) 100%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    margin-bottom: 12px;
}

.hero-sub {
    font-size: 1.08rem;
    color: var(--c-text-muted);
    margin-bottom: 24px;
    max-width: 600px;
}

.hero-btns {
    flex-wrap: wrap;
}

.btn-play-hero, .btn-demo-hero {
    padding: 12px 28px;
    font-size: 1rem;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--c-text-light);
    padding: 5px 13px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    backdrop-filter: blur(4px);
}

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

.breadcrumbs-wrap {
    padding: 14px 0;
    margin-bottom: 6px;
}

.breadcrumb-list {
    gap: 6px;
}

.bc-lnk {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--c-text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    transition: color var(--transition);
}

.bc-lnk:hover {
    color: var(--c-text-light);
}

.bc-sep {
    color: rgba(255, 255, 255, 0.3);
}

.bc-current {
    color: var(--c-text-light);
    font-size: 0.88rem;
    font-weight: 600;
}

.section-block {
    background: var(--c-card-bg);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    margin: 0 0 24px;
    backdrop-filter: blur(6px);
    box-shadow: var(--shadow-sm);
    animation: fadeInUp 0.4s ease both;
}

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

.section-header {
    margin-bottom: 22px;
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.25;
}

.section-sub {
    color: var(--c-text-muted);
    font-size: 1rem;
}

.iframe-wrap {
}

.iframe-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 255, 255, 0.08);
}

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

.demo-cta-row {
}

.game-details-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gd-header {
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.gd-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.gd-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.gd-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background var(--transition);
}

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

.gd-table tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.gd-param {
    padding: 9px 14px;
    color: var(--c-text-muted);
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    width: 48%;
}

.gd-val {
    padding: 9px 14px;
    color: var(--c-text-light);
    font-weight: 600;
}

.gd-highlight {
    color: var(--c-gold);
    font-weight: 700;
}

.gd-link {
    color: var(--c-blue);
}

.gd-link:hover {
    color: #01a8d4;
}

.badge-high {
    background: rgba(187, 53, 39, 0.6);
    border: 1px solid var(--c-bg);
    color: #ffd0cc;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
}

.phone-frame-wrap {
    padding: 20px 0;
}

.phone-frame {
    display: inline-block;
    position: relative;
    background: #1a1a1a;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-radius: 36px;
    padding: 20px 10px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    width: 180px;
    margin: 0 auto;
}

.phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 10px;
    background: #2a2a2a;
    border-radius: 6px;
}

.phone-btn {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 5px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}

.phone-screen {
    border-radius: 20px;
    margin-top: 8px;
}

.phone-screen-img {
    width: 100%;
    height: auto;
    display: block;
}

.mob-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.mob-table thead th {
    background: rgba(0, 0, 0, 0.35);
    padding: 10px 14px;
    text-align: left;
    color: var(--c-text-muted);
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.mob-table tbody td {
    padding: 9px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--c-text-light);
    font-weight: 500;
}

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

.mob-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.btn-app {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    cursor: pointer;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-app:hover {
    transform: translateY(-2px);
}

.btn-app-ios {
    background: #000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-app-ios:hover {
    background: #1a1a1a;
    color: #fff;
}

.btn-app-android {
    background: #01875f;
    color: #fff;
}

.btn-app-android:hover {
    background: #016b4a;
    color: #fff;
}

.btn-app-apk {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--c-text-light);
}

.btn-app-apk:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.jackpot-card {
    border-radius: var(--radius-lg);
    padding: 28px 20px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 2px solid transparent;
}

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

.jk-gold {
    background: linear-gradient(160deg, #3a2800 0%, #1a1200 100%);
    border-color: var(--c-gold);
}

.jk-silver {
    background: linear-gradient(160deg, #1c2630 0%, #0c141a 100%);
    border-color: var(--c-silver);
}

.jk-bronze {
    background: linear-gradient(160deg, #2e1a08 0%, #150d04 100%);
    border-color: var(--c-bronze);
}

.jk-crown {
    margin-bottom: 10px;
}

.jk-gold .jk-crown {
    color: var(--c-gold);
}

.jk-silver .jk-crown {
    color: var(--c-silver);
}

.jk-bronze .jk-crown {
    color: var(--c-bronze);
}

.jk-level {
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-text-muted);
    margin-bottom: 8px;
}

.jk-amount {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.jk-gold .jk-amount {
    color: var(--c-gold);
}

.jk-silver .jk-amount {
    color: var(--c-silver);
}

.jk-bronze .jk-amount {
    color: #e8a855;
}

.jk-players {
    margin-bottom: 18px;
    text-align: left;
}

.jk-player-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-text-muted);
    margin-bottom: 6px;
}

.jk-player-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.88rem;
}

.jk-player-nick {
    color: var(--c-text-muted);
    font-weight: 600;
}

.jk-player-win {
    color: var(--c-gold);
    font-weight: 700;
}

.review-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 20px;
    height: 100%;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.review-card:hover {
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow-sm);
}

.rev-avatar {
    width: 48px;
    height: 48px;
    background: var(--c-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}

.rev-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 3px;
}

.rev-stars {
    display: flex;
    gap: 2px;
    color: var(--c-gold);
    margin-bottom: 3px;
}

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

.rev-text {
    font-size: 0.93rem;
    line-height: 1.65;
    color: var(--c-text-muted);
    margin-top: 12px;
}

.review-form-wrap {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    padding: 24px;
}

.rf-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--c-text-muted);
}

.rf-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.rf-field {
    margin-bottom: 16px;
}

.rf-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 7px;
}

.rf-input, .rf-textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    color: var(--c-text-light);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.rf-input:focus, .rf-textarea:focus {
    outline: none;
    border-color: var(--c-blue);
    box-shadow: 0 0 0 3px rgba(1, 132, 167, 0.2);
}

.rf-input::placeholder, .rf-textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.rf-textarea {
    resize: vertical;
    min-height: 100px;
}

.rf-stars {
    display: flex;
    gap: 6px;
}

.rf-star {
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.2);
    transition: color var(--transition), transform var(--transition);
    padding: 2px;
}

.rf-star:hover, .rf-star.active {
    color: var(--c-gold);
    transform: scale(1.15);
}

.rf-success {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(0, 190, 49, 0.15);
    border: 1px solid rgba(0, 190, 49, 0.35);
    border-radius: var(--radius-sm);
    color: #7dffaa;
    font-weight: 600;
    margin-top: 14px;
    animation: fadeInUp 0.3s ease;
}

.review-content-block {
}

.author-bar {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 14px 18px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    background: var(--c-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.author-name {
    font-size: 0.97rem;
    font-weight: 700;
    color: #fff;
    display: block;
}

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

.author-lnk {
    font-size: 0.82rem;
    color: var(--c-blue);
    font-weight: 600;
}

.author-updated {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.prose-content p {
    margin-bottom: 1em;
    line-height: 1.7;
    color: var(--c-text-muted);
}

.prose-content h2, .prose-content h3, .prose-content h4 {
    color: #fff;
    font-weight: 700;
    margin-top: 1.4em;
    margin-bottom: 0.5em;
}

.prose-content ul, .prose-content ol {
    padding-left: 1.4em;
    margin-bottom: 1em;
    color: var(--c-text-muted);
}

.prose-content li {
    margin-bottom: 0.4em;
    line-height: 1.65;
}

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

.prose-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.2em;
}

.prose-content table th, .prose-content table td {
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.prose-content table th {
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-weight: 700;
}

.prose-content strong, .prose-content b {
    color: #fff;
    font-weight: 700;
}

.prose-content blockquote {
    border-left: 3px solid var(--c-blue);
    padding-left: 1em;
    color: var(--c-text-muted);
    margin: 1em 0;
    font-style: italic;
}

.faq-block {
    margin-top: 28px;
}

.faq-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

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

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    color: #fff;
    font-family: var(--font);
    font-size: 0.97rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: background var(--transition);
}

.faq-q:hover {
    background: rgba(0, 0, 0, 0.35);
}

.faq-arrow {
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-q[aria-expanded="true"] .faq-arrow {
    transform: rotate(180deg);
}

.faq-a {
    padding: 12px 16px;
    color: var(--c-text-muted);
    font-size: 0.93rem;
    line-height: 1.65;
}

.faq-a p {
    margin: 0;
}

.similar-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color var(--transition), transform var(--transition);
}

.similar-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.sim-logo-wrap {
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #000;
}

.sim-logo {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.sim-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.sim-desc {
    font-size: 0.86rem;
    color: var(--c-text-muted);
    line-height: 1.5;
    flex: 1;
}

.sim-btns {
    flex-wrap: wrap;
}

.site-footer {
    background: var(--c-dark);
    margin-top: auto;
    border-top: 2px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    padding: 40px 0 0;
}

.ftr-logo {
    width: 130px;
    height: auto;
}

.ftr-desc {
    font-size: 0.86rem;
    color: var(--c-text-muted);
    line-height: 1.55;
    margin-top: 10px;
}

.ftr-flag {
    color: var(--c-text-muted);
    font-size: 0.86rem;
    font-weight: 600;
}

.ftr-heading {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
}

.ftr-heading-sm {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.35);
}

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

.ftr-lnk {
    color: var(--c-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
}

.ftr-lnk:hover {
    color: var(--c-text-light);
}

.ftr-payments {
    flex-wrap: wrap;
}

.pay-badge {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--c-text-muted);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: var(--c-text-muted);
    transition: background var(--transition), color var(--transition);
}

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

.ftr-email {
    font-size: 0.86rem;
}

.trust-logo {
    filter: brightness(0.7) grayscale(0.3);
    transition: filter var(--transition);
    max-width: 100px;
    height: 35px;
    object-fit: contain;
}

.trust-logo:hover {
    filter: brightness(1);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 11px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-sm);
    color: var(--c-text-muted);
    font-size: 0.8rem;
    font-weight: 700;
}

.age-badge {
    background: rgba(187, 53, 39, 0.35);
    border-color: var(--c-bg);
    color: #ffd0cc;
    font-size: 1rem;
    font-weight: 800;
}

.ftr-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    margin: 16px 0;
}

.legal-txt {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.65;
    margin-bottom: 6px;
}

.copyright-txt {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 8px;
    font-weight: 600;
}

.casino-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 260px;
    background: var(--c-dark);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7);
    z-index: 900;
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.casino-widget:hover {
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.8);
}

.widget-header {
    background: rgba(0, 0, 0, 0.4);
    padding: 11px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    cursor: pointer;
}

.widget-title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-text-muted);
}

.widget-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--c-text-muted);
    padding: 2px;
    display: flex;
    transition: color var(--transition);
}

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

.wgt-arrow {
    transition: transform var(--transition);
}

.wgt-arrow.rotated {
    transform: rotate(180deg);
}

.widget-body {
    padding: 8px 0;
}

.wgt-casino {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background var(--transition);
}

.wgt-casino:last-child {
    border-bottom: none;
}

.wgt-casino:hover {
    background: rgba(255, 255, 255, 0.03);
}

.wgt-casino-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wgt-rank {
    width: 22px;
    height: 22px;
    background: var(--c-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.wgt-casino-text {
    display: flex;
    flex-direction: column;
}

.wgt-casino-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

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

.wgt-btn {
    padding: 5px 10px;
    font-size: 0.78rem;
    border-radius: 4px;
}

.info-main {
    padding: 30px 0 50px;
}

.info-box {
    background: var(--c-card-bg);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    max-width: 800px;
}

.info-h1 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 22px;
}

.info-content {
}

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

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

@media (max-width: 767px) {
    .hero-section {
        padding: 40px 0 36px;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .section-block {
        padding: 20px 16px;
    }

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

    .casino-widget {
        width: 220px;
        bottom: 12px;
        right: 12px;
    }

    .info-box {
        padding: 20px 16px;
    }

    .author-updated {
        display: none;
    }

    .demo-layout .col-lg-7, .demo-layout .col-lg-5 {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 575px) {
    .btn-play-hero, .btn-demo-hero {
        padding: 10px 18px;
        font-size: 0.92rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .gd-param {
        font-size: 0.86rem;
    }

    .gd-val {
        font-size: 0.86rem;
    }
}

.wp-e-x9af2 {
    display: none;
}

.elementor-invisible {
    visibility: hidden;
}

.wp-y7k3m {
    opacity: 0;
}

.elementor-widget-container {
}

.post-thumbnail {
    display: none;
}

.entry-content {
}
