/* ═══════════════════════════════════════════════════════════════════════════
   TOP 10 CASSINOS BRASIL - Art Deco Noir Premium Design
   A theatrical, opulent design inspired by 1920s casino glamour
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   IMPORTS & VARIABLES
   ───────────────────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Core Colors */
    --void: #030712;
    --abyss: #0a0f1a;
    --deep: #111827;
    --surface: #1f2937;
    --muted: #374151;

    /* Gold Spectrum */
    --gold-dim: #92702a;
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --gold-bright: #ffd700;
    --gold-white: #fff8dc;

    /* Accent Colors */
    --emerald: #10b981;
    --ruby: #ef4444;
    --sapphire: #3b82f6;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Effects */
    --glow-gold: 0 0 60px rgba(212, 175, 55, 0.4);
    --glow-gold-intense: 0 0 100px rgba(212, 175, 55, 0.6);
    --shadow-luxury: 0 25px 80px -20px rgba(0, 0, 0, 0.8);

    /* Transitions */
    --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESET & BASE
   ───────────────────────────────────────────────────────────────────────────── */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--void);
    color: #e5e7eb;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ─────────────────────────────────────────────────────────────────────────────
   DECORATIVE PATTERNS - Art Deco Geometric
   ───────────────────────────────────────────────────────────────────────────── */

.deco-pattern {
    position: absolute;
    pointer-events: none;
    opacity: 0.03;
}

.deco-pattern--corner {
    width: 300px;
    height: 300px;
    background:
        repeating-linear-gradient(
            45deg,
            var(--gold) 0px,
            var(--gold) 1px,
            transparent 1px,
            transparent 20px
        );
    mask-image: radial-gradient(circle at var(--corner), black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at var(--corner), black 0%, transparent 70%);
}

/* ─────────────────────────────────────────────────────────────────────────────
   HERO SECTION - Wide Informative Layout
   ───────────────────────────────────────────────────────────────────────────── */

.hero-banner {
    padding: 2.5rem 0 2rem;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.hero-banner::before,
.hero-banner::after {
    display: none !important;
}

.hero-grid-bg,
.hero-glow,
.hero-particles,
.particle {
    display: none !important;
}

/* Hero Content - Wide Two Column */
.hero-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 4rem !important;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
}

/* Left Column - Features/Stats */
.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hero-feature {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

/* Large feature cards with big numbers */
.hero-feature-large {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.02) 100%);
    border-color: rgba(255, 215, 0, 0.15);
    padding: 1.5rem;
}

.hero-feature-value {
    font-family: 'Arial', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-feature-icon {
    font-size: 1.5rem;
}

.hero-feature-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.hero-feature-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
}

/* Right Column - Main CTA */
.hero-main {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: right;
    align-items: flex-end;
}

/* Desktop/Mobile button visibility */
.hero-btn-mobile {
    display: none !important;
}

/* Mobile: Stack vertically */
@media (max-width: 900px) {
    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        align-items: center;
    }

    .hero-main {
        order: 1 !important;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-features {
        order: 2 !important;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-btn-desktop {
        display: none !important;
    }

    .hero-btn-mobile {
        display: inline-flex !important;
        order: 3 !important;
    }
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    width: fit-content;
}

.hero-badge::before {
    content: '🏆';
    font-size: 0.8rem;
}

/* Title */
.hero-title {
    font-family: 'Arial', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.hero-title::before {
    display: none;
}

.hero-title .text-gradient {
    color: #FFD700;
    background: none;
    -webkit-text-fill-color: #FFD700;
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 420px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .hero-subtitle {
        max-width: 100%;
    }
}

/* Primary Button */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a2e;
    padding: 0.75rem 1.75rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(255, 215, 0, 0.3);
}

.hero-btn::before {
    display: none;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.hero-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.hero-btn:hover svg {
    transform: translateX(3px);
}

/* Stats Row */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 0.5rem;
}

.stat-value {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFD700;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.15);
}

/* ─────────────────────────────────────────────────────────────────────────────
   FEATURES SECTION
   ───────────────────────────────────────────────────────────────────────────── */

.features-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--void) 0%, var(--abyss) 100%);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    position: relative;
    padding: var(--space-3xl) var(--space-xl);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.01) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-align: center;
    transition: border-color 0.3s ease;
    overflow: hidden;
}

