/* ==========================================
   Poker en Línea Dinero Real - Premium Styles
   ========================================== */

/* CSS Variables */
:root {
    /* Backgrounds */
    --bg-main: #0B0D10;
    --bg-secondary: #0F1F1A;
    --bg-tertiary: #12161C;

    /* Cards & Containers */
    --card-bg: #161A20;
    --card-elevated: #1B2028;
    --card-border: rgba(201, 164, 77, 0.08);

    /* Accents */
    --gold: #C9A44D;
    --gold-hover: #D6B15F;
    --gold-active: #B8943F;
    --burgundy: #7A1F2B;
    --bronze: #B08D57;

    /* Typography */
    --text-primary: #F4F6F8;
    --text-secondary: #C7CBD1;
    --text-muted: #9CA3AF;
    --text-disabled: #6B7280;

    /* UI States */
    --success: #2E7D65;
    --warning: #9A7B3F;
    --error: #8B2C2C;
    --info: #3A5A6B;

    /* Fonts */
    --font-heading: 'Libre Baskerville', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 4rem;
    --card-radius: 12px;
}

/* 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;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-main);
    min-height: 100vh;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

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

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
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: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-main);
    box-shadow: 0 0 20px rgba(201, 164, 77, 0.15);
}

.btn-primary:hover {
    background: var(--gold-hover);
    color: var(--bg-main);
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(201, 164, 77, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-secondary:hover {
    background: rgba(201, 164, 77, 0.1);
    color: var(--gold-hover);
}

.btn-outline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 13, 16, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    position: relative;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 38px;
    width: auto;
    display: block;
}

.main-nav {
    display: block;
}

.main-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

.main-nav .nav-list > li > a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.main-nav .nav-list > li > a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--card-elevated);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    list-style: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 0.625rem 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    border-radius: 6px;
}

.dropdown li a:hover {
    background: rgba(201, 164, 77, 0.1);
    color: var(--gold);
}

.dropdown .see-all {
    color: var(--gold);
    border-top: 1px solid var(--card-border);
    margin-top: 0.5rem;
    padding-top: 0.75rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    position: relative;
    transition: background 0.2s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    left: 0;
    transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
}

.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }

/* Hamburger to X transformation */
.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* ==========================================
   PREMIUM HERO SECTION - Editorial Design
   ========================================== */

.hero {
    position: relative;
    padding: 4rem 0 0;
    overflow: hidden;
    min-height: 600px;
}

