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

/* CSS Variables */
:root {
    /* Colors - Light Beige Theme */
    --bg-primary: #f8f5f0;
    --bg-secondary: #f0ebe3;
    --bg-card: #ffffff;
    --bg-card-hover: #faf8f5;
    --bg-elevated: #ffffff;
    
    /* Primary Color - Burgundy/Wine */
    --gold-primary: #8B2942;
    --gold-light: #a63d56;
    --gold-dark: #6d1f33;
    --gold-deep: #5a1a2a;
    --gold-gradient: linear-gradient(135deg, #8B2942 0%, #a63d56 50%, #8B2942 100%);
    --gold-shine: linear-gradient(135deg, #a63d56 0%, #8B2942 50%, #6d1f33 100%);
    --gold-button: linear-gradient(180deg, #a63d56 0%, #8B2942 50%, #6d1f33 100%);
    
    /* Accent Colors */
    --accent-green: #3d9970;
    --accent-red: #c0392b;
    --accent-blue: #4ECDC4;
    --accent-purple: #9b59b6;
    --accent-orange: #e67e22;
    
    /* Beige Tones */
    --beige-light: #faf7f2;
    --beige-medium: #f0ebe3;
    --beige-dark: #e0d6c8;
    
    /* Text */
    --text-primary: #2c2c2c;
    --text-secondary: #5a5a5a;
    --text-muted: #888888;
    --text-gold: #8B2942;
    
    /* Effects */
    --glow-gold: 0 4px 15px rgba(139, 41, 66, 0.15);
    --glow-gold-soft: 0 2px 10px rgba(139, 41, 66, 0.1);
    --glow-green: 0 4px 15px rgba(61, 153, 112, 0.2);
    --shadow-card: 0 2px 15px rgba(0, 0, 0, 0.08);
    --shadow-elevated: 0 4px 25px rgba(0, 0, 0, 0.12);
    
    /* 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 {
    color: var(--gold-primary);
    -webkit-text-fill-color: var(--gold-primary);
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--beige-medium) 100%);
}

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

.bg-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 41, 66, 0.08) 0%, transparent 60%);
    top: -200px;
    right: -150px;
    animation-delay: 0s;
}

.bg-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.06) 0%, transparent 60%);
    bottom: 20%;
    left: -150px;
    animation-delay: -8s;
}

.bg-glow-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 41, 66, 0.05) 0%, transparent 60%);
    bottom: -100px;
    right: 30%;
    animation-delay: -16s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    25% { transform: translate(30px, -30px) scale(1.05); opacity: 0.5; }
    50% { transform: translate(-20px, 20px) scale(0.95); opacity: 0.35; }
    75% { transform: translate(20px, 30px) scale(1.02); opacity: 0.45; }
}

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

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.2px;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: var(--gold-primary);
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 8px rgba(139, 41, 66, 0.25);
}

.logo-mark img {
    display: block;
    width: 22px;
    height: 22px;
}

/* W stopce — sama korona na przezroczystym tle (jak na makiecie) */
.footer-brand .logo-mark--footer {
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.footer-brand .logo-mark--footer img {
    width: 28px;
    height: 28px;
}

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

.logo-text .gold {
    color: var(--gold-primary);
    -webkit-text-fill-color: var(--gold-primary);
}

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

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

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

.nav-link:hover {
    color: var(--gold-primary);
    background: rgba(139, 41, 66, 0.08);
}

.nav-link:hover .nav-icon {
    opacity: 1;
}

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

.update-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(139, 41, 66, 0.12);
    border: 1px solid rgba(139, 41, 66, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    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;
}

/* Wariant „landingowy”: tylko badge + H1 (jak strony typu /nowe-kasyna-online/) */
.hero.hero--compact {
    min-height: 0;
    padding: 100px 0 36px;
    align-items: flex-start;
}

.hero.hero--compact .container {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
}

.hero.hero--compact .hero-content {
    max-width: 920px;
}

.hero.hero--compact .hero-title {
    margin-bottom: 0;
}

.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: 700;
    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: 600px;
}

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

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

@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: #ffffff !important;
    box-shadow: 0 4px 15px rgba(139, 41, 66, 0.25);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
    font-weight: 800;
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 41, 66, 0.35);
}

.btn-secondary {
    background: #8B2942 !important;
    color: #ffffff !important;
    border: 2px solid #8B2942;
    font-weight: 800 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.btn-secondary:hover {
    background: #a63d56 !important;
    color: #ffffff !important;
}

.btn-bonus {
    background: var(--gold-button);
    color: #ffffff !important;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(139, 41, 66, 0.25);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

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

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

.btn-bonus:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 41, 66, 0.35);
}

.btn-review {
    background: #8B2942 !important;
    color: #ffffff !important;
    border: 2px solid #8B2942;
    padding: 12px 24px;
    font-size: 0.85rem;
    border-radius: var(--radius-full);
    font-weight: 800 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.btn-review:hover {
    background: #a63d56 !important;
    color: #ffffff !important;
}

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

.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: var(--bg-card);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.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: 700;
    padding: 8px 16px;
    background: var(--beige-light);
    border-radius: var(--radius-full);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition-fast);
}

.trust-item:hover {
    border-color: var(--gold-primary);
    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: rgba(139, 41, 66, 0.08);
    border: 1px solid rgba(139, 41, 66, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    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: #ffffff;
    font-size: 0.5em;
    font-weight: 800;
    border-radius: var(--radius-full);
    vertical-align: middle;
    margin-left: 10px;
    box-shadow: 0 2px 10px rgba(139, 41, 66, 0.2);
    text-shadow: none;
}

.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: #ffffff;
    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(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    transition: var(--transition-medium);
    overflow: hidden;
    align-items: center;
    box-shadow: var(--shadow-card);
}

.casino-card:hover {
    border-color: rgba(139, 41, 66, 0.2);
    box-shadow: var(--shadow-elevated);
}

.casino-card.featured {
    border-color: rgba(139, 41, 66, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, rgba(139, 41, 66, 0.04) 100%);
    box-shadow: 0 4px 20px rgba(139, 41, 66, 0.08);
}

/* Casino Ribbon */
.casino-ribbon {
    position: absolute;
    top: 24px;
    right: -45px;
    background: var(--gold-button);
    color: #ffffff;
    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.4rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: var(--gold-primary);
    line-height: 1;
    text-shadow: 0 2px 6px rgba(139, 41, 66, 0.3);
}

.rank-label {
    font-size: 0.65rem;
    font-weight: 900;
    color: var(--gold-primary);
    background: rgba(139, 41, 66, 0.2);
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    margin-top: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* 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: #ffffff;
    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.7rem;
    font-weight: 900;
    color: var(--gold-primary);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(139, 41, 66, 0.2);
}

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

.casino-name {
    font-size: 1.3rem;
    margin-bottom: 6px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
}

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


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

.star {
    color: rgba(139, 41, 66, 0.15);
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.star.filled {
    color: var(--gold-primary);
    filter: drop-shadow(0 1px 2px rgba(139, 41, 66, 0.2));
}

.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: 2px;
    min-width: 0;
    max-width: 100%;
}

.badge {
    padding: 2px 7px;
    border-radius: var(--radius-full);
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    white-space: nowrap;
    line-height: 1.4;
}

/* Unified Badge System - Minimalist Gold/Gray Theme */
.badge-hot,
.badge-verified,
.badge-fast,
.badge-new,
.badge-crypto {
    background: rgba(139, 41, 66, 0.12);
    color: var(--gold-primary);
    border: 1px solid rgba(139, 41, 66, 0.25);
    font-size: 0.58rem;
    padding: 2px 7px;
    font-weight: 700;
    transition: all var(--transition-fast);
    white-space: nowrap;
    line-height: 1.4;
}

.badge-hot {
    background: rgba(139, 41, 66, 0.15);
    border-color: rgba(139, 41, 66, 0.35);
    font-weight: 800;
}

.badge-verified {
    background: rgba(78, 205, 196, 0.1);
    color: var(--accent-blue);
    border-color: rgba(78, 205, 196, 0.3);
}

.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(139, 41, 66, 0.03);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(139, 41, 66, 0.08);
}

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

.detail-value {
    font-weight: 700;
    color: var(--text-primary);
    text-align: right;
    font-size: 0.8rem;
}

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

/* Payment Methods — приподняты ближе к бейджам */
.payment-methods {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 2px;
}

.payment-icon {
    padding: 5px 12px;
    background: rgba(139, 41, 66, 0.05);
    border: 1px solid rgba(139, 41, 66, 0.15);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.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(139, 41, 66, 0.12);
    border: 1px solid rgba(139, 41, 66, 0.25);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold-primary);
    white-space: nowrap;
}