.feature-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

.feature-icon {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    font-size: 2rem;
}

.feature-card h3 {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: var(--space-md);
}

.feature-card p {
    position: relative;
    z-index: 1;
    color: #9ca3af;
    font-size: 1rem;
    line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────────────────────
   TOP CASINOS SECTION
   ───────────────────────────────────────────────────────────────────────────── */

.top-casinos-section {
    padding: var(--space-4xl) 0;
    background: var(--abyss);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--space-md);
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
}

.section-title .icon {
    font-size: 0.8em;
    animation: trophyBounce 2s ease-in-out infinite;
}

@keyframes trophyBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(-5deg); }
    75% { transform: translateY(-5px) rotate(5deg); }
}

.top-casinos-section .subtitle {
    font-size: 1.1rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Casinos Grid */
.casinos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.casino-card {
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    transition: border-color 0.3s ease;
    overflow: hidden;
}

/* Hover effect removed */

/* Ranking Badge */
.casino-rank {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    border-radius: 16px 0 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--void);
    z-index: 2;
}

.casino-card:nth-child(1) .casino-rank {
    background: linear-gradient(135deg, #ffd700, #b8860b);
}

.casino-card:nth-child(2) .casino-rank {
    background: linear-gradient(135deg, #c0c0c0, #808080);
}

.casino-card:nth-child(3) .casino-rank {
    background: linear-gradient(135deg, #cd7f32, #8b4513);
}

.casino-name {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.casino-bonuses {
    position: relative;
    z-index: 1;
    font-size: 0.85rem;
    color: var(--gold-light);
    margin-bottom: var(--space-sm);
}

.casino-established {
    position: relative;
    z-index: 1;
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: var(--space-lg);
}

.details-btn {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 6px 14px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 5px;
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s var(--ease-luxury);
}

.details-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--void);
    transform: translateY(-2px);
}

/* Quick Links */
.quick-links-home {
    margin-top: var(--space-4xl);
    padding-top: var(--space-3xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.quick-links-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.quick-link-card {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.05) 0%,
        rgba(212, 175, 55, 0.02) 100%
    );
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s var(--ease-luxury);
}

/* Hover effects removed */

.quick-link-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.quick-link-content h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: var(--space-xs);
}

.quick-link-content p {
    font-size: 0.9rem;
    color: #9ca3af;
}

/* ─────────────────────────────────────────────────────────────────────────────
   FULL LIST SECTION (Table)
   ───────────────────────────────────────────────────────────────────────────── */

.full-list-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--abyss) 0%, var(--deep) 100%);
    position: relative;
}

.full-list-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.full-list-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--space-md);
}

.full-list-header p {
    font-size: 1.1rem;
    color: #9ca3af;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.table-container {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(255, 255, 255, 0.01) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

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

.casino-table th {
    padding: var(--space-lg) var(--space-xl);
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.15) 0%,
        rgba(212, 175, 55, 0.05) 100%
    );
    color: var(--gold-light);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: left;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.casino-table td {
    padding: var(--space-lg) var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

.casino-table tr {
    transition: all 0.3s var(--ease-luxury);
}

.casino-table tbody tr:hover {
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.08) 0%,
        rgba(212, 175, 55, 0.02) 100%
    );
}

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

/* Medal Icons */
.medal-icons {
    display: flex;
    gap: var(--space-xs);
}

.medal-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--void);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.medal-icon::after {
    content: '★';
}

/* Casino Name Cell */
.casino-name-cell {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.casino-bonus-text,
.casino-tags {
    display: none;
}

/* Badge */
.new-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: linear-gradient(135deg, var(--emerald), #059669);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
}

/* Play Button */
.play-btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: var(--void);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 6px;
    transition: all 0.3s var(--ease-luxury);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.established-date {
    display: none;
}

/* View All Button */
.view-all-btn {
    display: block;
    width: fit-content;
    margin: var(--space-3xl) auto 0;
    padding: var(--space-lg) var(--space-3xl);
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.4);
    color: var(--gold-light);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 8px;
    transition: all 0.4s var(--ease-luxury);
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.view-all-btn:hover {
    border-color: var(--gold);
    color: var(--void);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.3);
}