/* Background Layers */
.hero-bg-layers {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-base {
    position: absolute;
    inset: 0;
    background: #0B0D10;
}

.hero-bg-felt {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20v20H0V0zm10 17a7 7 0 1 0 0-14 7 7 0 0 0 0 14zm20 0a7 7 0 1 0 0-14 7 7 0 0 0 0 14zM10 37a7 7 0 1 0 0-14 7 7 0 0 0 0 14zm10-17h20v20H20V20zm10 17a7 7 0 1 0 0-14 7 7 0 0 0 0 14z' fill='%230F1F1A' fill-opacity='1'/%3E%3C/svg%3E");
}

.hero-bg-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 25% 50%, rgba(201, 164, 77, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 75% 40%, rgba(15, 31, 26, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero-bg-noise {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-bg-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 100% 80% at 50% 50%, transparent 40%, rgba(11, 13, 16, 0.8) 100%);
    pointer-events: none;
}

/* Decorative Elements */
.hero-deco {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
    opacity: 0.25;
    filter: blur(1px);
}

.deco-cards {
    width: 100px;
    height: auto;
    position: absolute;
    right: 60px;
    top: -40px;
}

.deco-chips {
    width: 70px;
    height: auto;
    position: absolute;
    right: 0;
    top: 60px;
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Grid - 2 Column Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: center;
    min-height: 480px;
}

/* LEFT: Content Column */
.hero-content {
    text-align: left;
}

/* Trust Micro-badges */
.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: rgba(22, 26, 32, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.trust-chip svg {
    color: var(--gold);
    opacity: 0.7;
}

.trust-chip:hover {
    border-color: rgba(201, 164, 77, 0.2);
    color: var(--text-secondary);
}

.trust-chip-gold {
    background: transparent;
    border-color: rgba(201, 164, 77, 0.4);
    color: var(--gold);
}

.trust-chip-gold svg {
    opacity: 1;
}

/* Main Headline */
.hero-headline {
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.headline-main {
    display: block;
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    font-weight: 700;
    color: #F8FAFC;
    letter-spacing: -0.02em;
}

.headline-accent {
    display: block;
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: -0.01em;
    margin-top: 0.125rem;
}

/* Subheadline */
.hero-subheadline {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 520px;
}

/* CTA Cluster */
.hero-cta-cluster {
    margin-bottom: 2rem;
}

.hero-ctas {
    display: flex;
    gap: 0.875rem;
    flex-wrap: wrap;
    margin-bottom: 0.875rem;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, var(--gold) 0%, #B8943F 100%);
    color: #0B0D10;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    box-shadow:
        0 4px 14px rgba(201, 164, 77, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.2s ease;
}

.btn-cta-primary:hover {
    background: linear-gradient(135deg, #D9B860 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(201, 164, 77, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border: 1.5px solid rgba(201, 164, 77, 0.5);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-cta-secondary:hover {
    border-color: var(--gold);
    background: rgba(201, 164, 77, 0.08);
    transform: translateY(-2px);
}

.hero-trust-line {
    font-size: 0.8125rem;
    color: var(--text-muted);
    opacity: 0.75;
}

/* Quick Links Pills */
.hero-quicklinks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 164, 77, 0.08);
}

.quicklink-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: rgba(22, 26, 32, 0.5);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.quicklink-pill svg {
    color: var(--gold);
    opacity: 0.6;
}

.quicklink-pill:hover {
    color: var(--gold);
    border-color: rgba(201, 164, 77, 0.3);
    background: rgba(201, 164, 77, 0.05);
    transform: translateY(-1px);
}

.quicklink-pill:hover svg {
    opacity: 1;
}

/* RIGHT: Featured Room Card */
.hero-featured {
    position: relative;
}

.featured-card {
    background: #161A20;
    border: 1px solid rgba(201, 164, 77, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.featured-card:hover {
    border-color: rgba(201, 164, 77, 0.35);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(201, 164, 77, 0.1);
}

.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: rgba(11, 13, 16, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.featured-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.625rem;
    background: rgba(201, 164, 77, 0.12);
    border: 1px solid rgba(201, 164, 77, 0.3);
    border-radius: 100px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--gold);
}

.featured-badge svg {
    width: 10px;
    height: 10px;
}

.featured-body {
    padding: 1.5rem 1.25rem;
}

.featured-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F8FAFC;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.featured-rating {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}

.rating-stars {
    display: flex;
    gap: 0.125rem;
}

.rating-stars svg {
    color: var(--gold);
}

.rating-score {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
}

.featured-bonus {
    background: rgba(15, 31, 26, 0.5);
    border: 1px solid rgba(201, 164, 77, 0.1);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    margin-bottom: 1.25rem;
}

.bonus-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.bonus-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gold);
}

.featured-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-pill {
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.featured-footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
    background: rgba(11, 13, 16, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.btn-featured-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, #B8943F 100%);
    color: #0B0D10;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-featured-primary:hover {
    background: linear-gradient(135deg, #D9B860 0%, var(--gold) 100%);
    transform: translateY(-2px);
}

.featured-link {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
    text-decoration: none;
    transition: color 0.2s ease;
}

.featured-link:hover {
    color: var(--gold);
}

/* Stats Strip */
.hero-stats-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    margin-top: 2rem;
    background: rgba(22, 26, 32, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
}

.stat-mini {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.stat-value {
    font-family: var(--font-mono);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-text {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 24px;
    background: rgba(201, 164, 77, 0.2);
}

/* Gold Divider Line */
.hero-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 164, 77, 0.3) 50%, transparent 100%);
}

/* ==========================================
   BEST POKER ROOMS SECTION - Editorial Design
   ========================================== */

.section-poker-rooms {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-tertiary) 50%, var(--bg-main) 100%);
    position: relative;
}

.section-poker-rooms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 164, 77, 0.2), transparent);
}

/* Section Header */
.rooms-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    gap: 2rem;
}

.rooms-header-content {
    max-width: 600px;
}

.rooms-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 0.75rem;
    padding: 0.375rem 0.875rem;
    background: rgba(201, 164, 77, 0.1);
    border: 1px solid rgba(201, 164, 77, 0.2);
    border-radius: 100px;
}

.rooms-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.rooms-subtitle {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.rooms-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gold);
    text-decoration: none;
    white-space: nowrap;
    padding: 0.75rem 1.25rem;
    border: 1px solid rgba(201, 164, 77, 0.3);
    border-radius: 8px;
    transition: all 0.25s ease;
}

