/* ============================================
   TOP KASINO PL - Premium Dark Gold Theme
   Уникальный шаблон обзорника казино
   ============================================ */

/* CSS Variables */
:root {
    /* Colors - Premium Casino Dark */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222222;
    --bg-elevated: #252525;
    
    /* Gold Palette - Vibrant Casino Gold */
    --gold-primary: #f5b800;
    --gold-light: #ffd54f;
    --gold-dark: #c49000;
    --gold-deep: #a67c00;
    --gold-gradient: linear-gradient(135deg, #f5b800 0%, #ffd54f 40%, #f5b800 70%, #c49000 100%);
    --gold-shine: linear-gradient(135deg, #ffd54f 0%, #f5b800 25%, #fff7cc 50%, #f5b800 75%, #c49000 100%);
    --gold-button: linear-gradient(180deg, #ffd54f 0%, #f5b800 50%, #c49000 100%);
    
    /* Accent Colors */
    --accent-green: #57b58f;
    --accent-red: #f87171;
    --accent-blue: #60a5fa;
    --accent-purple: #a78bfa;
    --accent-orange: #fb923c;
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --text-gold: #f5b800;
    
    /* Effects */
    --glow-gold: 0 0 40px rgba(245, 184, 0, 0.4), 0 0 80px rgba(245, 184, 0, 0.2);
    --glow-gold-soft: 0 0 20px rgba(245, 184, 0, 0.3);
    --glow-green: 0 0 25px rgba(87, 181, 143, 0.35);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-elevated: 0 8px 40px rgba(0, 0, 0, 0.6);
    
    /* Spacing */
    --container-max: 1400px;
    --section-padding: 100px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    background-image: 
        radial-gradient(ellipse at top right, rgba(245, 184, 0, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(245, 184, 0, 0.02) 0%, transparent 50%);
    background-attachment: fixed;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* Utility Classes */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.gold {
    color: var(--gold-primary);
}

.gradient-text {
    background: var(--gold-shine);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: goldShine 3s linear infinite;
}

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

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 25s ease-in-out infinite;
}

.bg-glow-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(245, 184, 0, 0.12) 0%, transparent 60%);
    top: -300px;
    right: -200px;
    animation-delay: 0s;
}

.bg-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 184, 0, 0.08) 0%, transparent 60%);
    bottom: 10%;
    left: -200px;
    animation-delay: -8s;
}

.bg-glow-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 184, 0, 0.06) 0%, transparent 60%);
    bottom: -150px;
    right: 30%;
    animation-delay: -16s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    25% { transform: translate(40px, -40px) scale(1.1); opacity: 0.6; }
    50% { transform: translate(-30px, 30px) scale(0.9); opacity: 0.4; }
    75% { transform: translate(30px, 40px) scale(1.05); opacity: 0.55; }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-medium);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 184, 0, 0.2), transparent);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.logo-icon {
    font-size: 2rem;
    background: var(--gold-shine);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(245, 184, 0, 0.5));
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(245, 184, 0, 0.5)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 20px rgba(245, 184, 0, 0.7)); }
}

.logo-full {
    display: block;
    height: 76px;
    width: auto;
    filter: drop-shadow(0 0 14px rgba(245, 184, 0, 0.18));
    transition: var(--transition-medium);
}

.logo:hover .logo-full {
    filter: drop-shadow(0 0 20px rgba(245, 184, 0, 0.35));
}

.footer-brand .logo-full {
    height: 72px;
}

@media (max-width: 768px) {
    .logo-full { height: 60px; }
}

@media (max-width: 480px) {
    .logo-full { height: 52px; }
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-text .gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 6px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-secondary);
    position: relative;
    padding: 10px 16px;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.nav-icon {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link:hover .nav-icon {
    opacity: 1;
    color: var(--gold-primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.update-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(245, 184, 0, 0.12) 0%, rgba(245, 184, 0, 0.04) 100%);
    border: 1px solid rgba(245, 184, 0, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-primary);
    transition: var(--transition-fast);
}

.update-badge:hover {
    background: linear-gradient(135deg, rgba(245, 184, 0, 0.18) 0%, rgba(245, 184, 0, 0.08) 100%);
    border-color: rgba(245, 184, 0, 0.4);
    box-shadow: var(--glow-gold-soft);
}

.update-icon {
    width: 14px;
    height: 14px;
    opacity: 0.8;
    animation: rotateIcon 10s linear infinite;
}

@keyframes rotateIcon {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.burger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(245, 184, 0, 0.12) 0%, rgba(245, 184, 0, 0.04) 100%);
    border: 1px solid rgba(245, 184, 0, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1;
}

.hero-badge img,
.badge-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.stat-item {
    text-align: center;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Outfit', sans-serif;
    line-height: 1.1;
}

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

.hero-cta {
    display: flex;
    gap: 16px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-cta .btn {
    min-width: 180px;
}

.hero-cta .btn img {
    display: none;
}

/* Hero Visual - Floating Cards */
.hero-visual {
    position: relative;
    height: 500px;
}

.hero-phone {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-image {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6)) 
            drop-shadow(0 0 40px rgba(245, 184, 0, 0.15));
}

/* Animated Cursor */
.animated-cursor {
    position: absolute;
    pointer-events: none;
    z-index: 10;
    animation: cursorMove 8s ease-in-out infinite;
}

.cursor-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    transform-origin: top left;
}

.click-ripple {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation: clickEffect 8s ease-in-out infinite;
}

@keyframes cursorMove {
    0% {
        top: 25%;
        left: 45%;
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    15% {
        top: 35%;
        left: 50%;
    }
    25% {
        top: 35%;
        left: 50%;
    }
    35% {
        top: 50%;
        left: 48%;
    }
    45% {
        top: 50%;
        left: 48%;
    }
    55% {
        top: 65%;
        left: 52%;
    }
    65% {
        top: 65%;
        left: 52%;
    }
    75% {
        top: 45%;
        left: 55%;
    }
    85% {
        top: 45%;
        left: 55%;
    }
    95% {
        opacity: 1;
    }
    100% {
        top: 25%;
        left: 45%;
        opacity: 0;
    }
}

@keyframes clickEffect {
    0%, 24%, 44%, 64%, 84%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    25%, 26% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.5);
    }
    28% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2);
    }
    45%, 46% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.5);
    }
    48% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2);
    }
    65%, 66% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.5);
    }
    68% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2);
    }
    85%, 86% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.5);
    }
    88% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2);
    }
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: none;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    text-align: center;
}

.btn img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    vertical-align: middle;
}

.btn-primary {
    background: var(--gold-button);
    color: #000;
    box-shadow: 0 4px 15px rgba(245, 184, 0, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: var(--transition-slow);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--glow-gold);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(245, 184, 0, 0.1);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.btn-bonus {
    background: var(--gold-button);
    color: #000;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(245, 184, 0, 0.4);
    text-shadow: none;
}

.btn-bonus::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: var(--transition-slow);
}

.btn-bonus:hover::before {
    left: 100%;
}

.btn-bonus:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: var(--glow-gold), 0 10px 30px rgba(245, 184, 0, 0.3);
}

.btn-review {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    font-size: 0.85rem;
    border-radius: var(--radius-full);
}

.btn-review:hover {
    background: rgba(245, 184, 0, 0.1);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.btn-load {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid rgba(245, 184, 0, 0.2);
    padding: 16px 40px;
}

.btn-load:hover {
    background: var(--bg-card-hover);
    border-color: var(--gold-primary);
    box-shadow: var(--glow-gold-soft);
}

.load-icon {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    position: relative;
    z-index: 1;
    padding: 30px 0;
    background: rgba(26, 26, 26, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.trust-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.trust-item:hover {
    border-color: rgba(245, 184, 0, 0.2);
    color: var(--gold-primary);
}

.trust-icon {
    font-size: 1.3rem;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(245, 184, 0, 0.12) 0%, rgba(245, 184, 0, 0.04) 100%);
    border: 1px solid rgba(245, 184, 0, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1;
}

.section-badge img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 12px;
}

.year-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gold-button);
    color: #000;
    font-size: 0.5em;
    font-weight: 800;
    border-radius: var(--radius-full);
    vertical-align: middle;
    margin-left: 10px;
    box-shadow: 0 2px 10px rgba(245, 184, 0, 0.3);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ============================================
   RANKING SECTION
   ============================================ */
.ranking-section {
    position: relative;
    z-index: 1;
    padding: var(--section-padding) 0;
}

/* Filters */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    background: rgba(245, 184, 0, 0.08);
    border-color: rgba(245, 184, 0, 0.3);
    color: var(--gold-primary);
}

.filter-btn.active {
    background: var(--gold-button);
    border-color: transparent;
    color: #000;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(245, 184, 0, 0.3);
}

/* Casino Cards */
.casino-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.casino-card {
    position: relative;
    display: grid;
    grid-template-columns: 40px 400px 1fr 320px;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    transition: var(--transition-medium);
    overflow: hidden;
    align-items: center;
}

.casino-card:hover {
    border-color: rgba(245, 184, 0, 0.2);
    background: var(--bg-card-hover);
}

.casino-card.featured {
    border-color: rgba(245, 184, 0, 0.25);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245, 184, 0, 0.03) 100%);
}

/* Casino Ribbon */
.casino-ribbon {
    position: absolute;
    top: 24px;
    right: -45px;
    background: var(--gold-button);
    color: #000;
    padding: 6px 55px;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* Casino Rank */
.casino-rank {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 35px;
}

.rank-number {
    font-size: 1.2rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--gold-primary);
    line-height: 1;
}

.rank-label {
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--gold-primary);
    background: rgba(245, 184, 0, 0.15);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    margin-top: 2px;
}