.view-all-btn:hover::before {
    opacity: 1;
}

/* ─────────────────────────────────────────────────────────────────────────────
   FAQ SECTION
   ───────────────────────────────────────────────────────────────────────────── */

.faq-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--deep) 0%, var(--abyss) 100%);
    position: relative;
}

.faq-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.faq-icon {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
    display: inline-block;
    animation: faqIconFloat 3s ease-in-out infinite;
}

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

.faq-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--space-md);
    position: relative;
    display: inline-block;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #9ca3af;
    max-width: 500px;
    margin: var(--space-xl) auto 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--space-md);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.01) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s var(--ease-luxury);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

.faq-item.active {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
}

.faq-question {
    width: 100%;
    padding: var(--space-xl);
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    text-align: left;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.question-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    flex: 1;
}

.faq-icon-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: var(--void);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 8px;
    flex-shrink: 0;
    transition: all 0.4s var(--ease-luxury);
}

.faq-item.active .faq-icon-toggle {
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--ruby), #dc2626);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s var(--ease-luxury);
    opacity: 0;
}

.faq-answer.active {
    max-height: 500px;
    opacity: 1;
}

.faq-answer-content {
    padding: 0 var(--space-xl) var(--space-xl);
    color: #9ca3af;
    line-height: 1.8;
}

.faq-answer-content p {
    margin-bottom: var(--space-md);
}

.faq-answer-content ul,
.faq-answer-content ol {
    margin: var(--space-md) 0;
    padding-left: var(--space-xl);
}

.faq-answer-content li {
    margin-bottom: var(--space-sm);
}

.faq-answer-content strong {
    color: var(--gold-light);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.payment-item {
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.payment-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
}

/* ─────────────────────────────────────────────────────────────────────────────
   CTA SECTION
   ───────────────────────────────────────────────────────────────────────────── */

.cta-section {
    padding: var(--space-4xl) 0;
    background:
        linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        linear-gradient(225deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        var(--abyss);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.5),
        transparent
    );
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-4xl) var(--space-xl);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.01) 100%
    );
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 24px;
    position: relative;
}

.cta-content::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.3),
        transparent 50%,
        rgba(212, 175, 55, 0.3)
    );
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
}

.cta-content:hover::before {
    opacity: 1;
}

.cta-section h3 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--space-md);
}

.cta-section p {
    font-size: 1.2rem;
    color: #9ca3af;
    margin-bottom: var(--space-2xl);
}

.cta-btn {
    display: inline-block;
    padding: var(--space-lg) var(--space-3xl);
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: var(--void);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 8px;
    transition: all 0.4s var(--ease-luxury);
    box-shadow: 0 4px 25px rgba(212, 175, 55, 0.3);
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.5);
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE DESIGN
   ───────────────────────────────────────────────────────────────────────────── */

@media (max-width: 1200px) {
    .casinos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .casinos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --space-4xl: 4rem;
    }

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

    /* Hero */
    .hero-banner {
        min-height: auto;
        padding: var(--space-4xl) 0;
    }

    .hero-stats {
        gap: var(--space-xl);
    }

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

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    /* Casinos */
    .casinos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .casino-card {
        padding: var(--space-lg);
    }

    .casino-logo {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .quick-links-grid {
        grid-template-columns: 1fr;
    }

    /* Table - Hide extra columns */
    .casino-table th:nth-child(1),
    .casino-table td:nth-child(1),
    .casino-table th:nth-child(3),
    .casino-table td:nth-child(3),
    .casino-table th:nth-child(4),
    .casino-table td:nth-child(4),
    .casino-table th:nth-child(5),
    .casino-table td:nth-child(5) {
        display: none;
    }

    .casino-table td:nth-child(2) .casino-bonus-text,
    .casino-table td:nth-child(2) .casino-tags {
        display: block;
        margin-top: var(--space-sm);
    }

    .casino-table td:nth-child(6) .established-date {
        display: block;
        font-size: 0.75rem;
        color: #6b7280;
        margin-bottom: var(--space-sm);
    }

    /* FAQ */
    .faq-title {
        font-size: 2rem;
    }

    .question-text {
        font-size: 1rem;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .casinos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .casino-card {
        padding: var(--space-md);
    }

    .casino-rank {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .casino-logo {
        width: 45px;
        height: 45px;
    }

    .casino-name {
        font-size: 0.9rem;
    }

    .details-btn {
        padding: var(--space-xs) var(--space-sm);
        font-size: 0.7rem;
    }

    .hero-btn {
        padding: var(--space-md) var(--space-xl);
        font-size: 0.9rem;
    }
}


/* Staggered animations for lists */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* ─────────────────────────────────────────────────────────────────────────────
   CASINO LOGO IMAGES
   ───────────────────────────────────────────────────────────────────────────── */

/* Casino Card Logo with Image */
.casino-logo {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 40px;
    margin: 8px auto 12px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

.casino-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.1);
}


/* Table Casino Logo */
.casino-cell-with-logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.casino-table-logo {
    width: 60px;
    height: 30px;
    min-width: 60px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s var(--ease-luxury);
}

.casino-table-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.1);
}

