/* ============================================
   Juegos al Azar Online - Premium Casino Reviews
   Theme: "Midnight Royal" - Deep Navy & Gold Luxury
   ============================================ */

/* CSS Variables - Midnight Royal Palette */
:root {
    /* === BACKGROUNDS - Deep Navy Blues === */
    --bg-deep: #0A0E1A;           /* Deep midnight navy */
    --bg-main: #0A0E1A;
    --bg-secondary: #0F172A;      /* Slightly lighter navy */
    --bg-tertiary: #1E293B;       /* Slate blue */
    --bg-card: #1E293B;           /* Card backgrounds */
    --bg-elevated: #334155;       /* Elevated surfaces */
    --bg-hover: #475569;          /* Hover states */

    /* === PRIMARY ACCENT - RICH GOLD === */
    --accent-primary: #D4AF37;    /* Rich gold - Primary actions */
    --accent-hover: #F4D03F;      /* Bright gold hover */
    --accent-active: #B8962E;     /* Pressed state */
    --accent-muted: #C4A030;      /* Muted gold */

    /* === SECONDARY ACCENT - Royal Blue === */
    --accent-secondary: #3B82F6;  /* Royal blue */
    --accent-secondary-hover: #60A5FA;
    --accent-trust: #10B981;      /* Emerald green */
    --accent-warning: #F59E0B;    /* Amber */
    --accent-error: #EF4444;      /* Red */

    /* === PREMIUM GRADIENTS === */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4E4A6 50%, #D4AF37 100%);
    --gradient-gold-shimmer: linear-gradient(90deg, #B8962E 0%, #F4E4A6 25%, #D4AF37 50%, #F4E4A6 75%, #B8962E 100%);
    --gradient-gold-subtle: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(244,228,166,0.05) 100%);
    --gradient-midnight: linear-gradient(135deg, #0A0E1A 0%, #0F172A 50%, #1E293B 100%);
    --gradient-royal: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
    --gradient-vignette: radial-gradient(ellipse at center, transparent 0%, rgba(10,14,26,0.6) 100%);
    --gradient-glow: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.15) 0%, transparent 60%);

    /* === TYPOGRAPHY === */
    --text-primary: #F5F5F5;      /* Off-White - Main headings */
    --text-secondary: #D1D1D1;    /* Light Gray - Descriptions */
    --text-muted: #888888;        /* Muted text */
    --text-disabled: #555555;     /* Disabled state */
    --text-gold: #D4AF37;         /* Gold accents in text */

    /* === BORDERS === */
    --border-default: rgba(169, 169, 169, 0.15);  /* Subtle gray */
    --border-hover: rgba(212, 175, 55, 0.25);     /* Gold hint on hover */
    --border-accent: rgba(212, 175, 55, 0.4);     /* Active gold border */
    --border-gold: rgba(212, 175, 55, 0.6);       /* Strong gold border */
    --border-subtle: rgba(255, 255, 255, 0.05);   /* Very subtle dividers */

    /* === SHADOWS === */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.7);
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.2);
    --shadow-gold-glow: 0 0 40px rgba(212, 175, 55, 0.15);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.3);

    /* === RADIUS === */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-full: 999px;

    /* === TYPOGRAPHY SYSTEM === */
    --font-heading: 'Playfair Display', 'Merriweather', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;

    /* Font Sizes */
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 1.875rem;  /* 30px */
    --text-4xl: 2.25rem;   /* 36px */
    --text-5xl: 3rem;      /* 48px */
    --text-6xl: 3.75rem;   /* 60px */

    /* === SPACING === */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 12px;
    --space-lg: 16px;
    --space-xl: 24px;
    --space-2xl: 32px;
    --space-3xl: 48px;
    --space-4xl: 64px;
    --space-5xl: 80px;
    --space-6xl: 96px;

    /* === ANIMATION TIMING === */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 400ms ease;
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: #F8FAFC;
    background: #0A0E1A;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #F4E4A6;
}

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 { font-size: 2.5rem; color: #F5F5F5; }
h2 { font-size: 2rem; color: #F5F5F5; }
h3 { font-size: 1.5rem; color: #F5F5F5; }
h4 { font-size: 1.25rem; color: #D1D1D1; }

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ============================================
   Header
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 12, 15, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: var(--space-xl);
}

.header-left {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.logo img {
    height: 40px;
    width: auto;
}

.header-badges {
    display: none;
    gap: var(--space-sm);
}

@media (min-width: 768px) {
    .header-badges {
        display: flex;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--text-secondary);
}

.badge-verified {
    color: var(--accent-trust);
    background: rgba(30, 138, 110, 0.10);
    border-color: rgba(30, 138, 110, 0.20);
}

.badge-18 {
    background: rgba(184, 146, 59, 0.15);
    border-color: rgba(184, 146, 59, 0.25);
    color: var(--accent-warning);
    font-weight: 700;
}

.badge-ssl {
    color: var(--accent-trust);
    background: rgba(30, 138, 110, 0.10);
    border-color: rgba(30, 138, 110, 0.20);
}

/* Navigation */
.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

@media (max-width: 1023px) {
    .header-nav {
        justify-content: flex-end;
    }
}

.nav-menu {
    display: none;
    gap: var(--space-xs);
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
}

.nav-menu li a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.nav-menu li a:hover {
    color: var(--text-gold);
    background: rgba(212, 175, 55, 0.08);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Desktop Navigation */
.nav-menu-desktop {
    display: none;
    gap: var(--space-xs);
}

@media (min-width: 1024px) {
    .nav-menu-desktop {
        display: flex;
    }
}

/* ============================================
   Fullscreen Mobile Menu
   ============================================ */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px; /* Below header */
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #0A0C0F 0%, #0D0F13 100%);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hide mobile menu completely on desktop */
@media (min-width: 1024px) {
    .mobile-menu,
    .mobile-menu.active {
        display: none !important;
        visibility: hidden !important;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: var(--space-xl) var(--space-lg);
}

/* Mobile Search */
.mobile-search {
    margin-bottom: var(--space-2xl);
}

.mobile-search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-search-icon {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    pointer-events: none;
}

.mobile-search-input {
    width: 100%;
    padding: 16px 16px 16px 52px;
    font-size: 16px;
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    outline: none;
    transition: all 0.2s ease;
}

.mobile-search-input::placeholder {
    color: var(--text-muted);
}

.mobile-search-input:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

/* Mobile Navigation */
.mobile-nav {
    flex: 1;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-md);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.mobile-nav-link svg {
    color: var(--accent-secondary);
    flex-shrink: 0;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    color: var(--text-primary);
    background: rgba(212, 175, 55, 0.06);
}

.mobile-nav-link:hover svg,
.mobile-nav-link:active svg {
    color: var(--accent-primary);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    margin-top: auto;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-default);
}

.mobile-footer-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-trust);
    text-decoration: none;
}

.mobile-footer-link svg {
    flex-shrink: 0;
}

.mobile-footer-badges {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* Desktop search toggle - hide on mobile */
.search-toggle-desktop {
    display: none;
}

@media (min-width: 1024px) {
    .search-toggle-desktop {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: transparent;
        border: 1px solid var(--border-default);
        border-radius: var(--radius-sm);
        color: var(--text-secondary);
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .search-toggle-desktop:hover {
        border-color: var(--border-accent);
        color: var(--accent-primary);
    }
}

/* Search Overlay */
.search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 16, 32, 0.95);
    z-index: 2000;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
}

.search-overlay.active {
    display: flex;
}

.search-container {
    width: 100%;
    max-width: 600px;
    padding: 0 var(--space-lg);
    position: relative;
}

.search-form {
    display: flex;
    gap: var(--space-md);
}

/* Form Input - High Roller Gold */
.search-input {
    flex: 1;
    padding: var(--space-lg);
    font-size: var(--text-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    outline: none;
    transition: all var(--transition-normal);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-input:focus {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Submit Button - Gold */
.search-btn {
    padding: var(--space-lg) var(--space-xl);
    background: var(--accent-primary);
    background-image: linear-gradient(135deg, #D4AF37 0%, #E5C158 100%);
    color: #121212;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.search-btn:hover {
    background-image: linear-gradient(135deg, #E5C158 0%, #F4E4A6 100%);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.search-close {
    position: absolute;
    top: -60px;
    right: var(--space-lg);
    font-size: 32px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
}

/* ============================================
   Main Content
   ============================================ */
.main {
    min-height: calc(100vh - 72px - 400px);
    overflow-x: hidden;
}

/* ============================================
   Home Page Hero Section
   ============================================ */
.home-hero {
    position: relative;
    min-height: 780px;
    padding: var(--space-4xl) 0 calc(var(--space-4xl) * 1.5);
    overflow: hidden;
    background: linear-gradient(135deg, #0A0C0F 0%, #0E1114 50%, #12151A 100%);
}

.home-hero .hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.home-hero .hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
}

.home-hero .container {
    position: relative;
    z-index: 10;
}

/* Responsive home-hero */
@media (max-width: 1024px) {
    .home-hero {
        min-height: auto;
        padding: var(--space-3xl) 0 var(--space-4xl);
    }
}

@media (max-width: 768px) {
    .home-hero {
        padding: var(--space-xl) 0 var(--space-2xl);
    }
}

@media (max-width: 480px) {
    .home-hero {
        padding: var(--space-lg) 0 var(--space-xl);
    }
}

/* ============================================
   High Roller Gold - Floating Decorations
   Premium animations for casino elements
   ============================================ */

/* === KEYFRAME ANIMATIONS === */

/* Gentle floating motion */
@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-12px) rotate(1deg);
    }
    50% {
        transform: translateY(-20px) rotate(0deg);
    }
    75% {
        transform: translateY(-12px) rotate(-1deg);
    }
}

/* Alternative float with different timing */
@keyframes float-drift {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(8px, -15px) rotate(2deg);
    }
    66% {
        transform: translate(-5px, -25px) rotate(-1deg);
    }
}

/* Slow subtle float */
@keyframes float-subtle {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: var(--float-opacity, 0.15);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
        opacity: calc(var(--float-opacity, 0.15) + 0.05);
    }
}

/* Slow continuous spin for roulette */
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Reverse spin */
@keyframes spin-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

/* Card drift animation */
@keyframes card-drift {
    0%, 100% {
        transform: translate(0, 0) rotate(var(--card-rotate, 0deg));
    }
    25% {
        transform: translate(5px, -8px) rotate(calc(var(--card-rotate, 0deg) + 2deg));
    }
    50% {
        transform: translate(0, -12px) rotate(var(--card-rotate, 0deg));
    }
    75% {
        transform: translate(-5px, -6px) rotate(calc(var(--card-rotate, 0deg) - 2deg));
    }
}

/* Dice tumble animation */
@keyframes dice-tumble {
    0%, 100% {
        transform: rotate3d(1, 1, 0, 0deg);
    }
    25% {
        transform: rotate3d(1, 0, 1, 8deg);
    }
    50% {
        transform: rotate3d(0, 1, 1, -5deg);
    }
    75% {
        transform: rotate3d(1, 1, 1, 6deg);
    }
}

/* Gold shimmer effect */
@keyframes gold-shimmer {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.2));
        opacity: 0.12;
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.35));
        opacity: 0.18;
    }
}