.rooms-view-all:hover {
    background: rgba(201, 164, 77, 0.1);
    border-color: var(--gold);
    color: var(--gold-hover);
}

.rooms-view-all svg {
    transition: transform 0.25s ease;
}

.rooms-view-all:hover svg {
    transform: translateX(3px);
}

/* Asymmetric Layout */
.rooms-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

/* Featured Room Card */
.room-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    position: relative;
    overflow: visible;
    transition: all 0.3s ease;
}

.room-card:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 164, 77, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

/* Add top margin for cards with badges */
.room-card:has(.room-badge) {
    margin-top: 0.875rem;
}

.room-card-featured {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.room-card-featured .room-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Gold accent line for featured */
.room-accent {
    height: 3px;
    background: linear-gradient(90deg, var(--gold), rgba(201, 164, 77, 0.3));
}

/* Badges - positioned on top edge */
.room-badge {
    position: absolute;
    top: 0;
    left: 1.5rem;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 6px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.room-badge-editor {
    background: linear-gradient(135deg, var(--gold), #B8943F);
    color: var(--bg-main);
}

.room-badge-editor svg {
    width: 12px;
    height: 12px;
    stroke: var(--bg-main);
}

.room-badge-popular {
    background: rgba(46, 125, 101, 0.15);
    color: #4ADE80;
    border: 1px solid rgba(46, 125, 101, 0.3);
}

.room-badge-bonus {
    background: rgba(201, 164, 77, 0.15);
    color: var(--gold);
    border: 1px solid rgba(201, 164, 77, 0.3);
}

/* Room Header */
.room-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.room-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.room-card-compact .room-name {
    font-size: 1.125rem;
}

/* Rating */
.room-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-stars {
    display: flex;
    gap: 2px;
    color: var(--gold);
}

.rating-value {
    font-family: var(--font-mono);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.room-card-compact .rating-value {
    font-size: 0.8125rem;
}

/* Bonus */
.room-bonus {
    background: rgba(201, 164, 77, 0.08);
    border: 1px solid rgba(201, 164, 77, 0.15);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}

.bonus-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.bonus-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
}

.room-bonus-compact {
    margin-bottom: 0.875rem;
}

.room-bonus-compact .bonus-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
}

/* Description */
.room-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex: 1;
}

/* Features */
.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-bottom: 1.75rem;
}

.room-feature {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.room-feature svg {
    color: var(--gold);
    opacity: 0.8;
}

.room-features-compact {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.room-features-compact span {
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 0.25rem 0.625rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
}

/* Actions */
.room-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: auto;
}

.btn-room-primary {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, var(--gold) 0%, #B8943F 100%);
    color: var(--bg-main);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(201, 164, 77, 0.2);
}

.btn-room-primary:hover {
    background: linear-gradient(135deg, var(--gold-hover) 0%, var(--gold) 100%);
    color: var(--bg-main);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(201, 164, 77, 0.3);
}

.room-review-link {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: none;
    position: relative;
    transition: color 0.25s ease;
}

.room-review-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.25s ease;
}

.room-review-link:hover {
    color: var(--gold);
}

.room-review-link:hover::after {
    width: 100%;
}

/* Compact Cards */
.rooms-secondary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.room-card-compact {
    padding: 0;
}

.room-card-compact .room-content {
    padding: 1.25rem;
}

.room-card-compact .room-header {
    margin-bottom: 0.75rem;
}

.btn-room-compact {
    display: block;
    width: 100%;
    padding: 0.625rem 1rem;
    background: transparent;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    border: 1px solid rgba(201, 164, 77, 0.4);
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-room-compact:hover {
    background: rgba(201, 164, 77, 0.1);
    border-color: var(--gold);
    color: var(--gold-hover);
}

/* Trust Indicators */
.rooms-trust {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.trust-indicator svg {
    color: var(--gold);
    opacity: 0.7;
}

/* Sections */
.section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    margin-bottom: 0.75rem;
}

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

.section-title-small {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

/* Category Cards */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    text-align: center;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 164, 77, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.category-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--gold);
}

.category-icon svg {
    width: 100%;
    height: 100%;
}