/* 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(139, 41, 66, 0.08) 0%, rgba(139, 41, 66, 0.04) 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(139, 41, 66, 0.15);
    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: 700;
}

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

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: var(--gold-primary);
    line-height: 1;
    text-shadow: 0 2px 8px rgba(139, 41, 66, 0.2);
}

.bonus-limit {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.bonus-extra {
    font-size: 0.75rem;
    color: var(--gold-primary);
    font-weight: 700;
}

.bonus-wager {
    font-size: 0.68rem;
    color: var(--text-secondary);
    font-weight: 500;
}

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

.casino-actions .btn {
    width: 100%;
    padding: 12px 18px;
    font-size: 0.85rem;
    white-space: nowrap;
    font-weight: 800;
}

.casino-actions .btn-primary,
.casino-actions .btn-bonus,
.casino-actions .btn-review {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
    font-weight: 800 !important;
}

/* 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(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

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

.method-card:hover {
    border-color: rgba(139, 41, 66, 0.2);
    transform: translateY(-3px);
    box-shadow: var(--shadow-elevated);
}

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

.method-icon {
    width: 56px;
    height: 56px;
    background: rgba(139, 41, 66, 0.08);
    border: 1px solid rgba(139, 41, 66, 0.15);
    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;
    background: var(--bg-secondary);
}

.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(139, 41, 66, 0.12);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-medium);
    display: flex;
    gap: 24px;
    align-items: center;
    box-shadow: var(--shadow-card);
}

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

.blacklist-card:hover {
    border-color: rgba(139, 41, 66, 0.25);
    transform: translateY(-3px);
    box-shadow: var(--shadow-elevated);
}

.blacklist-logo {
    width: 130px;
    height: 130px;
    background: var(--beige-light);
    border: 1px solid rgba(139, 41, 66, 0.12);
    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);
}

/* Statyczny blok NDB: ciemne logotypy + object-fit:cover obcinało całość */
.blacklist-section--ndb-static .blacklist-logo--ndb img {
    object-fit: contain;
}

