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

:root {
    --clr-dark: #0e0405;
    --clr-dark-alt: #1a0608;
    --clr-red: #bb3527;
    --clr-red-deep: #9e2b1f;
    --clr-blue: #0184a7;
    --clr-blue-dark: #016f8d;
    --clr-green: #00be31;
    --clr-green-dark: #009e28;
    --clr-text: #f5ede8;
    --clr-text-muted: #c9b8b2;
    --clr-card: #1c0709;
    --clr-border: rgba(255, 255, 255, 0.10);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --ff: 'Rajdhani', sans-serif;
    --trans: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background: var(--clr-red);
}

body {
    font-family: var(--ff);
    background: var(--clr-red);
    color: var(--clr-text);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--clr-green);
}

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

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

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--ff);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    padding: 10px 22px;
    transition: filter var(--trans), transform var(--trans), box-shadow var(--trans);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.btn:hover {
    filter: brightness(1.12);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
}

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

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

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

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

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

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

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

/* ===== HEADER ===== */
.site-header {
    background: var(--clr-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 0 18px;
    min-height: 68px;
}

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

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

.header-nav a {
    color: var(--clr-text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color var(--trans), background var(--trans);
    letter-spacing: 0.3px;
}

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

.nav-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

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

.jackpot-badge {
    background: linear-gradient(135deg, #9e2b1f 0%, #bb3527 100%);
    border: 1px solid rgba(255, 200, 100, 0.4);
    border-radius: var(--radius-sm);
    padding: 4px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #ffe082;
    letter-spacing: 0.3px;
    white-space: nowrap;
    cursor: default;
    display: flex;
    align-items: center;
    gap: 6px;
}

.jackpot-badge span {
    color: #fff;
}

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

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

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

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

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

/* ===== HERO ===== */
.hero-section {
    background: var(--clr-dark) url('/img/banner-brc.png') center/cover no-repeat;
    position: relative;
    padding: 60px 0 48px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 4, 5, 0.88) 0%, rgba(14, 4, 5, 0.55) 60%, rgba(187, 53, 39, 0.25) 100%);
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff;
}

.hero-text h1 span {
    color: var(--clr-green);
}

.hero-text p {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 4px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--clr-text-muted);
}

.badge.highlight {
    background: rgba(0, 190, 49, 0.15);
    border-color: rgba(0, 190, 49, 0.35);
    color: var(--clr-green);
}

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

.hero-demo-frame {
    background: var(--clr-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    aspect-ratio: 16/10;
    position: relative;
}

.hero-demo-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.demo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(14, 4, 5, 0.82);
    gap: 16px;
    z-index: 2;
}

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

/* ===== BREADCRUMBS ===== */
.breadcrumbs-bar {
    background: rgba(14, 4, 5, 0.55);
    border-bottom: 1px solid var(--clr-border);
    padding: 10px 0;
}

.breadcrumbs-inner {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    font-size: 0.83rem;
}

.breadcrumbs-inner a {
    color: var(--clr-text-muted);
}

.breadcrumbs-inner a:hover {
    color: var(--clr-text);
}

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

.bc-current {
    color: var(--clr-text);
    font-weight: 600;
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 56px 0;
}

.section-title {
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    line-height: 1.25;
}

.section-title span {
    color: var(--clr-green);
}

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

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

/* ===== CARD BLOCK ===== */
.card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: box-shadow var(--trans), transform var(--trans);
}

.card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    transform: translateY(-2px);
}

/* ===== GAME DEMO BLOCK ===== */
.game-demo-wrap {
    background: var(--clr-dark);
    border-radius: var(--radius-lg);
    border: 2px solid var(--clr-border);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
}

.game-iframe-container {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
}

.game-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.game-demo-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid var(--clr-border);
    flex-wrap: wrap;
    gap: 12px;
}

.game-meta-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.meta-badge {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 100px;
    padding: 3px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--clr-text-muted);
}

.meta-badge b {
    color: #fff;
}

/* ===== MOBILE APP BLOCK ===== */
.mobile-app-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: start;
}

.phone-frame {
    width: 200px;
    flex-shrink: 0;
    background: #0e0e0e;
    border-radius: 40px;
    border: 6px solid #333;
    padding: 18px 12px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    position: relative;
}