/* Pulse glow for emphasis */
@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.15));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
    }
}

/* === FLOATING DECORATION BASE STYLES === */
.floating-deco {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    will-change: transform;
}

/* Chips Stack */
.deco-chips {
    width: 140px;
    height: 160px;
    top: 8%;
    right: 5%;
    opacity: 0.15;
    animation: float-gentle 8s ease-in-out infinite;
}

/* Dice */
.deco-dice {
    width: 160px;
    height: 140px;
    bottom: 15%;
    left: 3%;
    opacity: 0.12;
    animation: float-drift 10s ease-in-out infinite;
}

.deco-dice .dice-1 {
    animation: dice-tumble 12s ease-in-out infinite;
    transform-origin: center;
}

.deco-dice .dice-2 {
    animation: dice-tumble 15s ease-in-out infinite reverse;
    transform-origin: center;
}

/* Cards */
.deco-cards {
    width: 180px;
    height: 160px;
    top: 50%;
    right: 8%;
    opacity: 0.12;
    animation: float-subtle 9s ease-in-out infinite;
    --float-opacity: 0.12;
}

.deco-cards .card-1 {
    --card-rotate: -8deg;
    animation: card-drift 11s ease-in-out infinite;
}

.deco-cards .card-2 {
    --card-rotate: 3deg;
    animation: card-drift 13s ease-in-out infinite 0.5s;
}

.deco-cards .card-3 {
    --card-rotate: 12deg;
    animation: card-drift 10s ease-in-out infinite 1s;
}

/* Roulette Wheel */
.deco-roulette {
    width: 220px;
    height: 220px;
    top: 5%;
    left: 2%;
    opacity: 0.1;
}

.deco-roulette .wheel-spin {
    animation: spin-slow 45s linear infinite;
    transform-origin: center;
}

/* Legacy support for old floating-chip classes */
.floating-chip {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.floating-chip.chip-1 {
    top: 12%;
    right: 6%;
    width: 90px;
    height: 90px;
    animation: float-gentle 7s ease-in-out infinite;
}

.floating-chip.chip-2 {
    bottom: 25%;
    left: 4%;
    width: 70px;
    height: 70px;
    animation: float-drift 9s ease-in-out infinite;
}

.floating-chip.chip-3 {
    top: 55%;
    right: 12%;
    width: 55px;
    height: 55px;
    animation: float-subtle 8s ease-in-out infinite;
    opacity: 0.08;
}

.hero-roulette {
    position: absolute;
    top: 8%;
    right: 2%;
    width: 220px;
    height: 220px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.12;
}

.hero-roulette .wheel-spin {
    animation: spin-slow 40s linear infinite;
    transform-origin: center;
}

/* Depth effect - blur distant elements */
.floating-deco.depth-far {
    filter: blur(1px);
    opacity: 0.08;
}

.floating-deco.depth-mid {
    opacity: 0.12;
}

.floating-deco.depth-near {
    opacity: 0.18;
}

/* === RESPONSIVE ADJUSTMENTS === */
@media (max-width: 1024px) {
    .floating-deco {
        opacity: 0.08;
    }

    .deco-chips {
        width: 100px;
        right: 2%;
    }

    .deco-roulette {
        width: 160px;
        height: 160px;
    }

    .deco-cards {
        display: none;
    }
}

@media (max-width: 768px) {
    .floating-deco,
    .floating-chip,
    .hero-roulette {
        display: none;
    }
}

/* Floating Chips */
.floating-chip {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.floating-chip.chip-1 {
    top: 12%;
    right: 6%;
    width: 90px;
    height: 90px;
    animation: float 7s ease-in-out infinite;
}

.floating-chip.chip-2 {
    bottom: 25%;
    left: 4%;
    width: 70px;
    height: 70px;
    animation: float-alt 9s ease-in-out infinite;
    animation-delay: -2s;
}

.floating-chip.chip-3 {
    top: 55%;
    right: 12%;
    width: 55px;
    height: 55px;
    animation: float-slow 8s ease-in-out infinite;
    animation-delay: -4s;
    opacity: 0.7;
}

.floating-chip.chip-4 {
    bottom: 15%;
    right: 25%;
    width: 45px;
    height: 45px;
    animation: float 10s ease-in-out infinite;
    animation-delay: -3s;
    opacity: 0.5;
}

/* Roulette Wheel */
.hero-roulette {
    position: absolute;
    top: 8%;
    right: 2%;
    width: 220px;
    height: 220px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
}

.hero-roulette .wheel-spin {
    animation: spin-slow 30s linear infinite;
    transform-origin: center;
}

/* Card Suits Pattern */
.hero-suits-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.4;
}

/* Neon glow effect for text/buttons */
.neon-gold {
    text-shadow:
        0 0 5px rgba(212, 175, 55, 0.5),
        0 0 10px rgba(212, 175, 55, 0.3),
        0 0 20px rgba(212, 175, 55, 0.2);
}

.glow-gold {
    box-shadow:
        0 0 10px rgba(212, 175, 55, 0.2),
        0 0 20px rgba(212, 175, 55, 0.1),
        inset 0 0 20px rgba(212, 175, 55, 0.05);
}

/* Hide decorations on small screens */
@media (max-width: 768px) {
    .floating-chip,
    .hero-roulette {
        display: none;
    }
}

/* Compliance strip */
.hero-compliance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    margin-bottom: var(--space-2xl);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    background: rgba(13, 15, 19, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-full);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.3px;
}