.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: 18px;
}

.blacklist-info {
    flex: 1;
}

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

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

.rating-value {
    font-size: 0.95rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.25);
}

.rating-value.danger {
    color: #ef4444;
    font-weight: 800;
    font-size: 1rem;
}

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

.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.9rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding-left: 0;
    line-height: 1.6;
    font-weight: 500;
}

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

.blacklist-issues li svg,
.blacklist-issues li img {
    color: var(--gold-primary);
    flex-shrink: 0;
    margin-top: 2px;
    filter: drop-shadow(0 1px 2px rgba(139, 41, 66, 0.2));
    opacity: 0.9;
}

.blacklist-warning {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    display: flex;
    gap: 24px;
    align-items: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition-medium);
}

.blacklist-warning:hover {
    box-shadow: var(--shadow-elevated);
    border-color: rgba(139, 41, 66, 0.15);
}

.warning-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(139, 41, 66, 0.12) 0%, rgba(139, 41, 66, 0.08) 100%);
    border: 2px solid rgba(139, 41, 66, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold-primary);
    box-shadow: 0 4px 12px rgba(139, 41, 66, 0.1);
}

.exclamation-mark {
    font-size: 2.2rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: var(--gold-primary);
    line-height: 1;
    text-shadow: 0 2px 4px rgba(139, 41, 66, 0.15);
}

.warning-content {
    flex: 1;
}

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

.warning-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
    font-weight: 500;
}

/* 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;
        padding: 20px;
    }
    
    .blacklist-logo {
        width: 110px;
        height: 110px;
    }
    
    .blacklist-name {
        font-size: 1.15rem;
    }
    
    .blacklist-issues li {
        font-size: 0.88rem;
    }
    
    .blacklist-warning {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }
    
    .warning-icon {
        width: 56px;
        height: 56px;
    }
    
    .exclamation-mark {
        font-size: 2rem;
    }
    
    .warning-content h4 {
        font-size: 1.1rem;
    }
    
    .warning-content p {
        font-size: 0.9rem;
    }
}

/* ============================================
   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(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    transition: var(--transition-medium);
    box-shadow: var(--shadow-card);
}

.bonus-type-card:hover {
    border-color: rgba(139, 41, 66, 0.2);
    box-shadow: var(--shadow-elevated);
}

.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(139, 41, 66, 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(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

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

.game-category:hover {
    border-color: rgba(139, 41, 66, 0.2);
    transform: translateY(-3px);
    box-shadow: var(--shadow-elevated);
}

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

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

.gc-icon {
    width: 72px;
    height: 72px;
    background: rgba(139, 41, 66, 0.08);
    border: 1px solid rgba(139, 41, 66, 0.15);
    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.05);
}

.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(139, 41, 66, 0.08);
    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(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.expert-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(139, 41, 66, 0.03) 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(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-medium);
    margin-bottom: 16px;
    box-shadow: var(--shadow-card);
}

.faq-item:hover {
    border-color: rgba(139, 41, 66, 0.2);
    box-shadow: var(--shadow-elevated);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: rgba(139, 41, 66, 0.3);
    background: linear-gradient(135deg, rgba(139, 41, 66, 0.03) 0%, var(--bg-card) 100%);
}

.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(139, 41, 66, 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-primary);
    color: #ffffff;
}

.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(139, 41, 66, 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: var(--beige-medium);
}

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

@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: var(--beige-light);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    color: var(--text-secondary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    z-index: 1;
    padding: 60px 0 30px;
    background: #4a3434;
    border-top: 1px solid rgba(139, 41, 66, 0.3);
    color: #ffffff;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.75fr) repeat(4, minmax(0, 1fr));
    gap: 40px 22px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-brand {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.footer-col-kasyna {
    grid-column: 2;
    grid-row: 1;
}

.footer-col-bonusy {
    grid-column: 3;
    grid-row: 1;
}

.footer-col-kategorie {
    grid-column: 4;
    grid-row: 1;
}

.footer-col-poradniki {
    grid-column: 2;
    grid-row: 2;
}

.footer-col-platnosci {
    grid-column: 3;
    grid-row: 2;
}

.footer-col-serwis {
    grid-column: 4;
    grid-row: 2;
}

.footer-col-prawo {
    grid-column: 5;
    grid-row: 2;
}

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

.footer-brand .logo-text {
    color: #ffffff;
}

.footer-brand .logo-text .gold {
    color: #f0c987;
    -webkit-text-fill-color: #f0c987;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 350px;
    font-size: 0.92rem;
    line-height: 1.6;
}

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

.footer-trust span {
    color: #6ee7b7;
    font-size: 0.87rem;
    font-weight: 600;
}

.footer-links h4 {
    font-size: 0.95rem;
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f5d899;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    transition: var(--transition-fast);
    display: inline-block;
    font-weight: 500;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

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

.footer-seo-text h3 {
    color: #f0c987;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-seo-text p {
    color: rgba(255, 255, 255, 0.7);
    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: #ffffff;
    font-weight: 600;
}

/* Pasek zaufania (GA, MGA, GPWA itd.) */
.footer-trust-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px 28px;
    margin: 36px 0 8px;
    padding: 20px 16px;
}

