/* ============================================
   CASINO LANDING PAGE - STYLES
   Trustworthy dark theme with blue/teal/gold accents
   Neuromarketing focus: Safety, Expertise, Reliability
   ============================================ */

:root {
    /* Backgrounds */
    --bg-dark: #0b0f14;
    --bg-card: #121820;
    --bg-card-hover: #1a2430;

    /* Primary - Trustworthy Blue */
    --primary: #3A7BD5;
    --primary-light: #5a9be5;
    --primary-glow: rgba(58, 123, 213, 0.25);

    /* Accent - Premium Gold (softened) */
    --gold: #D4AF37;
    --gold-light: #f0d878;

    /* Text */
    --text: #e8ecf0;
    --text-muted: #8a9bb0;

    /* Borders & Dividers */
    --border: rgba(255, 255, 255, 0.06);
    --border-highlight: rgba(58, 123, 213, 0.3);

    /* Semantic Colors */
    --success: #2ecc71;
    --success-bg: rgba(46, 204, 113, 0.1);
    --warning: #f39c12;
    --warning-bg: rgba(243, 156, 18, 0.1);
    --caution: #95a5a6;
    /* Neutral gray instead of red for cons */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.7;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

/* Category Toplist Redesign (Horizontal Cards) */
.category-toplist {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    /* Ensure toplist stays below header on scroll */
}

.toplist-item {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 0;
    text-decoration: none;
    color: #1a1a1a;
    /* Dark text for white background */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
    min-height: 100px;
    /* Increased to fit all content including stars */
}

.toplist-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Left Section: Icon & Title */
.toplist-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 180px;
    /* Fixed width for alignment */
    padding: 10px;
    border-right: 1px solid #f0f0f0;
    background: #fafafa;
    height: 100%;
}

.toplist-icon {
    font-size: 1.5em;
    margin-bottom: 4px;
}

.toplist-title-small {
    font-size: 0.75em;
    font-weight: 700;
    color: #9d1c38;
    /* Dark red/purple from image */
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
}

.toplist-stars {
    color: #d4af37;
    /* Gold stars */
    font-size: 0.8em;
    margin-top: 2px;
}

/* Center Section: Main Heading & Badge */
.toplist-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.toplist-category-label {
    font-size: 0.7em;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.toplist-main-heading {
    font-size: 1.4em;
    font-weight: 800;
    color: #5d2b7d;
    /* Purple from image */
    text-transform: lowercase;
    /* as per image style */
    margin: 0;
    line-height: 1;
}

.toplist-online-badge {
    display: inline-flex;
    align-items: center;
    background: #e6f7f2;
    /* Light green bg */
    color: #00b894;
    /* Green text */
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 600;
    margin-top: 6px;
}

.pulsing-dot {
    width: 6px;
    height: 6px;
    background-color: #00b894;
    border-radius: 50%;
    margin-right: 6px;
    animation: pulse 2s infinite;
}

/* Right Section: Button */
.toplist-right {
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.toplist-btn {
    background: #6ab04c;
    /* Green button */
    color: #fff;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.85em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.2s;
}

.toplist-item:hover .toplist-btn {
    background: #58a03c;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 184, 148, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(0, 184, 148, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 184, 148, 0);
    }
}

@media (max-width: 600px) {
    .toplist-item {
        flex-direction: column;
        height: auto;
        padding: 15px;
    }

    .toplist-left {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        margin-bottom: 10px;
        background: transparent;
    }

    .toplist-right {
        margin-top: 10px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
header {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Site Header - Article Header (non-sticky by default, just styled hero) */
.site-header {
    background: var(--bg-dark);
    padding: 30px 20px;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

.site-header .header-content {
    max-width: 800px;
}

.site-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin: 10px 0;
}

.site-header .last-updated {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.site-header .hero-tagline {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.site-header .hero-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.site-header .hero-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.site-header .hero-meta .separator {
    color: var(--border);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-light);
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #0d1a2a 0%, var(--bg-dark) 100%);
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--border);
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: 25px;
}

.hero-meta {
    display: flex;
    gap: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* INFO BOX */
.info-box {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 25px;
    margin: 40px 0;
    border-left: 4px solid var(--primary);
}

.info-box.warning {
    border-left-color: var(--warning);
}

.info-box h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.info-box ul {
    padding-left: 20px;
}

.info-box li {
    margin-bottom: 10px;
    color: var(--text-muted);
}

/* TABLE OF CONTENTS */
.toc {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
}

.toc h3 {
    margin-bottom: 20px;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.toc-grid a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
    padding: 10px 15px;
    background: var(--bg-dark);
    border-radius: 8px;
    transition: all 0.3s;
}

.toc-grid a:hover {
    background: var(--bg-card-hover);
    transform: translateX(5px);
}

.toc-num {
    background: var(--primary);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
}

/* SECTIONS */
.content-section {
    margin: 60px 0;
}

.content-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
}

.section-intro {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

/* TOPLIST SECTION */
.toplist-section {
    margin: 40px 0;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-glow) 0%, var(--bg-card) 100%);
    border-radius: 16px;
    border: 1px solid var(--border-highlight);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.toplist-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    border: none;
    padding: 0;
}

/* COMPARISON TABLE */
.table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: var(--bg-dark);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

.comparison-table tr:hover {
    background: var(--bg-card-hover);
}

.rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-weight: 700;
}

.rank.gold {
    background: linear-gradient(135deg, var(--gold), #ff9900);
    color: #1a0a00;
}

.btn-small {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary), #2a5ca8);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

/* Card-Based Toplist */
.toplist-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.casino-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
    color: #1a1a1a;
    /* Dark text for white background */
}

.casino-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: var(--bg-dark);
    color: #fff;
}

.card-rank {
    font-size: 2rem;
    font-weight: 800;
    min-width: 50px;
    text-align: center;
}

.card-rank.gold {
    color: #FFD700;
}

.card-rank.silver {
    color: #C0C0C0;
}

.card-rank.bronze {
    color: #CD7F32;
}

.card-name {
    flex: 1;
    font-size: 1.3rem;
    font-weight: 700;
    margin-left: 15px;
}

.card-profile-tag {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-profile-tag.eu-tag {
    background: linear-gradient(135deg, #00b894, #00cec9);
}

/* Card Body Grid */
.card-body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 0;
}

.card-stat {
    padding: 18px 15px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
}

.card-stat:nth-child(3n) {
    border-right: none;
}

.card-stat:nth-last-child(-n+3) {
    border-bottom: none;
}

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

.stat-value.highlight {
    color: #d35400;
}

.stat-value.fast {
    color: #27ae60;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .card-body {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-stat:nth-child(2n) {
        border-right: none;
    }

    .card-stat:nth-child(3n) {
        border-right: 1px solid #f0f0f0;
    }

    .card-header {
        flex-wrap: wrap;
        gap: 10px;
    }

    .card-name {
        order: 1;
        width: 100%;
        margin-left: 0;
        text-align: center;
    }

    .card-rank {
        order: 0;
    }

    .card-profile-tag {
        order: 2;
        margin: 0 auto;
    }
}

.table-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 10px;
}