.compliance-divider {
    color: rgba(212, 175, 55, 0.25);
}

/* Hero grid */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.15fr 0.85fr;
        gap: var(--space-4xl);
        align-items: center;
    }
}

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

.hero-content h1 {
    font-size: clamp(1.875rem, 4.5vw, 2.75rem);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    line-height: 1.25;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-content h1::first-line {
    background: linear-gradient(135deg, #F5F3EE 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 520px;
}

/* Trust badges */
.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.trust-badge svg {
    color: var(--accent-trust);
    flex-shrink: 0;
}

/* Search box */
.hero-search {
    position: relative;
    max-width: 480px;
    margin-bottom: var(--space-lg);
}

.hero-search .search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.hero-search input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--text-primary);
    background: rgba(13, 15, 19, 0.8);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    outline: none;
    transition: all 0.2s ease;
}

.hero-search input::placeholder {
    color: var(--text-muted);
}

.hero-search input:focus {
    border-color: var(--accent-primary);
    background: var(--bg-card);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Quick filter chips */
.hero-filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    background: rgba(22, 25, 31, 0.7);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.filter-chip svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.filter-chip:hover {
    color: var(--text-gold);
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--border-hover);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.1);
}

.filter-chip:hover svg {
    opacity: 1;
    color: var(--accent-primary);
}

/* Category tiles */
.hero-categories {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
}

.category-tile {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    background: linear-gradient(135deg, rgba(22, 25, 31, 0.9) 0%, rgba(13, 15, 19, 0.95) 100%);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.2s ease;
}

.category-tile svg {
    color: var(--accent-secondary);
    transition: color 0.2s ease;
}

.category-tile:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(27, 127, 90, 0.08) 100%);
    border-color: var(--border-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
}

.category-tile:hover svg {
    color: var(--accent-primary);
}

/* CTA buttons */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.hero-cta .btn {
    padding: 14px 24px;
    font-size: 14px;
}

.hero-cta .btn svg {
    flex-shrink: 0;
}

/* Hero card - right column */
.hero-card {
    position: relative;
    z-index: 1;
}

/* Methodology card */
.methodology-card {
    background: linear-gradient(145deg, #0D0F13 0%, #16191F 100%);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 1px rgba(212, 175, 55, 0.1);
}

.methodology-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border-default);
}

.methodology-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(27, 127, 90, 0.08) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-md);
    color: var(--accent-primary);
}

