/* ═══════════════════════════════════════════════════════════════════════════
   CASSINOS PAGE - Art Deco Noir Premium Design
   Theatrical opulence inspired by 1920s casino glamour
   ═══════════════════════════════════════════════════════════════════════════ */

@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;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

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

/* ─────────────────────────────────────────────────────────────────────────────
   PAGE HEADER (like /jogos)
   ───────────────────────────────────────────────────────────────────────────── */

.page-header {
    position: relative;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    margin: calc(70px + var(--space-lg)) auto var(--space-xl);
    max-width: 1200px;
    border-radius: 20px;
    padding: var(--space-xl) var(--space-2xl);
    text-align: center;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

/* Grid Background - compact */
.page-header .hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
}

/* Central Glow */
.page-header .hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 150px;
    background: radial-gradient(
        ellipse,
        rgba(212, 175, 55, 0.15) 0%,
        transparent 70%
    );
    filter: blur(50px);
    pointer-events: none;
}

.page-title {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--gold-bright);
    margin-bottom: var(--space-sm);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.subtitle {
    position: relative;
    z-index: 1;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gold-light);
    max-width: 700px;
    margin: var(--space-md) auto 0;
    line-height: 1.6;
    opacity: 0.9;
}

/* Author block in header */
.page-header .page-meta {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin: var(--space-md) 0;
}

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

.page-header .meta-author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--void);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.page-header .meta-author-info {
    text-align: left;
}

.page-header .meta-author {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
}

.page-header .meta-role {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: #9ca3af;
}


/* ─────────────────────────────────────────────────────────────────────────────
   FILTERS SECTION
   ───────────────────────────────────────────────────────────────────────────── */

.filters-section {
    position: relative;
    padding: var(--space-2xl) 0;
    max-width: 1400px;
    margin: 0 auto;
}

.filters-card {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(255, 255, 255, 0.01) 100%
    );
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: var(--space-2xl);
    backdrop-filter: blur(20px);
}

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

.filters-icon {
    width: 48px;
    height: 48px;
    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: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.filters-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

/* Inline sort select */
.filter-select-inline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: var(--space-sm) var(--space-lg);
    padding-right: 36px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #fff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px;
    transition: all 0.3s var(--ease-luxury);
}

.filter-select-inline:hover,
.filter-select-inline:focus {
    border-color: var(--gold);
    outline: none;
}

.filter-select-inline option {
    background: var(--deep);
    color: #fff;
}

.sort-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

/* Filter Tags */
.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.3s var(--ease-luxury);
}

.filter-tag:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--gold-light);
}

.filter-tag.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    border-color: var(--gold);
    color: var(--void);
    font-weight: 600;
}

.filter-tag-icon {
    font-size: 1rem;
}

/* Results Count */
.results-count {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-lg);
    margin-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.results-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #9ca3af;
}

.results-text strong {
    color: var(--gold-light);
    font-weight: 600;
}

.clear-filters-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.3s var(--ease-luxury);
}

.clear-filters-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: var(--ruby);
    color: var(--ruby);
}

/* ─────────────────────────────────────────────────────────────────────────────
   CASINO CARDS GRID
   ───────────────────────────────────────────────────────────────────────────── */

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

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

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    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.85em;
}

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

/* Casino List */
.casinos-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.casino-card {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    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;
    padding: var(--space-lg) var(--space-xl);
}

/* Casino Logo */
.casino-logo {
    flex-shrink: 0;
    width: 100px;
    height: 50px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.03));
    border: 1px solid rgba(212, 175, 55, 0.2);
    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);
    overflow: hidden;
}

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

/* Casino Info */
.casino-info {
    flex: 1;
    min-width: 0;
}

.casino-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.casino-bonus {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gold-light);
    margin-bottom: 6px;
    line-height: 1.4;
}

/* Casino Meta Info */
.casino-meta {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 6px;
}

.casino-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.casino-meta-icon {
    color: var(--gold);
}

.casino-established {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #6b7280;
}

