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

:root {
    --clr-bg: #0e1230;
    --clr-nav: #1a1f3c;
    --clr-gold: #fbc02d;
    --clr-violet: #8e24aa;
    --clr-violet-light: #ab47bc;
    --clr-text: #e8eaf6;
    --clr-text-muted: #9fa8da;
    --clr-border: rgba(251, 192, 45, 0.18);
    --clr-card: #141937;
    --clr-card2: #111530;
    --clr-success: #43a047;
    --clr-error: #e53935;
    --clr-warning: #fb8c00;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
    --shadow-gold: 0 0 20px rgba(251, 192, 45, 0.22);
    --transition: 0.25s ease;
    --font: 'Montserrat', 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: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

a:hover {
    color: #ffe082;
}

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

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
}

h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    margin-bottom: 0.85rem;
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 0.7rem;
}

p {
    margin-bottom: 0.9rem;
}

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

li {
    margin-bottom: 0.35rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

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

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

.btn--gold {
    background: var(--clr-gold);
    color: #1a1f3c;
}

.btn--gold:hover {
    background: #ffe082;
    color: #1a1f3c;
}

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

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

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

.btn--outline:hover {
    background: var(--clr-gold);
    color: #1a1f3c;
}

.btn--sm {
    padding: 7px 15px;
    font-size: 0.82rem;
}

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

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

.section {
    padding: 56px 0;
}

.section--sm {
    padding: 36px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 36px;
}

.section-title h2 {
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--clr-gold);
    border-radius: 2px;
}

.card {
    background: var(--clr-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    padding: 24px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge--gold {
    background: rgba(251, 192, 45, 0.18);
    color: var(--clr-gold);
}

.badge--green {
    background: rgba(67, 160, 71, 0.18);
    color: #66bb6a;
}

.badge--violet {
    background: rgba(142, 36, 170, 0.18);
    color: var(--clr-violet-light);
}

/* ===== HEADER ===== */
.site-header {
    background: var(--clr-nav);
    border-bottom: 1px solid rgba(251, 192, 45, 0.12);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 68px;
    flex-wrap: nowrap;
}

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

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

.header-logo-text {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--clr-gold);
    line-height: 1.15;
    white-space: nowrap;
}

.header-logo-text span {
    color: #fff;
}

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 11px;
    border-radius: 6px;
    color: var(--clr-text-muted);
    font-size: 0.83rem;
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition), background var(--transition);
}

.header-nav a:hover, .header-nav a.active {
    color: var(--clr-gold);
    background: rgba(251, 192, 45, 0.08);
}

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

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

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

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #43a047;
    animation: pulse-dot 1.6s infinite;
    flex-shrink: 0;
}

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

.lang-dropdown {
    position: relative;
}

.lang-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--clr-text);
    font-family: var(--font);
    font-weight: 600;
    transition: background var(--transition);
}

.lang-trigger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-trigger svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
}

.lang-dropdown.open .lang-trigger svg {
    transform: rotate(180deg);
}

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

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

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

.lang-menu a:hover {
    background: rgba(251, 192, 45, 0.08);
    color: var(--clr-gold);
}

.flag-icon {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
    display: inline-block;
    flex-shrink: 0;
}

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

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

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

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

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

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0e1230 0%, #1a1f3c 50%, #0e1230 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/hero-banner.jpg') center center / cover no-repeat;
    opacity: 0.32;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14, 18, 48, 0.92) 0%, rgba(14, 18, 48, 0.55) 55%, rgba(14, 18, 48, 0.35) 100%);
}

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

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(251, 192, 45, 0.14);
    border: 1px solid rgba(251, 192, 45, 0.3);
    color: var(--clr-gold);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero h1 {
    font-size: clamp(1.7rem, 4.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

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

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

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

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

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-value {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--clr-gold);
}

.hero-stat-label {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs-wrap {
    background: rgba(26, 31, 60, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 10px 0;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    margin: 0;
}

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

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

.breadcrumbs li.active {
    color: var(--clr-gold);
}

.breadcrumbs li + li::before {
    content: '/';
    color: rgba(255, 255, 255, 0.25);
}

/* ===== TABLE OF CONTENTS ===== */
.toc-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-left: 4px solid var(--clr-gold);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-bottom: 40px;
}

.toc-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-gold);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 6px 20px;
}