.methodology-title {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.methodology-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.methodology-sublabel {
    font-size: 12px;
    color: var(--text-muted);
}

/* Methodology items */
.methodology-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.methodology-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.methodology-item-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.methodology-item-header svg {
    color: var(--accent-secondary);
    flex-shrink: 0;
}

.methodology-item-header .item-label {
    flex: 1;
    font-size: 13px;
    color: var(--text-secondary);
}

.methodology-item-header .item-value {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

.methodology-bar {
    height: 6px;
    background: rgba(148, 163, 184, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.methodology-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    border-radius: var(--radius-full);
    transition: width 0.6s ease;
}

.methodology-fill-green {
    background: linear-gradient(90deg, #1E8A6E 0%, #34D399 100%);
}

/* Methodology footer */
.methodology-footer {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-default);
}

.methodology-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.methodology-link:hover {
    color: var(--accent-hover);
    gap: 10px;
}

/* Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #B8962E 100%);
    color: #0A0C0F;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #E8C54A 0%, #D4AF37 100%);
    color: #0A0C0F;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--text-secondary);
}

.btn-secondary:hover {
    border-color: var(--border-accent);
    color: var(--text-gold);
    background: rgba(212, 175, 55, 0.05);
}

.btn-text {
    background: none;
    padding: 0;
    color: var(--accent-primary);
    font-weight: 500;
}

.btn-text:hover {
    color: var(--accent-hover);
}

/* ============================================
   Carousel Section
   ============================================ */
.carousel-section {
    padding: var(--space-2xl) 0;
    overflow: hidden;
    background: rgba(13, 15, 19, 0.6);
}

.carousel-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.carousel-row {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.carousel-track {
    display: flex;
    gap: var(--space-md);
    animation: scroll var(--duration, 240s) linear infinite;
    animation-direction: var(--direction, normal);
    width: max-content;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.carousel-item {
    flex-shrink: 0;
    padding: var(--space-sm) var(--space-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-full);
}

/* Carousel Keyword Items - Clickable buttons */
.carousel-keyword-item {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.carousel-keyword-item:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.carousel-keyword {
    font-size: 13px;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Clickable carousel links */
.carousel-link {
    text-decoration: none;
    transition: all 0.2s ease;
}

.carousel-link:hover {
    border-color: var(--accent-primary);
    background: rgba(212, 175, 55, 0.08);
}

.carousel-link:hover .carousel-keyword {
    color: var(--accent-primary);
}

/* Carousel Preview Items (title + excerpt + button) */
.carousel-preview {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 20px;
    min-width: 280px;
    max-width: 320px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
}

.carousel-preview:hover {
    border-color: var(--accent-primary);
    background: rgba(212, 175, 55, 0.05);
}

.carousel-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.carousel-excerpt {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.carousel-btn {
    align-self: flex-start;
    padding: 6px 14px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    color: var(--accent-primary);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 4px;
}

.carousel-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-primary);
}

/* SEO Keywords Section - Pure keyword chips */
.seo-keywords-section {
    background: var(--bg-primary);
}

.seo-keywords-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.seo-keyword {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    color: var(--accent-primary);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

/* ============================================
   Section Styles
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header h2 {
    margin-bottom: var(--space-sm);
    color: #F5F5F5;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Categories Section */
.categories-section {
    padding: var(--space-4xl) 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.category-card {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
}

.category-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-md);
    color: var(--accent-primary);
    flex-shrink: 0;
}

.category-card h3 {
    flex: 1;
    font-size: 1.125rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.category-arrow {
    color: var(--text-muted);
    font-size: 1.25rem;
    transition: transform 0.2s ease;
}

.category-card:hover .category-arrow {
    transform: translateX(4px);
    color: var(--accent-primary);
}

/* Recent Section */
.recent-section {
    padding: var(--space-4xl) 0;
    background: rgba(13, 15, 19, 0.4);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.articles-grid-large {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
}

/* ============================================
   Card Components - High Roller Gold Theme
   ============================================ */
.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

/* Subtle gold accent line on top */
.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.3) 50%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.article-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(212, 175, 55, 0.05);
}

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

.article-card-horizontal {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

/* Category Label */
.article-category {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-primary);
    margin-bottom: var(--space-sm);
}

/* Article Title */
.article-card h3,
.article-title {
    font-size: var(--text-lg);
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: var(--space-md);
    line-height: 1.4;
}

.article-card h3 a,
.article-title a {
    color: #F5F5F5;
    transition: color var(--transition-fast);
}

.article-card h3 a:hover,
.article-title a:hover {
    color: var(--accent-primary);
}

.article-meta {
    margin-top: auto;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.article-footer {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-subtle);
}

/* Tag Pills - Gold Themed */
.tag-pill {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--text-muted);
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.tag-pill:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.25);
    color: var(--accent-primary);
}

.tag-small {
    font-size: 11px;
    padding: 3px 8px;
}

.tag-active {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--accent-primary);
}

/* Trust Section */
.trust-section {
    padding: var(--space-4xl) 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.trust-card {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.trust-card h3 {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.trust-card ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.trust-card li {
    font-size: 14px;
    color: var(--text-secondary);
    padding-left: var(--space-lg);
    position: relative;
}

.trust-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent-trust);
    border-radius: 50%;
}

/* Tags Section */
.tags-section {
    padding: var(--space-4xl) 0;
    background: rgba(13, 15, 19, 0.4);
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

.tag-cloud-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-size: calc(14px * var(--size, 1));
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
}

.tag-cloud-item:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.tag-count {
    font-size: 11px;
    font-family: var(--font-mono);
    padding: 2px 6px;
    background: rgba(212, 175, 55, 0.12);
    border-radius: var(--radius-full);
}

/* About Section */
.about-section {
    padding: var(--space-4xl) 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.about-text {
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-text p {
    margin-bottom: var(--space-lg);
}

/* ============================================
   Category & Subcategory Pages
   ============================================ */

/* Breadcrumb */
.breadcrumb {
    padding: var(--space-lg) 0;
    font-size: 14px;
    color: var(--text-muted);
}

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

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

.breadcrumb .separator {
    margin: 0 var(--space-sm);
    opacity: 0.5;
}

.breadcrumb .current {
    color: var(--text-secondary);
}

/* ============================================
   Category Hero - High Roller Gold Theme
   Premium VIP lounge aesthetic
   ============================================ */
.category-hero {
    position: relative;
    padding: var(--space-5xl) 0 var(--space-4xl);
    background: #121212;
    text-align: center;
    overflow: hidden;
    min-height: 420px;
}

/* Vignette overlay disabled for debugging */

.category-hero .container {
    position: relative;
    z-index: 10;
}

/* Floating decorations positioning */
.category-hero .floating-deco,
.category-hero .floating-chip,
.category-hero .hero-roulette {
    z-index: 2;
}

/* Category Hero Decorations */
.category-hero__decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1; /* Keep below content (z-index: 10) */
    overflow: hidden;
}

.category-hero__decorations .deco {
    position: absolute;
    color: rgba(255, 255, 255, 0.05);
}

/* Casinos Online Decorations */
.category-hero--casinos-online .deco--roulette {
    width: 220px;
    top: 3%;
    left: 1%;
    opacity: 0.18;
}

.category-hero--casinos-online .deco--card-spade {
    width: 90px;
    top: 10%;
    right: 4%;
    opacity: 0.15;
    transform: rotate(12deg);
}

.category-hero--casinos-online .deco--card-heart {
    width: 75px;
    top: 35%;
    right: 12%;
    opacity: 0.12;
    transform: rotate(-10deg);
}

.category-hero--casinos-online .deco--dice {
    width: 110px;
    bottom: 10%;
    left: 4%;
    opacity: 0.15;
}

.category-hero--casinos-online .deco--chip {
    width: 120px;
    bottom: 12%;
    right: 2%;
    opacity: 0.15;
}

.category-hero--casinos-online .deco--chip-stack {
    width: 85px;
    top: 48%;
    left: 8%;
    opacity: 0.12;
}

.category-hero--casinos-online .deco--card-diamond {
    width: 60px;
    bottom: 5%;
    right: 22%;
    opacity: 0.10;
    transform: rotate(18deg);
}

.category-hero--casinos-online .deco--dice-small {
    width: 55px;
    top: 58%;
    right: 8%;
    opacity: 0.10;
    transform: rotate(-18deg);
}

/* Tragamonedas Decorations */
.category-hero--tragamonadas .deco--slot-machine {
    width: 160px;
    top: 3%;
    left: 1%;
    opacity: 0.18;
}

.category-hero--tragamonadas .deco--seven {
    width: 85px;
    top: 8%;
    right: 4%;
    opacity: 0.16;
}

.category-hero--tragamonadas .deco--cherry {
    width: 95px;
    top: 42%;
    right: 2%;
    opacity: 0.14;
}

.category-hero--tragamonadas .deco--bar {
    width: 100px;
    bottom: 22%;
    left: 4%;
    opacity: 0.12;
}

.category-hero--tragamonadas .deco--coin {
    width: 75px;
    bottom: 8%;
    right: 10%;
    opacity: 0.12;
}

.category-hero--tragamonadas .deco--star {
    width: 70px;
    top: 52%;
    left: 8%;
    opacity: 0.12;
}

.category-hero--tragamonadas .deco--coins-stack {
    width: 90px;
    bottom: 3%;
    right: 28%;
    opacity: 0.10;
}

.category-hero--tragamonadas .deco--bell {
    width: 65px;
    top: 28%;
    left: 12%;
    opacity: 0.10;
}

.category-hero--tragamonadas .deco--triple-seven {
    width: 100px;
    bottom: 12%;
    left: 15%;
    opacity: 0.10;
}

/* Bonos Promociones Decorations */
.category-hero--bonos-promociones .deco--gift {
    width: 110px;
    top: 3%;
    left: 2%;
    opacity: 0.18;
}

.category-hero--bonos-promociones .deco--percent-big {
    width: 100px;
    top: 8%;
    right: 3%;
    opacity: 0.16;
}

.category-hero--bonos-promociones .deco--starburst {
    width: 90px;
    bottom: 18%;
    left: 4%;
    opacity: 0.12;
}

.category-hero--bonos-promociones .deco--ribbon {
    width: 140px;
    top: 50%;
    right: 1%;
    opacity: 0.12;
}

.category-hero--bonos-promociones .deco--coins-plus {
    width: 95px;
    bottom: 8%;
    right: 8%;
    opacity: 0.12;
}

.category-hero--bonos-promociones .deco--sparkles {
    width: 70px;
    top: 32%;
    left: 10%;
    opacity: 0.12;
}

.category-hero--bonos-promociones .deco--ticket {
    width: 120px;
    bottom: 22%;
    left: 12%;
    opacity: 0.10;
    transform: rotate(-5deg);
}

.category-hero--bonos-promociones .deco--crown {
    width: 85px;
    top: 48%;
    right: 12%;
    opacity: 0.10;
}

/* Default Decorations */
.category-hero--default .deco--circle {
    width: 100px;
    top: 15%;
    left: 5%;
    opacity: 0.05;
}

.category-hero--default .deco--lines {
    width: 80px;
    bottom: 20%;
    right: 8%;
    opacity: 0.04;
}

/* Category Hero Content */
.category-hero__content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Category Hero Icon - Gold accent */
.category-hero__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-xl);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-gold);
}

.category-hero__icon svg {
    width: 42px;
    height: 42px;
    stroke: var(--accent-primary);
}

/* Category Hero Title - Elegant serif */
.category-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: var(--space-lg);
    color: #F5F5F5 !important;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Gold accent for specific words */
.category-hero__title .gold-accent {
    color: var(--accent-primary);
}

/* Category Hero Subtitle */
.category-hero__subtitle {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* Category Hero Trust Bullets - Gold themed */
.category-hero__bullets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.category-hero__bullet {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-normal);
}

.category-hero__bullet:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.35);
    color: var(--accent-primary);
}