/* Casino Tags */
.casino-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.casino-tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--emerald);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-radius: 6px;
}

.casino-tag.popular {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    color: var(--sapphire);
}

.casino-tag.confiavel {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    color: #a78bfa;
}

.casino-tag.seguro {
    background: rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.3);
    color: #22d3ee;
}

.casino-tag.licenciado {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
    color: #fbbf24;
}

/* Casino Actions */
.casino-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-shrink: 0;
}

/* CTA Button */
.casino-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: var(--void);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 8px;
    white-space: nowrap;
}

.casino-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    white-space: nowrap;
}

.casino-cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* Hidden state for filtering */
.casino-card.hidden {
    display: none;
}

/* ─────────────────────────────────────────────────────────────────────────────
   LOAD MORE BUTTON
   ───────────────────────────────────────────────────────────────────────────── */

.load-more-container {
    text-align: center;
    padding: var(--space-3xl) 0;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    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-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s var(--ease-luxury);
    position: relative;
    overflow: hidden;
}

/* ::before effect removed */

/* Hover effects removed */

/* ─────────────────────────────────────────────────────────────────────────────
   QUICK LINKS SECTION
   ───────────────────────────────────────────────────────────────────────────── */

.quick-links-section {
    padding: var(--space-3xl) 0;
    background: var(--abyss);
}

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

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

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

.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.08) 0%,
        rgba(212, 175, 55, 0.02) 100%
    );
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s var(--ease-luxury);
}

/* Hover effects removed */

.quick-link-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 14px;
    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-family: var(--font-body);
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.5;
}

/* ─────────────────────────────────────────────────────────────────────────────
   LOWER TEXT & CONTENT SECTIONS
   ───────────────────────────────────────────────────────────────────────────── */

.lower-text-section {
    padding: var(--space-3xl) 0;
    background: var(--deep);
}

.lower-text-content {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-2xl);
    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.06);
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #d1d5db;
    line-height: 1.8;
}

.lower-text-content h1,
.lower-text-content h2,
.lower-text-content h3,
.lower-text-content h4 {
    font-family: var(--font-display);
    color: var(--gold-light);
    margin-bottom: var(--space-md);
}

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

.lower-text-content a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.lower-text-content a:hover {
    border-bottom-color: var(--gold);
}

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

.lower-text-content li {
    margin-bottom: var(--space-sm);
}

/* ─────────────────────────────────────────────────────────────────────────────
   RELATED PAGES
   ───────────────────────────────────────────────────────────────────────────── */

.related-section {
    padding: var(--space-3xl) 0;
    background: var(--abyss);
}

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

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

.related-card {
    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: 16px;
    padding: var(--space-xl);
    transition: all 0.4s var(--ease-luxury);
    position: relative;
    overflow: hidden;
}

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

/* Hover effects removed */

.related-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: var(--space-md);
}

.related-card p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.related-btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: var(--void);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 6px;
    transition: all 0.3s var(--ease-luxury);
}

.related-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* ─────────────────────────────────────────────────────────────────────────────
   CONTRIBUTORS SECTION
   ───────────────────────────────────────────────────────────────────────────── */

.contributors-section {
    padding: var(--space-3xl) 0;
    background: var(--deep);
}

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

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

.contributor-card {
    display: flex;
    gap: var(--space-xl);
    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;
    padding: var(--space-xl);
    transition: all 0.4s var(--ease-luxury);
}

.contributor-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contributor-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    width: 160px;
}

.contributor-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--void);
    margin-bottom: var(--space-md);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

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

.contributor-role {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #9ca3af;
    margin-bottom: var(--space-md);
}

.contributor-social {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: transform 0.3s var(--ease-luxury);
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon.linkedin { background: #0077b5; }
.social-icon.facebook { background: #1877f2; }
.social-icon.email { background: #6b7280; }

.contributor-content {
    flex: 1;
}

.contributor-content h5 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: var(--space-md);
}

.contributor-bio {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg) 0;
}

.contributor-bio li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #d1d5db;
    line-height: 1.5;
}

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

.read-bio-btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: var(--void);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 6px;
    transition: all 0.3s var(--ease-luxury);
}