.footer-trust-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: var(--transition-fast);
}

.footer-trust-link:hover {
    color: #ffffff;
}

.footer-trust-age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 8px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 800;
}

.footer-trust-gpwa {
    display: inline-block;
    padding: 10px 16px;
    background: #1b6b3a;
    border: 2px solid #e8c547;
    border-radius: 4px;
    color: #f5e6a6;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-align: center;
    max-width: 200px;
}

/* Footer Tablet & Mobile */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 24px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        grid-row: auto;
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-brand .footer-trust {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-col-kasyna,
    .footer-col-bonusy,
    .footer-col-kategorie,
    .footer-col-poradniki,
    .footer-col-platnosci,
    .footer-col-serwis,
    .footer-col-prawo {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 1024px) {
    .footer {
        padding: 40px 0 24px;
    }
    
    .footer-grid {
        gap: 28px 20px;
        margin-bottom: 30px;
    }
    
    .footer-brand {
        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.85rem;
        margin-bottom: 14px;
        color: #f5d899;
    }
    
    .footer-links ul {
        align-items: center;
        gap: 10px;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .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.15);
    }
    
    .footer-links h4 {
        font-size: 0.9rem;
        margin-bottom: 0;
        padding: 16px 0;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: color 0.3s ease;
        color: #f5d899;
    }
    
    .footer-links h4::after {
        content: '+';
        font-size: 1.2rem;
        font-weight: 400;
        color: #f5d899;
        transition: transform 0.3s ease;
    }
    
    .footer-links.active h4::after {
        content: '−';
    }
    
    .footer-links h4:hover {
        color: #ffffff;
    }
    
    .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.9rem;
        padding: 8px 0;
        display: block;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .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-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: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

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

.footer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(232, 197, 71, 0.45);
    border-radius: var(--radius-sm);
    color: #f5d899;
    font-size: 0.75rem;
    font-weight: 700;
}

.footer-badge-icon {
    flex-shrink: 0;
    opacity: 0.95;
    filter: brightness(0) invert(1);
}

.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: 14px;
    padding: 10px 14px;
    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;
    line-height: 1.2;
}

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

.floating-item img {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0;
    object-fit: contain;
    object-position: center;
    opacity: 0.85;
    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;
}

/* Lista kontrolna — shortcode [obz_ndb_checklist] (landing / artykuły) */
.ndb-checklist-wrap {
    background: var(--bg-card);
    border: 1px solid rgba(139, 41, 66, 0.25);
    border-radius: var(--radius-md);
    padding: 22px 24px;
    margin: 28px 0;
    box-shadow: var(--shadow-card);
}

.ndb-checklist-title {
    color: var(--burgundy-primary, #8b2942);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 14px;
}

ul.ndb-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.ndb-checklist li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.55;
    color: var(--text-secondary);
}

ul.ndb-checklist li:last-child {
    margin-bottom: 0;
}

ul.ndb-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold-primary);
    font-weight: 800;
    font-size: 0.95rem;
}