.category-hero__bullet svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent-primary);
    flex-shrink: 0;
}

/* Category Hero Actions - Premium buttons */
.category-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

/* CTA Base */
.category-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
}

/* Primary CTA - Gold gradient */
.category-hero__cta--primary {
    background: var(--accent-primary);
    background-image: linear-gradient(135deg, #D4AF37 0%, #E5C158 50%, #D4AF37 100%);
    color: #121212;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.category-hero__cta--primary:hover {
    background-image: linear-gradient(135deg, #E5C158 0%, #F4E4A6 50%, #E5C158 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
    color: #121212;
}

.category-hero__cta--primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

/* Secondary CTA - Outlined */
.category-hero__cta--secondary {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-secondary);
}

.category-hero__cta--secondary:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.5);
    color: var(--accent-primary);
}

/* Category Hero Compliance Strip */
.category-hero__compliance {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-xl);
    margin-top: var(--space-lg);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-hero__compliance .divider {
    color: rgba(212, 175, 55, 0.3);
}

/* Category-specific accent colors */
.category-hero--casinos-online .category-hero__icon {
    background: rgba(30, 138, 110, 0.1);
    border-color: rgba(30, 138, 110, 0.2);
}

.category-hero--casinos-online .category-hero__icon svg {
    stroke: var(--accent-primary);
}

.category-hero--tragamonadas .category-hero__icon {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.15);
}

.category-hero--tragamonadas .category-hero__icon svg {
    stroke: var(--accent-secondary);
}

.category-hero--tragamonadas .category-hero__bullet {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.15);
    color: var(--accent-secondary);
}

.category-hero--tragamonadas .category-hero__bullet svg {
    stroke: var(--accent-secondary);
}

.category-hero--bonos-promociones .category-hero__icon {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.2);
}

.category-hero--bonos-promociones .category-hero__icon svg {
    stroke: #D4AF37;
}

.category-hero--bonos-promociones .category-hero__bullet {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.2);
    color: #D4AF37;
}

.category-hero--bonos-promociones .category-hero__bullet svg {
    stroke: #D4AF37;
}

/* Category Hero Responsive */
@media (max-width: 768px) {
    .category-hero {
        padding: var(--space-2xl) 0;
    }

    .category-hero__icon {
        width: 60px;
        height: 60px;
    }

    .category-hero__icon svg {
        width: 32px;
        height: 32px;
    }

    .category-hero__bullets {
        gap: 8px;
    }

    .category-hero__bullet {
        padding: 6px 12px;
        font-size: 12px;
    }

    .category-hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .category-hero__cta {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .category-hero__compliance {
        flex-wrap: wrap;
        gap: 6px;
    }

    /* Hide most decorations on mobile, keep main ones smaller */
    .category-hero__decorations .deco {
        opacity: 0.08;
    }

    /* Casinos - keep roulette and one card */
    .category-hero--casinos-online .deco--roulette {
        width: 120px;
        top: 2%;
        left: -1%;
        opacity: 0.12;
    }
    .category-hero--casinos-online .deco--card-spade {
        width: 55px;
        top: auto;
        bottom: 3%;
        right: 1%;
        opacity: 0.10;
    }
    .category-hero--casinos-online .deco--card-heart,
    .category-hero--casinos-online .deco--dice,
    .category-hero--casinos-online .deco--chip,
    .category-hero--casinos-online .deco--chip-stack,
    .category-hero--casinos-online .deco--card-diamond,
    .category-hero--casinos-online .deco--dice-small {
        display: none;
    }

    /* Tragamonedas - keep slot machine and seven */
    .category-hero--tragamonadas .deco--slot-machine {
        width: 100px;
        top: 2%;
        left: -1%;
        opacity: 0.12;
    }
    .category-hero--tragamonadas .deco--seven {
        width: 60px;
        top: auto;
        bottom: 3%;
        right: 1%;
        opacity: 0.10;
    }
    .category-hero--tragamonadas .deco--cherry,
    .category-hero--tragamonadas .deco--bar,
    .category-hero--tragamonadas .deco--coin,
    .category-hero--tragamonadas .deco--star,
    .category-hero--tragamonadas .deco--coins-stack,
    .category-hero--tragamonadas .deco--bell,
    .category-hero--tragamonadas .deco--triple-seven {
        display: none;
    }

    /* Bonos - keep gift and percent */
    .category-hero--bonos-promociones .deco--gift {
        width: 70px;
        top: 2%;
        left: -1%;
        opacity: 0.12;
    }
    .category-hero--bonos-promociones .deco--percent-big {
        width: 65px;
        top: auto;
        bottom: 3%;
        right: 1%;
        opacity: 0.10;
    }
    .category-hero--bonos-promociones .deco--starburst,
    .category-hero--bonos-promociones .deco--ribbon,
    .category-hero--bonos-promociones .deco--coins-plus,
    .category-hero--bonos-promociones .deco--sparkles,
    .category-hero--bonos-promociones .deco--ticket,
    .category-hero--bonos-promociones .deco--crown {
        display: none;
    }
}

/* Legacy category hero support */
.subcategory-hero {
    position: relative;
    padding: var(--space-3xl) 0;
    text-align: center;
    background: linear-gradient(180deg, #0A0C0F 0%, #12151A 100%);
    overflow: hidden;
    min-height: 200px; /* Prevent collapse */
}

.subcategory-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.subcategory-hero .hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.subcategory-hero .container {
    position: relative;
    z-index: 10; /* Ensure content is always above decorations */
}

/* Ensure floating decorations stay behind content in subcategory-hero */
.subcategory-hero .floating-chip,
.subcategory-hero .hero-roulette {
    z-index: 1;
    opacity: 0.12;
}

.subcategory-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--space-lg);
    color: #F5F5F5 !important;
}

.category-intro {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.7;
}

.subcategory-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    color: var(--text-muted);
    font-size: 14px;
}

.parent-category {
    color: var(--accent-secondary);
}

/* Subcategories Grid */
.subcategories-section {
    padding: var(--space-3xl) 0;
    background: #1a1a1a;
}

.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.subcategory-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
}

.subcategory-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.subcategory-content h3 {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: #F5F5F5;
}

.article-count {
    font-size: 13px;
    color: var(--text-muted);
}

.subcategory-arrow {
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.subcategory-card:hover .subcategory-arrow {
    color: var(--accent-primary);
    transform: translateX(4px);
}

/* Filters */
.filters-section {
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--border-default);
}

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

.results-count {
    font-size: 14px;
    color: var(--text-muted);
}