.toc-list li {
    margin: 0;
}

.toc-list a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--clr-text-muted);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 4px 0;
    transition: color var(--transition), padding-left var(--transition);
}

.toc-list a:hover {
    color: var(--clr-gold);
    padding-left: 4px;
}

.toc-list a svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.7;
}

/* ===== CONTENT BLOCK ===== */
.content-section {
    background: var(--clr-card2);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 36px;
    border: 1px solid var(--clr-border);
}

/* Стилизация контента без классов */
.content-raw h1, .content-raw h2, .content-raw h3, .content-raw h4, .content-raw h5, .content-raw h6 {
    margin: 1.4em 0 0.6em;
    color: #fff;
}

.content-raw p {
    margin-bottom: 1em;
    color: var(--clr-text);
    line-height: 1.75;
}

.content-raw ul, .content-raw ol {
    padding-left: 1.6rem;
    margin-bottom: 1em;
}

.content-raw li {
    margin-bottom: 0.45em;
    color: var(--clr-text);
    line-height: 1.65;
}

.content-raw a {
    color: var(--clr-gold);
    text-decoration: underline;
}

.content-raw a:hover {
    color: #ffe082;
}

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

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

.content-raw blockquote {
    border-left: 3px solid var(--clr-gold);
    padding: 12px 18px;
    background: rgba(251, 192, 45, 0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.2em 0;
    color: var(--clr-text-muted);
    font-style: italic;
}

.content-raw table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.4em 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.content-raw table th {
    background: rgba(251, 192, 45, 0.12);
    color: var(--clr-gold);
    padding: 10px 14px;
    text-align: left;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-raw table td {
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--clr-text);
    text-align: left;
}

.content-raw table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.03);
}

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

.content-raw hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 1.8em 0;
}

.content-raw pre {
    background: rgba(0, 0, 0, 0.35);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    overflow-x: auto;
    font-size: 0.87rem;
    margin: 1.2em 0;
}

.content-raw code {
    font-family: monospace;
    background: rgba(0, 0, 0, 0.25);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.88em;
}

/* ===== CASINO RATING ===== */
.casino-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.casino-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 22px;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.casino-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.casino-card:hover::before {
    opacity: 1;
}

.casino-card--top1 {
    border-color: rgba(251, 192, 45, 0.45);
    background: linear-gradient(135deg, #141937 0%, #1c2245 100%);
}

.casino-card--top2 {
    border-color: rgba(176, 190, 197, 0.35);
}

.casino-card--top3 {
    border-color: rgba(205, 127, 50, 0.35);
}

.casino-rank {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 800;
}

.casino-rank--1 {
    background: var(--clr-gold);
    color: #1a1f3c;
}

.casino-rank--2 {
    background: #b0bec5;
    color: #1a1f3c;
}

.casino-rank--3 {
    background: #cd7f32;
    color: #fff;
}

.casino-rank--default {
    background: rgba(255, 255, 255, 0.1);
    color: var(--clr-text-muted);
}

.casino-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-left: 44px;
    margin-bottom: 16px;
}

.casino-logo {
    width: 80px;
    height: 50px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    padding: 6px;
    flex-shrink: 0;
}

.casino-logo-placeholder {
    width: 80px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    flex-shrink: 0;
    text-align: center;
    line-height: 1.2;
    padding: 6px;
}

.casino-meta {
    flex: 1;
    min-width: 0;
}

.casino-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.casino-country {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    margin-bottom: 6px;
}

.casino-stars {
    display: flex;
    align-items: center;
    gap: 5px;
}

.casino-stars svg {
    width: 16px;
    height: 16px;
}

.star-filled {
    color: var(--clr-gold);
}

.star-empty {
    color: rgba(255, 255, 255, 0.2);
}

.casino-score {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--clr-gold);
    margin-left: 6px;
}

.casino-bonus {
    background: linear-gradient(90deg, rgba(142, 36, 170, 0.2), rgba(142, 36, 170, 0.05));
    border: 1px solid rgba(142, 36, 170, 0.3);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    margin-bottom: 14px;
    font-size: 0.92rem;
}

.casino-bonus-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--clr-violet-light);
    font-weight: 700;
    margin-bottom: 3px;
}

.casino-bonus-value {
    font-weight: 700;
    color: #fff;
}