.read-bio-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* ─────────────────────────────────────────────────────────────────────────────
   NO RESULTS STATE
   ───────────────────────────────────────────────────────────────────────────── */

.no-results {
    text-align: center;
    padding: var(--space-4xl) var(--space-xl);
    grid-column: 1 / -1;
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: var(--space-lg);
    opacity: 0.5;
}

.no-results h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: var(--space-md);
}

.no-results p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #9ca3af;
}

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

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

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

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

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

    .casino-meta {
        flex-wrap: wrap;
        gap: var(--space-sm) var(--space-md);
    }
}

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

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

    .page-header {
        margin: calc(60px + var(--space-md)) var(--space-md) var(--space-lg);
        padding: var(--space-lg);
        border-radius: 16px;
    }

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

    .subtitle {
        font-size: 0.9rem;
    }

    .page-header .page-meta {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .page-header .meta-item {
        justify-content: center;
    }

    .page-header .meta-author-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }

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

    .filters-card {
        padding: var(--space-lg);
        border-radius: 16px;
    }

    .filters-header {
        margin-bottom: var(--space-md);
    }

    .filters-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .filters-title {
        font-size: 1.1rem;
    }

    .filter-tags {
        gap: var(--space-xs);
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }

    .filter-tag {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .filter-tag-icon {
        font-size: 0.85rem;
    }

    .results-count {
        flex-direction: column;
        gap: var(--space-sm);
        align-items: flex-start;
        padding: var(--space-md) 0 0;
    }

    .sort-wrapper {
        width: 100%;
        justify-content: space-between;
    }

    .filter-select-inline {
        flex: 1;
    }

    /* List layout for tablets */
    .casino-card {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
        padding: var(--space-lg);
        border-radius: 14px;
    }

    .casino-logo {
        width: 100%;
        height: 50px;
        max-width: 120px;
    }

    .casino-info {
        width: 100%;
    }

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

    .casino-bonus {
        font-size: 0.85rem;
    }

    .casino-meta {
        flex-wrap: wrap;
        gap: var(--space-xs) var(--space-md);
        font-size: 0.75rem;
    }

    .casino-tags {
        margin-top: var(--space-sm);
    }

    .casino-tag {
        font-size: 0.65rem;
        padding: 3px 8px;
    }

    .casino-actions {
        width: 100%;
    }

    .casino-cta {
        width: 100%;
        text-align: center;
        font-size: 0.8rem;
        padding: 12px 16px;
    }

    .section-header {
        margin-bottom: var(--space-xl);
    }

    .section-title {
        font-size: 1.25rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

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

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

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

    .contributor-card {
        flex-direction: column;
        text-align: center;
    }

    .contributor-header {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-header {
        margin: calc(55px + var(--space-sm)) var(--space-sm) var(--space-md);
        padding: var(--space-md);
    }

    .page-title {
        font-size: 1.25rem;
    }

    .subtitle {
        font-size: 0.8rem;
    }

    .page-header .meta-author-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.7rem;
    }

    .page-header .meta-author {
        font-size: 0.85rem;
    }

    .casinos-grid {
        gap: var(--space-sm);
    }

    .casino-card {
        padding: var(--space-md);
        border-radius: 12px;
        gap: var(--space-sm);
    }

    .casino-logo {
        width: 80px;
        height: 40px;
        font-size: 0.8rem;
    }

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

    .casino-bonus {
        font-size: 0.8rem;
    }

    .casino-meta {
        font-size: 0.7rem;
        gap: var(--space-xs) var(--space-sm);
    }

    .casino-tag {
        font-size: 0.6rem;
        padding: 2px 6px;
    }

    .casino-cta {
        font-size: 0.75rem;
        padding: 10px 14px;
    }

    .filter-tag {
        padding: 5px 10px;
        font-size: 0.7rem;
    }

    .filter-tag-icon {
        display: none;
    }
}