/* Casino Left - Logo + Rating */
.casino-left {
    display: grid;
    grid-template-columns: 140px 1fr;
    align-items: center;
    gap: 20px;
}

.casino-logo {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    min-width: 140px;
    min-height: 140px;
    max-width: 140px;
    max-height: 140px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.01);
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.logo-placeholder {
    width: 120px;
    height: 120px;
    background: var(--gold-button);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: #000;
    flex-shrink: 0;
}

.logo-placeholder.silver {
    background: linear-gradient(180deg, #d0d0d0 0%, #a0a0a0 100%);
}

.logo-placeholder.bronze {
    background: linear-gradient(180deg, #d4a056 0%, #b07830 100%);
}

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

.rating-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold-primary);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

/* Casino Main */
.casino-main {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: start;
}

.casino-name {
    font-size: 1.2rem;
    margin-bottom: 6px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.casino-left-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}


.stars {
    display: flex;
    gap: 1px;
}

.star {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.75rem;
    transition: var(--transition-fast);
}

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

.star.half {
    position: relative;
    color: rgba(255, 255, 255, 0.15);
}

.star.half::before {
    content: '★';
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: var(--gold-primary);
    text-shadow: 0 0 10px rgba(245, 184, 0, 0.5);
}


.rating-max {
    display: none;
}

/* Casino Badges */
.casino-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 6px;
}

.badge {
    padding: 3px 8px;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Unified Badge System - Minimalist Gold/Gray Theme */
.badge-hot,
.badge-verified,
.badge-fast,
.badge-new,
.badge-crypto {
    background: rgba(245, 184, 0, 0.08);
    color: var(--gold-light);
    border: 1px solid rgba(245, 184, 0, 0.2);
    font-size: 0.7rem;
    padding: 4px 10px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.badge-hot {
    background: rgba(245, 184, 0, 0.12);
    border-color: rgba(245, 184, 0, 0.3);
}

.badge-verified {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    border-color: rgba(255, 255, 255, 0.1);
}

.badge-fast,
.badge-new,
.badge-crypto {
    background: rgba(245, 184, 0, 0.05);
    color: var(--gold-primary);
    border-color: rgba(245, 184, 0, 0.15);
}

/* Casino Details */
.casino-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.8rem;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.detail-label {
    color: var(--text-muted);
    font-weight: 500;
    min-width: fit-content;
    font-size: 0.75rem;
}

.detail-value {
    font-weight: 600;
    color: var(--text-primary);
    text-align: right;
}

.detail-value.highlight {
    color: var(--accent-green);
}

/* Payment Methods */
.payment-methods {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.payment-icon {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.payment-icon:hover {
    background: rgba(245, 184, 0, 0.05);
    border-color: rgba(245, 184, 0, 0.15);
    color: var(--gold-light);
}

.payment-more {
    padding: 5px 12px;
    background: rgba(245, 184, 0, 0.05);
    border: 1px solid rgba(245, 184, 0, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold-primary);
}

/* Pros & Cons */
.casino-pros-cons {
    display: flex;
    gap: 24px;
}

.pros, .cons {
    font-size: 0.75rem;
}

.pc-label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.7rem;
}

.pros .pc-label {
    color: var(--accent-green);
}

.cons .pc-label {
    color: var(--accent-red);
}

.pros ul li, .cons ul li {
    padding: 2px 0;
    padding-left: 12px;
    position: relative;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.pros ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
}

.cons ul li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--accent-red);
}

/* Casino Bonus */
.casino-bonus {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 16px;
    background: linear-gradient(135deg, rgba(245, 184, 0, 0.05) 0%, rgba(245, 184, 0, 0.02) 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(245, 184, 0, 0.1);
    text-align: center;
    gap: 14px;
}

.bonus-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bonus-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.bonus-value {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bonus-amount {
    font-size: 1.4rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--gold-primary);
    line-height: 1;
}

.bonus-limit {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
}

.bonus-extra {
    font-size: 0.7rem;
    color: var(--gold-light);
    font-weight: 600;
}

.bonus-wager {
    font-size: 0.65rem;
    color: var(--text-muted);
    opacity: 0.8;
}

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

.casino-actions .btn {
    width: 100%;
    padding: 9px 14px;
    font-size: 0.72rem;
    white-space: nowrap;
}

/* Hidden Casinos */
.hidden-casinos {
    display: none;
    flex-direction: column;
    gap: 12px;
}

.hidden-casinos.show {
    display: flex;
    animation: fadeInCasinos 0.5s ease;
}

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

.hidden-casinos .casino-card {
    animation: fadeInCard 0.4s ease backwards;
}

.hidden-casinos .casino-card:nth-child(1) { animation-delay: 0.05s; }
.hidden-casinos .casino-card:nth-child(2) { animation-delay: 0.1s; }
.hidden-casinos .casino-card:nth-child(3) { animation-delay: 0.15s; }
.hidden-casinos .casino-card:nth-child(4) { animation-delay: 0.2s; }
.hidden-casinos .casino-card:nth-child(5) { animation-delay: 0.25s; }
.hidden-casinos .casino-card:nth-child(6) { animation-delay: 0.3s; }
.hidden-casinos .casino-card:nth-child(7) { animation-delay: 0.35s; }

@keyframes fadeInCard {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Load More */
.load-more {
    text-align: center;
    margin-top: 30px;
}

.btn-collapse {
    display: none;
}

.load-more.expanded #loadMoreBtn {
    display: none;
}

.load-more.expanded .btn-collapse {
    display: inline-flex;
}

/* ============================================
   METHODOLOGY SECTION
   ============================================ */
.methodology-section {
    position: relative;
    z-index: 1;
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.method-card {
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(245, 184, 0, 0.3), transparent);
    opacity: 0;
    transition: var(--transition-medium);
}

.method-card:hover {
    border-color: rgba(245, 184, 0, 0.2);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

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

.method-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(245, 184, 0, 0.15) 0%, rgba(245, 184, 0, 0.05) 100%);
    border: 1px solid rgba(245, 184, 0, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.method-card h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.method-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.method-weight {
    display: flex;
    align-items: center;
    gap: 12px;
}

.weight-bar {
    flex: 1;
    height: 6px;
    background: var(--bg-secondary);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.weight-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--weight);
    background: var(--gold-gradient);
    border-radius: 3px;
}

.weight-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-primary);
    min-width: 40px;
}

/* ============================================
   BLACKLIST SECTION
   ============================================ */
.blacklist-section {
    position: relative;
    z-index: 1;
    padding: var(--section-padding) 0;
}

.blacklist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.blacklist-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-medium);
    display: flex;
    gap: 24px;
    align-items: center;
}

.blacklist-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.blacklist-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.blacklist-logo {
    width: 130px;
    height: 130px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-secondary);
    flex-shrink: 0;
    overflow: hidden;
}

.blacklist-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.blacklist-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.blacklist-header {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
}

.blacklist-info {
    flex: 1;
}

.blacklist-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.blacklist-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-value {
    font-size: 0.95rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.rating-value.danger {
    color: #ef4444;
}

.rating-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.blacklist-issues {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.blacklist-issues li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    padding-left: 0;
    line-height: 1.5;
}

.blacklist-issues li:last-child {
    margin-bottom: 0;
}

.blacklist-issues li svg {
    color: #9ca3af;
    flex-shrink: 0;
    margin-top: 2px;
}

.blacklist-warning {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: flex;
    gap: 24px;
    align-items: center;
}

.warning-icon {
    width: 60px;
    height: 60px;
    background: rgba(245, 184, 0, 0.1);
    border: 1px solid rgba(245, 184, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold-primary);
}

.exclamation-mark {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--gold-primary);
    line-height: 1;
}

.warning-content {
    flex: 1;
}

.warning-content h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.warning-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .blacklist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blacklist-grid {
        grid-template-columns: 1fr;
    }
    
    .blacklist-card {
        flex-direction: row;
        gap: 16px;
        align-items: center;
    }
    
    .blacklist-logo {
        width: 100px;
        height: 100px;
    }
    
    .blacklist-warning {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }
}

/* ============================================
   BONUS TYPES SECTION
   ============================================ */
.bonus-section {
    position: relative;
    z-index: 1;
    padding: var(--section-padding) 0;
}

.bonus-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.bonus-type-card {
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: var(--transition-medium);
}

.bonus-type-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.bt-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.bt-icon {
    font-size: 2rem;
}

.bt-header h3 {
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
}

.bonus-type-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.bt-example {
    padding: 16px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--gold-primary);
}

.bt-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.bt-value {
    font-weight: 600;
    color: var(--gold-primary);
}

/* ============================================
   GAMES SECTION
   ============================================ */