/* ============================================
   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(74, 222, 128, 0.1) 0%, rgba(74, 222, 128, 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(60, 60, 60, 0.85);
        padding: 8px 14px;
        border-radius: var(--radius-full);
        min-width: auto;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    
    .rank-number {
        font-size: 1.1rem;
        color: #ffffff !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6) !important;
    }
    
    .rank-label {
        color: #ffffff !important;
        background: transparent !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) !important;
    }
    
    .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.85rem;
        padding: 12px 16px;
        font-weight: 700;
    }
    
    .casino-actions .btn-review {
        background: #8B2942 !important;
        color: #ffffff !important;
        font-weight: 900 !important;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6) !important;
        font-size: 0.9rem !important;
    }
    
    .casino-actions .btn-primary,
    .casino-actions .btn-bonus {
        color: #ffffff !important;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6) !important;
        font-weight: 900 !important;
        font-size: 0.9rem !important;
    }
    
    .casino-rank {
        background: rgba(60, 60, 60, 0.85) !important;
    }
    
    .casino-rank .rank-number,
    .casino-rank .rank-label {
        color: #ffffff !important;
    }
    
    .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: flex-start;
        gap: 12px;
        background: var(--bg-primary);
        z-index: 9999;
        padding: 86px 20px 40px;
        overflow-y: auto;
    }
    
    .nav-menu.mobile-active {
        display: flex !important;
    }
    
    .nav-menu .nav-link {
        font-size: 1.05rem;
        padding: 12px 18px;
        background: var(--beige-medium);
        border-radius: 8px;
        width: 240px;
        justify-content: flex-start;
        color: var(--text-primary);
        gap: 12px;
        white-space: nowrap;
        line-height: 1.2;
    }

    .nav-menu .nav-icon {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
    }
    
    .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: 6px 12px;
        background: rgba(60, 60, 60, 0.85);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    
    .rank-number {
        font-size: 1rem;
        color: #ffffff !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6) !important;
        font-weight: 900 !important;
    }
    
    .rank-label {
        font-size: 0.55rem;
        padding: 2px 5px;
        color: #ffffff !important;
        background: transparent !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) !important;
        font-weight: 800 !important;
    }
    
    .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.85rem;
        min-width: 120px;
        font-weight: 700;
    }
    
    .casino-actions .btn-review {
        background: #8B2942 !important;
        color: #ffffff !important;
        font-weight: 900 !important;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6) !important;
        font-size: 0.9rem !important;
    }
    
    .casino-actions .btn-primary,
    .casino-actions .btn-bonus {
        color: #ffffff !important;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6) !important;
        font-weight: 900 !important;
        font-size: 0.9rem !important;
    }
    
    .casino-rank {
        background: rgba(60, 60, 60, 0.85) !important;
    }
    
    .casino-rank .rank-number,
    .casino-rank .rank-label {
        color: #ffffff !important;
    }
    
    .casino-actions .btn-text {
        padding: 10px 16px;
        font-size: 0.75rem;
        min-width: 100px;
        font-weight: 700;
    }
    
    .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: 12px 20px;
        font-size: 0.8rem;
        min-width: 140px;
        justify-content: center;
        text-align: center;
        font-weight: 700;
    }
    
    .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: 12px 18px;
        font-size: 0.75rem;
        flex: 1;
        min-width: 0;
        justify-content: center;
        text-align: center;
        font-weight: 700;
    }
    
    .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: 5px 10px;
        background: rgba(60, 60, 60, 0.85);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    
    .rank-number {
        font-size: 0.9rem;
        color: #ffffff !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6) !important;
        font-weight: 900 !important;
    }
    
    .rank-label {
        color: #ffffff !important;
        background: transparent !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) !important;
        font-weight: 800 !important;
    }
    
    .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: 12px 16px;
        font-size: 0.85rem;
        min-width: auto;
        font-weight: 700;
    }
    
    .casino-actions .btn-review {
        background: #8B2942 !important;
        color: #ffffff !important;
        font-weight: 900 !important;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6) !important;
        font-size: 0.95rem !important;
    }
    
    .casino-actions .btn-primary,
    .casino-actions .btn-bonus {
        color: #ffffff !important;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6) !important;
        font-weight: 900 !important;
        font-size: 0.95rem !important;
    }
    
    .casino-rank {
        background: rgba(60, 60, 60, 0.85) !important;
    }
    
    .casino-rank .rank-number,
    .casino-rank .rank-label {
        color: #ffffff !important;
    }
    
    .casino-actions .btn-text {
        padding: 10px 14px;
        font-size: 0.75rem;
        min-width: auto;
        font-weight: 700;
    }
    
    .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);
}

/* ============================================
   BLOG — archive (home.php / archive.php)
   ============================================ */
.blog-archive-page { position: relative; z-index: 1; padding-top: 90px; }

.blog-archive-hero {
    padding: 50px 0 40px;
}
.blog-archive-hero.is-compact { padding: 32px 0 24px; }

.blog-archive-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(139, 41, 66, 0.08);
    border: 1px solid rgba(139, 41, 66, 0.2);
    color: var(--gold-primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: 18px;
}
.blog-archive-eyebrow svg { stroke: var(--gold-primary); }

.blog-archive-title {
    font-size: clamp(2rem, 4.4vw, 3.2rem);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 14px;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.blog-archive-lead {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--text-secondary);
    max-width: 780px;
    margin: 0 0 28px;
}
.blog-archive-lead p { margin: 0 0 8px; }

.blog-archive-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    padding: 22px 28px;
    margin: 0 0 28px;
    background: var(--bg-card);
    border: 1px solid var(--beige-dark);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    width: fit-content;
}
.bas-item { display: flex; flex-direction: column; gap: 2px; }
.bas-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1;
}
.bas-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.blog-archive-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}
.bac-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--beige-dark);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}
.bac-chip:hover {
    background: rgba(139, 41, 66, 0.06);
    border-color: rgba(139, 41, 66, 0.25);
    color: var(--gold-primary);
    transform: translateY(-1px);
}
.bac-chip.is-active {
    background: var(--gold-button);
    border-color: transparent;
    color: #fff;
}
.bac-count {
    display: inline-flex;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    align-items: center;
    justify-content: center;
    background: rgba(139, 41, 66, 0.1);
    color: var(--gold-primary);
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 11px;
}
.bac-chip.is-active .bac-count {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

.blog-archive-back {
    margin-top: 18px;
}
.blog-archive-back a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.95rem;
}
.blog-archive-back a:hover { text-decoration: underline; }

.blog-archive-grid-section {
    padding: 16px 0 80px;
}

/* Blog grid (cards) */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--beige-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-medium);
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
    border-color: rgba(139, 41, 66, 0.2);
}

.blog-card.is-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
}
.blog-card.is-featured .blog-card-thumb {
    aspect-ratio: auto;
    height: 100%;
    min-height: 320px;
}
.blog-card.is-featured .blog-card-body {
    padding: 36px 40px;
    justify-content: center;
}
.blog-card.is-featured .blog-card-title {
    font-size: 1.85rem;
}
.blog-card.is-featured .blog-card-excerpt {
    font-size: 1rem;
    -webkit-line-clamp: 4;
}

.blog-card-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--beige-medium);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card:hover .blog-card-thumb img {
    transform: scale(1.04);
}
.blog-card-thumb-fallback {
    color: rgba(139, 41, 66, 0.45);
}

.blog-card-feat-ribbon {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--gold-button);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 14px rgba(139, 41, 66, 0.3);
}

.blog-card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px 24px 28px;
    flex: 1;
}