/* Articles Section */
.articles-section {
    padding: var(--space-3xl) 0;
    background: #1a1a1a;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-3xl);
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.pagination-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.pagination-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 14px;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.pagination-num:hover {
    background: rgba(212, 175, 55, 0.08);
    color: var(--accent-primary);
}

.pagination-num.active {
    background: var(--accent-primary);
    color: white;
}

.pagination-dots {
    color: var(--text-muted);
    padding: 0 var(--space-xs);
}

/* No Content */
.no-content {
    text-align: center;
    padding: var(--space-4xl);
    color: var(--text-muted);
}

.no-content svg {
    margin-bottom: var(--space-lg);
}

.no-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
}

.no-content p {
    margin-bottom: var(--space-xl);
}

/* Related Section */
.related-section {
    padding: var(--space-3xl) 0;
    background: rgba(13, 15, 19, 0.4);
}

.related-subcategories {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.related-subcategory-card {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.related-subcategory-card:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* Related Tags Section */
.related-tags-section {
    padding: var(--space-3xl) 0;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

/* Description Sections */
.category-description,
.subcategory-description,
.tag-description {
    padding: var(--space-4xl) 0;
    background: var(--bg-card);
}

.description-content {
    max-width: 800px;
    margin: 0 auto;
}

.description-content h2 {
    margin-bottom: var(--space-xl);
}

.description-text {
    color: var(--text-secondary);
    line-height: 1.8;
}

.description-text p {
    margin-bottom: var(--space-lg);
}

.description-text ul {
    margin: var(--space-lg) 0;
    padding-left: var(--space-xl);
}

.description-text li {
    margin-bottom: var(--space-sm);
    position: relative;
}

.description-text li::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 10px;
    width: 5px;
    height: 5px;
    background: var(--accent-primary);
    border-radius: 50%;
}

/* ============================================
   Article Page
   ============================================ */
.article-page {
    padding: var(--space-2xl) 0 var(--space-4xl);
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
}

@media (min-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr 320px;
    }
}

/* Article Header */
.article-header {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--border-default);
}

.article-category-badge a {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent-secondary);
    margin-bottom: var(--space-md);
}

.article-header h1 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: var(--space-lg);
    line-height: 1.3;
}

.article-tags-header {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

/* Featured Casinos */
.featured-casinos {
    margin-bottom: var(--space-3xl);
}

.featured-casinos h2 {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 1.5rem;
    margin-bottom: var(--space-xl);
}

.casinos-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.casino-card {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
}

@media (max-width: 768px) {
    .casino-card {
        grid-template-columns: auto 1fr;
        gap: var(--space-md);
    }

    .casino-rating,
    .btn-casino {
        grid-column: span 2;
    }
}

.casino-card:hover {
    border-color: var(--border-hover);
}

.casino-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 14px;
    background: rgba(212, 175, 55, 0.12);
    border-radius: var(--radius-sm);
    color: var(--accent-primary);
}

.casino-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.casino-name {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.casino-bonus {
    font-size: 14px;
    color: var(--accent-trust);
    font-weight: 500;
}

.casino-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.feature-tag {
    font-size: 11px;
    padding: 2px 8px;
    background: rgba(148, 163, 184, 0.08);
    border-radius: var(--radius-full);
    color: var(--text-muted);
}

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

.rating-score {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

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

.btn-casino {
    padding: var(--space-sm) var(--space-lg);
    white-space: nowrap;
}

.casinos-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    padding: var(--space-md);
    font-size: 12px;
    color: var(--text-muted);
    background: rgba(184, 146, 59, 0.08);
    border: 1px solid rgba(184, 146, 59, 0.15);
    border-radius: var(--radius-md);
}

/* Article Content */
.article-content {
    color: var(--text-secondary);
    line-height: 1.8;
}

.article-content h2 {
    font-size: 1.5rem;
    margin: var(--space-3xl) 0 var(--space-lg);
    color: var(--text-primary);
}

.article-content h3 {
    font-size: 1.25rem;
    margin: var(--space-2xl) 0 var(--space-md);
    color: var(--text-primary);
}

.article-content p {
    margin-bottom: var(--space-lg);
}

.article-content ul,
.article-content ol {
    margin: var(--space-lg) 0;
    padding-left: var(--space-xl);
}

.article-content li {
    margin-bottom: var(--space-sm);
    padding-left: var(--space-sm);
}

.article-content ul li::marker {
    color: var(--accent-primary);
}

.article-content ol li::marker {
    color: var(--accent-primary);
    font-weight: 600;
}

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

.article-content a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.article-content a:hover {
    color: var(--accent-hover);
}

/* Content Placeholder */
.content-placeholder {
    padding: var(--space-xl);
    background: rgba(212, 175, 55, 0.04);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
}

/* Pros and Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin: var(--space-3xl) 0;
}

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

.pros,
.cons {
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
}

.pros {
    background: rgba(30, 138, 110, 0.08);
    border: 1px solid rgba(30, 138, 110, 0.15);
}

.cons {
    background: rgba(139, 44, 44, 0.08);
    border: 1px solid rgba(139, 44, 44, 0.15);
}

.pros h3,
.cons h3 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1rem;
    font-family: var(--font-body);
    margin-bottom: var(--space-lg);
}

.pros ul,
.cons ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.pros li,
.cons li {
    font-size: 14px;
    color: var(--text-secondary);
    padding-left: var(--space-lg);
    position: relative;
}

.pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-trust);
    font-weight: 700;
}

.cons li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--accent-error);
    font-weight: 700;
}

/* Author Section */
.author-section {
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--border-default);
}

.author-card {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
}

.author-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 50%;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.author-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-title {
    font-size: 14px;
    color: var(--text-secondary);
}

.author-badges {
    display: none;
}

@media (min-width: 640px) {
    .author-badges {
        display: flex;
    }
}

/* Sidebar */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

@media (min-width: 1024px) {
    .article-sidebar {
        position: sticky;
        top: 96px;
        align-self: start;
    }
}

.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.sidebar-card h4 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border-default);
}

/* Table of Contents */
.toc-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.toc-list li a {
    display: block;
    padding: var(--space-sm) 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-left: 2px solid transparent;
    padding-left: var(--space-md);
    transition: all 0.2s ease;
}

.toc-list li a:hover {
    color: var(--accent-primary);
    border-color: var(--accent-primary);
}

/* Facts List */
.facts-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.facts-list li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

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

.fact-value {
    color: var(--text-primary);
    font-weight: 500;
}

/* Related List */
.related-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.related-list li a {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    transition: color 0.2s ease;
}

.related-list li a:hover {
    color: var(--accent-primary);
}

/* FAQ Section */
.faq-section {
    padding: var(--space-4xl) 0;
    background: rgba(13, 15, 19, 0.4);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.faq-item h3 {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.faq-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   Tag Page
   ============================================ */
.tag-hero {
    position: relative;
    padding: var(--space-3xl) 0;
    text-align: center;
    background: linear-gradient(180deg, #0A0C0F 0%, #12151A 100%);
    overflow: hidden;
    min-height: 200px; /* Prevent collapse */
}

.tag-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.tag-hero .hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tag-hero .container {
    position: relative;
    z-index: 10; /* Ensure content is always above decorations */
}

/* Ensure floating decorations stay behind content in tag-hero */
.tag-hero .floating-chip,
.tag-hero .hero-roulette {
    z-index: 1;
    opacity: 0.12;
}

.tag-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
}

.tag-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--space-sm);
    color: #F5F5F5 !important;
}

.tag-count {
    color: var(--text-muted);
    font-size: 14px;
}

/* ============================================
   404 Page
   ============================================ */