.casino-table-logo-text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
}

.casino-table tbody tr:hover .casino-table-logo {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

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

/* Bonus Page Casino Logo */
.bonus-casino-logo {
    width: 50px;
    height: 25px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s var(--ease-luxury);
}

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

.bonus-casino-logo-text {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
}

/* Mobile Casino Logo */
.casino-logo-mobile {
    width: 60px;
    height: 30px;
    min-width: 60px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

    .casino-table-logo {
        width: 50px;
        height: 25px;
        min-width: 50px;
    }

    .casino-cell-with-logo {
        gap: var(--space-sm);
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   CONTENT SECTIONS (SEO Text Blocks)
   ───────────────────────────────────────────────────────────────────────────── */

.cl-content-section {
    background: var(--deep);
    padding: var(--space-3xl) 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.cl-content-section:first-of-type {
    border-top: none;
}

.cl-richtext {
    max-width: 900px;
    margin: 0 auto;
    color: #9ca3af;
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
}

.cl-richtext section {
    margin-bottom: var(--space-2xl);
}

.cl-richtext section:last-child {
    margin-bottom: 0;
}

.cl-richtext h2 {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.cl-richtext h3 {
    font-family: var(--font-display);
    color: #e5e7eb;
    font-size: 1.35rem;
    font-weight: 500;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.cl-richtext p {
    margin-bottom: var(--space-md);
}

.cl-richtext strong {
    color: #e5e7eb;
    font-weight: 600;
}

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

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

.cl-richtext ul li::marker {
    color: var(--gold);
}

.cl-richtext ol li::marker {
    color: var(--gold);
    font-weight: 600;
}

.cl-richtext a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.cl-richtext a:hover {
    border-bottom-color: var(--gold);
}

/* Benefits List Styling - Premium Cards */
.cl-richtext .benefits,
.cl-richtext section.benefits {
    background: transparent;
    padding: 0;
    margin: 0;
    border: none;
}

.cl-richtext .benefits h2,
.cl-richtext .benefits h3 {
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    text-align: center;
}

.cl-richtext .benefits ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    list-style: none;
    padding: 0;
    margin-top: var(--space-xl);
}

.cl-richtext .benefits li {
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.9));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: var(--space-xl);
    margin: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cl-richtext .benefits li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.cl-richtext .benefits li strong {
    color: var(--gold-light);
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.cl-richtext .benefits li span,
.cl-richtext .benefits li:not(:has(span)) {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .cl-richtext .benefits ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .cl-richtext .benefits ul {
        grid-template-columns: 1fr;
    }
}

/* How-to Numbered List */
.cl-richtext .how-to ol {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}

.cl-richtext .how-to li {
    counter-increment: step-counter;
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
}

.cl-richtext .how-to li::before {
    content: counter(step-counter);
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: var(--void);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

/* Intro Section */
.cl-richtext .intro p {
    font-size: 1.15rem;
    color: #d1d5db;
}

/* Conclusion Section */
.cl-richtext .conclusion {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: var(--space-xl);
}

/* Responsive */
@media (max-width: 768px) {
    .cl-content-section {
        padding: var(--space-2xl) 0;
    }
    
    .cl-richtext {
        font-size: 1rem;
    }
    
    .cl-richtext h2 {
        font-size: 1.5rem;
    }
    
    .cl-richtext .benefits ul {
        grid-template-columns: 1fr;
    }
}