.blog-card-cat {
    align-self: flex-start;
    padding: 4px 12px;
    background: rgba(139, 41, 66, 0.08);
    color: var(--gold-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}
.blog-card-cat:hover {
    background: var(--gold-primary);
    color: #fff;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-primary);
    margin: 0;
}
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--gold-primary); }

.blog-card-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 14px;
    color: var(--text-muted);
    font-size: 0.82rem;
}
.blog-card-author { color: var(--gold-primary); font-weight: 600; }
.blog-card-meta-dot { color: var(--text-muted); opacity: 0.5; }

/* Pagination */
.blog-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 56px;
}
.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    background: var(--bg-card);
    border: 1px solid var(--beige-dark);
    color: var(--text-primary);
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}
.blog-pagination .page-numbers:hover {
    border-color: rgba(139, 41, 66, 0.3);
    color: var(--gold-primary);
}
.blog-pagination .page-numbers.current {
    background: var(--gold-button);
    border-color: transparent;
    color: #fff;
}
.blog-pagination .page-numbers.dots {
    background: transparent;
    border: none;
    color: var(--text-muted);
}

/* Empty state */
.blog-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}
.blog-empty svg { color: var(--gold-primary); opacity: 0.4; margin-bottom: 16px; }
.blog-empty h2 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin: 0 0 8px;
}
.blog-empty p { margin: 0 0 24px; }

/* ============================================
   BLOG — single (single.php)
   ============================================ */
.blog-single-page { position: relative; z-index: 1; padding-top: 90px; }

.blog-breadcrumbs {
    padding: 20px 0 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.blog-breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.blog-breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: var(--text-muted);
    opacity: 0.4;
}
.blog-breadcrumbs a {
    color: var(--gold-primary);
    font-weight: 600;
}
.blog-breadcrumbs a:hover { text-decoration: underline; }

.blog-hero {
    padding: 24px 0 40px;
}
.blog-hero .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
}
.blog-hero-content { max-width: 100%; }
.blog-title,
.blog-lead { max-width: 1100px; }

.blog-hero-meta-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.blog-cat-chip {
    padding: 5px 14px;
    background: var(--gold-button);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
}
.blog-cat-chip:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(139, 41, 66, 0.25); }
.blog-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.blog-meta-item svg { stroke: currentColor; }
.blog-meta-dot { opacity: 0.4; }

.blog-title {
    font-size: clamp(1.9rem, 4.4vw, 2.9rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin: 0 0 16px;
}

.blog-lead {
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0 0 28px;
}

.blog-author-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding: 16px 22px;
    background: var(--bg-card);
    border: 1px solid var(--beige-dark);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}
.blog-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    object-fit: cover;
    flex-shrink: 0;
}
.blog-author-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 160px;
}
.blog-author-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.95rem;
}
.blog-author-role {
    font-size: 0.78rem;
    color: var(--text-muted);
}
.blog-updated-pill {
    padding: 6px 14px;
    background: rgba(61, 153, 112, 0.1);
    color: var(--accent-green);
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.blog-hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
    aspect-ratio: 16 / 7;
}
.blog-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-content-section { padding: 8px 0 60px; }

.blog-article {
    max-width: 100%;
    padding: clamp(28px, 4vw, 60px);
}
.blog-article > .toc-wrapper.blog-toc {
    margin: 0 0 36px;
    background: var(--beige-light);
    padding: 26px 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--beige-dark);
}
.blog-toc .toc-title {
    font-size: 1.1rem;
    margin: 0 0 14px;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 800;
}
.blog-toc .toc-list {
    display: grid;
    gap: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.blog-toc .toc-list li a {
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.45;
}
.blog-toc .toc-list li a:hover { color: var(--gold-primary); }
.blog-toc .toc-list li.toc-h3 { padding-left: 16px; font-size: 0.92rem; }
.blog-toc .toc-list li.toc-h3 a { color: var(--text-muted); }

.blog-article h2 {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 50px 0 22px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--gold-primary);
    scroll-margin-top: 100px;
}
.blog-article h2:first-child { margin-top: 0; }
.blog-article h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin: 32px 0 16px;
    scroll-margin-top: 100px;
}
.blog-article h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 22px 0 10px;
}
.blog-article p {
    font-size: 1.05rem;
    line-height: 1.78;
    color: var(--text-secondary);
    margin: 0 0 18px;
}
.blog-article ul,
.blog-article ol { margin: 16px 0 18px; padding-left: 22px; }
.blog-article ul li,
.blog-article ol li { color: var(--text-secondary); margin-bottom: 8px; line-height: 1.7; }
.blog-article a {
    color: var(--gold-primary);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(139, 41, 66, 0.3);
    text-underline-offset: 3px;
}
.blog-article a:hover { text-decoration-color: var(--gold-primary); }
.blog-article blockquote {
    border-left: 4px solid var(--gold-primary);
    background: var(--beige-light);
    padding: 16px 20px;
    margin: 24px 0;
    border-radius: 0 8px 8px 0;
    color: var(--text-secondary);
    font-style: italic;
}
.blog-article img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 18px 0;
    box-shadow: var(--shadow-card);
}

/* Авто-вставленный ranking внутри статьи */
.blog-inline-ranking-wrap {
    margin: 50px -20px 30px;
    padding: 0;
}
.blog-inline-ranking-wrap .ranking-section {
    padding: 30px 0;
}