.phone-frame::before {
    content: '';
    display: block;
    width: 60px;
    height: 8px;
    background: #1a1a1a;
    border-radius: 4px;
    margin: 0 auto 14px;
}

.phone-screen {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 9/18;
    background: #000;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.app-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.93rem;
    min-width: 360px;
    margin: 0 auto 24px;
}

.app-table th, .app-table td {
    text-align: left;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.app-table th {
    background: rgba(255, 255, 255, 0.06);
    color: var(--clr-text-muted);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.app-table td {
    color: var(--clr-text);
}

.app-table td b {
    color: #fff;
    font-weight: 700;
}

.app-store-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-sm);
    padding: 10px 18px;
    color: var(--clr-text);
    font-family: var(--ff);
    font-size: 0.92rem;
    font-weight: 600;
    transition: background var(--trans), border-color var(--trans);
    text-decoration: none;
}

.store-btn:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.store-btn svg {
    flex-shrink: 0;
}

/* ===== PROS CONS ===== */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.pros-box {
    background: rgba(0, 190, 49, 0.07);
    border: 1px solid rgba(0, 190, 49, 0.22);
    border-radius: var(--radius-md);
    padding: 24px;
}

.cons-box {
    background: rgba(187, 53, 39, 0.09);
    border: 1px solid rgba(187, 53, 39, 0.28);
    border-radius: var(--radius-md);
    padding: 24px;
}

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

.pros-cons-title.green {
    color: var(--clr-green);
}

.pros-cons-title.red {
    color: #e05042;
}

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

.pros-cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.96rem;
    line-height: 1.5;
    color: var(--clr-text);
}

.pc-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== WINNERS TABLE ===== */
.winners-section {
    background: var(--clr-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--clr-border);
}

.winners-header {
    background: rgba(255, 255, 255, 0.04);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--clr-border);
}

.winners-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.live-dot {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-green);
}

.live-dot::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-green);
    animation: pulse 1.5s infinite;
}

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

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

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

.winners-table th, .winners-table td {
    padding: 11px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.winners-table th {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--clr-text-muted);
    font-weight: 600;
}

.winners-table td {
    font-size: 0.93rem;
    color: var(--clr-text);
}

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

.winners-table tr:hover td {
    background: rgba(255, 255, 255, 0.025);
}

.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.82rem;
    background: rgba(255, 255, 255, 0.07);
    color: var(--clr-text-muted);
}

.rank-badge.gold {
    background: rgba(255, 193, 7, 0.2);
    color: #ffd54f;
}

.rank-badge.silver {
    background: rgba(189, 189, 189, 0.2);
    color: #e0e0e0;
}

.rank-badge.bronze {
    background: rgba(205, 127, 50, 0.2);
    color: #ffb74d;
}

.win-amount {
    color: var(--clr-green);
    font-weight: 700;
}

.username {
    color: #fff;
    font-weight: 600;
}

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

/* ===== VIDEO BLOCK ===== */
.video-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--clr-border);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
    aspect-ratio: 16/9;
    background: #000;
}

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

/* ===== BONUSES ===== */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bonus-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow var(--trans), transform var(--trans);
    display: flex;
    flex-direction: column;
}

.bonus-card:hover {
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.5);
    transform: translateY(-3px);
}

.bonus-card-head {
    background: linear-gradient(135deg, var(--clr-dark-alt) 0%, #250e0f 100%);
    padding: 16px 18px;
    border-bottom: 1px solid var(--clr-border);
}

.bonus-casino-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 4px;
}

.bonus-tag {
    font-size: 0.75rem;
    color: var(--clr-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bonus-amount {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--clr-green);
    margin-bottom: 8px;
    line-height: 1;
}

.bonus-amount span {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    font-weight: 500;
}

.bonus-desc {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
    flex: 1;
}

.bonus-terms {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 14px;
}

.rating-stars {
    color: #ffd54f;
    font-size: 1rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

/* Slider for bonuses on mobile */
.bonuses-slider-outer {
    position: relative;
    overflow: hidden;
}

.bonuses-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.bonuses-slider::-webkit-scrollbar {
    display: none;
}

.bonuses-slider .bonus-card {
    min-width: 280px;
    scroll-snap-align: start;
    flex-shrink: 0;
}

/* ===== CONTENT REVIEW BLOCK ===== */
.review-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--clr-border);
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-red-deep) 0%, var(--clr-dark-alt) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    border: 2px solid var(--clr-border);
}