.casino-advantages {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
    list-style: none;
    padding: 0;
}

.casino-advantages li {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    margin: 0;
}

.casino-advantages li::before {
    content: '✓';
    color: var(--clr-success);
    font-weight: 700;
    flex-shrink: 0;
}

.casino-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-bottom: 16px;
    font-size: 0.78rem;
    color: var(--clr-text-muted);
}

.casino-info-item {
    display: flex;
    gap: 5px;
}

.casino-info-item strong {
    color: var(--clr-text);
}

.casino-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.casino-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.casino-load-btn {
    background: rgba(251, 192, 45, 0.1);
    border: 1px solid var(--clr-border);
    color: var(--clr-gold);
    padding: 10px 28px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.9rem;
    transition: background var(--transition), transform var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.casino-load-btn:hover {
    background: rgba(251, 192, 45, 0.2);
    transform: translateY(-2px);
}

.casino-load-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

/* ===== WINNERS ===== */
.winners-table-wrap {
    overflow-x: auto;
}

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

.winners-table th {
    background: rgba(251, 192, 45, 0.1);
    color: var(--clr-gold);
    padding: 12px 16px;
    text-align: left;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 2px solid rgba(251, 192, 45, 0.2);
}

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

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

.winners-table tr:nth-child(1) td {
    color: var(--clr-gold);
    font-weight: 700;
}

.winners-table tr:nth-child(2) td {
    color: #b0bec5;
    font-weight: 600;
}

.winners-table tr:nth-child(3) td {
    color: #cd7f32;
    font-weight: 600;
}

.winner-rank {
    font-weight: 700;
    text-align: center !important;
}

.winner-amount {
    font-weight: 700;
    color: var(--clr-success) !important;
}

.medal-icon {
    font-size: 1.1rem;
}

/* ===== JACKPOTS ===== */
.jackpots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

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

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

.jackpot-card--mega {
    background: linear-gradient(135deg, #1a1030 0%, #2d0a5a 100%);
    border-color: rgba(142, 36, 170, 0.5);
    box-shadow: 0 0 40px rgba(142, 36, 170, 0.2);
}

.jackpot-card--major {
    background: linear-gradient(135deg, #141937 0%, #1e2a10 100%);
    border-color: rgba(251, 192, 45, 0.4);
    box-shadow: 0 0 30px rgba(251, 192, 45, 0.12);
}

.jackpot-card--mini {
    background: linear-gradient(135deg, #0e1230 0%, #1a2035 100%);
    border-color: rgba(67, 160, 71, 0.3);
}

.jackpot-tier {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.jackpot-card--mega .jackpot-tier {
    color: var(--clr-violet-light);
}

.jackpot-card--major .jackpot-tier {
    color: var(--clr-gold);
}

.jackpot-card--mini .jackpot-tier {
    color: #66bb6a;
}

.jackpot-amount {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
    transition: color 0.3s;
}

.jackpot-card--mega .jackpot-amount {
    color: var(--clr-violet-light);
    text-shadow: 0 0 20px rgba(142, 36, 170, 0.5);
}

.jackpot-card--major .jackpot-amount {
    color: var(--clr-gold);
    text-shadow: 0 0 20px rgba(251, 192, 45, 0.4);
}

.jackpot-card--mini .jackpot-amount {
    color: #66bb6a;
}

.jackpot-desc {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    margin-bottom: 18px;
}

.jackpot-top-players {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.jackpot-top-players li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
    margin: 0;
}

.jackpot-top-players li:last-child {
    border-bottom: none;
}

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

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

/* ===== DEMO GAME ===== */
.demo-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
}

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

.demo-title {
    font-size: 1.05rem;
    font-weight: 700;
}

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

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

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

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

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

/* ===== STRATEGIES ===== */
.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

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

.strategy-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.strategy-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background: linear-gradient(135deg, #1a1f3c, #2d1f60);
}

.strategy-img-placeholder {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, #1a1f3c 0%, #2d1f60 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.strategy-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.strategy-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

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

/* ===== REVIEWS ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.review-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 22px;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -8px;
    left: 20px;
    font-size: 4rem;
    color: var(--clr-gold);
    opacity: 0.2;
    line-height: 1;
    font-family: serif;
}

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

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.review-avatar-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-violet), var(--clr-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}

.review-author-info {
    flex: 1;
}

.review-name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.review-date {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
}

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

.review-stars svg {
    width: 16px;
    height: 16px;
}

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

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

.review-form-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    margin-bottom: 7px;
}

.form-input, .form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-family: var(--font);
    font-size: 0.9rem;
    padding: 11px 14px;
    transition: border-color var(--transition), background var(--transition);
    outline: none;
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--clr-gold);
    background: rgba(251, 192, 45, 0.04);
}

.form-textarea {
    resize: vertical;
    min-height: 110px;
}

.form-success {
    display: none;
    background: rgba(67, 160, 71, 0.12);
    border: 1px solid rgba(67, 160, 71, 0.3);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: #66bb6a;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 14px;
    align-items: center;
    gap: 8px;
}

.form-success.visible {
    display: flex;
}

/* ===== AUTHOR ===== */
.author-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.author-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--clr-violet), var(--clr-nav));
    border: 3px solid var(--clr-gold);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

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

.author-bio {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

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

/* ===== 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-sm);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.open {
    border-color: rgba(251, 192, 45, 0.35);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
    transition: color var(--transition);
    user-select: none;
}

.faq-question:hover {
    color: var(--clr-gold);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

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

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

.faq-answer-inner {
    padding: 0 20px 16px;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.72;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--clr-nav);
    border-top: 1px solid rgba(251, 192, 45, 0.12);
    padding: 52px 0 28px;
    margin-top: auto;
}

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

.footer-brand {
}

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

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

.footer-logo-text {
    font-size: 1rem;
    font-weight: 800;
    color: var(--clr-gold);
    line-height: 1.15;
}

.footer-logo-text span {
    color: #fff;
}

.footer-desc {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

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

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

.footer-links li {
    margin-bottom: 8px;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.payment-badge {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

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

.license-badge {
    background: rgba(67, 160, 71, 0.1);
    border: 1px solid rgba(67, 160, 71, 0.25);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #66bb6a;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.footer-copyright {
    text-align: center;
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    line-height: 1.8;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    justify-content: center;
    margin-bottom: 10px;
}

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

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

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

.footer-provider img {
    height: 22px;
    width: auto;
    object-fit: contain;
    opacity: 0.6;
}

.footer-age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(229, 57, 53, 0.6);
    color: #ef5350;
    font-weight: 800;
    font-size: 0.7rem;
    flex-shrink: 0;
}

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

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

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

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

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

.mt-md {
    margin-top: 28px;
}

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

.mb-md {
    margin-bottom: 28px;
}

.gap-sm {
    gap: 8px;
}

.d-flex {
    display: flex;
}

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

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

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(251, 192, 45, 0.2), transparent);
    margin: 48px 0;
}

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

.fade-in.visible {
    opacity: 1;
    transform: none;
}

.scroll-to-top {
    position: fixed;
    bottom: 80px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--clr-gold);
    color: #1a1f3c;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(251, 192, 45, 0.35);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 990;
}

.scroll-to-top.visible {
    opacity: 1;
    transform: scale(1);
}

.scroll-to-top:hover {
    background: #ffe082;
    transform: scale(1.08);
}

/* ===== HIDDEN / FAKE WP ELEMENTS ===== */
.wp-caption {
    display: none;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

#wpadminbar {
    display: none !important;
}

.entry-meta {
    display: none;
}

.post-thumbnail {
    display: none;
}

.wp-block-group__inner-container {
    display: none;
}

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

.yoast-schema-graph {
    display: none;
}

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

@media (max-width: 900px) {
    .header-nav {
        display: none;
        flex-direction: column;
        position: fixed;
        inset: 0;
        top: 68px;
        background: var(--clr-nav);
        padding: 20px;
        z-index: 999;
        overflow-y: auto;
    }

    .header-nav.active {
        display: flex;
    }

    .header-nav a {
        padding: 12px 16px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .burger {
        display: flex;
    }

    .hero {
        min-height: 400px;
    }

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

@media (max-width: 680px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .casino-header {
        margin-left: 0;
        flex-wrap: wrap;
    }

    .casino-rank {
        position: static;
    }

    .casino-header {
        flex-direction: row;
        align-items: flex-start;
    }

    .sticky-widget {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 12px 16px 16px;
    }

    .widget-actions {
        justify-content: center;
    }

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

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

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

    .toc-list {
        grid-template-columns: 1fr;
    }

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

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

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

    .header-right {
        gap: 6px;
    }

    .header-online {
        display: none;
    }
}

/* ===== TECHNICAL PAGES ===== */
.technical-content {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 36px;
    max-width: 860px;
    margin: 0 auto;
}

.technical-content h2 {
    margin: 1.6em 0 0.7em;
    color: var(--clr-gold);
    font-size: 1.2rem;
}

.technical-content h3 {
    margin: 1.3em 0 0.6em;
    color: var(--clr-text);
    font-size: 1rem;
}

.technical-content p {
    color: var(--clr-text-muted);
    margin-bottom: 1em;
}

.technical-content ul, .technical-content ol {
    color: var(--clr-text-muted);
    padding-left: 1.6rem;
    margin-bottom: 1em;
}

.technical-content li {
    margin-bottom: 0.45em;
}

.technical-content strong {
    color: var(--clr-text);
}

.technical-content a {
    color: var(--clr-gold);
}

.page-header-technical {
    background: var(--clr-nav);
    padding: 40px 0 32px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--clr-border);
}

.page-header-technical h1 {
    margin-bottom: 6px;
}

.page-header-technical p {
    color: var(--clr-text-muted);
    font-size: 0.92rem;
    max-width: 600px;
    margin: 0;
}

/* ===== GLOWING ANIMATION ===== */
@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 12px rgba(251, 192, 45, 0.25);
    }
    50% {
        box-shadow: 0 0 28px rgba(251, 192, 45, 0.55);
    }
}

.btn--gold {
    animation: glow-pulse 3s infinite;
}

.btn--gold:hover {
    animation: none;
}

@keyframes float-up {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* Unused utility styles for unique fingerprint */
.u-x7f3a {
    display: none;
}

.u-b9d2c {
    visibility: hidden;
}

.g5h1k-wrapper {
    opacity: 0;
    pointer-events: none;
}

.p3r7q-box {
    position: absolute;
    left: -9999px;
}

.m8j4n-overlay {
    height: 0;
    overflow: hidden;
}

.chfd {
    max-width: 1000px;
    margin: 50px auto;
    padding: 42px 36px;
    background: linear-gradient(180deg, var(--clr-card), var(--clr-card2));
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.chfd h1 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.25;
    margin-bottom: 22px;
    color: #fff;
}

.chfd h2 {
    font-size: clamp(20px, 3vw, 28px);
    margin: 34px 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: var(--clr-gold);
}

.chfd p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--clr-text);
    margin-bottom: 14px;
}

.chfd ul,
.chfd ol {
    padding-left: 22px;
    margin: 16px 0;
}

.chfd li {
    font-size: 14px;
    line-height: 1.7;
    color: var(--clr-text-muted);
    margin-bottom: 8px;
}

.chfd strong {
    color: #fff;
}

.chfd a {
    color: var(--clr-gold);
    font-weight: 600;
    word-break: break-word;
    overflow-wrap: anywhere;
    display: inline-block;
    max-width: 100%;
}

.chfd table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    overflow: hidden;
    border-radius: 12px;
}

.chfd table th {
    background: rgba(251, 192, 45, .12);
    color: var(--clr-gold);
    padding: 12px 14px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, .08);
}

.chfd table td {
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, .06);
    color: var(--clr-text);
}

.chfd img {
    max-width: 100%;
    border-radius: 12px;
    margin: 18px 0;
}

@media (max-width: 768px) {
    .chfd {
        margin: 26px 12px;
        padding: 24px 16px;
    }

    .chfd h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .chfd h2 {
        font-size: 20px;
        line-height: 1.35;
        margin-top: 28px;
    }

    .chfd p,
    .chfd li {
        font-size: 14px;
        line-height: 1.7;
    }

    .chfd a {
        font-size: 13px;
        word-break: break-all;
    }

    .chfd table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .chfd {
        margin: 20px 10px;
        padding: 18px 14px;
    }

    .chfd h1 {
        font-size: 21px;
    }

    .chfd h2 {
        font-size: 18px;
    }

    .chfd p,
    .chfd li {
        font-size: 13.5px;
    }

    .chfd a {
        font-size: 12px;
    }
}