:root {
    --color-brand-dark: #543622;
    --color-brand-bg: #553622;
    --color-accent-gold: #CB8E01;
    --color-accent-green: #4E854C;
    --color-text-light: #F5E8D0;
    --color-text-muted: #C9A97A;
    --color-surface: #3d2515;
    --color-surface-2: #6b4428;
    --color-border: #7a5535;
    --color-white: #fff;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-heading: 'Cinzel', 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-accent: 'Marcellus', serif;
    --transition: 0.25s ease;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
    --shadow-gold: 0 0 18px rgba(203, 142, 1, 0.35);
}

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

html {
    scroll-behavior: smooth;
    background: var(--color-brand-bg);
}

body {
    font-family: var(--font-body);
    background: var(--color-brand-bg);
    color: var(--color-text-light);
    line-height: 1.65;
    font-size: 16px;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

a:hover {
    color: #e8a800;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--color-accent-gold);
    line-height: 1.25;
    margin-bottom: 0.65em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

h1 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
}

h2 {
    font-size: clamp(1.3rem, 3vw, 2rem);
}

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

h4 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 1em;
}

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

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

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

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

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.12);
}

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

.btn--gold {
    background: linear-gradient(135deg, #e8a800 0%, #CB8E01 100%);
    color: #1a0e00;
    box-shadow: 0 3px 14px rgba(203, 142, 1, 0.5);
}

.btn--green {
    background: linear-gradient(135deg, #5ea05b 0%, #4E854C 100%);
    color: #fff;
    box-shadow: 0 3px 14px rgba(78, 133, 76, 0.45);
}

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

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

.btn--lg {
    padding: 14px 32px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

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

.btn--icon {
    padding: 9px;
}

.section-pad {
    padding: 56px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 36px;
    position: relative;
    padding-bottom: 14px;
}

.section-title::after {
    content: '';
    display: block;
    width: 68px;
    height: 3px;
    background: var(--color-accent-gold);
    border-radius: 2px;
    margin: 10px auto 0;
}

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

.badge--gold {
    background: var(--color-accent-gold);
    color: #1a0e00;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

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

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

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

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

.header-logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-accent-gold);
    margin-left: 10px;
    text-shadow: var(--shadow-gold);
    letter-spacing: 0.04em;
}

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

.header-nav a {
    color: var(--color-text-light);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background var(--transition), color var(--transition);
    text-decoration: none;
}

.header-nav a:hover {
    background: var(--color-surface-2);
    color: var(--color-accent-gold);
}

.header-nav svg {
    width: 16px;
    height: 16px;
    opacity: 0.8;
}

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

.lang-selector {
    position: relative;
}

.lang-btn {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    color: var(--color-text-light);
    border-radius: var(--radius-sm);
    padding: 7px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-family: var(--font-body);
    transition: background var(--transition);
}

.lang-btn:hover {
    background: var(--color-surface-2);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    min-width: 140px;
    box-shadow: var(--shadow);
    display: none;
    z-index: 100;
    overflow: hidden;
}

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

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    color: var(--color-text-light);
    font-size: 0.88rem;
    transition: background var(--transition);
}

.lang-dropdown a:hover {
    background: var(--color-surface-2);
    color: var(--color-accent-gold);
}

.online-counter {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

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

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

.online-num {
    color: var(--color-accent-green);
    font-weight: 700;
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.burger-btn:hover {
    background: var(--color-surface-2);
}

.burger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text-light);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

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

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

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

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--color-brand-dark);
    border-top: 1px solid var(--color-border);
    padding: 12px 16px 18px;
    gap: 4px;
}

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

.mobile-menu a {
    color: var(--color-text-light);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: background var(--transition);
    text-decoration: none;
}

.mobile-menu a:hover {
    background: var(--color-surface-2);
    color: var(--color-accent-gold);
}

.mobile-menu svg {
    width: 18px;
    height: 18px;
    opacity: 0.75;
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-surface);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/book-of-ra-hero.png');
    background-size: cover;
    background-position: center 40%;
    filter: brightness(0.65);
    z-index: 0;
    transition: transform 0.8s ease;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(33, 15, 5, 0.88) 0%, rgba(33, 15, 5, 0.3) 70%, transparent 100%);
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: all;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 16px;
}

.hero-badge {
    margin-bottom: 14px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.7);
    line-height: 1.15;
    margin-bottom: 18px;
    max-width: 600px;
}

.hero-title span {
    color: var(--color-accent-gold);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--color-text-muted);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.6;
}

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

.hero-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    border: none;
}

.hero-dot.active {
    background: var(--color-accent-gold);
    transform: scale(1.25);
}