.games-section {
    position: relative;
    z-index: 1;
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.games-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.game-category {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.game-category::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(245, 184, 0, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-medium);
}

.game-category:hover {
    border-color: rgba(245, 184, 0, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.game-category:hover::before {
    opacity: 1;
}

.gc-visual {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.gc-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(245, 184, 0, 0.2) 0%, rgba(245, 184, 0, 0.05) 100%);
    border: 1px solid rgba(245, 184, 0, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    transition: var(--transition-medium);
}

.game-category:hover .gc-icon {
    transform: scale(1.1);
    box-shadow: var(--glow-gold-soft);
}

.game-category h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.game-category p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.gc-count {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-primary);
}

/* ============================================
   EXPERT SECTION
   ============================================ */
.expert-section {
    position: relative;
    z-index: 1;
    padding: 40px 0;
}

.expert-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    position: relative;
    overflow: hidden;
}

.expert-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(245, 184, 0, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.expert-content {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 24px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.expert-photo {
    position: relative;
}

.expert-img {
    width: 110px;
    height: 140px;
    border-radius: var(--radius-md);
    object-fit: cover;
    border: 2px solid rgba(245, 184, 0, 0.3);
}

.expert-photo-placeholder {
    width: 110px;
    height: 140px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(245, 184, 0, 0.1) 0%, rgba(245, 184, 0, 0.05) 100%);
    border: 2px dashed rgba(245, 184, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(245, 184, 0, 0.6);
    letter-spacing: 1px;
}

.expert-info {
    flex: 1;
}

.expert-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(245, 184, 0, 0.15);
    border: 1px solid rgba(245, 184, 0, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--gold-primary);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.expert-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.expert-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 500;
}

.expert-bio {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0 0 12px 0;
}

.expert-socials {
    display: flex;
    gap: 8px;
}

.social-link {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    color: var(--text-secondary);
}

.social-link:hover {
    background: rgba(245, 184, 0, 0.1);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-2px);
}

.expert-stats {
    display: flex;
    gap: 20px;
    align-items: center;
}

.expert-stat {
    text-align: center;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    min-width: 90px;
}

.stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 2px;
    display: block;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .expert-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .expert-photo {
        margin: 0 auto;
    }
    
    .expert-socials {
        justify-content: center;
    }
    
    .expert-stats {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .expert-card {
        padding: 24px 20px;
    }
    
    .expert-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .expert-stat {
        width: 100%;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    position: relative;
    z-index: 1;
    padding: var(--section-padding) 0;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-medium);
    margin-bottom: 16px;
}

.faq-item:hover {
    border-color: rgba(245, 184, 0, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: rgba(245, 184, 0, 0.5);
    background: linear-gradient(135deg, rgba(245, 184, 0, 0.05) 0%, var(--bg-card) 100%);
    box-shadow: 0 8px 30px rgba(245, 184, 0, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

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

.faq-item.active .faq-question {
    color: var(--gold-primary);
}

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

.faq-icon {
    font-size: 1.1rem;
    color: var(--gold-primary);
    transition: var(--transition-medium);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 184, 0, 0.1);
    border-radius: 50%;
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(245, 184, 0, 0.1);
    color: var(--gold-primary);
    font-size: 1.3rem;
    font-weight: 300;
    transition: all var(--transition-medium);
}

.faq-item.active .faq-icon {
    transform: rotate(135deg);
    background: var(--gold-gradient);
    color: var(--bg-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 800px;
}

.faq-answer-content {
    padding: 0 28px 28px;
    border-top: 1px solid rgba(245, 184, 0, 0.1);
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-top: 20px;
}

/* Анимация появления контента */
@keyframes fadeInAnswer {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item.active .faq-answer-content {
    animation: fadeInAnswer 0.3s ease 0.1s both;
}

/* ============================================
   RESPONSIBLE GAMING
   ============================================ */
.responsible-section {
    position: relative;
    z-index: 1;
    padding: 60px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.responsible-content {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .responsible-content {
        padding: 24px 16px;
        margin: 0 auto;
        max-width: calc(100% - 20px);
    }
    
    .responsible-icon img {
        width: 40px;
        height: 40px;
    }
    
    .responsible-content h3 {
        font-size: 1rem;
    }
    
    .responsible-content p {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }
}

.responsible-icon {
    margin-bottom: 20px;
}

.responsible-icon img {
    width: 56px;
    height: 56px;
}

.responsible-content h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
}

.responsible-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.responsible-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.r-badge {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    z-index: 1;
    padding: 60px 0 30px;
    background: #0d0d0d;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 184, 0, 0.3), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

/* Footer (clean layout: brand + external resources) */
.footer-main {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr 0.9fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-legal h4,
.footer-pages h4 {
    font-size: 0.9rem;
    margin-bottom: 18px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
}
.footer-legal-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.footer-legal-links li { margin: 0; }
.footer-legal-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}
.footer-legal-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-primary);
    flex-shrink: 0;
}
.footer-legal-links a:hover { color: var(--gold-light); }

.footer-resources h4 {
    font-size: 0.9rem;
    margin-bottom: 18px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-ext-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
}

.footer-ext-links li { margin: 0; }

.footer-ext-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-ext-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-primary);
    flex-shrink: 0;
    opacity: 0.7;
    transition: transform var(--transition-fast);
}

.footer-ext-links a::after {
    content: '↗';
    font-size: 0.8em;
    color: var(--gold-primary);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

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

.footer-ext-links a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

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

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-ext-links {
        grid-template-columns: 1fr;
    }
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-secondary);
    max-width: 350px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 16px;
    background: rgba(87, 181, 143, 0.1);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(87, 181, 143, 0.2);
    width: fit-content;
}

.footer-trust span {
    color: var(--accent-green);
    font-size: 0.85rem;
    font-weight: 600;
}

.footer-links h4 {
    font-size: 0.9rem;
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.88rem;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold-light);
    transform: translateX(5px);
}

/* Footer SEO Text */
.footer-seo-text {
    background: rgba(245, 184, 0, 0.03);
    border: 1px solid rgba(245, 184, 0, 0.1);
    border-radius: var(--radius-md);
    padding: 40px;
    margin: 50px 0 40px 0;
}

.footer-seo-text h3 {
    color: var(--gold-primary);
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-seo-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-seo-text p:last-child {
    margin-bottom: 0;
}

.footer-seo-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Footer Tablet & Mobile */
@media (max-width: 1024px) {
    .footer {
        padding: 40px 0 24px;
    }
    
    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 30px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        max-width: 600px;
        margin: 0 auto 10px;
    }
    
    .footer-brand .logo {
        justify-content: center;
        margin-bottom: 12px;
    }
    
    .footer-brand p {
        max-width: 100%;
        margin: 0 auto;
        font-size: 0.85rem;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links h4 {
        font-size: 0.8rem;
        margin-bottom: 14px;
    }
    
    .footer-links ul {
        align-items: center;
        gap: 10px;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 20px;
    }
    
    .footer-brand {
        margin-bottom: 20px;
        text-align: center;
    }
    
    .footer-brand .logo {
        margin-bottom: 12px;
        justify-content: center;
    }
    
    .footer-brand .logo-text {
        font-size: 1rem;
    }
    
    .footer-brand p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .footer-brand .footer-trust {
        justify-content: center;
    }
    
    /* Footer Accordion on Mobile */
    .footer-links {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .footer-links h4 {
        font-size: 0.85rem;
        margin-bottom: 0;
        padding: 16px 0;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: color 0.3s ease;
    }
    
    .footer-links h4::after {
        content: '+';
        font-size: 1.2rem;
        font-weight: 400;
        color: var(--gold-primary);
        transition: transform 0.3s ease;
    }
    
    .footer-links.active h4::after {
        content: '−';
    }
    
    .footer-links h4:hover {
        color: var(--gold-light);
    }
    
    .footer-links ul {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
    }
    
    .footer-links.active ul {
        max-height: 500px;
        padding-bottom: 16px;
    }
    
    .footer-links a {
        font-size: 0.85rem;
        padding: 8px 0;
        display: block;
    }
    
    .footer-bottom {
        padding-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
    
    .disclaimer {
        font-size: 0.7rem !important;
    }
    
    .footer-seo-text {
        display: none;
    }
}

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

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(245, 184, 0, 0.1);
}

.footer-bottom-content {
    text-align: center;
    margin-bottom: 20px;
}

.footer-bottom-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-badge {
    padding: 6px 12px;
    background: rgba(245, 184, 0, 0.1);
    border: 1px solid rgba(245, 184, 0, 0.2);
    border-radius: var(--radius-sm);
    color: var(--gold-primary);
    font-size: 0.75rem;
    font-weight: 600;
}

.disclaimer {
    font-size: 0.8rem !important;
}

/* ============================================
   FLOATING QUICK ACCESS MENU
   ============================================ */

.floating-menu {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.floating-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold-gradient);
    border: none;
    color: var(--bg-primary);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(245, 184, 0, 0.4);
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-toggle:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: var(--glow-gold);
}

.floating-toggle.active {
    transform: rotate(90deg);
}

.floating-content {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--bg-card);
    border: 1px solid rgba(245, 184, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: 12px;
    min-width: 180px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all var(--transition-medium);
}

.floating-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.floating-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    background: transparent;
    width: 100%;
    cursor: pointer;
    text-align: left;
}

.floating-item:hover {
    background: rgba(245, 184, 0, 0.1);
    color: var(--gold-primary);
    transform: translateX(-5px);
}