.author-name {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 3px;
}

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

.author-bio {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    margin-top: 2px;
    line-height: 1.45;
}

.updated-date {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    margin-top: 2px;
}

.review-content {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--clr-text);
}

.review-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px;
}

.review-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-text);
    margin: 22px 0 10px;
}

.review-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-text);
    margin: 18px 0 8px;
}

.review-content p {
    margin-bottom: 16px;
}

.review-content ul, .review-content ol {
    margin: 12px 0 18px 24px;
}

.review-content li {
    margin-bottom: 6px;
    line-height: 1.6;
}

.review-content a {
    color: var(--clr-blue);
}

.review-content a:hover {
    color: var(--clr-green);
}

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

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

.review-content blockquote {
    border-left: 3px solid var(--clr-blue);
    padding: 12px 20px;
    margin: 20px 0;
    background: rgba(1, 132, 167, 0.08);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--clr-text-muted);
}

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

.review-content th, .review-content td {
    padding: 10px 14px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.review-content th {
    background: rgba(255, 255, 255, 0.06);
    font-weight: 700;
    color: var(--clr-text-muted);
}

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

.review-content img {
    border-radius: var(--radius-sm);
    margin: 12px auto;
    max-width: 100%;
}

.review-content code {
    background: rgba(255, 255, 255, 0.07);
    padding: 1px 7px;
    border-radius: 4px;
    font-size: 0.9em;
    color: #f5ede8;
}

.review-content pre {
    background: rgba(255, 255, 255, 0.05);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    overflow-x: auto;
    margin: 16px 0;
}

/* ===== SIMILAR GAMES ===== */
.similar-games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.game-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow var(--trans), transform var(--trans);
    display: flex;
    flex-direction: column;
}

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

.game-card-img {
    aspect-ratio: 3/2;
    background: linear-gradient(135deg, #1a0608 0%, #250e0f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow: hidden;
}

.game-card-img img {
    max-height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.game-card-body {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.game-card-name {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 6px;
}

.game-card-desc {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
    flex: 1;
    margin-bottom: 12px;
}

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

/* ===== FAQ ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--ff);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-align: left;
    gap: 14px;
}

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--trans);
    color: var(--clr-blue);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
    max-height: 600px;
}

.faq-answer-inner {
    padding: 0 22px 18px;
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--clr-dark);
    border-top: 1px solid var(--clr-border);
    margin-top: auto;
}

.footer-main {
    padding: 48px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 220px 1fr 1fr 1fr;
    gap: 36px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 14px;
}

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

.footer-col-title {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
}

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

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

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

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.payment-logo {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    letter-spacing: 0.5px;
}

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

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-muted);
    transition: background var(--trans), color var(--trans);
}

.social-link:hover {
    background: var(--clr-blue);
    color: #fff;
    border-color: transparent;
}

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

.footer-trust {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.au-flag {
    font-size: 1rem;
}

.footer-legal {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-legal p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.65;
    margin-bottom: 8px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.65);
}

.copyright {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-top: 10px;
}

/* ===== BOTTOM WIDGET ===== */
.bottom-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, var(--clr-dark-alt) 0%, #1a0608 100%);
    border-top: 2px solid var(--clr-green);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.55);
    flex-wrap: wrap;
}

.widget-text {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--clr-text);
    line-height: 1.35;
}

.widget-text strong {
    color: var(--clr-green);
    font-size: 1.05rem;
}

.widget-close {
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.4);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background var(--trans), color var(--trans);
    flex-shrink: 0;
}

.widget-close:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

body.widget-active {
    padding-bottom: 68px;
}

/* ===== SECTIONS ALTERNATING BG ===== */
.section-alt {
    background: rgba(0, 0, 0, 0.2);
}

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

/* ===== DIVIDER ===== */
.wave-divider {
    line-height: 0;
    overflow: hidden;
}

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

/* ===== UTILITY ===== */
.text-green {
    color: var(--clr-green);
}