/* EU License & Profile Badges */
.license-eu {
    background: linear-gradient(135deg, #d4efdf, #a9dfbf) !important;
    color: #1e8449 !important;
    border-color: #27ae60 !important;
}

.profile-eu {
    background: linear-gradient(135deg, #d5f5e3, #abebc6) !important;
    color: #1e8449 !important;
    border-color: #27ae60 !important;
}

.fast-text {
    color: #27ae60;
    font-weight: 600;
}

/* ================================
   PREMIUM COMPARISON TABLE
   ================================ */
.premium-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 25px 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.premium-table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
    background: #fff;
    font-size: 0.9rem;
    color: #1a1a1a;
}

.premium-table thead {
    background: linear-gradient(135deg, var(--bg-dark), #1a1a25);
    color: #fff;
}

.premium-table th {
    padding: 14px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
}

.premium-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #e5e5e5;
    vertical-align: middle;
    color: #222;
}

.premium-table tbody tr:hover {
    background: rgba(102, 126, 234, 0.04);
}

.premium-table tbody tr:last-child td {
    border-bottom: none;
}

/* Rank cells */
.rank-cell {
    text-align: center;
    font-weight: 800;
    font-size: 1.1rem;
    min-width: 45px;
}

.rank-cell.rank-1 {
    color: #FFD700;
}

.rank-cell.rank-2 {
    color: #C0C0C0;
}

.rank-cell.rank-3 {
    color: #CD7F32;
}

/* Casino name */
.casino-name-cell {
    font-weight: 700;
    white-space: nowrap;
}

/* Badges */
.table-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.license-badge {
    background: #e8e8e8;
    color: #333;
    border: 1px solid #ccc;
}

.profile-badge {
    background: linear-gradient(135deg, #f5f0ff, #e8e0ff);
    color: #6c5ce7;
    border: 1px solid #d4ccf0;
}

/* Bonus highlight */
.bonus-highlight {
    background: linear-gradient(135deg, #fff5eb, #ffe8d6);
    color: #d35400;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 600;
    white-space: nowrap;
}

/* Mobile Responsive - Horizontal Scroll Indicator */
@media (max-width: 920px) {
    .premium-table-container {
        position: relative;
    }

    .premium-table-container::after {
        content: '← Desliza →';
        position: absolute;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.75rem;
        color: #888;
        background: #fff;
        padding: 2px 10px;
        border-radius: 10px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 600px) {
    .premium-table {
        font-size: 0.8rem;
    }

    .premium-table th,
    .premium-table td {
        padding: 10px 8px;
    }

    .table-badge,
    .bonus-highlight {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
}

/* ================================
   QUICK REVIEW CARDS
   ================================ */
.quick-review {
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary);
    position: relative;
    color: #1a1a1a;
    /* Dark text for white background */
}

.quick-review-rank {
    position: absolute;
    top: -10px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary), #2a5ca8);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.quick-review h3 {
    margin: 10px 0 12px;
    font-size: 1.3rem;
    color: #1a1a1a;
}

.quick-review p {
    margin: 0;
    color: #333;
    line-height: 1.7;
}

/* Fix text contrast within quick-review (white background) */
.quick-review strong {
    color: #1a1a2e !important;
}

.quick-review em {
    color: #2c5282 !important;
}

.quick-review a {
    color: #2563eb !important;
}

.quick-review a:hover {
    color: #1d4ed8 !important;
}

.section-note {
    text-align: center;
    color: #666;
    margin-top: 25px;
    font-size: 0.95rem;
}

/* ================================
   CATEGORY SECTIONS
   ================================ */
.category-section {
    background: linear-gradient(145deg, #ffffff, #fafafa);
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
    color: #1a1a1a;
    /* Dark text for white background */
}

/* Fix text contrast within category sections (white background) */
.category-section strong {
    color: #1a1a2e !important;
}

.category-section em {
    color: #2c5282 !important;
}

.category-section a {
    color: #2563eb !important;
}

.category-section a:hover {
    color: #1d4ed8 !important;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.category-icon {
    font-size: 2rem;
}

.category-header h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #1a1a1a;
    /* Dark text for white background */
}

.category-ranking {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.category-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    transition: transform 0.2s, box-shadow 0.2s;
}

.category-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.category-item.rank-gold {
    border-left: 4px solid #FFD700;
}

.category-item.rank-silver {
    border-left: 4px solid #C0C0C0;
}

.category-item.rank-bronze {
    border-left: 4px solid #CD7F32;
}

.category-medal {
    font-size: 1.3rem;
    font-weight: 700;
    min-width: 50px;
    text-align: center;
}

.category-content h4 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.category-content p {
    margin: 0;
    color: #444;
    line-height: 1.6;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .quick-review {
        padding: 25px 18px 18px;
    }

    .category-section {
        padding: 20px;
    }

    .category-item {
        flex-direction: column;
        gap: 10px;
    }

    .category-medal {
        text-align: left;
    }
}

/* ================================
   DETAILED REVIEW CARDS
   ================================ */
.casino-review-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    overflow: hidden;
    border: 1px solid #eee;
}

.review-header {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.review-rank {
    background: linear-gradient(135deg, #FFD700, #FDB931);
    color: #1a1a2e;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    flex-shrink: 0;
}

.review-title-block h3 {
    color: #ffffff;
    margin: 0 0 5px;
    font-size: 2rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.review-tagline {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    display: block;
}

.review-body {
    padding: 30px;
}

.review-intro {
    font-size: 1.1rem;
    color: #333;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary);
}

/* Fix text contrast within review-intro (light gray background) */
.review-intro strong {
    color: #1a1a2e !important;
}

.review-intro em {
    color: #2c5282 !important;
}

.review-intro a {
    color: #2563eb !important;
}

.review-intro a:hover {
    color: #1d4ed8 !important;
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.review-item h4 {
    color: #1a1a2e;
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 12px;
    border-bottom: 2px solid #eee;
    padding-bottom: 8px;
}

.review-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

/* Fix text contrast within review cards (white background) */
.casino-review-card strong {
    color: #1a1a2e !important;
}

.casino-review-card em {
    color: #2c5282 !important;
}

.casino-review-card a {
    color: #2563eb !important;
}

.casino-review-card a:hover {
    color: #1d4ed8 !important;
}

.review-item.highlight-item {
    background: #fff9f0;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #ffeeba;
}

.review-verdict {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    padding: 25px;
    border-radius: 12px;
    margin-top: 10px;
    border-left: 5px solid #2196f3;
}

.review-verdict h4 {
    color: #0d47a1;
    margin-top: 0;
    font-size: 1.3rem;
}

.review-verdict p {
    color: #1565c0;
    font-weight: 500;
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .review-grid {
        grid-template-columns: 1fr;
    }

    .review-header {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .review-title-block h3 {
        font-size: 1.5rem;
    }
}

/* CRITERIA GRID */
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.criteria-item {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.criteria-weight {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 10px;
}

.criteria-label {
    font-weight: 600;
    margin-bottom: 10px;
}

.criteria-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* CASINO REVIEWS */
.casino-review {
    background: var(--bg-card);
    border-radius: 16px;
    margin-bottom: 30px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, var(--primary-glow) 0%, transparent 100%);
    border-bottom: 1px solid var(--border);
}

.review-rank {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), #ff9900);
    color: #1a0a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
}

.review-title h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.review-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.review-content {
    padding: 25px;
}

.review-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--bg-dark);
    border-radius: 10px;
}

.detail-row .label {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 3px;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.pros,
.cons {
    padding: 20px;
    border-radius: 10px;
}

.pros {
    background: rgba(0, 200, 83, 0.1);
    border: 1px solid rgba(0, 200, 83, 0.2);
}

.cons {
    background: rgba(149, 165, 166, 0.08);
    border: 1px solid rgba(149, 165, 166, 0.15);
}

.pros h4,
.cons h4 {
    margin-bottom: 12px;
    font-size: 1rem;
}

.pros ul,
.cons ul {
    list-style: none;
    padding: 0;
}

.pros li,
.cons li {
    padding: 5px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* MORE REVIEWS */
.more-reviews {
    margin-top: 40px;
    padding: 30px;
    background: var(--bg-card);
    border-radius: 12px;
}

.more-reviews h3 {
    margin-bottom: 20px;
}

.review-list {
    display: grid;
    gap: 15px;
}

.review-mini {
    padding: 15px 20px;
    background: var(--bg-dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-mini .rank {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-meta {
        flex-direction: column;
        gap: 10px;
    }

    nav ul {
        gap: 15px;
        font-size: 0.9rem;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .review-header {
        flex-direction: column;
        text-align: center;
    }
}

/* TRUST BADGE */
.section-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--success-bg);
    color: var(--success);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.trust-icon {
    font-size: 1.1rem;
}

/* ENHANCED TOC */
.toc-enhanced {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
}

.toc-header h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 15px;
    display: inline-block;
}

.toc-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--bg-dark);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.toc-item:hover {
    background: var(--bg-card-hover);
    transform: translateX(3px);
    border-color: var(--border-highlight);
    color: var(--primary-light);
}

.toc-item .num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.toc-item .toc-title {
    font-weight: 500;
    font-size: 0.95rem;
}

.toc-item.highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* ================================
   MINI CARDS GRID (RANK 6-10)
   ================================ */
.mini-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.mini-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    color: #1a1a1a;
    /* Dark text for white background */
}

.mini-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.mini-card-header {
    background: #f4f4f4;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.mini-rank {
    background: #666;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.mini-title h3 {
    margin: 0 0 3px;
    font-size: 1.15rem;
    color: #333;
}

.mini-tag {
    font-size: 0.85rem;
    color: #2563eb;
    /* Darker blue for white background instead of var(--primary) */
    font-weight: 600;
}

.mini-card-body {
    padding: 20px;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
}

.mini-card-body p {
    margin: 0;
}

/* ================================
   INFO BLOCKS (Tips & Warnings)
   ================================ */
.info-block {
    background: #fff;
    border-radius: 12px;
    padding: 25px 30px;
    margin-top: 30px;
    border: 1px solid #e0e0e0;
    color: #1a1a1a;
    /* Dark text for white background */
}

.info-block h3 {
    margin: 0 0 15px;
    font-size: 1.4rem;
    color: #1a1a2e;
}

.info-block h4 {
    margin: 20px 0 10px;
    font-size: 1.1rem;
    color: #333;
}

.info-block p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Fix text contrast within info-block (white background) */
.info-block strong {
    color: #1a1a2e !important;
}

.info-block em {
    color: #2c5282 !important;
}

.info-block a {
    color: #2563eb !important;
}

.info-block a:hover {
    color: #1d4ed8 !important;
}

/* Fix text contrast within mini-card (white background) */
.mini-card strong {
    color: #1a1a2e !important;
}

.mini-card em {
    color: #2c5282 !important;
}

.mini-card a {
    color: #2563eb !important;
}

.mini-card a:hover {
    color: #1d4ed8 !important;
}

.tips-block {
    border-left: 4px solid #3498db;
    background: linear-gradient(135deg, #f8fbff, #fff);
}

.warning-block {
    border-left: 4px solid #f39c12;
    background: linear-gradient(135deg, #fffbf0, #fff);
}

.styled-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.styled-list li {
    padding: 12px 15px 12px 25px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    position: relative;
    line-height: 1.6;
    color: #333;
    /* Dark text for better contrast on light backgrounds */
}

/* Fix text contrast within styled-list ONLY when inside info-block (light background) */
.info-block .styled-list strong {
    color: #1a1a2e !important;
}

.info-block .styled-list em {
    color: #2c5282 !important;
}

.info-block .styled-list a {
    color: #2563eb !important;
}

.info-block .styled-list a:hover {
    color: #1d4ed8 !important;
}

.styled-list li::before {
    content: "✓";
    position: absolute;
    left: 8px;
    color: #27ae60;
    font-weight: 700;
}

.warning-block .styled-list li::before {
    content: "•";
    color: #f39c12;
}

.disclaimer {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #e74c3c;
    font-size: 0.9rem;
    color: #666;
    margin-top: 20px;
}

.responsibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0 30px;
}

.resp-item {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.resp-item h4 {
    margin: 0 0 10px;
    color: #1a1a2e;
    font-size: 1.1rem;
}

.resp-item p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

.danger-block {
    background: #fff5f5;
    border-left: 4px solid #e74c3c;
    /* Red warning */
    padding: 25px 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.danger-block h4 {
    color: #c0392b;
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.danger-block p {
    color: #444;
}

.danger-block strong {
    color: #c0392b;
    /* Make bold text red */
}

/* ================================
   COMPARISON TABLE (VS)
   ================================ */
.vs-table-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

@media (max-width: 768px) {
    .vs-table-container {
        grid-template-columns: 1fr;
    }
}

.vs-column {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    color: #1a1a1a;
    /* Dark text for white background */
}

.se-column {
    border-top: 5px solid #006aa7;
}

.world-column {
    border-top: 5px solid #27ae60;
}

.vs-header {
    background: #f9f9f9;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.vs-flag {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.vs-header h4 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
    /* Dark text for white background */
}

.vs-sub {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.vs-body {
    padding: 0 20px 20px;
}

.vs-row {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.vs-row:last-child {
    border-bottom: none;
}

.vs-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.vs-content {
    display: flex;
    flex-direction: column;
}

.vs-content strong {
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.vs-content span {
    color: #555;
    /* Ensure plain text is visible on white */
    font-size: 0.9rem;
}

.vs-check {
    font-size: 0.9rem;
}

.check-green {
    color: #27ae60;
}

.check-red {
    color: #c0392b;
}

.check-yellow {
    color: #f39c12;
}

.source-cite {
    font-size: 0.85rem;
    color: #777;
    text-align: center;
    margin-top: 15px;
}

/* Help Section */
.quote-block {
    font-size: 1.1rem;
    color: #555;
    background: #f4f6f7;
    padding: 20px;
    border-left: 4px solid #34495e;
    margin-top: 30px;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

/* ================================
   FAQ SECTION
   ================================ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 25px;
}

.faq-item {
    background: #2a2a3e;
    /* Slightly lighter than bg-dark */
    border: 1px solid #3a3a52;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
}

/* FAQ for light mode if inside a white block, but here it is global dark mode content-section? 
   Wait, the content-section background is dark? 
   No, usually content-sections have been #fff if they are cards, or transparent.
   Let's check previous code. The main container is likely transparent dark mode.
   But let's assume we want cards for FAQs.
*/

.faq-question {
    color: #ffd700;
    /* Gold for questions */
    margin: 0 0 10px;
    font-size: 1.1rem;
    cursor: pointer;
    /* Implies interactivity if we had JS, but clear enough as header */
}

.faq-answer p {
    margin: 0;
    color: #e0e0e0;
    line-height: 1.6;
}

.site-footer {
    text-align: center;
    padding: 50px 20px;
    color: #777;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    margin-top: 60px;
    background: var(--bg-card);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-desc {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.footer-contact {
    margin-bottom: 20px;
}

.footer-contact a {
    color: var(--primary-light);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-copy {
    color: #555;
    font-size: 0.85rem;
}

/* Logo styles in header */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
}

@media (max-width: 768px) {
    .logo-img {
        height: 35px;
    }

    .footer-logo img {
        height: 35px;
    }
}

.vs-content strong {
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.vs-check {
    font-size: 0.9rem;
}

.check-green {
    color: #27ae60;
}

.check-red {
    color: #c0392b;
}

.check-yellow {
    color: #f39c12;
}

.source-cite {
    font-size: 0.85rem;
    color: #777;
    text-align: center;
    margin-top: 15px;
}

/* Help Section */
.quote-block {
    font-size: 1.1rem;
    color: #555;
    background: #f4f6f7;
    padding: 20px;
    border-left: 4px solid #34495e;
    margin-top: 30px;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.toc-item.highlight .num {
    background: var(--gold);
    color: #000;
}

.toc-item.highlight:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), transparent);
}

/* Fix for styled lists inside white info-blocks */
.info-block .styled-list li {
    color: #333;
    background: rgba(0, 0, 0, 0.03);
}

.info-block .styled-list li::before {
    /* Keep checkmark color but ensure it looks good */
    font-weight: 800;
}

/* ENHANCED HERO */
/* ENHANCED HERO */
.hero-enhanced {
    background: linear-gradient(145deg, #0d1520 0%, var(--bg-dark) 100%);
    padding: 30px 0 25px;
    /* Reduced specific padding */
    margin-bottom: 25px;
    /* Reduced from 40px */
    border-radius: 0 0 20px 20px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.updated-date {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), #2a5ca8);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px var(--primary-glow);
    margin-top: 0;
}

.hero-enhanced h1 {
    font-size: 2.4rem;
    /* Slightly smaller base size */
    font-weight: 800;
    margin-bottom: 8px;
    /* Reduced from 10px */
    line-height: 1.1;
}

.hero-enhanced h1 span {
    background: linear-gradient(135deg, var(--gold), #f0d878);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    /* Reduced from 25px */
    font-weight: 500;
}

.hero-enhanced .hero-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 900px;
    line-height: 1.6;
    /* Tighter line height */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Limit text summary lines on mobile if needed, but keeping generally shorter */
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}

/* Mobile Specific Hero Compact */
@media (max-width: 768px) {
    .hero-enhanced {
        padding: 20px 0 20px;
    }

    .hero-enhanced h1 {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }

    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .hero-enhanced .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
        display: none;
        /* Consider hiding subtitle on very small screens or truncation */
    }

    /* Show only the first paragraph of text content or intro if separate, but here we adjust opacity/display */
    .hero-enhanced .hero-subtitle {
        display: block;
        /* Keep it but compact */
    }
}

/* FAQ-STYLE LIST FOR CONTENT SECTIONS */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 25px;
    border-left: 4px solid var(--primary);
    transition: transform 0.2s, box-shadow 0.2s;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.faq-item h4 {
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h4::before {
    content: '❓';
    font-size: 1rem;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Section intro styling */
/* FEATURES GRID (Comparison Section) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid var(--border);
    transition: transform 0.2s;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-highlight);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    background: var(--bg-dark);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    color: var(--text);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.feature-note {
    font-size: 0.85rem;
    padding: 10px 15px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--text-muted);
    margin-top: auto;
}

.feature-note.warning {
    background: var(--warning-bg);
    border-left-color: var(--warning);
    color: #e6be8a;
    /* Soft warning text color */
}

.info-box.highlight {
    background: linear-gradient(135deg, rgba(58, 123, 213, 0.1), rgba(0, 0, 0, 0));
    border: 1px solid var(--primary-glow);
}

/* CRITERIA GRID (Methodology) */
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.criteria-item {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid var(--border);
}

.criteria-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.criteria-header .weight {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    padding: 5px 12px;
    border-radius: 8px;
}

.criteria-header h3 {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.3;
}

.criteria-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* QUICK REVIEWS (Snabbanalys) */
.quick-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    transition: 0.2s;
}

.review-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
}

.rank-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: var(--bg-dark);
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
}

.rank-badge.gold {
    color: var(--gold);
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.05);
}

.review-card h3 {
    margin-top: 5px;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text);
}

.review-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CATEGORY SECTIONS */
.category-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border);
    margin-bottom: 40px;
}

.category-header {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 25px;
}

.cat-icon {
    font-size: 2.5rem;
    background: var(--bg-dark);
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.cat-title h3 {
    margin: 0 0 5px;
    font-size: 1.5rem;
}

.cat-title p {
    margin: 0;
    color: var(--text-muted);
}

.category-winners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.winner-card {
    background: var(--bg-dark);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border);
    position: relative;
    padding-top: 35px;
}

.winner-card .medal {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--bg-card);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid var(--border);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.winner-card.gold {
    border-top: 3px solid var(--gold);
}

.winner-card.silver {
    border-top: 3px solid #bdc3c7;
}

.winner-card.bronze {
    border-top: 3px solid #cd7f32;
}

.winner-card h4 {
    margin: 0 0 10px;
    font-size: 1.1rem;
}

/* Review Details Text Spacing */
.review-details-text h4 {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--primary-light);
}

/* RUNNERS UP GRID (6-10) */
.runners-up-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.mini-review {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    transition: 0.2s;
}

.mini-review:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.mini-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.mini-rank {
    background: var(--bg-dark);
    color: var(--text-muted);
    font-weight: 700;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    font-size: 0.9rem;
}

.mini-header h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text);
}

.mini-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    margin-bottom: 12px;
}

.mini-tag.success {
    background: var(--success-bg);
    color: var(--success);
}

.mini-review p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Category Toplist (Custom) */
.category-toplist {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 40px 0 50px;
}

.cat-card {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    overflow: hidden;
    height: 110px;
}

.cat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.cat-left {
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    padding: 10px;
    background: transparent;
    flex-shrink: 0;
}

.cat-ico {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 5px;
}

.cat-lbl {
    font-size: 0.8rem;
    font-weight: 700;
    color: #e8b4d8;
    text-align: center;
    line-height: 1.2;
    text-transform: capitalize;
}

.cat-stars {
    color: #d946ef;
    font-size: 0.75rem;
    margin-top: 4px;
    letter-spacing: 1px;
}

.cat-middle {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 15px;
}

.cat-mid-sub {
    font-size: 0.85rem;
    color: #a8a8b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.cat-mid-main {
    font-size: 1.8rem;
    font-weight: 800;
    color: #e8d0f0;
    text-transform: lowercase;
    text-align: center;
    line-height: 1;
}

.cat-right {
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: transparent;
    flex-shrink: 0;
}

.sub-btn {
    background: #65a30d;
    color: white;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    transition: background 0.2s;
}

.sub-btn:hover {
    background: #4d7c0f;
}

@media (max-width: 768px) {
    .cat-card {
        height: auto;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .cat-left,
    .cat-middle,
    .cat-right {
        width: 100%;
        border: none;
        height: auto;
        padding: 5px 0;
        background: transparent;
    }

    .cat-mid-main {
        font-size: 1.5rem;
    }

    .cat-left {
        border-bottom: 1px solid #f3f4f6;
        padding-bottom: 15px;
        margin-bottom: 5px;
    }
}

/* Mobile Sticky Banner */
.mobile-sticky-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0f172a;
    /* Dark Navy */
    border-top: 1px solid #334155;
    padding: 12px 20px;
    z-index: 9999;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 15px;
}

.banner-text {
    color: #f8fafc;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.3;
}

.banner-btn {
    background: #65a30d;
    /* Brand Green */
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(101, 163, 13, 0.4);
    transition: transform 0.2s;
}

.banner-btn:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .mobile-sticky-banner {
        display: block;
        padding-bottom: max(12px, env(safe-area-inset-bottom));
        /* Safe area for newer iPhones with home indicator */
    }

    /* Adjust main container to prevents content from being hidden behind banner */
    body {
        padding-bottom: 80px;
    }
}

/* Live Player Count Animation */
.live-player-count {
    font-size: 0.8rem;
    color: #10b981;
    /* Green */
    font-weight: 600;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
    background: rgba(16, 185, 129, 0.08);
    /* Subtle green bg */
    padding: 2px 8px;
    border-radius: 12px;
}

.pulsing-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.live-text {
    white-space: nowrap;
}

/* SECTION GIFs */
.content-gif {
    display: block;
    width: 100%;
    max-width: 700px;
    height: auto;
    margin: 35px auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ================================
   TABLE OF CONTENTS (Compact Mobile)
   ================================ */
.toc-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 15px 20px;
    margin: 25px 0;
}

.toc-container h3 {
    font-size: 1rem;
    margin: 0 0 12px;
    color: var(--text);
    font-weight: 700;
}

.toc-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.toc-link,
.toc-sublink {
    display: block;
    padding: 8px 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    line-height: 1.3;
}

.toc-link:hover,
.toc-sublink:hover {
    background: rgba(58, 123, 213, 0.1);
    color: var(--primary-light);
    text-decoration: none;
}

.toc-sublink {
    padding-left: 24px;
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.85;
}

/* Mobile: Extra compact TOC */
@media (max-width: 768px) {
    .toc-container {
        padding: 12px 15px;
        margin: 20px 0;
    }

    .toc-container h3 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .toc-grid {
        gap: 2px;
    }

    .toc-link,
    .toc-sublink {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .toc-sublink {
        padding-left: 18px;
        font-size: 0.75rem;
    }
}

/* ================================
   HERO / SITE HEADER (Compact Mobile)
   ================================ */
.site-header {
    background: var(--bg-dark);
    padding: 30px 20px 25px;
    border-bottom: 1px solid var(--border);
}

.header-content {
    max-width: 900px;
    margin: 0 auto;
}

.last-updated {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.site-header h1 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
    color: var(--text);
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-meta .separator {
    display: none;
}

/* Mobile: Extra compact hero */
@media (max-width: 768px) {
    .site-header {
        padding: 15px 15px 12px;
    }

    .last-updated {
        font-size: 0.7rem;
        margin-bottom: 6px;
    }

    .site-header h1 {
        font-size: 1.5rem;
        margin-bottom: 4px;
    }

    .hero-tagline {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .hero-meta {
        font-size: 0.75rem;
        gap: 4px 10px;
    }
}

/* ================================
   CONTAINER (Desktop Margins)
   ================================ */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* Desktop: Site header padding */
@media (min-width: 769px) {
    .site-header {
        padding: 40px 50px 30px;
    }

    .site-header .header-content {
        max-width: 1100px;
        margin: 0 auto;
    }
}

/* ================================
   CATEGORY CARDS - COLOR VARIANTS
   ================================ */

/* Winner Badge (Trophy) */
.winner-badge {
    position: absolute;
    top: -8px;
    left: -8px;
    font-size: 1.8rem;
    z-index: 10;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Base adjustments for colored cards */
.cat-card {
    position: relative;
}

/* 1. GOLD - Premium Winner Card */
.cat-gold {
    background: linear-gradient(135deg, #1a1614 0%, #2d2419 50%, #1a1614 100%);
    border: 2px solid #d4af37;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.cat-gold .cat-lbl,
.cat-gold .cat-mid-main {
    color: #ffd700;
}

.cat-gold .cat-mid-sub {
    color: #c9a227;
}

.cat-gold .cat-stars {
    color: #ffd700;
}

.cat-gold .live-text {
    color: #e8d5a3;
}

.cat-gold .sub-btn {
    background: linear-gradient(135deg, #d4af37, #f0d878);
    color: #1a1614;
}

/* 2. BLUE - Trustworthy Card */
.cat-blue {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b3a5c 50%, #0d1b2a 100%);
    border: 2px solid #3a7bd5;
    box-shadow: 0 4px 20px rgba(58, 123, 213, 0.2);
}

.cat-blue .cat-lbl,
.cat-blue .cat-mid-main {
    color: #7eb8ff;
}

.cat-blue .cat-mid-sub {
    color: #5a9be5;
}

.cat-blue .cat-stars {
    color: #ffd700;
}

.cat-blue .live-text {
    color: #a8c8e8;
}

.cat-blue .sub-btn {
    background: linear-gradient(135deg, #3a7bd5, #5a9be5);
    color: #fff;
}

/* 3. PURPLE - Modern/Play Card */
.cat-purple {
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #1a0a2e 100%);
    border: 2px solid #9b59b6;
    box-shadow: 0 4px 20px rgba(155, 89, 182, 0.2);
}

.cat-purple .cat-lbl,
.cat-purple .cat-mid-main {
    color: #d8a8e8;
}

.cat-purple .cat-mid-sub {
    color: #b085c8;
}

.cat-purple .cat-stars {
    color: #ffd700;
}

.cat-purple .live-text {
    color: #c8a8d8;
}

.cat-purple .sub-btn {
    background: linear-gradient(135deg, #9b59b6, #c27fd8);
    color: #fff;
}

/* 4. GREEN - Sports/Betting Card */
.cat-green {
    background: linear-gradient(135deg, #0a1f0a 0%, #153d15 50%, #0a1f0a 100%);
    border: 2px solid #27ae60;
    box-shadow: 0 4px 20px rgba(39, 174, 96, 0.2);
}

.cat-green .cat-lbl,
.cat-green .cat-mid-main {
    color: #7dcea0;
}

.cat-green .cat-mid-sub {
    color: #52be80;
}

.cat-green .cat-stars {
    color: #ffd700;
}

.cat-green .live-text {
    color: #a8e0ba;
}

.cat-green .sub-btn {
    background: linear-gradient(135deg, #27ae60, #52be80);
    color: #fff;
}

/* Hover effects for colored cards */
.cat-gold:hover {
    box-shadow: 0 6px 28px rgba(212, 175, 55, 0.4);
    border-color: #f0d878;
}

.cat-blue:hover {
    box-shadow: 0 6px 28px rgba(58, 123, 213, 0.35);
    border-color: #5a9be5;
}

.cat-purple:hover {
    box-shadow: 0 6px 28px rgba(155, 89, 182, 0.35);
    border-color: #c27fd8;
}

.cat-green:hover {
    box-shadow: 0 6px 28px rgba(39, 174, 96, 0.35);
    border-color: #52be80;
}

/* ================================
   CONTENT SECTIONS - Improved Spacing
   ================================ */
.content-section {
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
}

.content-section h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--text);
    font-weight: 700;
}

.content-section h3 {
    font-size: 1.15rem;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--primary-light);
    font-weight: 600;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.content-section h3:first-of-type {
    margin-top: 20px;
    border-top: none;
    padding-top: 0;
}

.content-section p {
    margin-bottom: 16px;
    line-height: 1.75;
    color: var(--text-muted);
}

.content-section p:last-child {
    margin-bottom: 0;
}

.content-section ul,
.content-section ol {
    margin: 15px 0 20px 20px;
}

.content-section li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Highlight key paragraphs */
.content-section p strong {
    color: var(--text);
}

.content-section p em {
    color: var(--primary-light);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .content-section {
        padding: 20px 0;
    }

    .content-section h2 {
        font-size: 1.35rem;
        margin-bottom: 15px;
    }

    .content-section h3 {
        font-size: 1.05rem;
        margin-top: 22px;
        margin-bottom: 10px;
        padding-top: 12px;
    }

    .content-section p {
        margin-bottom: 14px;
        line-height: 1.65;
    }
}

/* ================================
   CONTENT GIF STYLES
   ================================ */
.content-gif {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-highlight);
}

.gif-international {
    width: 600px;
    /* Limit width on large screens */
}

.gif-security {
    width: 600px;
}

.gif-methodology {
    width: 600px;
    box-shadow: 0 0 20px rgba(58, 123, 213, 0.3);
    /* Tech glow effect */
}

@media (max-width: 768px) {
    .content-gif {
        margin: 20px auto;
        width: 100%;
    }
}