/* Footer статьи: tags + share */
.blog-article-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--beige-dark);
}
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.blog-tags-label,
.blog-share-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 4px;
}
.blog-tag-chip {
    padding: 5px 12px;
    background: var(--beige-light);
    border: 1px solid var(--beige-dark);
    color: var(--text-secondary);
    font-size: 0.82rem;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}
.blog-tag-chip:hover {
    background: rgba(139, 41, 66, 0.06);
    color: var(--gold-primary);
    border-color: rgba(139, 41, 66, 0.25);
}
.blog-share { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.blog-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--bg-card);
    border: 1px solid var(--beige-dark);
    color: var(--text-secondary);
    font-weight: 800;
    border-radius: 50%;
    transition: var(--transition-fast);
}
.blog-share-btn:hover {
    background: var(--gold-primary);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 41, 66, 0.25);
}

.blog-faq-section { margin-top: 60px; }
.blog-related-section { margin-top: 70px; }
.blog-related-section .section-header { margin-bottom: 28px; }

.blog-back-link {
    margin-top: 40px;
    text-align: center;
}
.blog-back-link a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px 20px;
    border: 1px solid var(--beige-dark);
    border-radius: var(--radius-full);
    background: var(--bg-card);
    transition: var(--transition-fast);
}
.blog-back-link a:hover {
    background: var(--gold-primary);
    color: #fff;
    border-color: transparent;
}

/* ── Адаптив ── */
@media (max-width: 900px) {
    .blog-card.is-featured { grid-template-columns: 1fr; }
    .blog-card.is-featured .blog-card-thumb { min-height: 220px; aspect-ratio: 16 / 9; }
    .blog-card.is-featured .blog-card-body { padding: 24px; }
    .blog-card.is-featured .blog-card-title { font-size: 1.4rem; }
}

@media (max-width: 768px) {
    .blog-archive-page,
    .blog-single-page { padding-top: 70px; }
    .blog-archive-hero { padding: 30px 0 22px; }
    .blog-archive-stats { gap: 18px; padding: 16px 18px; width: 100%; }
    .bas-num { font-size: 1.4rem; }
    .blog-grid { grid-template-columns: 1fr; gap: 22px; }
    .blog-article { padding: 22px 18px; }
    .blog-article h2 { font-size: 1.4rem; margin: 32px 0 14px; }
    .blog-article h3 { font-size: 1.15rem; margin: 22px 0 10px; }
    .blog-article p { font-size: 1rem; }
    .blog-hero-image { aspect-ratio: 16 / 9; }
    .blog-author-row { padding: 14px 16px; }
    .blog-inline-ranking-wrap { margin: 30px -8px 20px; }
    .blog-article-footer { flex-direction: column; align-items: flex-start; }
    .blog-pagination .page-numbers { min-width: 36px; height: 36px; padding: 0 10px; font-size: 0.9rem; }
}


/* ============================================
   WAGER CALCULATOR — [obz_wager_calc]
   ============================================ */
.wager-calc-section {
    padding: 60px 0;
    background: var(--bg-light);
}
.wager-calc-wrap {
    margin-top: 32px;
}
.wager-calc-formula {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.formula-part {
    background: var(--bg-card);
    border: 1px solid rgba(139, 41, 66, 0.2);
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}
.formula-op {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--burgundy-primary, #8b2942);
}
.formula-result {
    background: var(--burgundy-primary, #8b2942);
    color: #fff;
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    font-weight: 700;
    font-size: 0.95rem;
}
.wager-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}
.wager-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    font-size: 0.93rem;
}
.wager-table thead tr {
    background: var(--burgundy-primary, #8b2942);
    color: #fff;
}
.wager-table th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
}
.wager-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
    vertical-align: middle;
}
.wager-table tbody tr:last-child td { border-bottom: none; }
.wager-table tbody tr:hover { background: var(--bg-hover, rgba(0,0,0,.03)); }
.wager-casino { font-weight: 600; color: var(--text-primary) !important; }
.wager-x { font-weight: 700; color: var(--text-primary) !important; }
.wager-total { font-weight: 700; color: var(--text-primary) !important; }
.wager-level {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}
.wager-easy   { background: rgba(34, 197, 94, 0.12); color: #16a34a; }
.wager-medium { background: rgba(234, 179, 8, 0.12);  color: #a16207; }
.wager-hard   { background: rgba(239, 68, 68, 0.12);  color: #dc2626; }
.wager-calc-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 16px;
    text-align: center;
}
@media (max-width: 768px) {
    .wager-calc-formula { gap: 10px; }
    .formula-part, .formula-result { padding: 8px 14px; font-size: 0.88rem; }
    .wager-table th, .wager-table td { padding: 10px 12px; font-size: 0.85rem; }
}

/* === Recovered: rules for blacklist card initials (used by [casino_blacklist] shortcode) === */
.blacklist-logo-initials {
    background: #1a1a1a;
    border-color: rgba(0, 0, 0, 0.15);
}

.blacklist-logo-initials span {
    font-family: var(--font-heading, inherit);
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ff6b6b;
    line-height: 1;
}


/* === Dropdown «Bonusy» в главном меню (Bez depozytu и др.) === */

/* Контейнер пункта с подменю — нужен relative для позиционирования. */
.nav-menu .nav-has-sub {
    position: relative;
}

/* Стрелка ▾ в верхнем пункте. */
.nav-menu .nav-has-sub .nav-caret {
    display: inline-block;
    margin-left: 4px;
    font-size: 0.7em;
    line-height: 1;
    transition: transform 0.18s ease;
    opacity: 0.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% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    margin: 0;
    padding: 8px;
    list-style: none;
    width: 240px;
    background: #ffffff;
    border: 1px solid rgba(139, 41, 66, 0.10);
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(20, 12, 16, 0.14), 0 4px 10px rgba(20, 12, 16, 0.06);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1000;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

/* Невидимый «мост» между пунктом и подменю — чтобы курсор не «улетал». */
.nav-menu .nav-has-sub::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 12px;
}

/* Открытие при hover/focus. */
.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);
}