/* ===================== MAIN CONTENT AREA ===================== */
.main-content {
    padding: 40px 0;
}

.content-wrap {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.content-main {
    flex: 1;
    min-width: 0;
}

.content-sidebar {
    width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ===================== GAME INFO TABLE ===================== */
.game-info-block {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: var(--shadow);
}

.game-info-block h2 {
    padding: 20px 24px 12px;
    margin-bottom: 0;
    border-bottom: 1px solid var(--color-border);
}

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

.info-table tr {
    border-bottom: 1px solid rgba(122, 85, 53, 0.35);
}

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

.info-table tr:nth-child(even) {
    background: rgba(61, 37, 21, 0.45);
}

.info-table td {
    padding: 11px 20px;
    font-size: 0.92rem;
    vertical-align: top;
    line-height: 1.5;
}

.info-table td:first-child {
    color: var(--color-text-muted);
    font-weight: 600;
    white-space: nowrap;
    width: 45%;
}

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

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

/* ===================== WINNERS BLOCK ===================== */
.winners-block {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: var(--shadow);
}

.winners-block h2 {
    padding: 20px 24px 12px;
    margin-bottom: 0;
    border-bottom: 1px solid var(--color-border);
}

.winners-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--color-border);
}

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

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

.winners-table thead tr {
    background: rgba(203, 142, 1, 0.12);
}

.winners-table th {
    padding: 10px 16px;
    text-align: left;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--color-text-muted);
    font-weight: 600;
    white-space: nowrap;
}

.winners-table td {
    padding: 9px 16px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(122, 85, 53, 0.25);
    vertical-align: middle;
}

.winners-table tr:hover td {
    background: rgba(203, 142, 1, 0.07);
}

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

.w-rank {
    font-weight: 700;
    color: var(--color-text-muted);
    width: 36px;
}

.w-rank.top3 {
    color: var(--color-accent-gold);
    font-size: 1rem;
}

.w-ava {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-surface-2);
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-accent-gold);
    flex-shrink: 0;
}

.w-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.w-amount {
    font-weight: 700;
    color: var(--color-accent-green);
}

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

.winners-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ===================== SCREENSHOTS ===================== */
.screenshots-block {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 28px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.screenshots-block h2 {
    margin-bottom: 20px;
}

.screenshots-grid {
    display: flex;
    gap: 14px;
}

.screenshot-item {
    flex: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.screenshot-item img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--radius-sm);
    transition: transform 0.3s ease;
    border: 2px solid var(--color-border);
}

.screenshot-item:hover img {
    transform: scale(1.04);
    border-color: var(--color-accent-gold);
}

.screenshots-slider {
    display: none;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.screenshots-slider-inner {
    display: flex;
    transition: transform 0.4s ease;
}

.screenshots-slider-inner .screenshot-item {
    flex: 0 0 100%;
    max-width: 100%;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--color-border);
    border: none;
    cursor: pointer;
    transition: background var(--transition);
}

.slider-dot.active {
    background: var(--color-accent-gold);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background var(--transition);
}

.slider-arrow:hover {
    background: var(--color-accent-gold);
    color: #1a0e00;
}

.slider-arrow--prev {
    left: 8px;
}

.slider-arrow--next {
    right: 8px;
}

/* ===================== VIDEO ===================== */
.video-block {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 28px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.video-block h2 {
    margin-bottom: 18px;
}

.video-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.video-tab {
    padding: 7px 16px;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    background: transparent;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-body);
}

.video-tab.active, .video-tab:hover {
    background: var(--color-accent-gold);
    border-color: var(--color-accent-gold);
    color: #1a0e00;
    font-weight: 700;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: #000;
}

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

/* ===================== FAQ ===================== */
.faq-block {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 28px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.faq-block h2 {
    margin-bottom: 20px;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: var(--color-surface-2);
    border: none;
    color: var(--color-text-light);
    padding: 16px 20px;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: background var(--transition), color var(--transition);
}

.faq-question:hover {
    background: var(--color-border);
    color: var(--color-accent-gold);
}

.faq-question.open {
    background: rgba(203, 142, 1, 0.15);
    color: var(--color-accent-gold);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition);
}

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

.faq-answer {
    display: none;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.15);
    font-size: 0.94rem;
    color: var(--color-text-light);
    line-height: 1.7;
    border-top: 1px solid var(--color-border);
}

.faq-answer.open {
    display: block;
}