.floating-item img {
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.floating-item:hover img {
    opacity: 1;
}

.scroll-top {
    border-top: 1px solid rgba(245, 184, 0, 0.1);
    margin-top: 8px;
    padding-top: 16px;
}

/* ============================================
   RELATED CONTENT BOXES
   ============================================ */

.related-content-box {
    background: linear-gradient(135deg, rgba(245, 184, 0, 0.08) 0%, rgba(245, 184, 0, 0.03) 100%);
    border: 1px solid rgba(245, 184, 0, 0.2);
    border-radius: var(--radius-md);
    padding: 25px;
    margin: 40px 0;
}

.related-content-box h4 {
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.related-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.related-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid rgba(245, 184, 0, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.related-link:hover {
    background: rgba(245, 184, 0, 0.1);
    border-color: var(--gold-primary);
    color: var(--gold-light);
    transform: translateX(5px);
}

.related-link img {
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.related-link:hover img {
    opacity: 1;
}

/* ============================================
   SEO CONTENT SECTION
   ============================================ */

.seo-content-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    position: relative;
}

/* Table of Contents */
.toc-wrapper {
    background: linear-gradient(135deg, rgba(245, 184, 0, 0.05) 0%, rgba(245, 184, 0, 0.02) 100%);
    border: 1px solid rgba(245, 184, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.toc-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--text-primary);
    text-align: center;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.toc-column h4 {
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.toc-list {
    list-style: none;
    padding: 0;
}

.toc-list li {
    margin-bottom: 10px;
}

.toc-list a {
    color: var(--text-secondary);
    font-size: 1rem;
    display: block;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.toc-list a:hover {
    background: rgba(245, 184, 0, 0.1);
    color: var(--gold-light);
    transform: translateX(5px);
}

/* SEO Article */
.seo-article {
    background: var(--bg-card);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.article-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 50px 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--gold-primary);
    scroll-margin-top: 100px;
}

.article-heading:first-child {
    margin-top: 0;
}

.article-subheading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-light);
    margin: 35px 0 20px 0;
}

.seo-article p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.seo-article strong {
    color: var(--text-primary);
    font-weight: 600;
}

.seo-article ul {
    margin: 20px 0;
    padding-left: 25px;
}

.seo-article ul li {
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Expert Tip Box */
.expert-tip {
    background: linear-gradient(135deg, rgba(87, 181, 143, 0.1) 0%, rgba(87, 181, 143, 0.05) 100%);
    border-left: 4px solid var(--accent-green);
    border-radius: var(--radius-md);
    padding: 25px;
    margin: 30px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.tip-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.tip-content {
    color: var(--text-secondary);
    line-height: 1.7;
}

.tip-content strong {
    color: var(--accent-green);
    display: block;
    margin-bottom: 8px;
}

/* Help Box */
.help-box {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1) 0%, rgba(96, 165, 250, 0.05) 100%);
    border: 2px solid rgba(96, 165, 250, 0.3);
    border-radius: var(--radius-md);
    padding: 30px;
    margin: 30px 0;
}

.help-box h4 {
    color: var(--accent-blue);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.help-list {
    list-style: none;
    padding: 0;
}

.help-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(96, 165, 250, 0.1);
}

.help-list li:last-child {
    border-bottom: none;
}

.help-list strong {
    color: var(--accent-blue);
}

/* Important Note */
.important-note {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.1) 0%, rgba(251, 146, 60, 0.05) 100%);
    border-left: 4px solid var(--accent-orange);
    border-radius: var(--radius-md);
    padding: 25px;
    margin: 30px 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

.important-note strong {
    color: var(--accent-orange);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 10px;
}

/* Warning List */
.warning-list {
    background: rgba(248, 113, 113, 0.05);
    border-radius: var(--radius-sm);
    padding: 20px 20px 20px 45px;
    margin: 20px 0;
}

.warning-list li {
    color: var(--accent-red);
    margin-bottom: 8px;
}

/* Author Quote */
.author-quote {
    background: linear-gradient(135deg, rgba(245, 184, 0, 0.1) 0%, rgba(245, 184, 0, 0.05) 100%);
    border: 2px solid rgba(245, 184, 0, 0.3);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin: 50px 0;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    box-shadow: var(--glow-gold-soft);
}

.quote-icon {
    font-size: 3rem;
    color: var(--gold-primary);
    flex-shrink: 0;
    line-height: 1;
}

.quote-content p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.8;
}

.quote-content strong {
    color: var(--gold-primary);
    font-style: normal;
    font-size: 1rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .methodology-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    /* Hero Section - Tablet */
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        max-width: 700px;
    }
    
    .hero-badge {
        justify-content: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .casino-card {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }
    
    .casino-rank {
        position: absolute;
        top: 20px;
        left: 20px;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        background: rgba(0, 0, 0, 0.7);
        padding: 8px 14px;
        border-radius: var(--radius-full);
        min-width: auto;
    }
    
    .rank-number {
        font-size: 1.1rem;
    }
    
    .casino-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 0;
        margin-top: 10px;
    }
    
    .casino-logo {
        width: 120px;
        height: 120px;
        min-width: 120px;
        min-height: 120px;
    }
    
    .logo-placeholder {
        width: 120px;
        height: 120px;
        font-size: 1.3rem;
    }
    
    .casino-rating {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
    
    .rating-value {
        font-size: 1.4rem;
    }
    
    .stars .star {
        font-size: 0.8rem;
    }
    
    .casino-main {
        display: flex;
        flex-direction: column;
        gap: 14px;
        align-items: stretch;
        width: 100%;
    }
    
    .casino-left-info {
        text-align: center;
        align-items: center;
    }
    
    .casino-name {
        font-size: 1.15rem;
    }
    
    .casino-details {
        grid-template-columns: 1fr;
    }
    
    .casino-badges {
        justify-content: center;
    }
    
    .badge {
        font-size: 0.65rem;
        padding: 4px 10px;
    }
    
    .payment-methods {
        justify-content: center;
    }
    
    .payment-icon {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    
    .casino-right-info {
        width: 100%;
    }
    
    .casino-details {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        width: 100%;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        background: rgba(255, 255, 255, 0.04);
        padding: 12px 10px;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .detail-label {
        font-size: 0.7rem;
    }
    
    .detail-value {
        font-size: 0.85rem;
        font-weight: 600;
    }
    
    .casino-bonus {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        background: linear-gradient(135deg, rgba(245, 184, 0, 0.05) 0%, rgba(245, 184, 0, 0.02) 100%);
        padding: 12px 10px;
        border-radius: var(--radius-md);
        margin: 12px -10px -10px -10px;
        width: calc(100% + 20px);
        gap: 10px;
        border-top: 1px solid rgba(245, 184, 0, 0.08);
    }
    
    .bonus-content {
        margin-bottom: 0;
        text-align: left;
        flex: 1;
        width: 100%;
    }
    
    .bonus-label {
        font-size: 0.65rem;
    }
    
    .bonus-amount {
        font-size: 1.6rem;
    }
    
    .bonus-limit {
        font-size: 0.7rem;
    }
    
    .bonus-extra {
        font-size: 0.7rem;
    }
    
    .bonus-wager {
        font-size: 0.6rem;
    }
    
    .casino-actions {
        flex-direction: row;
        width: auto;
        gap: 12px;
    }
    
    .casino-actions .btn {
        padding: 14px 24px;
        font-size: 0.8rem;
        font-weight: 700;
        min-width: 140px;
    }
    
    .casino-actions .btn-text {
        padding: 12px 20px;
        font-size: 0.75rem;
        min-width: 120px;
    }
}

@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .casino-details {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .casino-bonus {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 12px 8px;
        margin: 10px -8px -8px -8px;
        width: calc(100% + 16px);
    }
    
    .bonus-content {
        text-align: center;
        width: 100%;
    }
    
    .bonus-label {
        font-size: 0.65rem;
        margin-bottom: 2px;
    }
    
    .bonus-amount {
        font-size: 1.4rem;
    }
    
    .bonus-limit {
        font-size: 0.75rem;
    }
    
    .bonus-extra {
        font-size: 0.75rem;
    }
    
    .bonus-wager {
        font-size: 0.65rem;
    }
    
    .casino-actions {
        width: 100%;
        justify-content: center;
        gap: 8px;
    }
    
    .casino-actions .btn {
        flex: 1;
        max-width: none;
        font-size: 0.75rem;
        padding: 10px 14px;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        background: #0a0a0a;
        z-index: 9999;
        padding: 80px 20px 40px;
    }
    
    .nav-menu.mobile-active {
        display: flex !important;
    }
    
    .nav-menu .nav-link {
        font-size: 1.2rem;
        padding: 12px 24px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        width: 200px;
        justify-content: center;
    }
    
    .nav-menu .nav-icon {
        width: 24px;
        height: 24px;
    }
    
    .burger {
        display: flex;
        z-index: 10000;
        position: relative;
    }
    
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .update-badge {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .casino-card {
        padding: 16px;
        gap: 14px;
    }
    
    .casino-rank {
        top: 12px;
        left: 12px;
        padding: 5px 10px;
    }
    
    .rank-number {
        font-size: 0.95rem;
    }
    
    .rank-label {
        font-size: 0.5rem;
        padding: 2px 5px;
    }
    
    .casino-logo {
        width: 110px;
        height: 110px;
        min-width: 110px;
        min-height: 110px;
    }
    
    .logo-placeholder {
        width: 110px;
        height: 110px;
        font-size: 1.1rem;
    }
    
    .rating-value {
        font-size: 1.1rem;
    }
    
    .stars .star {
        font-size: 0.75rem;
    }
    
    .casino-name {
        font-size: 1rem;
    }
    
    .casino-badges {
        gap: 4px;
    }
    
    .badge {
        padding: 3px 8px;
        font-size: 0.6rem;
    }
    
    .payment-methods {
        gap: 5px;
    }
    
    .payment-icon {
        padding: 3px 8px;
        font-size: 0.65rem;
    }
    
    .casino-details {
        gap: 8px;
    }
    
    .detail-item {
        padding: 10px 8px;
    }
    
    .detail-label {
        font-size: 0.6rem;
    }
    
    .detail-value {
        font-size: 0.75rem;
    }
    
    .casino-bonus {
        padding: 16px 18px;
        margin: 0 -16px -16px -16px;
        width: calc(100% + 32px);
    }
    
    .bonus-amount {
        font-size: 1.5rem;
    }
    
    .casino-actions .btn {
        padding: 12px 18px;
        font-size: 0.75rem;
        min-width: 120px;
    }
    
    .casino-actions .btn-text {
        padding: 10px 16px;
        font-size: 0.7rem;
        min-width: 100px;
    }
    
    .detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .casino-pros-cons {
        grid-template-columns: 1fr;
    }
    
    .methodology-grid,
    .bonus-types-grid {
        grid-template-columns: 1fr;
    }
    
    .games-showcase {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 10px;
    }
    
    .stat-item {
        padding: 10px 12px;
        flex: 1;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.55rem;
    }
    
    .hero-cta .btn {
        padding: 10px 18px;
        font-size: 0.7rem;
        min-width: 140px;
        justify-content: center;
        text-align: center;
    }
    
    .hero-cta .btn img {
        display: none;
    }
    
    .filters {
        justify-content: center;
    }
    
    /* SEO Content Responsive */
    .toc-wrapper {
        padding: 25px;
    }
    
    .toc-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .seo-article {
        padding: 30px;
    }
    
    .article-heading {
        font-size: 1.6rem;
    }
    
    .article-subheading {
        font-size: 1.3rem;
    }
    
    .author-quote {
        flex-direction: column;
        padding: 25px;
    }
    
    .expert-tip {
        flex-direction: column;
        padding: 20px;
    }
    
    /* Floating Menu Mobile */
    .floating-menu {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-toggle {
        width: 50px;
        height: 50px;
    }
    
    .related-links {
        grid-template-columns: 1fr;
    }
    
    .footer-seo-text {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        gap: 8px;
        margin-bottom: 24px;
    }
    
    .stat-item {
        padding: 8px 8px;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.5rem;
    }
    
    .hero-cta {
        gap: 10px;
    }
    
    .hero-cta .btn {
        padding: 10px 16px;
        font-size: 0.65rem;
        flex: 1;
        min-width: 0;
        justify-content: center;
        text-align: center;
    }
    
    .hero-cta .btn img {
        display: none;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .casino-card {
        padding: 12px;
        gap: 10px;
    }
    
    .casino-rank {
        top: 8px;
        left: 8px;
        padding: 4px 8px;
    }
    
    .rank-number {
        font-size: 0.85rem;
    }
    
    .casino-logo {
        width: 100px;
        height: 100px;
        min-width: 100px;
        min-height: 100px;
    }
    
    .logo-placeholder {
        width: 100px;
        height: 100px;
        font-size: 1rem;
    }
    
    .casino-details {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
    }
    
    .detail-item {
        padding: 6px 4px;
    }
    
    .detail-label {
        font-size: 0.5rem;
    }
    
    .detail-value {
        font-size: 0.65rem;
    }
    
    .casino-bonus {
        padding: 10px 6px;
        margin: 8px -6px -6px -6px;
        width: calc(100% + 12px);
        gap: 6px;
    }
    
    .bonus-content {
        width: 100%;
    }
    
    .bonus-label {
        font-size: 0.6rem;
        margin-bottom: 0;
    }
    
    .bonus-amount {
        font-size: 1.25rem;
    }
    
    .bonus-limit {
        font-size: 0.7rem;
    }
    
    .bonus-extra {
        font-size: 0.7rem;
    }
    
    .bonus-wager {
        font-size: 0.6rem;
    }
    
    .casino-actions {
        flex-direction: row;
        width: 100%;
        gap: 6px;
    }
    
    .casino-actions .btn {
        flex: 1;
        padding: 9px 12px;
        font-size: 0.7rem;
        min-width: auto;
    }
    
    .casino-actions .btn-text {
        padding: 8px 10px;
        font-size: 0.6rem;
        min-width: auto;
    }
    
    .payment-methods {
        flex-wrap: wrap;
    }
    
    /* SEO Content Mobile */
    .toc-wrapper {
        padding: 20px;
    }
    
    .toc-title {
        font-size: 1.5rem;
    }
    
    .seo-article {
        padding: 20px;
    }
    
    .article-heading {
        font-size: 1.4rem;
        margin: 35px 0 20px 0;
    }
    
    .article-subheading {
        font-size: 1.2rem;
    }
    
    .seo-article p {
        font-size: 0.95rem;
    }
    
    .author-quote {
        padding: 20px;
    }
    
    .quote-content p {
        font-size: 1rem;
    }
    
    .help-box,
    .important-note,
    .expert-tip {
        padding: 15px;
    }
    
    /* Floating Menu Small Mobile */
    .floating-menu {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-toggle {
        width: 48px;
        height: 48px;
    }
    
    .floating-content {
        min-width: 160px;
        padding: 8px;
    }
    
    .floating-item {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .footer-seo-text {
        padding: 20px;
    }
    
    .footer-seo-text h3 {
        font-size: 1.2rem;
    }
    
    .footer-seo-text p {
        font-size: 0.9rem;
    }
    
    /* FAQ Mobile */
    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
        gap: 15px;
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 1.2rem;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        margin-top: 15px;
    }
}

/* ============================================
   ANIMATIONS ON SCROLL
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* Selection */
::selection {
    background: rgba(212, 175, 55, 0.3);
    color: var(--text-primary);
}

/* WP dropdown menu compatibility (restored) */
.nav-menu .nav-has-sub { position: relative; }
.nav-menu .nav-has-sub .nav-caret {
    display: inline-block;
    margin-left: 4px;
    font-size: 0.7em;
    transition: transform .18s ease;
    opacity: .75;
}
.nav-menu .nav-has-sub:hover .nav-caret,
.nav-menu .nav-has-sub:focus-within .nav-caret { transform: rotate(180deg); opacity: 1; }
.nav-menu .nav-sub {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    width: 290px;
    margin: 0;
    padding: 8px;
    list-style: none;
    background: #111;
    border: 1px solid rgba(245,184,0,.2);
    border-radius: 14px;
    box-shadow: 0 16px 36px rgba(0,0,0,.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1200;
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-menu .nav-has-sub::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 12px;
}
.nav-menu .nav-has-sub:hover .nav-sub,
.nav-menu .nav-has-sub:focus-within .nav-sub {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.nav-menu .nav-sub a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #e9e9e9;
    text-decoration: none;
}
.nav-menu .nav-sub a:hover,
.nav-menu .nav-sub a:focus-visible {
    background: linear-gradient(135deg, rgba(245,184,0,.15) 0%, rgba(245,184,0,.05) 100%);
    color: #f5b800;
}
.nav-menu .nav-sub-icon { width: 22px; height: 22px; flex-shrink: 0; }
.nav-menu .nav-sub-title { font-weight: 600; font-size: .95rem; color: inherit; }
.nav-menu .nav-sub-desc { font-size: .78rem; color: rgba(233,233,233,.6); }

@media (max-width: 1024px) {
    .nav-menu .nav-sub {
        position: static !important;
        transform: none !important;
        width: 240px !important;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0 auto;
        background: transparent;
        transition: max-height .25s ease, opacity .2s ease, padding .2s ease;
    }
    .nav-menu .nav-has-sub.open .nav-sub {
        max-height: 600px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        padding: 8px 0 4px;
    }
    .nav-menu .nav-sub a {
        width: 220px;
        margin: 4px auto;
        background: rgba(245,184,0,.08);
    }
    .nav-menu .nav-sub-desc { display: none; }
}

/* ============================================
   HOMEPAGE (fullwidth) - текстовые секции
   ============================================ */
.page-fullwidth { overflow-x: hidden; }

/* Голый контент, если вдруг попадёт без обёртки .container */
.page-fullwidth > h1,
.page-fullwidth > h2,
.page-fullwidth > h3,
.page-fullwidth > p,
.page-fullwidth > ul,
.page-fullwidth > ol {
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* HERO HEAD */
.homepage-hero-head {
    padding: 120px 0 34px;
    text-align: left;
}
.homepage-hero-head h1 {
    font-size: clamp(2rem, 4.4vw, 3.1rem);
    line-height: 1.15;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 18px;
    max-width: none;
}
.homepage-hero-head h1 .gradient-text,
.homepage-hero-head h1 span { color: var(--gold-primary); }
.homepage-hero-head p {
    max-width: none;
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--text-secondary);
}
/* Hero в такой же панели-полотне, как остальные секции */
.homepage-hero-head .container {
    background: linear-gradient(180deg, #16171d 0%, #121319 100%);
    border: 1px solid rgba(245, 184, 0, .12);
    border-radius: 20px;
    padding: 34px 40px;
    box-shadow: 0 16px 44px rgba(0, 0, 0, .38);
}

/* Единый вертикальный ритм между блоками главной (кроме hero).
   --section-padding управляет внутренними отступами всех шорткод-секций. */
.page-fullwidth { --section-padding: 30px; }
.page-fullwidth > section:not(.homepage-hero-head) {
    padding-top: 30px;
    padding-bottom: 30px;
}
/* Секции-обёртки, которые только содержат шорткод, не должны добавлять
   двойной отступ поверх внутренней секции шорткода. */
.page-fullwidth > #top-kaszinok {
    padding-top: 0;
    padding-bottom: 0;
}

/* Общие текстовые секции главной */
.homepage-intro-block,
.homepage-license-intro,
.homepage-bonus-section,
.homepage-games-section,
.homepage-payment-section,
.homepage-seo-article,
.homepage-blacklist-intro,
.homepage-faq-section {
    padding: 56px 0;
}

/* "Полотно" — читаемая колонка-панель под длинным текстом */
.homepage-intro-block .container,
.homepage-license-intro .container,
.homepage-bonus-section .container,
.homepage-payment-section .container,
.homepage-seo-article .container,
.homepage-blacklist-intro .container,
.homepage-faq-section .container,
.homepage-games-section > .container {
    max-width: 1060px;
    text-align: left;
    background: linear-gradient(180deg, #16171d 0%, #121319 100%);
    border: 1px solid rgba(245, 184, 0, .12);
    border-radius: 20px;
    padding: 38px 44px;
    box-shadow: 0 16px 44px rgba(0, 0, 0, .38);
}
.homepage-games-section { text-align: left; }
/* Чёткий отступ между всеми блоками внутри секции игр, чтобы они не сливались */
.homepage-games-section > * + * { margin-top: 44px; }

/* Заголовки внутри текстовых секций */
.homepage-intro-block h2,
.homepage-license-intro h2,
.homepage-bonus-section h2,
.homepage-games-section h2,
.homepage-payment-section h2,
.homepage-seo-article h2,
.homepage-blacklist-intro h2,
.homepage-faq-section h2 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    line-height: 1.25;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 18px;
}
.homepage-seo-article h2,
.homepage-intro-block h2,
.homepage-license-intro h2,
.homepage-bonus-section h2,
.homepage-games-section h2,
.homepage-payment-section h2,
.homepage-blacklist-intro h2 {
    padding-left: 16px;
    border-left: 4px solid var(--gold-primary);
}
.homepage-seo-article h2:not(:first-child) {
    margin-top: 48px;
}
.homepage-seo-article h3,
.homepage-games-section h3,
.homepage-faq-section h3 {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    line-height: 1.3;
    font-weight: 700;
    color: var(--text-primary);
    margin: 30px 0 12px;
}

/* Абзацы */
.homepage-intro-block p,
.homepage-license-intro p,
.homepage-bonus-section p,
.homepage-games-section p,
.homepage-payment-section p,
.homepage-seo-article p,
.homepage-blacklist-intro p,
.homepage-faq-section p {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin: 0 0 16px;
}

/* Ссылки в тексте */
.homepage-intro-block a,
.homepage-license-intro a,
.homepage-bonus-section a,
.homepage-games-section a,
.homepage-payment-section a,
.homepage-seo-article a,
.homepage-faq-section a {
    color: var(--gold-primary);
    text-decoration: none;
    border-bottom: 1px solid rgba(245, 184, 0, .35);
    transition: border-color .2s ease, color .2s ease;
}
.homepage-intro-block a:hover,
.homepage-license-intro a:hover,
.homepage-bonus-section a:hover,
.homepage-games-section a:hover,
.homepage-payment-section a:hover,
.homepage-seo-article a:hover,
.homepage-faq-section a:hover {
    border-bottom-color: var(--gold-primary);
}

/* FAQ — карточки вопрос/ответ */
.homepage-faq-section h3 {
    background: var(--bg-card);
    border: 1px solid rgba(245, 184, 0, .14);
    border-left: 3px solid var(--gold-primary);
    border-radius: 12px;
    padding: 16px 20px;
    margin: 22px 0 0;
}
.homepage-faq-section h3 + p {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .05);
    border-top: 0;
    border-radius: 0 0 12px 12px;
    margin: 0 0 8px;
    padding: 16px 20px;
}

/* Нумерованные списки-шаги внутри текста */
.homepage-seo-article .hp-steps,
.homepage-license-intro .hp-steps,
.homepage-bonus-section .hp-steps {
    list-style: none;
    counter-reset: hp-step;
    margin: 0 0 22px;
    padding: 0;
}
.homepage-seo-article .hp-steps li,
.homepage-license-intro .hp-steps li,
.homepage-bonus-section .hp-steps li {
    position: relative;
    counter-increment: hp-step;
    padding: 14px 18px 14px 58px;
    margin: 0 0 12px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(245, 184, 0, .14);
    border-radius: 12px;
    font-size: 1.0rem;
    line-height: 1.65;
    color: var(--text-secondary);
}
.homepage-seo-article .hp-steps li::before,
.homepage-license-intro .hp-steps li::before,
.homepage-bonus-section .hp-steps li::before {
    content: counter(hp-step);
    position: absolute;
    left: 14px;
    top: 13px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffe9a6, #f5b800);
    color: #1a1208;
    font-weight: 800;
    font-size: .95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.homepage-seo-article .hp-steps li strong { color: var(--text-primary); }

/* Маркированный список */
.homepage-games-section .hp-bullets,
.homepage-seo-article .hp-bullets {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}
.homepage-games-section .hp-bullets li,
.homepage-seo-article .hp-bullets li {
    position: relative;
    padding: 0 0 0 30px;
    margin: 0 0 12px;
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--text-secondary);
}
.homepage-games-section .hp-bullets li::before,
.homepage-seo-article .hp-bullets li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 10px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffe9a6, #f5b800);
    box-shadow: 0 0 0 4px rgba(245, 184, 0, .12);
}
.homepage-games-section .hp-bullets li strong,
.homepage-seo-article .hp-bullets li strong { color: var(--text-primary); }

/* Врезки с иконкой — info / warning / tip */
.homepage-seo-article .hp-callout {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin: 6px 0 24px;
    padding: 16px 20px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .06);
    background: rgba(255, 255, 255, .02);
    font-size: 1.0rem;
    line-height: 1.65;
    color: var(--text-secondary);
}
.homepage-seo-article .hp-callout strong { color: var(--text-primary); }
.homepage-seo-article .hp-callout-ic {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.homepage-seo-article .hp-callout-ic svg { width: 22px; height: 22px; }
.homepage-seo-article .hp-callout--info {
    border-color: rgba(96, 165, 250, .3);
    background: linear-gradient(90deg, rgba(96, 165, 250, .10), rgba(96, 165, 250, .02));
}
.homepage-seo-article .hp-callout--info .hp-callout-ic { background: rgba(96, 165, 250, .16); color: #93c5fd; }
.homepage-seo-article .hp-callout--warning {
    border-color: rgba(248, 113, 113, .32);
    background: linear-gradient(90deg, rgba(248, 113, 113, .10), rgba(248, 113, 113, .02));
}
.homepage-seo-article .hp-callout--warning .hp-callout-ic { background: rgba(248, 113, 113, .16); color: #fca5a5; }
.homepage-seo-article .hp-callout--tip {
    border-color: rgba(245, 184, 0, .32);
    background: linear-gradient(90deg, rgba(245, 184, 0, .10), rgba(245, 184, 0, .02));
}
.homepage-seo-article .hp-callout--tip .hp-callout-ic { background: rgba(245, 184, 0, .16); color: #ffd866; }

/* Цитата */
.homepage-seo-article .hp-quote,
.homepage-games-section .hp-quote,
.homepage-license-intro .hp-quote {
    margin: 6px 0 24px;
    padding: 18px 22px 18px 26px;
    border-left: 4px solid var(--gold-primary);
    border-radius: 0 12px 12px 0;
    background: linear-gradient(90deg, rgba(245, 184, 0, .08), rgba(245, 184, 0, .01));
    color: var(--text-primary);
    font-size: 1.12rem;
    line-height: 1.6;
    font-style: italic;
    font-weight: 500;
}

/* ============================================================
   Навигация по странице (Tartalom) перед FAQ
   ============================================================ */
.homepage-toc-section { padding: 24px 0 8px; }
.hp-toc {
    max-width: 1180px;
    margin: 0 auto;
    padding: 30px 30px 32px;
    border-radius: 20px;
    background: linear-gradient(160deg, rgba(30, 31, 40, .92) 0%, rgba(18, 19, 25, .96) 100%);
    border: 1px solid rgba(245, 184, 0, .2);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .4);
}
.hp-toc-head { text-align: center; margin-bottom: 24px; }
.hp-toc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold-primary, #f5b800);
    background: rgba(245, 184, 0, .12);
    border: 1px solid rgba(245, 184, 0, .3);
    padding: 6px 14px;
    border-radius: 999px;
}
.hp-toc-badge svg { width: 15px; height: 15px; }
.hp-toc-head h2 { font-size: 1.7rem; font-weight: 800; color: #fff; margin: 14px 0 8px; }
.hp-toc-head p { font-size: .98rem; line-height: 1.6; color: var(--text-secondary, #b8b8b8); margin: 0 auto; max-width: 640px; }
.hp-toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 14px;
}
.hp-toc-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    text-decoration: none;
    transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.hp-toc-item:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 184, 0, .5);
    background: rgba(245, 184, 0, .06);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .38);
}
.hp-toc-ic {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary, #f5b800);
    background: rgba(245, 184, 0, .12);
    border: 1px solid rgba(245, 184, 0, .26);
}
.hp-toc-ic svg { width: 22px; height: 22px; }
.hp-toc-tx { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1 1 auto; }
.hp-toc-tx strong { font-size: 1.02rem; font-weight: 700; color: #fff; line-height: 1.25; }
.hp-toc-tx em { font-size: .82rem; font-style: normal; color: #9a9aa3; line-height: 1.35; }
.hp-toc-go {
    flex: 0 0 auto;
    font-size: 1.5rem;
    line-height: 1;
    color: #6a6a72;
    transition: transform .18s ease, color .18s ease;
}
.hp-toc-item:hover .hp-toc-go { color: var(--gold-primary, #f5b800); transform: translateX(3px); }
@media (max-width: 600px) {
    .hp-toc { padding: 22px 16px 24px; border-radius: 16px; }
    .hp-toc-head h2 { font-size: 1.4rem; }
    .hp-toc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .homepage-hero-head { padding: 96px 0 20px; }
    .homepage-intro-block,
    .homepage-license-intro,
    .homepage-bonus-section,
    .homepage-games-section,
    .homepage-payment-section,
    .homepage-seo-article,
    .homepage-blacklist-intro,
    .homepage-faq-section { padding: 40px 0; }
    .homepage-intro-block .container,
    .homepage-license-intro .container,
    .homepage-bonus-section .container,
    .homepage-payment-section .container,
    .homepage-seo-article .container,
    .homepage-blacklist-intro .container,
    .homepage-faq-section .container,
    .homepage-games-section > .container { padding: 24px 20px; border-radius: 16px; }
}

/* ============================================================
   DARK THEME — timeline ([obz_timeline]) и checklist
   ([obz_safety_checklist]) на главной. Базовые стили блоков
   рассчитаны на светлый шаблон (#fff фон, бордо), поэтому
   переопределяем под тёмную золотую тему.
   ============================================================ */
.page-fullwidth .timeline-step {
    background: linear-gradient(180deg, #181920 0%, #15161c 100%);
    border: 1px solid rgba(245, 184, 0, .16);
}
.page-fullwidth .timeline-step--blue,
.page-fullwidth .timeline-step--orange,
.page-fullwidth .timeline-step--green,
.page-fullwidth .timeline-step--purple {
    background: linear-gradient(180deg, #181920 0%, #15161c 100%);
}
.page-fullwidth .timeline-step:hover {
    border-color: rgba(245, 184, 0, .4);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .45);
}
.page-fullwidth .timeline-step::before {
    background: linear-gradient(90deg, #f5b800 0%, #ffe9a6 100%);
}
.page-fullwidth .ts-num { color: var(--gold-primary); opacity: .42; }
.page-fullwidth .ts-icon {
    background: linear-gradient(135deg, #f5b800 0%, #b8860b 100%);
}
.page-fullwidth .ts-icon img { filter: brightness(0) saturate(100%) invert(8%); opacity: .9; }
.page-fullwidth .ts-step-label {
    background: rgba(245, 184, 0, .14);
    color: var(--gold-primary);
    border-color: rgba(245, 184, 0, .4);
}
.page-fullwidth .ts-time {
    color: var(--gold-primary);
    background: rgba(245, 184, 0, .10);
}
.page-fullwidth .ts-title { color: var(--text-primary); }
.page-fullwidth .ts-desc { color: var(--text-secondary); }

.page-fullwidth .checklist-wrap::before {
    background: linear-gradient(180deg, #f5b800 0%, rgba(245, 184, 0, .15) 100%);
}
.page-fullwidth .cl-num {
    background: linear-gradient(135deg, #f5b800, #b8860b);
    color: #1a1208;
    box-shadow: 0 6px 18px rgba(245, 184, 0, .28);
}
.page-fullwidth .cl-body {
    background: linear-gradient(180deg, #181920 0%, #15161c 100%);
    border: 1px solid rgba(245, 184, 0, .16);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .35);
}
.page-fullwidth .cl-title { color: var(--text-primary); }
.page-fullwidth .cl-desc { color: var(--text-secondary); }
.page-fullwidth .cl-time {
    color: var(--gold-primary);
    background: rgba(245, 184, 0, .10);
}

/* Дисклеймер RTP под карточками слотов — по центру, с отступом */
.page-fullwidth .slot-ex-disclaimer-wrap {
    display: flex;
    justify-content: center;
    margin: 64px 0 48px;
    padding: 0 20px;
}
.page-fullwidth .slot-ex-disclaimer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 620px;
    margin: 0;
    padding: 14px 24px;
    text-align: center;
}

/* Логотип в карточке редакции — тёмная плитка, лого заполняет её целиком (как в рейтинге) */
.page-fullwidth .ec-logo { display: flex; align-items: center; justify-content: center; overflow: hidden; }
.page-fullwidth .ec-logo img { width: 100%; height: 100%; object-fit: cover; padding: 0; }

/* ============================================================
   DARK THEME OVERRIDES для блоков-шорткодов на главной.
   Раньше эти блоки использовали светлую палитру старого шаблона
   (#fff фон + var(--text-primary)=#fff текст = невидимый текст),
   здесь переводим их в тёмную золотую тему.
   Префикс .page-fullwidth повышает специфичность над inline <style>.
   ============================================================ */

/* --- EDITOR'S CHOICE --- */
.page-fullwidth .ec-card .ec-grid {
    background: linear-gradient(135deg, #181920 0%, #15161c 100%);
    border: 1px solid rgba(245, 184, 0, .28);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .45);
}
.page-fullwidth .ec-left,
.page-fullwidth .ec-mid { border-right-color: rgba(255, 255, 255, .08); }
.page-fullwidth .ec-logo { background: #0f1014; border-color: rgba(255, 255, 255, .12); padding: 0; }
.page-fullwidth .ec-tagline { color: var(--text-secondary); }
.page-fullwidth .ec-rating { background: rgba(245, 184, 0, .10); }
.page-fullwidth .ec-rating-num,
.page-fullwidth .ec-bonus-pct { color: var(--gold-primary); }
.page-fullwidth .ec-pros h4,
.page-fullwidth .ec-bonus-label { color: var(--gold-primary); }
.page-fullwidth .ec-specs { border-top-color: rgba(255, 255, 255, .08); }
.page-fullwidth .ec-bonus {
    background: linear-gradient(180deg, rgba(245, 184, 0, .12), rgba(245, 184, 0, .03));
    border: 1px solid rgba(245, 184, 0, .18);
}
.page-fullwidth .ec-bonus-lim { color: var(--text-primary); }
.page-fullwidth .ec-btn-primary {
    background: linear-gradient(135deg, #f5b800, #b8860b);
    color: #14140f;
    box-shadow: 0 6px 18px rgba(245, 184, 0, .3);
}
.page-fullwidth .ec-btn-primary:hover { color: #14140f; box-shadow: 0 10px 26px rgba(245, 184, 0, .45); }
.page-fullwidth .ec-btn-secondary {
    background: transparent;
    border: 2px solid rgba(245, 184, 0, .55);
    color: var(--gold-primary);
}
.page-fullwidth .ec-btn-secondary:hover { background: rgba(245, 184, 0, .12); color: var(--gold-primary); }

/* --- TABLES (casino compare / payment / bonus) --- */
.page-fullwidth .home-casino-table,
.page-fullwidth .pc-table,
.page-fullwidth .bct-table {
    background: #15161c;
    border: 1px solid rgba(245, 184, 0, .14);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .4);
}
.page-fullwidth .hct-head,
.page-fullwidth .pc-head,
.page-fullwidth .bct-head {
    background: linear-gradient(135deg, #20212a, #181920);
    color: var(--gold-primary);
    border-bottom: 1px solid rgba(245, 184, 0, .25);
}
.page-fullwidth .hct-row,
.page-fullwidth .pc-row,
.page-fullwidth .bct-row {
    color: #e6e7ec;
    border-top: 1px solid rgba(255, 255, 255, .06);
}
.page-fullwidth .hct-row:nth-child(even),
.page-fullwidth .bct-row:nth-child(even) { background: rgba(255, 255, 255, .02); }
.page-fullwidth .pc-row:nth-child(even) { background: rgba(255, 255, 255, .02); }
.page-fullwidth .hct-row:hover,
.page-fullwidth .pc-row:hover { background: rgba(245, 184, 0, .06); }
.page-fullwidth .pc-row--hl { background: linear-gradient(90deg, rgba(245, 184, 0, .12), rgba(255, 255, 255, 0) 60%); }
.page-fullwidth .pc-row--hl .pc-name { color: var(--gold-primary); }
.page-fullwidth .hct-name a,
.page-fullwidth .bct-row span:first-child,
.page-fullwidth .pc-row--hl .pc-name { color: var(--gold-primary); }
.page-fullwidth .hct-score { color: #57d399; }
.page-fullwidth .pc-stars { color: var(--gold-primary); }
.page-fullwidth .hct-cta {
    background: linear-gradient(135deg, #f5b800, #b8860b);
    color: #14140f;
}
.page-fullwidth .hct-cta--ghost {
    background: transparent;
    border: 1px solid rgba(245, 184, 0, .55);
    color: var(--gold-primary);
}
/* мобильные подписи таблиц */
.page-fullwidth .hct-row > span::before,
.page-fullwidth .pc-row > span::before,
.page-fullwidth .bct-row > span::before { color: var(--gold-primary); }
.page-fullwidth .hct-row,
.page-fullwidth .bct-row { /* на мобиле карточки */ }
@media (max-width: 980px) {
    .page-fullwidth .hct-row { border: 1px solid rgba(255, 255, 255, .07); }
    .page-fullwidth .hct-row > span { border-bottom-color: rgba(255, 255, 255, .07); }
}
@media (max-width: 900px) {
    .page-fullwidth .pc-row > span { border-bottom-color: rgba(255, 255, 255, .07); }
}
@media (max-width: 860px) {
    .page-fullwidth .bct-row { border: 1px solid rgba(255, 255, 255, .07); }
    .page-fullwidth .bct-row > span { border-bottom-color: rgba(255, 255, 255, .07); }
}

/* --- HUB NAV --- */
.page-fullwidth .home-hub-card {
    background: #15161c;
    border: 1px solid rgba(245, 184, 0, .14);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .35);
}
.page-fullwidth .home-hub-card:hover {
    border-color: rgba(245, 184, 0, .6);
    box-shadow: 0 14px 30px rgba(245, 184, 0, .12);
}
.page-fullwidth .home-hub-card strong { color: var(--gold-primary); }
.page-fullwidth .home-hub-card span { color: var(--text-secondary); }

/* --- LICENSE COMPARE (бордовые акценты -> золото) --- */
.page-fullwidth .lc-rating-val,
.page-fullwidth .lc-meta code { color: var(--gold-primary); }
.page-fullwidth .lc-meta code { background: rgba(245, 184, 0, .10); }
.page-fullwidth .lc-meta { border-top-color: rgba(255, 255, 255, .08); border-bottom-color: rgba(255, 255, 255, .08); }
.page-fullwidth .lc-link { color: var(--gold-primary); }

/* FINAL OVERRIDES: homepage anchor spacing + casino logo frames */
html { scroll-padding-top: 96px; }
.homepage-hero-head { padding-top: 120px; }
#top-kaszinok,
#bonuszok,
#jatekok,
#fizetes { scroll-margin-top: 110px; }
.casino-logo {
    border: 1px solid rgba(245, 184, 0, 0.32);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    background: linear-gradient(150deg, #202126 0%, #141519 100%);
}
.casino-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   LEGAL / INFO PAGES (terms, cookies, affiliate, privacy, responsible)
   ============================================ */
.legal-page { padding: 120px 0 64px; }
.legal-page .container { max-width: 1040px; margin: 0 auto; padding: 0 20px; }

.legal-hero {
    position: relative;
    background: linear-gradient(160deg, #1b1d24 0%, #121319 100%);
    border: 1px solid rgba(245, 184, 0, .16);
    border-radius: 22px;
    padding: 40px 44px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .4);
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 28px;
    align-items: center;
    overflow: hidden;
}
.legal-hero::after {
    content: "";
    position: absolute;
    right: -70px;
    top: -70px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(245, 184, 0, .15), transparent 70%);
    pointer-events: none;
}
.legal-hero-icon {
    width: 96px;
    height: 96px;
    border-radius: 22px;
    background: linear-gradient(150deg, rgba(245, 184, 0, .18), rgba(245, 184, 0, .04));
    border: 1px solid rgba(245, 184, 0, .3);
    display: flex;
    align-items: center;
    justify-content: center;
}
.legal-hero-icon svg { width: 50px; height: 50px; color: var(--gold-primary); }
.legal-hero-text { position: relative; z-index: 1; }
.legal-hero h1 {
    margin: 0 0 10px;
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}
.legal-hero p { margin: 0; color: var(--text-secondary); font-size: 1.02rem; line-height: 1.6; }
.legal-meta { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 10px; }
.legal-meta span {
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--gold-primary);
    background: rgba(245, 184, 0, .1);
    border: 1px solid rgba(245, 184, 0, .22);
    padding: 5px 12px;
    border-radius: 999px;
}

.legal-toc {
    margin: 28px 0;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 16px;
    padding: 24px 28px;
}
.legal-toc h2 { margin: 0 0 14px; font-size: 1.05rem; color: var(--text-primary); }
.legal-toc ol { margin: 0; padding-left: 22px; columns: 2; column-gap: 34px; }
.legal-toc li { margin: 0 0 9px; break-inside: avoid; }
.legal-toc a { color: var(--text-secondary); text-decoration: none; transition: color .15s; }
.legal-toc a:hover { color: var(--gold-primary); }

.legal-section { margin-top: 36px; scroll-margin-top: 110px; }
.legal-section > h2 {
    font-size: clamp(1.3rem, 2.4vw, 1.65rem);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 16px;
    padding-left: 14px;
    border-left: 4px solid var(--gold-primary);
    line-height: 1.3;
}
.legal-section h3 { font-size: 1.12rem; color: var(--text-primary); margin: 24px 0 10px; }
.legal-section p { color: var(--text-secondary); line-height: 1.75; margin: 0 0 14px; }
.legal-section ul, .legal-section ol { color: var(--text-secondary); line-height: 1.7; margin: 0 0 16px; padding-left: 24px; }
.legal-section li { margin: 0 0 9px; }
.legal-section a { color: var(--gold-primary); }
.legal-section a:hover { text-decoration: underline; }
.legal-section strong { color: var(--text-primary); font-weight: 700; }

.legal-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin: 20px 0; }
.legal-card {
    background: linear-gradient(180deg, #16171d, #121319);
    border: 1px solid rgba(245, 184, 0, .12);
    border-radius: 14px;
    padding: 22px;
}
.legal-card .lc-ic {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: rgba(245, 184, 0, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
    color: var(--gold-primary);
}
.legal-card .lc-ic svg { width: 22px; height: 22px; }
.legal-card h3 { margin: 0 0 7px; font-size: 1rem; color: var(--text-primary); }
.legal-card p { margin: 0; font-size: .92rem; color: var(--text-secondary); line-height: 1.6; }

.legal-note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(245, 184, 0, .06);
    border: 1px solid rgba(245, 184, 0, .2);
    border-left: 4px solid var(--gold-primary);
    border-radius: 12px;
    padding: 18px 20px;
    margin: 20px 0;
}
.legal-note.warn { background: rgba(220, 60, 60, .07); border-color: rgba(220, 60, 60, .3); border-left-color: #e05656; }
.legal-note svg { flex-shrink: 0; width: 24px; height: 24px; color: var(--gold-primary); margin-top: 2px; }
.legal-note.warn svg { color: #e76b6b; }
.legal-note p { margin: 0; color: var(--text-secondary); line-height: 1.65; }

.legal-table-wrap { overflow-x: auto; margin: 20px 0; border: 1px solid rgba(255, 255, 255, .07); border-radius: 14px; }
.legal-table { width: 100%; border-collapse: collapse; font-size: .94rem; min-width: 460px; }
.legal-table th, .legal-table td { text-align: left; padding: 13px 16px; border-bottom: 1px solid rgba(255, 255, 255, .07); color: var(--text-secondary); vertical-align: top; }
.legal-table th { color: var(--text-primary); font-weight: 700; background: rgba(245, 184, 0, .06); }
.legal-table tr:last-child td { border-bottom: 0; }
.legal-table tr:hover td { background: rgba(255, 255, 255, .02); }

.legal-cta {
    margin-top: 44px;
    text-align: center;
    background: linear-gradient(135deg, rgba(245, 184, 0, .12), rgba(245, 184, 0, .03));
    border: 1px solid rgba(245, 184, 0, .25);
    border-radius: 18px;
    padding: 34px 30px;
}
.legal-cta h2 { margin: 0 0 10px; color: var(--text-primary); border: 0; padding: 0; }
.legal-cta p { margin: 0 0 20px; color: var(--text-secondary); }
.legal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f5b800, #b8860b);
    color: #161616;
    font-weight: 800;
    text-decoration: none;
    padding: 13px 28px;
    border-radius: 999px;
    transition: transform .2s ease, box-shadow .2s ease;
}
.legal-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(245, 184, 0, .3); color: #161616; }

@media (max-width: 680px) {
    .legal-page { padding: 96px 0 48px; }
    .legal-hero { grid-template-columns: 1fr; text-align: center; padding: 30px 24px; }
    .legal-hero-icon { margin: 0 auto; }
    .legal-meta { justify-content: center; }
    .legal-toc ol { columns: 1; }
}

/* ============================================
   NEW CASINOS PAGE (uj-online-kaszinok)
   ============================================ */
.uj-hero-figure-wrap, .uj-figure-wrap { padding: 8px 0 0; }
.uj-hero-figure-wrap .container, .uj-figure-wrap .container { max-width: 1060px; }
.uj-hero-figure, .uj-figure { margin: 0; }
.uj-hero-figure img {
    width: 100%; height: auto; display: block;
    border-radius: 20px;
    border: 1px solid rgba(245, 184, 0, .18);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .42);
}
.uj-figure { max-width: 520px; margin: 0 auto; text-align: center; }
.uj-figure img {
    width: 100%; height: auto; display: block;
    border-radius: 18px;
    border: 1px solid rgba(245, 184, 0, .16);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .4);
}
.uj-figure figcaption {
    margin-top: 14px; font-size: .9rem; line-height: 1.55;
    color: var(--text-secondary); text-align: center;
}

/* Таблица бонусов */
.uj-table-wrap { overflow-x: auto; margin: 22px 0 18px; border-radius: 14px; }
.uj-table {
    width: 100%; border-collapse: collapse; min-width: 640px;
    background: linear-gradient(180deg, #181920 0%, #15161c 100%);
    border: 1px solid rgba(245, 184, 0, .14);
    border-radius: 14px; overflow: hidden;
}
.uj-table thead th {
    text-align: left; padding: 14px 16px;
    font-size: .82rem; text-transform: uppercase; letter-spacing: .05em;
    color: var(--gold-primary); font-weight: 800;
    background: rgba(245, 184, 0, .06);
    border-bottom: 1px solid rgba(245, 184, 0, .2);
}
.uj-table tbody td {
    padding: 14px 16px; font-size: .95rem; line-height: 1.55;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    vertical-align: top;
}
.uj-table tbody td:first-child { color: var(--text-primary); font-weight: 700; }
.uj-table tbody tr:last-child td { border-bottom: 0; }
.uj-table tbody tr:hover td { background: rgba(245, 184, 0, .03); }

/* CTA-блок */
.uj-cta-section { padding: 48px 0 64px; }
.uj-cta {
    max-width: 880px; margin: 0 auto; text-align: center;
    background: linear-gradient(150deg, #1b1d24 0%, #121319 100%);
    border: 1px solid rgba(245, 184, 0, .2);
    border-radius: 20px; padding: 38px 40px;
    box-shadow: 0 16px 44px rgba(0, 0, 0, .4);
}
.uj-cta h2 { font-size: clamp(1.4rem, 2.6vw, 1.85rem); font-weight: 800; color: var(--text-primary); margin: 0 0 14px; }
.uj-cta p { font-size: 1.02rem; line-height: 1.7; color: var(--text-secondary); margin: 0 auto 24px; max-width: 640px; }
.uj-cta-btn {
    display: inline-block; padding: 14px 32px; border-radius: 999px;
    font-weight: 800; font-size: 1rem; text-decoration: none;
    color: #161616; background: linear-gradient(135deg, #ffd866 0%, #f5b800 100%);
    box-shadow: 0 10px 26px rgba(245, 184, 0, .28);
    transition: transform .2s ease, box-shadow .2s ease;
}
.uj-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(245, 184, 0, .38); }

@media (max-width: 680px) {
    .uj-table { min-width: 560px; }
    .uj-cta { padding: 30px 24px; }
}