.text-blue {
    color: var(--clr-blue);
}

.text-muted {
    color: var(--clr-text-muted);
}

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

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mt-4 {
    margin-top: 32px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.d-flex {
    display: flex;
}

.gap-2 {
    gap: 16px;
}

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

.align-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

/* ===== WP COMPAT (unused structural) ===== */
.wp-block-group {
    display: block;
}

.wp-block-columns {
    display: flex;
    gap: 24px;
}

.entry-content {
    display: block;
}

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

.site-main {
    display: block;
}

.post-thumbnail {
    display: block;
}

.yoast-seo-hide {
    display: none;
}

.wpcf7-form {
    display: block;
}

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

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

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

.fade-in-up-2 {
    animation: fadeInUp 0.55s 0.12s ease both;
}

.fade-in-up-3 {
    animation: fadeInUp 0.55s 0.24s ease both;
}

.jackpot-number {
    background: linear-gradient(90deg, #ffe082 0%, #fff9c4 50%, #ffe082 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2.5s linear infinite;
    font-weight: 700;
}

/* ===== SCROLL OBSERVED ELEMENTS ===== */
.observe-me {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.observe-me.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .similar-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mobile-app-grid {
        grid-template-columns: 1fr;
    }

    .phone-frame {
        margin: 0 auto 24px;
    }
}

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

    .header-nav {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--clr-dark);
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        pointer-events: none;
        z-index: 998;
        gap: 4px;
        border-bottom: 1px solid var(--clr-border);
    }

    .header-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .header-nav a {
        padding: 11px 16px;
        border-radius: var(--radius-sm);
    }

    .burger {
        display: flex;
    }

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

    .hero-text h1 {
        font-size: 1.9rem;
    }

    .hero-demo-frame {
        display: none;
    }

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

    .bonuses-grid {
        display: none;
    }

    .bonuses-slider-outer {
        display: block;
    }

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

    .footer-main {
        padding: 32px 0 20px;
    }

    .section {
        padding: 40px 0;
    }

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

    .review-block {
        padding: 24px 20px;
    }

    .similar-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .bottom-widget {
        padding: 10px 14px;
    }

    .header-actions .jackpot-badge {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.55rem;
    }

    .similar-games-grid {
        grid-template-columns: 1fr 1fr;
    }

    .header-actions {
        gap: 6px;
    }

    .btn--lg {
        padding: 11px 20px;
        font-size: 1rem;
    }
}

:root {
    --site-header-height: 68px;
}

.site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    height: var(--site-header-height);
    background: #0e0405;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.site-header-spacer {
    display: block;
    width: 100%;
    height: var(--site-header-height);
    flex: 0 0 var(--site-header-height);
}

.header-inner {
    height: 100%;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.header-logo,
.header-actions {
    flex-shrink: 0;
}

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

.header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 0;
}

.header-nav a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    white-space: nowrap;
}

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

@media (max-width: 991px) {
    :root {
        --site-header-height: 62px;
    }

    .header-inner {
        flex-wrap: nowrap;
        gap: 8px;
    }

    .header-logo img {
        max-height: 40px;
    }

    .header-nav {
        position: fixed;
        top: var(--site-header-height);
        left: 0;
        right: 0;
        z-index: 999;
        display: none;
        max-height: calc(100dvh - var(--site-header-height));
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 16px 16px;
        background: #0e0405;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    }

    .header-nav.is-open {
        display: flex;
    }

    .header-nav a {
        width: 100%;
        min-height: 46px;
        padding: 12px 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .header-nav a:last-child {
        border-bottom: 0;
    }

    .jackpot-badge {
        display: none;
    }

    .header-actions {
        margin-left: auto;
        gap: 6px;
    }

    .header-actions .btn {
        padding: 8px 11px;
        font-size: 12px;
    }

    .burger {
        display: flex;
        width: 40px;
        height: 40px;
        padding: 8px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 420px) {
    :root {
        --site-header-height: 58px;
    }

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

    .header-actions .btn {
        padding: 7px 9px;
        font-size: 11px;
    }

    .header-actions .btn--blue {
        display: none;
    }

    .burger {
        width: 38px;
        height: 38px;
    }
}