.error-page {
    position: relative;
    padding: var(--space-4xl) 0;
    text-align: center;
    background: linear-gradient(180deg, #0A0C0F 0%, #12151A 100%);
    overflow: hidden;
    min-height: 70vh;
}

.error-page .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.error-page .hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.error-page .container {
    position: relative;
    z-index: 2;
}

.error-content {
    margin-bottom: var(--space-4xl);
}

.error-icon {
    margin-bottom: var(--space-xl);
}

.error-content h1 {
    font-size: 6rem;
    font-family: var(--font-mono);
    color: var(--accent-primary);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.error-content h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.error-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.error-suggestions {
    max-width: 600px;
    margin: 0 auto;
}

.error-suggestions h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
    color: var(--text-secondary);
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.suggestion-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.suggestion-card:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

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

.suggestions-tags h4 {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

/* ============================================
   Responsible Gaming Section
   ============================================ */
.responsible-gaming {
    padding: var(--space-4xl) 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-default);
}

.responsible-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.responsible-header h2 {
    font-size: 1.5rem;
}

.responsible-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.responsible-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
}

.responsible-card h3 {
    font-size: 1rem;
    font-family: var(--font-body);
    margin-bottom: var(--space-sm);
}

.responsible-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.responsible-card a {
    color: var(--accent-trust);
}

.responsible-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    font-size: 14px;
    color: var(--accent-warning);
    background: rgba(184, 146, 59, 0.08);
    border: 1px solid rgba(184, 146, 59, 0.15);
    border-radius: var(--radius-md);
    text-align: center;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-main);
    border-top: 1px solid var(--border-default);
    padding: var(--space-4xl) 0 var(--space-2xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

/* Mobile footer centering */
@media (max-width: 639px) {
    .footer-grid {
        text-align: center;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-desc {
        max-width: 320px;
    }

    .footer-badges {
        justify-content: center;
    }

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

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

    .security-badge {
        justify-content: center;
    }
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.footer-section h4 {
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.footer-logo {
    display: inline-block;
    margin-bottom: var(--space-lg);
}

.footer-logo img {
    height: 36px;
    width: auto;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.footer-badges {
    display: flex;
    gap: var(--space-sm);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

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

.security-badges {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.security-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 13px;
    color: var(--text-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--border-default);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.disclaimer {
    font-size: 12px;
    color: var(--text-disabled);
}

/* ============================================
   Responsive Adjustments
   ============================================ */

/* Tablet breakpoint */
@media (max-width: 1024px) {
    .methodology-card {
        margin-top: 0;
    }
}

/* Mobile breakpoint */
@media (max-width: 768px) {
    .trust-badge {
        font-size: 12px;
    }

    .filter-chip {
        padding: 6px 12px;
        font-size: 11px;
    }

    .category-tile {
        padding: 12px 14px;
        font-size: 13px;
        justify-content: center;
    }

    .category-tile svg {
        width: 20px;
        height: 20px;
    }

    /* CTA buttons - centered */
    .hero-cta {
        flex-direction: column;
        gap: var(--space-sm);
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 20px;
    }

    /* Methodology card */
    .methodology-card {
        padding: var(--space-lg);
    }

    .methodology-header {
        margin-bottom: var(--space-lg);
        padding-bottom: var(--space-md);
    }

    .methodology-icon {
        width: 40px;
        height: 40px;
    }

    .methodology-icon svg {
        width: 20px;
        height: 20px;
    }

    .methodology-label {
        font-size: 13px;
    }

    .methodology-sublabel {
        font-size: 11px;
    }

    .methodology-items {
        gap: var(--space-md);
    }

    .methodology-item-header {
        gap: 6px;
    }

    .methodology-item-header svg {
        width: 16px;
        height: 16px;
    }

    .methodology-item-header .item-label {
        font-size: 12px;
    }

    .methodology-item-header .item-value {
        font-size: 11px;
    }

    .methodology-bar {
        height: 5px;
    }

    .methodology-footer {
        margin-top: var(--space-lg);
        padding-top: var(--space-md);
    }

    .methodology-link {
        font-size: 12px;
    }

    /* Hide complex background decorations on mobile */
    .hero-decoration {
        opacity: 0.4;
    }

    /* Compliance strip - centered */
    .hero-compliance {
        font-size: 10px;
        padding: 6px 12px;
        gap: 6px;
        margin-bottom: var(--space-lg);
        justify-content: center;
    }

    /* Hero card centered on mobile */
    .hero-card {
        display: flex;
        justify-content: center;
    }

    .methodology-card {
        max-width: 360px;
    }
}

/* Small mobile breakpoint */
@media (max-width: 480px) {
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1.125rem; }

    .container {
        padding: 0 var(--space-md);
    }

    .category-tile {
        padding: 10px 12px;
        font-size: 12px;
        gap: 6px;
        justify-content: center;
    }

    .category-tile svg {
        width: 18px;
        height: 18px;
    }

    .filter-chip {
        padding: 6px 10px;
        font-size: 11px;
    }

    .filter-chip svg {
        width: 12px;
        height: 12px;
    }

    /* Methodology card compact */
    .methodology-card {
        padding: var(--space-md);
    }

    .methodology-header {
        gap: var(--space-sm);
    }

    .methodology-icon {
        width: 36px;
        height: 36px;
    }

    .methodology-icon svg {
        width: 18px;
        height: 18px;
    }

    .methodology-item-header .item-label {
        font-size: 11px;
    }

    .methodology-bar {
        height: 4px;
    }
}

/* General responsive fixes */
@media (max-width: 640px) {
    .categories-grid,
    .articles-grid,
    .trust-grid,
    .faq-grid,
    .suggestions-grid {
        grid-template-columns: 1fr;
    }

    .articles-grid-large {
        grid-template-columns: 1fr;
    }

    .error-content h1 {
        font-size: 4rem;
    }

    .btn {
        width: 100%;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .responsible-gaming,
    .search-overlay {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .article-content {
        color: black;
    }
}

/* ============================================
   Casino Ranking - Podium Style Design
   Modern asymmetric layout with visual hierarchy
   ============================================ */

.casino-ranking {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-main) 100%);
    position: relative;
    overflow: hidden;
}

.casino-ranking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Ranking Header */
.ranking-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    position: relative;
    z-index: 1;
}

.ranking-badge-wrap {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.ranking-year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    border-radius: 50%;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 14px;
    color: white;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.ranking-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    padding: var(--space-sm) var(--space-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-full);
}

.ranking-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.ranking-header > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.trust-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(30, 138, 110, 0.08);
    border: 1px solid rgba(30, 138, 110, 0.2);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-trust);
}

.trust-pill svg {
    flex-shrink: 0;
}

/* ============================================
   Podium Section - Top 3 Layout
   ============================================ */

.podium-section {
    margin-bottom: var(--space-3xl);
    position: relative;
    z-index: 1;
}

.podium-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: var(--space-xl);
    align-items: end;
}

/* Podium Cards Base */
.podium-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    position: relative;
}

.podium-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* First Place - Center (Elevated) */
.podium-first {
    padding: var(--space-2xl);
    background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
    border-color: rgba(255, 193, 7, 0.3);
    box-shadow: 0 8px 32px rgba(255, 193, 7, 0.15);
}

.podium-first::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFC107, #FFD54F, #FFC107);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.crown-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 8px 16px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(255, 193, 7, 0.4);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #FFC107;
    white-space: nowrap;
}

/* Second & Third Place */
.podium-second,
.podium-third {
    padding-top: var(--space-3xl);
}

.podium-second {
    border-color: rgba(148, 163, 184, 0.2);
}