/* Когда подменю слишком близко к правому краю экрана — прижимаем его к правому
   краю триггера, а не центрируем (защита от выхода за вьюпорт). */
@media (max-width: 1199px) and (min-width: 1025px) {
    .nav-menu .nav-has-sub:nth-last-child(-n+2) .nav-sub {
        left: auto;
        right: 0;
        transform: translateY(-4px);
    }
    .nav-menu .nav-has-sub:nth-last-child(-n+2):hover .nav-sub,
    .nav-menu .nav-has-sub:nth-last-child(-n+2):focus-within .nav-sub {
        transform: translateY(0);
    }
    .nav-menu .nav-has-sub:nth-last-child(-n+2) .nav-sub::before {
        left: auto;
        right: 24px;
        transform: rotate(45deg);
    }
}

/* Маленький треугольник-стрелка вверху подменю. */
.nav-menu .nav-sub::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-top: 1px solid rgba(139, 41, 66, 0.10);
    border-left: 1px solid rgba(139, 41, 66, 0.10);
    border-radius: 2px;
}

.nav-menu .nav-sub li {
    list-style: none;
}

.nav-menu .nav-sub a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #1d1d1d;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.nav-menu .nav-sub a:hover,
.nav-menu .nav-sub a:focus-visible {
    background: linear-gradient(135deg, rgba(139, 41, 66, 0.06) 0%, rgba(245, 184, 0, 0.06) 100%);
    color: #8b2942;
    transform: translateX(2px);
}

.nav-menu .nav-sub-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    object-fit: contain;
    transition: transform 0.15s ease;
}
.nav-menu .nav-sub a:hover .nav-sub-icon,
.nav-menu .nav-sub a:focus-visible .nav-sub-icon {
    transform: scale(1.1);
}

.nav-menu .nav-sub-label {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}
.nav-menu .nav-sub-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: inherit;
}
.nav-menu .nav-sub-desc {
    font-size: 0.78rem;
    color: rgba(29, 29, 29, 0.55);
}
.nav-menu .nav-sub a:hover .nav-sub-desc {
    color: rgba(139, 41, 66, 0.65);
}

/* Адаптив: на мобильных подменю раскрывается «инлайн» внутри burger-меню. */
@media (max-width: 1024px) {
    /* Mobile dropdown under Bonusy.
       Hidden by default, expanded by JS adding .open to parent. */

    .nav-menu .nav-has-sub {
        position: relative;
        width: 240px;
        display: block;
        text-align: center;
    }

    .nav-menu .nav-has-sub .nav-caret {
        display: inline-block;
        margin-left: 8px;
        transition: transform 0.25s ease;
    }
    .nav-menu .nav-has-sub.open .nav-caret {
        transform: rotate(180deg);
    }

    .nav-menu .nav-sub {
        position: static !important;
        transform: none !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0 auto;
        min-width: 0;
        width: 240px !important;
        max-height: 0;
        overflow: hidden;
        list-style: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
        transition: max-height 0.25s ease, opacity 0.2s ease, padding 0.2s ease;
    }
    .nav-menu .nav-has-sub.open .nav-sub {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        max-height: 600px;
        padding: 8px 0 4px;
    }

    .nav-menu .nav-sub li {
        list-style: none;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .nav-menu .nav-sub a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        padding: 10px 14px;
        background: rgba(139, 41, 66, 0.04);
        border-radius: 8px;
        margin: 4px auto;
        width: 220px;
        box-sizing: border-box;
        color: #1d1d1d;
        text-decoration: none;
    }
    .nav-menu .nav-sub a .nav-sub-icon {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .nav-menu .nav-sub::before { display: none; }
    .nav-menu .nav-has-sub::after { display: none; }
    .nav-menu .nav-sub-desc { display: none; }
}

/* === Mobile performance — отключаем тяжёлые blur и анимации === */
/* На мобильных GPU не справляется с тремя элементами 600/400/350px,
   у которых filter: blur(120px) + бесконечная анимация float 25s.
   Это была главная причина тормозов и неотзывчивого бургер-меню. */
@media (max-width: 1024px) {
    .bg-animation,
    .bg-glow,
    .bg-glow-1,
    .bg-glow-2,
    .bg-glow-3 {
        display: none !important;
        animation: none !important;
        filter: none !important;
    }
    /* Полупрозрачная шапка с backdrop-filter blur(20px) тоже даёт нагрузку
       на скролле, заменяем на сплошной фон. */
    .header {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: #ffffff !important;
    }
    /* Reading-progress bar тоже отключим — лишний layout на каждом скролле. */
    .reading-progress { display: none !important; }
}