.category-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.category-count {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Carousel */
.section-carousel {
    background: var(--bg-secondary);
    padding: 3rem 0;
    overflow: hidden;
}

.carousel-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-row {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.carousel-track {
    display: flex;
    gap: 1rem;
    animation: scroll var(--duration, 240s) linear infinite;
}

.carousel-row:nth-child(2) .carousel-track {
    animation-direction: reverse;
}

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

.carousel-item {
    flex-shrink: 0;
    padding: 0.75rem 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    white-space: nowrap;
}

.carousel-keyword {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Featured Section */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.featured-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    padding: 2rem;
    transition: all 0.3s ease;
}

.featured-card:hover {
    border-color: rgba(201, 164, 77, 0.3);
}

.featured-large {
    grid-column: span 1;
    background: linear-gradient(135deg, var(--card-elevated), var(--card-bg));
}

.featured-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(201, 164, 77, 0.15);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.featured-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.featured-content p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

/* Tags Cloud */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.tag-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.tag-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.tag-count {
    font-size: 0.75em;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.125rem 0.375rem;
    border-radius: 10px;
}

/* About Section */
.section-about {
    background: var(--bg-tertiary);
}

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

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.about-content p {
    color: var(--text-secondary);
}

/* Newsletter */
.section-newsletter {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--burgundy) 100%);
    padding: 4rem 0;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    margin-bottom: 0.75rem;
}

.newsletter-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

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

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
}

/* Footer */
.site-footer {
    background: var(--bg-main);
    border-top: 1px solid var(--card-border);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    padding-right: 2rem;
}

.footer-logo img {
    height: 32px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-links h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-links li {
    margin-bottom: 0.625rem;
}

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
}

.footer-legal p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.75rem;
    color: var(--text-disabled);
    max-width: 600px;
}

.footer-badges {
    display: flex;
    gap: 0.75rem;
}