.podium-third {
    border-color: rgba(205, 127, 50, 0.2);
}

/* Position Badge */
.podium-position {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: var(--space-lg);
}

.position-num {
    font-family: var(--font-mono);
    font-weight: 800;
    font-size: 2rem;
    line-height: 1;
    background: linear-gradient(180deg, var(--text-primary) 0%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.podium-position-gold .position-num {
    font-size: 2.5rem;
    background: linear-gradient(180deg, #FFD54F 0%, #FFC107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.medal-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Podium Logo */
.podium-logo {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-secondary);
    border: 1px solid var(--border-default);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.podium-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.podium-logo-large {
    width: 88px;
    height: 88px;
}

.logo-initials {
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-initials-large {
    font-size: 1.75rem;
}

/* Podium Name */
.podium-name {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.podium-name-large {
    font-size: 1.375rem;
    margin-bottom: var(--space-md);
}

/* Podium Rating */
.podium-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: var(--space-lg);
}

.podium-rating .rating-number {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.podium-rating-large .rating-number {
    font-size: 2rem;
}

.rating-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-left: 4px;
}

.rating-bar {
    width: 100%;
    max-width: 100px;
    height: 4px;
    background: rgba(148, 163, 184, 0.15);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-trust));
    border-radius: var(--radius-full);
}

.stars-display {
    display: flex;
    gap: 2px;
    margin-top: 4px;
}

/* Podium Bonus */
.podium-bonus {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: var(--space-lg);
}

.podium-bonus-featured {
    padding: var(--space-lg);
    background: rgba(30, 138, 110, 0.08);
    border: 1px solid rgba(30, 138, 110, 0.15);
    border-radius: var(--radius-md);
    width: 100%;
}

.podium-bonus .bonus-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent-trust);
}

.podium-bonus .bonus-main {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.podium-bonus-featured .bonus-main {
    font-size: 1.125rem;
}

.podium-bonus .bonus-extra {
    font-size: 13px;
    color: var(--accent-secondary);
    font-weight: 500;
}

/* Podium Features */
.podium-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-bottom: var(--space-lg);
}

.feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    background: rgba(148, 163, 184, 0.08);
    border-radius: var(--radius-full);
}

/* Podium Button */
.podium-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: transparent;
    border: 1px solid var(--border-default);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.2s ease;
    width: 100%;
}

.podium-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: rgba(212, 175, 55, 0.06);
}

.podium-btn-primary {
    background: linear-gradient(135deg, var(--accent-trust) 0%, #15725c 100%);
    border: none;
    color: white;
    padding: var(--space-lg) var(--space-xl);
    box-shadow: 0 4px 16px rgba(30, 138, 110, 0.3);
}

.podium-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 138, 110, 0.4);
    color: white;
    background: linear-gradient(135deg, #1E8A6E 0%, #15725c 100%);
}

.license-note {
    display: block;
    margin-top: var(--space-md);
    font-size: 11px;
    color: var(--text-disabled);
}

/* ============================================
   Casino Grid Section (#4-#10)
   ============================================ */

.casino-grid-section {
    position: relative;
    z-index: 1;
}

.grid-header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.grid-header h3 {
    font-size: 1.125rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
}

.grid-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border-default), transparent);
}

.casino-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
}

/* Mini Casino Card */
.casino-mini-card {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
}

.casino-mini-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mini-rank {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-muted);
    width: 32px;
    text-align: center;
}

.mini-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.mini-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.mini-logo {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mini-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mini-logo span {
    font-weight: 700;
    color: white;
    font-size: 1rem;
}

.mini-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mini-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.mini-license {
    font-size: 11px;
    color: var(--text-muted);
}

.mini-stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.mini-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 13px;
    color: var(--text-primary);
}

.mini-bonus {
    font-size: 12px;
    color: var(--accent-trust);
    font-weight: 500;
}

.mini-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-md);
    color: var(--accent-primary);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.mini-btn:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}

/* ============================================
   Ranking Footer
   ============================================ */

.ranking-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-lg);
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-default);
}

.disclaimer-box {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex: 1;
    min-width: 280px;
}

.disclaimer-box svg {
    color: var(--text-muted);
    flex-shrink: 0;
}

.disclaimer-box p {
    font-size: 12px;
    color: var(--text-muted);
}

.method-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-primary);
    transition: color 0.2s ease;
}

.method-link:hover {
    color: var(--accent-hover);
}

/* ============================================
   Responsive - Podium Layout
   ============================================ */

@media (max-width: 1024px) {
    .podium-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }

    .podium-first {
        grid-column: 1 / -1;
        order: -1;
    }

    .podium-second,
    .podium-third {
        padding-top: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .casino-ranking {
        padding: var(--space-3xl) 0;
    }

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

    .podium-card {
        padding: var(--space-xl);
    }

    .podium-first {
        padding: var(--space-xl);
    }

    .crown-badge {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin-bottom: var(--space-sm);
        order: -1;
    }

    .podium-first .podium-position {
        order: 0;
    }

    .trust-pills {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .casino-cards-grid {
        grid-template-columns: 1fr;
    }

    .casino-mini-card {
        flex-wrap: wrap;
    }

    .mini-rank {
        order: 1;
    }

    .mini-content {
        order: 2;
        flex: 1;
    }

    .mini-btn {
        order: 3;
    }
}

@media (max-width: 480px) {
    .ranking-header h2 {
        font-size: 1.75rem;
    }

    .podium-logo {
        width: 56px;
        height: 56px;
    }

    .podium-logo-large {
        width: 72px;
        height: 72px;
    }

    .podium-name-large {
        font-size: 1.25rem;
    }

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

/* ============================================
   General Form Elements - High Roller Gold
   ============================================ */

/* Base Input Styles */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="number"],
textarea,
select {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text-primary);
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    outline: none;
    transition: all var(--transition-normal);
    width: 100%;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

input:focus,
textarea:focus,
select:focus {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
}

input:hover:not(:focus),
textarea:hover:not(:focus),
select:hover:not(:focus) {
    border-color: rgba(212, 175, 55, 0.25);
}

/* Select Dropdown */
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-md) center;
    padding-right: var(--space-2xl);
    cursor: pointer;
}

/* Checkbox and Radio */
input[type="checkbox"],
input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-primary);
    cursor: pointer;
}

/* Button Base */
button,
.btn {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 600;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    text-decoration: none;
}

/* Primary Button - Gold */
.btn-primary {
    background: var(--accent-primary);
    background-image: linear-gradient(135deg, #D4AF37 0%, #E5C158 100%);
    color: #121212;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    background-image: linear-gradient(135deg, #E5C158 0%, #F4E4A6 100%);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
    transform: translateY(-1px);
}

/* Secondary Button - Outlined */
.btn-secondary {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-secondary);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.5);
    color: var(--accent-primary);
}

/* Text Button */
.btn-text {
    background: none;
    color: var(--accent-primary);
    padding: var(--space-sm) var(--space-md);
}

.btn-text:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* Disabled State */
button:disabled,
.btn:disabled,
input:disabled,
textarea:disabled,
select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Form Group */
.form-group {
    margin-bottom: var(--space-xl);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.form-hint {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

.form-error {
    font-size: var(--text-xs);
    color: var(--accent-error);
    margin-top: var(--space-xs);
}

/* Accessibility: Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .carousel-track {
        animation: none !important;
    }

    .hero-float,
    .floating-chip,
    .orbit-ring,
    .category-visual svg,
    .podium-card {
        animation: none !important;
        transform: none !important;
    }
}