.faq-answer p {
    margin-bottom: 0.75em;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* ===================== CONTENT BLOCK (reviews etc) ===================== */
.review-block {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 28px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.review-block h2 {
    margin-bottom: 20px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.review-card {
    background: var(--color-surface-2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.review-star {
    color: var(--color-accent-gold);
    font-size: 1rem;
}

.review-text {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.6;
    flex: 1;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-ava {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-brand-dark);
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-accent-gold);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.review-name {
    font-weight: 600;
    font-size: 0.9rem;
}

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

/* ===================== PROS/CONS ===================== */
.pros-cons-block {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 28px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.pros-cons-block h2 {
    margin-bottom: 20px;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pros, .cons {
    border-radius: var(--radius-sm);
    padding: 18px;
}

.pros {
    background: rgba(78, 133, 76, 0.1);
    border: 1px solid rgba(78, 133, 76, 0.3);
}

.cons {
    background: rgba(180, 60, 60, 0.1);
    border: 1px solid rgba(180, 60, 60, 0.3);
}

.pros h3 {
    color: var(--color-accent-green);
    margin-bottom: 14px;
}

.cons h3 {
    color: #e57373;
    margin-bottom: 14px;
}

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

.pros-cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.92rem;
}

.pros-cons-list li::before {
    content: '';
    display: inline-block;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    border-radius: 50%;
    background-size: contain;
}

.pros li::before {
    background: var(--color-accent-green);
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 10l4 4 6-8' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 10l4 4 6-8' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.cons li::before {
    background: #e57373;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 14L14 6M6 6l8 8' stroke='%23fff' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 14L14 6M6 6l8 8' stroke='%23fff' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ===================== AUTHOR BLOCK ===================== */
.author-block {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 28px;
    padding: 24px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.author-ava {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-brand-dark);
    border: 3px solid var(--color-accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-accent-gold);
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.author-info h4 {
    color: var(--color-accent-gold);
    margin-bottom: 4px;
}

.author-role {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.author-bio {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 10px;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
}

.author-link:hover {
    text-decoration: underline;
}

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

/* ===================== SIDEBAR ===================== */
.sidebar-casino-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 18px;
    box-shadow: var(--shadow);
}

.sidebar-casino-card h3 {
    font-size: 1rem;
    margin-bottom: 14px;
    color: var(--color-accent-gold);
}

.casino-card {
    background: var(--color-surface-2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 14px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.casino-card:last-child {
    margin-bottom: 0;
}

.casino-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.casino-logo-ph {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--color-brand-dark);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-align: center;
    font-weight: 700;
}

.casino-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

.casino-rating span {
    color: var(--color-accent-gold);
    font-weight: 700;
}

.casino-bonus {
    background: rgba(203, 142, 1, 0.12);
    border: 1px solid rgba(203, 142, 1, 0.25);
    border-radius: 6px;
    padding: 7px 10px;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.casino-bonus strong {
    color: var(--color-accent-gold);
    display: block;
    font-size: 0.95rem;
}

.sidebar-rating-block {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 18px;
    box-shadow: var(--shadow);
}

.overall-score {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.score-big {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-accent-gold);
    font-weight: 700;
    line-height: 1;
}

.score-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.score-label strong {
    display: block;
    font-size: 1rem;
    color: var(--color-text-light);
}

.rating-bar-item {
    margin-bottom: 10px;
}

.rating-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    margin-bottom: 4px;
    color: var(--color-text-muted);
}

.rating-bar-label span {
    color: var(--color-text-light);
    font-weight: 600;
}

.rating-bar {
    height: 6px;
    background: var(--color-surface-2);
    border-radius: 3px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent-gold), #e8a800);
    border-radius: 3px;
    transition: width 1s ease;
}

/* ===================== CONTENT TEXT AREA ===================== */
.content-text-area {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px;
    margin-bottom: 28px;
    box-shadow: var(--shadow);
    line-height: 1.75;
}

.content-text-area h2 {
    margin-top: 1.5em;
    margin-bottom: 0.65em;
}

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

.content-text-area h3 {
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    font-size: 1.2rem;
}

.content-text-area p {
    margin-bottom: 1.1em;
    color: var(--color-text-light);
}

.content-text-area ul, .content-text-area ol {
    padding-left: 24px;
    margin-bottom: 1.1em;
}

.content-text-area li {
    margin-bottom: 0.45em;
    color: var(--color-text-light);
}

.content-text-area a {
    color: var(--color-accent-gold);
}

.content-text-area a:hover {
    text-decoration: underline;
}

.content-text-area table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
}

.content-text-area th {
    background: var(--color-surface-2);
    padding: 10px 14px;
    text-align: left;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid var(--color-border);
}

.content-text-area td {
    padding: 9px 14px;
    border: 1px solid var(--color-border);
    color: var(--color-text-light);
    font-size: 0.92rem;
}

.content-text-area tr:nth-child(even) td {
    background: rgba(61, 37, 21, 0.45);
}

.content-text-area blockquote {
    border-left: 4px solid var(--color-accent-gold);
    padding: 12px 18px;
    background: rgba(203, 142, 1, 0.08);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.2em 0;
    font-style: italic;
    color: var(--color-text-muted);
}

.content-text-area strong {
    color: var(--color-text-light);
}

/* ===================== FOOTER ===================== */
.site-footer {
    background: var(--color-brand-dark);
    border-top: 2px solid var(--color-border);
    padding: 48px 0 24px;
    margin-top: auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    margin-bottom: 36px;
}

.footer-brand {
}

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

.footer-logo img {
    height: 44px;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-accent-gold);
}

.footer-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 14px;
}

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

.footer-links a {
    color: var(--color-text-light);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color var(--transition);
}

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

.footer-middle {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 16px;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 24px;
}

.footer-logos {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-logos-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logos-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--color-text-muted);
}

.footer-logos-row {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.trust-badge {
    background: var(--color-surface-2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 7px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.trust-badge svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

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

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

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

.footer-18plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--color-border);
    border-radius: 50%;
    font-weight: 900;
    font-size: 0.72rem;
    color: var(--color-text-light);
    flex-shrink: 0;
}

.tech-page {
    padding: 40px 0 60px;
}

.tech-content {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 36px 40px;
    box-shadow: var(--shadow);
    max-width: 860px;
    margin: 0 auto;
}

.tech-content h1 {
    margin-bottom: 24px;
}

.tech-content h2 {
    margin-top: 2em;
    font-size: 1.3rem;
}

.tech-content h3 {
    margin-top: 1.5em;
    font-size: 1.1rem;
}

.tech-content p {
    color: var(--color-text-light);
    line-height: 1.75;
    margin-bottom: 1.1em;
}

.tech-content ul, .tech-content ol {
    padding-left: 24px;
    margin-bottom: 1.1em;
}

.tech-content li {
    color: var(--color-text-light);
    margin-bottom: 0.5em;
    line-height: 1.6;
}

.tech-content a {
    color: var(--color-accent-gold);
}

.tech-content a:hover {
    text-decoration: underline;
}

.tech-content strong {
    color: var(--color-text-light);
}

/* ===================== LIGHTBOX ===================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.lightbox-img {
    max-width: 92vw;
    max-height: 88vh;
    border-radius: var(--radius-sm);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition);
}

.lightbox-close:hover {
    color: var(--color-accent-gold);
}

/* ===================== BREADCRUMB ===================== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    padding: 14px 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.breadcrumb a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--color-accent-gold);
}

.breadcrumb-sep {
    color: var(--color-border);
}

/* ===================== GAMES BLOCK ===================== */
.games-block {
    margin-bottom: 28px;
}

.games-block h2 {
    margin-bottom: 20px;
    text-align: center;
}

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

.game-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 18px rgba(203, 142, 1, 0.2);
    border-color: var(--color-accent-gold);
}

.game-card-img {
    aspect-ratio: 4/3;
    background: var(--color-surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.game-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-card-img img {
    transform: scale(1.07);
}

.game-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.game-card:hover .game-card-overlay {
    opacity: 1;
}

.game-card-body {
    padding: 12px 14px;
    flex: 1;
}

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

.game-card-provider {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: -600px 0;
    }
    100% {
        background-position: 600px 0;
    }
}

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

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

.fade-in {
    animation: fadeIn 0.4s ease both;
}

[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== HIDDEN WP ELEMENTS ===================== */
.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 4px;
}

.alignleft {
    float: left;
    margin-right: 18px;
}

.alignright {
    float: right;
    margin-left: 18px;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

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

.entry-meta {
    display: none;
}

.post-thumbnail {
    display: none;
}

.elementor-section {
    display: none !important;
}

.wp-block-group {
    display: none !important;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .content-sidebar {
        width: 260px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }
}

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

    .online-counter {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .content-wrap {
        flex-direction: column;
    }

    .content-sidebar {
        width: 100%;
    }

    .screenshots-grid {
        display: none;
    }

    .screenshots-slider {
        display: block;
    }

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

    .hero {
        min-height: 340px;
    }

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

    .sticky-widget {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

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

    .tech-content {
        padding: 20px 16px;
    }

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

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

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

    .hero-cta .btn {
        width: 100%;
    }

    .btn--lg {
        padding: 13px 22px;
    }

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

/* unique class identifiers */
.x9f2b {
    display: none;
}

.k4m7q {
    display: none;
}

.r3v9p {
    display: none;
}

.n1x5t {
    display: none;
}

.wp-includes-fix {
    display: none !important;
}