.badge {
    padding: 0.5rem 1rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

.badge-18 {
    color: var(--error);
    border-color: var(--error);
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--card-elevated);
    border: 1px solid var(--card-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 100;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Breadcrumbs */
.breadcrumbs {
    background: var(--bg-tertiary);
    padding: 1rem 0;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    font-size: 0.875rem;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin: 0 0.75rem;
    color: var(--text-disabled);
}

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

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

.breadcrumb-list li:last-child {
    color: var(--text-secondary);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-title {
    margin-bottom: 0.75rem;
}

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

/* Subcategories Grid */
.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

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

.subcategory-card:hover {
    border-color: rgba(201, 164, 77, 0.3);
    transform: translateX(4px);
}

.subcategory-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.subcategory-count {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.subcategory-arrow {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.subcategory-card:hover .subcategory-arrow {
    color: var(--gold);
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
}

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

.article-card:hover {
    border-color: rgba(201, 164, 77, 0.3);
}

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

.article-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.article-title a {
    color: var(--text-primary);
}

.article-title a:hover {
    color: var(--gold);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag, .tag-small {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    background: rgba(201, 164, 77, 0.1);
    color: var(--gold);
    font-size: 0.75rem;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.tag:hover, .tag-small:hover {
    background: rgba(201, 164, 77, 0.2);
}

.tag-small.active {
    background: var(--gold);
    color: var(--bg-main);
}

.article-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 1rem;
    color: var(--text-muted);
    background: var(--bg-tertiary);
    border-radius: 50%;
    transition: all 0.2s ease;
}

.article-link:hover {
    color: var(--gold);
    background: rgba(201, 164, 77, 0.1);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-numbers {
    display: flex;
    gap: 0.25rem;
}

.pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.pagination-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.pagination-link.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-main);
}

.pagination-ellipsis {
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    color: var(--text-muted);
}

/* Content Box */
.content-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    padding: 2.5rem;
}

.content-box h2 {
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.content-box h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-box p {
    color: var(--text-secondary);
}

.content-box ul, .content-box ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.content-box li {
    margin-bottom: 0.5rem;
}

/* Tags List */
.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.section-related-tags {
    padding: 2rem 0;
}

/* Related Links */
.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.related-link {
    padding: 0.75rem 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.related-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Tag Page */
.tag-header {
    padding-top: 4rem;
}

.tag-badge-large {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(201, 164, 77, 0.15);
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.tags-cloud-large {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.tag-link-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.tag-link-large:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* Article Page */
.article-page {
    padding: 2rem 0 4rem;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

.article-header {
    margin-bottom: 2rem;
}

.article-header .article-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.article-meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Casino Cards */
.casino-cards-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
}

.casino-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.casino-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.casino-card:hover {
    border-color: rgba(201, 164, 77, 0.3);
}

.casino-rank {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--bg-main);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 50%;
    flex-shrink: 0;
}

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

.casino-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.casino-rating .stars {
    color: var(--gold);
    font-size: 0.75rem;
}

.rating-value {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.casino-bonus {
    font-size: 0.8125rem;
    color: var(--success);
}

/* Article Content */
.article-content {
    line-height: 1.8;
}

.article-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--card-border);
}

.article-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.article-content p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

.article-content ul, .article-content ol {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.article-content li {
    margin-bottom: 0.75rem;
}

.article-content a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.content-placeholder {
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
}

/* Pros/Cons */
.pros-cons-section {
    margin: 3rem 0;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.pros-box, .cons-box {
    padding: 1.5rem;
    border-radius: var(--card-radius);
}

.pros-box {
    background: rgba(46, 125, 101, 0.1);
    border: 1px solid rgba(46, 125, 101, 0.3);
}

.cons-box {
    background: rgba(139, 44, 44, 0.1);
    border: 1px solid rgba(139, 44, 44, 0.3);
}

.pros-box h3 {
    color: var(--success);
    margin-bottom: 1rem;
}

.cons-box h3 {
    color: var(--error);
    margin-bottom: 1rem;
}

.pros-box ul, .cons-box ul {
    list-style: none;
    padding: 0;
}

.pros-box li, .cons-box li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

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

.cons-box li::before {
    content: '!';
    position: absolute;
    left: 0;
    color: var(--error);
}

/* Author Box */
.author-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    margin-top: 3rem;
}

.author-avatar {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: 50%;
    color: var(--gold);
}

.author-avatar svg {
    width: 32px;
    height: 32px;
}

.author-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.author-bio {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    margin-bottom: 1.5rem;
}

.sidebar-widget h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--card-border);
}

/* TOC */
.toc ul {
    list-style: none;
}

.toc li {
    margin-bottom: 0.625rem;
}

.toc a {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.toc a:hover {
    background: rgba(201, 164, 77, 0.1);
    color: var(--gold);
}

/* Related Widget */
.related-list {
    list-style: none;
}

.related-list li {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--card-border);
}

.related-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-list a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.related-list a:hover {
    color: var(--gold);
}

.tags-list-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Error Page */
.error-page {
    padding: 6rem 0;
    text-align: center;
}

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

.error-code {
    font-family: var(--font-mono);
    font-size: 8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.error-title {
    margin-bottom: 1rem;
}

.error-message {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.error-suggestions h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.suggestion-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.suggestion-list a {
    padding: 0.5rem 1rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.suggestion-list a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
}

.empty-state p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .sidebar-widget {
        margin-bottom: 0;
    }

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

    .featured-large {
        grid-column: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 2;
        padding-right: 0;
    }
}

/* Hero Responsive - Large Tablets */
@media (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: 1fr 340px;
        gap: 3rem;
    }

    .hero-deco {
        display: none;
    }
}

@media (max-width: 1024px) {
    /* Show burger menu on tablet */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
    }

    .main-nav {
        position: fixed;
        inset: 70px 0 0 0;
        width: 100vw;
        height: calc(100vh - 70px);
        background: #0B0D10;
        padding: 0;
        clip-path: inset(0 100% 0 0);
        transition: clip-path 0.3s ease;
        overflow-y: auto;
        z-index: 10000;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
    }

    .main-nav.active {
        clip-path: inset(0 0 0 0);
    }

    body.menu-open {
        overflow: hidden;
    }

    .main-nav .nav-list {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 1.5rem;
        list-style: none;
        margin: 0;
    }

    .main-nav .nav-list > li {
        display: block !important;
    }

    .main-nav .nav-list > li > a {
        display: block !important;
        padding: 1rem 0;
        font-size: 1.125rem;
        color: #F4F6F8 !important;
        border-bottom: 1px solid rgba(201, 164, 77, 0.1);
        text-decoration: none;
    }

    .main-nav .nav-list > li > a:hover {
        color: #C9A44D !important;
    }

    .main-nav .dropdown {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: block !important;
        background: rgba(255, 255, 255, 0.02);
        border: none;
        box-shadow: none;
        padding: 0.5rem 0 0.5rem 1rem;
        border-radius: 8px;
        margin: 0;
    }

    .main-nav .dropdown li a {
        color: #C7CBD1;
        padding: 0.75rem 1rem;
        display: block;
    }

    /* Hero - Tablet */
    .hero {
        min-height: auto;
        padding: 3rem 0 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-content {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-trust-row {
        justify-content: center;
    }

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

    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .hero-cta-cluster {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-trust-line {
        text-align: center;
    }

    .hero-quicklinks {
        justify-content: center;
    }

    .hero-featured {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-stats-strip {
        gap: 1.5rem;
    }

    /* Poker Rooms - Tablet */
    .rooms-layout {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .room-card-featured {
        grid-row: span 1;
    }

    .rooms-secondary {
        grid-template-columns: repeat(2, 1fr);
    }

    .rooms-trust {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem;
    }

    .logo img {
        height: 32px;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        margin-left: auto;
    }

    .main-nav .nav-list > li > a {
        justify-content: space-between;
        padding: 1.25rem 0;
        font-size: 1.125rem;
        font-weight: 500;
    }

    .main-nav .nav-list > li:first-child > a {
        border-top: 1px solid var(--card-border);
    }

    .dropdown li a {
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
    }

    /* Mobile menu footer */
    .main-nav::after {
        content: 'Poker en Línea Dinero Real © 2025';
        display: block;
        padding: 1.5rem;
        text-align: center;
        font-size: 0.75rem;
        color: var(--text-muted);
        border-top: 1px solid var(--card-border);
        margin-top: auto;
    }

    /* Hero Responsive - Mobile */
    .hero {
        padding: 2.5rem 0 0;
    }

    .hero-container {
        padding: 0 1.25rem;
    }

    .hero-trust-row {
        gap: 0.375rem;
        margin-bottom: 1.5rem;
    }

    .trust-chip {
        padding: 0.3rem 0.625rem;
        font-size: 0.6875rem;
    }

    .headline-main {
        font-size: 1.75rem;
    }

    .headline-accent {
        font-size: 2rem;
    }

    .hero-subheadline {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 0.625rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 320px;
        padding: 0.875rem 1.5rem;
    }

    .hero-trust-line {
        text-align: center;
    }

    .hero-quicklinks {
        gap: 0.5rem;
        padding-top: 1.25rem;
    }

    .quicklink-pill {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
    }

    .hero-featured {
        max-width: 100%;
    }

    .featured-card {
        border-radius: 12px;
    }

    .featured-name {
        font-size: 1.25rem;
    }

    .hero-stats-strip {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1.5rem;
        margin-top: 1.5rem;
    }

    .stat-mini {
        flex: 1 1 auto;
        min-width: 80px;
        justify-content: center;
    }

    .stat-divider {
        display: none;
    }

    .stat-value {
        font-size: 1.125rem;
    }

    .stat-text {
        font-size: 0.75rem;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-form {
        flex-direction: column;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

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

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

    .casino-card .btn {
        width: 100%;
        margin-top: 0.5rem;
    }

    .pagination {
        flex-wrap: wrap;
    }

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

    /* Poker Rooms - Mobile */
    .section-poker-rooms {
        padding: 3rem 0;
    }

    .rooms-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .rooms-view-all {
        width: 100%;
        justify-content: center;
    }

    .rooms-title {
        font-size: 1.5rem;
    }

    .rooms-subtitle {
        font-size: 0.9375rem;
    }

    .room-card-featured .room-content {
        padding: 1.5rem;
    }

    .room-name {
        font-size: 1.25rem;
    }

    .room-bonus {
        padding: 0.875rem 1rem;
    }

    .bonus-value {
        font-size: 1.125rem;
    }

    .room-features {
        gap: 0.5rem;
    }

    .room-feature {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }

    .rooms-secondary {
        grid-template-columns: 1fr;
    }

    .rooms-trust {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .trust-indicator {
        font-size: 0.75rem;
    }
}

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

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

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

    /* Hero Mobile Small */
    .hero {
        padding: 2rem 0 0;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .hero-trust-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .trust-chip {
        font-size: 0.625rem;
        padding: 0.25rem 0.5rem;
    }

    .headline-main {
        font-size: 1.5rem;
    }

    .headline-accent {
        font-size: 1.75rem;
    }

    .hero-subheadline {
        font-size: 0.875rem;
    }

    .hero-ctas {
        align-items: center;
        width: 100%;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        font-size: 0.875rem;
        max-width: 100%;
    }

    .hero-quicklinks {
        flex-direction: column;
        align-items: center;
    }

    .quicklink-pill {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .featured-body {
        padding: 1.25rem 1rem;
    }

    .featured-footer {
        padding: 1rem;
    }

    .hero-stats-strip {
        padding: 1.25rem;
        gap: 0.75rem;
    }

    .stat-mini {
        flex: 0 0 100%;
        gap: 0.5rem;
    }

    .stat-value {
        font-size: 1rem;
    }
}
