/* ============================================
   CasinoVa Guide — Global Stylesheet
   Theme: Deep Purple + White + Gold
   Font: Poppins (Google Fonts)
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --purple-dark: #3D0066;
    --purple-medium: #6B21A8;
    --purple-light: #9333EA;
    --purple-glow: rgba(147, 51, 234, 0.35);
    --gold: #FFD700;
    --gold-dark: #B8860B;
    --gold-hover: #e6c200;
    --white: #FFFFFF;
    --off-white: #F3F0FF;
    --dark-card: #1E0033;
    --dark-card-border: rgba(255, 215, 0, 0.15);
    --text-body: #E0D6F2;
    --text-muted: #A78BCC;
    --danger: #EF4444;
    --success: #22C55E;
    --font-main: 'Poppins', sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 0 20px rgba(147, 51, 234, 0.25);
    --shadow-gold: 0 0 16px rgba(255, 215, 0, 0.2);
    --transition: 0.3s ease;
    --max-width: 1200px;
    --nav-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--white);
    background: var(--purple-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--white);
}

h1 { font-size: 3rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(30, 0, 51, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
    z-index: 1000;
    transition: background var(--transition);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo img {
    height: 44px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.nav-cta {
    background: transparent;
    color: var(--gold) !important;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1.5px solid var(--gold);
    cursor: pointer;
    transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--purple-dark) !important;
    box-shadow: var(--shadow-gold);
}

/* Nav Dropdowns */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.nav-arrow {
    font-size: 0.65rem;
    opacity: 0.6;
    transition: transform 0.2s ease;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 210px;
    background: rgba(20, 0, 40, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(147, 51, 234, 0.25);
    border-radius: var(--radius-md);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 1010;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
    margin-top: 8px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem !important;
    font-weight: 500;
    color: var(--text-body) !important;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown-menu a::after {
    display: none !important;
}

.nav-dropdown-menu a:hover {
    background: rgba(147, 51, 234, 0.15);
    color: var(--gold) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

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

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

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

/* ---------- AFFILIATE DISCLOSURE TICKER ---------- */
.disclosure-ticker {
    background: rgba(20, 0, 40, 0.95);
    border-bottom: 1px solid rgba(147, 51, 234, 0.25);
    margin-top: var(--nav-height);
    display: flex;
    align-items: center;
    height: 34px;
    overflow: hidden;
    position: relative;
    z-index: 998;
}

.ticker-track-wrap {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker-scroll 42s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    font-size: 0.78rem;
    color: var(--text-muted);
    padding: 0 80px 0 0;
    flex-shrink: 0;
}

.ticker-item strong {
    color: var(--gold);
}

.ticker-link {
    color: var(--gold) !important;
    font-weight: 600;
}

.ticker-link:hover {
    text-decoration: underline;
}

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

/* ---------- HERO SECTION ---------- */
.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('images/hero-bg.webp') center/cover no-repeat;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30, 0, 51, 0.88) 0%, rgba(61, 0, 102, 0.92) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.15;
}

.hero h1 .gold {
    color: var(--gold);
}

.hero .hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-body);
    margin-bottom: 36px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* SVG Wave Divider */
.wave-divider {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* ---------- REVIEWS HUB HERO ---------- */
.reviews-hub-hero {
    position: relative;
    background: url('../images/hero-bg.webp') center/cover no-repeat;
    padding: calc(var(--nav-height) + 34px + 16px) 0 80px;
    overflow: hidden;
}

.reviews-hub-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(30,0,51,0.92) 0%, rgba(61,0,102,0.88) 60%, rgba(80,0,120,0.82) 100%);
    z-index: 0;
}

.reviews-hub-hero .hero-bg {
    display: none; /* hero-bg is baked into ::before above */
}

.reviews-hub-hero .container {
    position: relative;
    z-index: 1;
}

.reviews-hub-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.reviews-hub-hero-text {
    max-width: 620px;
}

.hub-eyebrow {
    display: inline-block;
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.25);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.reviews-hub-hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

.reviews-hub-hero-text .hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 28px;
}

.hero-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-pill {
    background: rgba(147, 51, 234, 0.2);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 50px;
    padding: 7px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-heading);
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 20px;
}

.hero-meta a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.hero-meta a:hover {
    text-decoration: underline;
}

.hero-meta .meta-sep {
    color: rgba(255,255,255,0.25);
    margin: 0 3px;
}

.reviews-hub-hero-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
}

.hero-stat {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: var(--radius-md);
    padding: 20px 32px;
    text-align: center;
    min-width: 160px;
}

.hero-stat-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---------- REVIEW HUB LAYOUT (TOC + MAIN) ---------- */
.review-hub-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
    padding: 48px 0 80px;
    align-items: start;
}

/* TOC Sidebar */
.hub-toc {
    position: sticky;
    top: calc(var(--nav-height) + 24px);
    align-self: start;
}

.hub-toc-inner {
    background: var(--dark-card);
    border: 1px solid rgba(147, 51, 234, 0.15);
    border-radius: var(--radius-md);
    padding: 24px;
}

.hub-toc-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 16px;
}

.toc-link {
    display: block;
    padding: 7px 12px;
    font-size: 0.83rem;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    border-left: 2px solid transparent;
    transition: color var(--transition), border-color var(--transition), background var(--transition);
    margin-bottom: 2px;
}

.toc-link:hover,
.toc-link.active {
    color: var(--gold);
    border-left-color: var(--gold);
    background: rgba(255, 215, 0, 0.06);
}

/* Hub Main Content */
.hub-main {
    min-width: 0;
}

.hub-main section {
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(147, 51, 234, 0.1);
    margin-bottom: 48px;
}

.hub-main section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.hub-main h2 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-heading);
}

.hub-main h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 10px;
    color: var(--text-heading);
}

.hub-main p {
    font-size: 0.97rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 16px;
}

.hub-main ul li {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 2;
}

/* Hub review summaries */
.hub-review-summary {
    background: var(--dark-card);
    border: 1px solid rgba(147, 51, 234, 0.12);
    border-radius: var(--radius-md);
    padding: 32px;
}

.hub-read-more {
    display: inline-block;
    margin-top: 12px;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
    transition: opacity var(--transition);
}

.hub-read-more:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
    text-align: center;
    line-height: 1.2;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--purple-dark);
    border-color: var(--gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    color: var(--purple-dark);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--purple-dark);
    transform: translateY(-3px);
}

.btn-purple {
    background: linear-gradient(135deg, var(--purple-medium), var(--purple-light));
    color: var(--white);
    border-color: var(--purple-light);
}

.btn-purple:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* ---------- SECTION HEADINGS ---------- */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-header h2 .gold {
    color: var(--gold);
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.gold-line {
    width: 60px;
    height: 4px;
    background: var(--gold);
    border-radius: 4px;
    margin: 16px auto 0;
}

/* ---------- FEATURED CASINOS SECTION ---------- */
.casinos-section {
    background: var(--purple-dark);
    position: relative;
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ---------- CASINO CARD ---------- */
.casino-card {
    background: rgba(30, 0, 51, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
}

.casino-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 20px rgba(147, 51, 234, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
}

.casino-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 40 / 21;
    overflow: hidden;
}

.casino-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        transparent 40%,
        rgba(30, 0, 51, 0.55) 75%,
        rgba(30, 0, 51, 0.9) 100%);
    z-index: 1;
    pointer-events: none;
}

.casino-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.casino-card:hover .casino-card-image img {
    transform: scale(1.04);
}

.casino-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    background: rgba(30, 0, 51, 0.85);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gold);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.casino-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.casino-card-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.casino-card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.stars {
    display: flex;
    gap: 2px;
    color: var(--gold);
    font-size: 0.95rem;
}

.casino-card-bonus {
    background: rgba(147, 51, 234, 0.15);
    border: 1px solid rgba(147, 51, 234, 0.25);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin-bottom: 16px;
    text-align: center;
}

.casino-card-bonus .bonus-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

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

.casino-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.casino-tag {
    font-size: 0.72rem;
    padding: 4px 10px;
    border-radius: 50px;
    background: rgba(147, 51, 234, 0.15);
    color: var(--text-body);
    font-weight: 500;
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.casino-tag.sol-yes {
    background: rgba(34, 197, 94, 0.12);
    color: var(--success);
    border-color: rgba(34, 197, 94, 0.25);
}

.casino-tag.sol-no {
    background: rgba(239, 68, 68, 0.12);
    color: var(--danger);
    border-color: rgba(239, 68, 68, 0.25);
}

.casino-card-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.casino-card-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.review-link {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

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

/* ---------- WHY SOL SECTION ---------- */
.why-sol-section {
    background: var(--off-white);
    color: var(--purple-dark);
}

.why-sol-section .section-header h2 {
    color: var(--purple-dark);
}

.why-sol-section .section-header p {
    color: #5B4A72;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(147, 51, 234, 0.1);
    transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(61, 0, 102, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--purple-dark), var(--purple-medium));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--purple-dark);
}

.feature-card p {
    font-size: 0.9rem;
    color: #5B4A72;
    line-height: 1.6;
}

/* ---------- BLOG CARDS SECTION ---------- */
.blog-section {
    background: var(--purple-dark);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: var(--dark-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(147, 51, 234, 0.15);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

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

.blog-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--purple-dark);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.blog-card-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.35;
}

.blog-card-body h3 a {
    color: var(--white);
}

.blog-card-body h3 a:hover {
    color: var(--gold);
}

.blog-card-excerpt {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 16px;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: auto;
}

.blog-card-meta .author {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-meta .author img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.read-more {
    font-weight: 600;
    color: var(--gold);
    font-size: 0.85rem;
}

.read-more:hover {
    text-decoration: underline;
}

/* ---------- ABOUT SNAPSHOT (HOMEPAGE) ---------- */
.about-snapshot {
    background: var(--purple-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.about-card {
    background: var(--dark-card);
    border: 1px solid rgba(147, 51, 234, 0.15);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: transform var(--transition), border-color var(--transition);
}

.about-card:hover {
    transform: translateY(-4px);
    border-color: rgba(147, 51, 234, 0.35);
}

.about-card-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.about-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.about-cta {
    text-align: center;
}

/* ---------- HOW WE RATE (HOMEPAGE) ---------- */
.how-we-rate {
    background: var(--dark-card);
}

.rating-steps {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.rating-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(147, 51, 234, 0.1);
}

.rating-step:last-child {
    border-bottom: none;
}

.step-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--purple-dark);
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---------- MEET THE AUTHOR (HOMEPAGE) ---------- */
.meet-author {
    background: var(--purple-dark);
}

.author-spotlight {
    display: flex;
    align-items: flex-start;
    gap: 36px;
    max-width: 700px;
    margin: 0 auto;
    background: var(--dark-card);
    border: 1px solid rgba(147, 51, 234, 0.15);
    border-radius: var(--radius-md);
    padding: 40px;
}

.author-spotlight-avatar {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    overflow: hidden;
}

.author-spotlight-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.author-spotlight-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.author-spotlight-title {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 16px;
}

.author-spotlight-info p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 12px;
}

.author-spotlight-info .btn {
    margin-top: 8px;
}

/* ---------- AUTHOR PAGE ---------- */
.author-page-card {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--dark-card);
    border: 1px solid rgba(147, 51, 234, 0.15);
    border-radius: var(--radius-md);
    padding: 40px;
    margin-bottom: 48px;
}

.author-page-avatar {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    overflow: hidden;
}

.author-page-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.author-page-intro h2 {
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.author-page-role {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
}

.author-page-tagline {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.author-articles-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.author-article-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background: var(--dark-card);
    border: 1px solid rgba(147, 51, 234, 0.1);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition), transform var(--transition);
    text-decoration: none;
}

.author-article-link:hover {
    border-color: var(--gold);
    transform: translateX(4px);
}

.article-type {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--purple-dark);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 3px 10px;
    border-radius: 50px;
    flex-shrink: 0;
}

.article-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-heading);
}

/* ---------- ABOUT PAGE ---------- */
.about-team-card {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    background: var(--dark-card);
    border: 1px solid rgba(147, 51, 234, 0.15);
    border-radius: var(--radius-md);
    padding: 32px;
    margin: 24px 0 32px;
}

.about-team-avatar {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    overflow: hidden;
}

.about-team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.about-team-info h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.about-team-role {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
}

.about-team-info p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 10px;
}

.about-team-info a {
    color: var(--gold);
    font-size: 0.88rem;
    font-weight: 600;
}

.scoring-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0 28px;
}

.scoring-category {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 14px 20px;
    background: var(--dark-card);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--gold);
}

.scoring-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gold);
    min-width: 140px;
    flex-shrink: 0;
}

.scoring-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
    background: var(--dark-card);
    border-top: 1px solid rgba(147, 51, 234, 0.15);
    border-bottom: 1px solid rgba(147, 51, 234, 0.15);
    padding: 40px 0;
    text-align: center;
}

.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.trust-badges img {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: opacity var(--transition);
    filter: grayscale(0.3);
}

.trust-badges img:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--dark-card);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 16px;
}

.footer-brand img {
    height: 40px;
    width: auto;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gold);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(147, 51, 234, 0.15);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
    padding: 20px 0;
    border-top: 1px solid rgba(147, 51, 234, 0.1);
    margin-top: 20px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-badges img {
    height: 28px;
    width: auto;
    opacity: 0.6;
}

/* ---------- REVIEW PAGE LAYOUT ---------- */
.review-hero {
    position: relative;
    background: linear-gradient(135deg, #0d0a1a 0%, #1a0a2e 50%, #0f0520 100%);
    overflow: hidden;
}

.review-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 30% 50%, rgba(147, 51, 234, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 75% 30%, rgba(255, 215, 0, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

.review-hero-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    min-height: 420px;
    position: relative;
    z-index: 1;
}

/* Left — text content */
.review-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 48px 60px 0;
}

.review-hero-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 50px;
    padding: 5px 14px;
    margin-bottom: 16px;
}

.review-hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-white);
    margin-bottom: 12px;
}

.review-hero-score {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.review-hero-score .score-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.review-hero-score .score-label {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Quick facts grid */
.review-hero-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 28px;
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.hero-fact {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-right: 1px solid rgba(147, 51, 234, 0.15);
    border-bottom: 1px solid rgba(147, 51, 234, 0.15);
}

.hero-fact:nth-child(3n) {
    border-right: none;
}

.hero-fact:nth-last-child(-n+3) {
    border-bottom: none;
}

.hero-fact-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
}

.hero-fact-value {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-white);
}

.hero-fact-yes {
    color: var(--success);
}

.hero-fact-no {
    color: var(--danger);
}

.review-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.review-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.review-badge.positive {
    border-color: rgba(34, 197, 94, 0.3);
    color: var(--success);
    background: rgba(34, 197, 94, 0.06);
}

.review-badge.negative {
    border-color: rgba(239, 68, 68, 0.3);
    color: var(--danger);
    background: rgba(239, 68, 68, 0.06);
}

.review-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.review-hero-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.review-hero-meta strong {
    color: var(--text-body);
}

/* Right — casino visual */
.review-hero-visual {
    position: relative;
    overflow: hidden;
}

.review-hero-visual::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(to right, #0d0a1a, transparent);
    z-index: 2;
    pointer-events: none;
}

.review-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Tab Bar */
.review-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.score-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gold);
}

.score-label {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Tab Bar */
.review-tabs {
    background: var(--dark-card);
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
    position: sticky;
    top: var(--nav-height);
    z-index: 100;
}

.review-tabs .container {
    display: flex;
    gap: 0;
    overflow-x: auto;
}

.review-tab {
    padding: 16px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    transition: color var(--transition), border-color var(--transition);
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: var(--font-main);
}

.review-tab:hover,
.review-tab.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* Two Column Review Layout */
.review-content {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    padding: 48px 0;
}

.review-main {
    min-width: 0; /* Prevent grid child from overflowing */
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.review-main h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    margin-top: 40px;
    color: var(--gold);
}

.review-main h2:first-child {
    margin-top: 0;
}

.review-main p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.75;
}

/* Pros / Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 24px 0;
}

.pros-list,
.cons-list {
    border-radius: var(--radius-md);
    padding: 24px;
}

.pros-list {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.cons-list {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.pros-list h4,
.cons-list h4 {
    font-size: 1rem;
    margin-bottom: 14px;
}

.pros-list h4 {
    color: var(--success);
}

.cons-list h4 {
    color: var(--danger);
}

.pros-list li,
.cons-list li {
    font-size: 0.9rem;
    color: var(--text-body);
    padding: 6px 0;
    padding-left: 22px;
    position: relative;
}

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

.cons-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--danger);
    font-weight: 700;
}

/* Payment Methods Table */
.payment-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.payment-table th,
.payment-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(147, 51, 234, 0.15);
    font-size: 0.9rem;
}

.payment-table th {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-table td {
    color: var(--text-body);
}

.payment-table tr:hover td {
    background: rgba(147, 51, 234, 0.06);
}

.payment-icon {
    width: 48px;
    height: 32px;
    margin-right: 10px;
    vertical-align: middle;
    border-radius: 6px;
    object-fit: contain;
}

/* Review Sidebar (Sticky) */
.review-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 65px);
    align-self: start;
}

.sidebar-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 24px;
}

.sidebar-card .btn {
    width: 100%;
    margin-bottom: 8px;
}

.sidebar-pros li {
    font-size: 0.85rem;
    color: var(--text-body);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid rgba(147, 51, 234, 0.1);
}

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

.sidebar-bonus-box {
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-sm);
    padding: 16px;
    text-align: center;
    margin-top: 16px;
}

.sidebar-bonus-box .label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

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

/* ---------- MONEY PAGE META BAR ---------- */

.article-meta-bar {
    background: var(--dark-card);
    border-bottom: 1px solid rgba(147, 51, 234, 0.15);
    padding: 12px 0;
}

.article-meta-bar .container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.article-meta-bar a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.article-meta-bar a:hover {
    text-decoration: underline;
}

.meta-sep {
    color: rgba(255,255,255,0.2);
    margin: 0 4px;
}

/* Money page TOC — reuses review-tabs but with a distinct name for clarity */
.article-toc {
    background: var(--dark-card);
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
    position: sticky;
    top: var(--nav-height);
    z-index: 100;
}

.article-toc .container {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.article-toc .container::-webkit-scrollbar {
    display: none;
}

.toc-tab {
    padding: 14px 24px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    transition: color var(--transition), border-color var(--transition);
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: var(--font-main);
    text-decoration: none;
    display: inline-block;
}

.toc-tab:hover,
.toc-tab.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* Money page two-column layout */
.money-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 48px 0;
    align-items: start;
}

.money-main {
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.money-main h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: 48px;
    margin-bottom: 16px;
    padding-top: 8px;
    scroll-margin-top: calc(var(--nav-height) + 58px);
}

.money-main h2:first-child {
    margin-top: 0;
}

.money-main h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 12px;
}

.money-main p {
    font-size: 0.97rem;
    color: var(--text-body);
    line-height: 1.78;
    margin-bottom: 16px;
}

.money-main ul,
.money-main ol {
    color: var(--text-body);
    line-height: 2;
    padding-left: 24px;
    margin-bottom: 16px;
}

.money-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 65px);
    align-self: start;
}

/* scroll-margin for anchor targets on money pages */
.money-section {
    scroll-margin-top: calc(var(--nav-height) + 58px);
}

/* Compact sidebar casino cards for money pages */
.sidebar-casino-compact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--dark-card);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    transition: border-color var(--transition);
}

.sidebar-casino-compact:hover {
    border-color: rgba(255, 215, 0, 0.3);
}

.sidebar-casino-compact .compact-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background: rgba(255, 215, 0, 0.1);
}

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

.sidebar-casino-compact .compact-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.2;
}

.sidebar-casino-compact .compact-bonus {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-casino-compact .compact-cta {
    flex-shrink: 0;
    font-size: 0.7rem;
    font-weight: 700;
    color: #1a0030;
    background: var(--gold);
    padding: 5px 10px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--transition);
}

.sidebar-casino-compact .compact-cta:hover {
    background: var(--gold-hover);
}

.sidebar-casino-tag {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
}

.sidebar-casino-tag.sol-yes {
    background: rgba(0, 200, 83, 0.15);
    color: #4caf50;
}

.sidebar-casino-tag.sol-no {
    background: rgba(255, 82, 82, 0.15);
    color: #ff5252;
}

/* ---------- BLOG PAGE LAYOUT ---------- */

/* Blog Article Layout */
.article-layout {
    background: var(--purple-dark);
    min-height: 100vh;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.article-meta img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

/* Article Two Column */
.article-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    padding: 48px 0;
}

.article-main h2 {
    font-size: 1.5rem;
    margin-top: 36px;
    margin-bottom: 14px;
    color: var(--gold);
}

.article-main h2:first-child {
    margin-top: 0;
}

.article-main h3 {
    font-size: 1.2rem;
    margin-top: 28px;
    margin-bottom: 12px;
}

.article-main p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.8;
}

.article-main ul,
.article-main ol {
    margin: 16px 0;
    padding-left: 24px;
}

.article-main ul li,
.article-main ol li {
    font-size: 0.95rem;
    color: var(--text-body);
    padding: 4px 0;
    list-style: disc;
}

.article-main ol li {
    list-style: decimal;
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 20px);
    align-self: start;
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    margin-bottom: 8px;
}

.sidebar-links li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
    display: block;
    padding: 6px 0;
}

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

.faq-item {
    border: 1px solid rgba(147, 51, 234, 0.15);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 18px 20px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(147, 51, 234, 0.06);
    transition: background var(--transition);
    border: none;
    width: 100%;
    text-align: left;
    color: var(--white);
    font-family: var(--font-main);
}

.faq-question:hover {
    background: rgba(147, 51, 234, 0.12);
}

.faq-question .faq-icon {
    font-size: 1.2rem;
    color: var(--gold);
    transition: transform var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
    padding: 0 20px 20px;
    max-height: 300px;
}

.faq-answer p {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.7;
}

/* ---------- AUTHOR BOX ---------- */
.author-box {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: var(--dark-card);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin: 48px auto;
    max-width: 800px;
}

.author-avatar {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.author-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.author-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px;
}

.author-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.author-bio-text {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* ---------- MODAL (Providers / Countries) ---------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.modal-box {
    background: var(--dark-card);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 32px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(147, 51, 234, 0.2);
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.4);
}

.modal-box h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.modal-list {
    columns: 2;
    column-gap: 24px;
}

.modal-list li {
    font-size: 0.85rem;
    color: var(--text-body);
    padding: 5px 0;
    break-inside: avoid;
}

/* ---------- RELATED CASINOS / ARTICLES ---------- */
.related-section {
    padding: 60px 0;
    border-top: 1px solid rgba(147, 51, 234, 0.15);
}

/* ---------- UTILITY CLASSES ---------- */
.text-muted { color: var(--text-muted); }

/* ---------- RESPONSIVE — TABLET (768px) ---------- */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    /* Reviews hub hero */
    .reviews-hub-hero-inner {
        flex-direction: column;
    }

    .reviews-hub-hero-stats {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .hero-stat {
        min-width: 120px;
        flex: 1;
    }

    /* Reviews hub layout — hide TOC, full width */
    .review-hub-layout {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 0 60px;
    }

    .hub-toc {
        position: static;
        order: -1;
    }

    .hub-toc-inner {
        padding: 16px 20px;
    }

    .hub-toc nav {
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
    }

    .toc-link {
        border-left: none;
        border: 1px solid rgba(147, 51, 234, 0.2);
        border-radius: 50px;
        padding: 5px 12px;
        font-size: 0.75rem;
    }

    .toc-link.active,
    .toc-link:hover {
        border-color: var(--gold);
        background: rgba(255, 215, 0, 0.08);
    }

    .hub-review-summary {
        padding: 24px;
    }

    /* Prevent horizontal overflow on all pages */
    html, body {
        overflow-x: hidden;
    }

    .container {
        overflow-x: hidden;
    }

    /* Make tables scrollable on mobile/tablet */
    .payment-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark-card);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 0 40px;
        gap: 0;
        transition: right var(--transition);
        border-left: 1px solid rgba(147, 51, 234, 0.2);
        overflow-y: auto;
        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links > a,
    .nav-dropdown-toggle {
        display: block;
        font-size: 1.05rem;
        text-align: center;
        padding: 14px 32px;
        border-bottom: 1px solid rgba(147, 51, 234, 0.1);
    }

    /* Mobile dropdowns — expand inline inside burger panel */
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        width: 100%;
        justify-content: center;
    }

    .nav-dropdown-menu {
        position: static !important;
        transform: none !important;
        min-width: 0;
        width: 100%;
        opacity: 1 !important;
        visibility: visible !important;
        background: rgba(10, 0, 20, 0.5);
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        margin: 0;
        backdrop-filter: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 400px;
    }

    .nav-dropdown.open .nav-arrow {
        transform: rotate(180deg);
    }

    .nav-dropdown-menu a {
        display: block;
        padding: 12px 32px;
        font-size: 0.9rem !important;
        text-align: center;
        color: var(--text-muted) !important;
        border-bottom: 1px solid rgba(147, 51, 234, 0.08);
    }

    .nav-dropdown-menu a:hover {
        color: var(--gold) !important;
        background: rgba(147, 51, 234, 0.1);
    }

    .hero {
        min-height: 440px;
        padding: 100px 20px 80px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero .hero-subtitle {
        font-size: 1rem;
    }

    /* Force single-column casino grid on tablet — overrides inline styles */
    .casino-grid {
        grid-template-columns: 1fr !important;
        max-width: 420px !important;
        margin: 0 auto !important;
    }

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

    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

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

    .review-content {
        grid-template-columns: 1fr;
    }

    .review-sidebar {
        position: static;
    }

    .money-layout {
        grid-template-columns: 1fr;
    }

    .money-sidebar {
        position: static;
    }

    /* Review main content — prevent text overflow */
    .review-main {
        min-width: 0;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .review-main p,
    .review-main li,
    .review-main td {
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .article-content {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }

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

    /* Review hero — stack on tablet */
    .review-hero-inner {
        grid-template-columns: 1fr;
    }

    .review-hero-content {
        padding: 48px 0 36px;
    }

    .review-hero-visual {
        min-height: 220px;
        border-left: none;
        border-top: 1px solid rgba(147,51,234,0.2);
    }

    .review-hero-visual::before {
        display: none;
    }

    .review-hero h1 {
        font-size: 1.9rem;
    }

    .score-number {
        font-size: 2.2rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

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

    .author-spotlight {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 32px;
    }

    .author-page-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-team-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .scoring-category {
        flex-direction: column;
        gap: 4px;
    }

    .scoring-label {
        min-width: unset;
    }

    /* Review tab smaller padding on tablet */
    .review-tab {
        padding: 14px 18px;
        font-size: 0.82rem;
    }
}

/* ---------- RESPONSIVE — MOBILE (480px) ---------- */
@media (max-width: 480px) {
    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.4rem; }

    .container {
        padding: 0 16px;
    }

    .hero {
        min-height: 380px;
        padding: 90px 16px 70px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

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

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

    .trust-badges {
        gap: 16px;
    }

    .trust-badges img {
        height: 30px;
    }

    .review-badges {
        flex-direction: column;
        align-items: center;
    }

    /* Review hero — compact on mobile */
    .review-hero-content {
        padding: 36px 0 28px;
    }

    .review-hero h1 {
        font-size: 1.6rem;
    }

    .review-hero-score .score-number {
        font-size: 2.4rem;
    }

    .review-hero-visual {
        min-height: 160px;
    }

    .score-number {
        font-size: 1.8rem;
    }

    /* Review tabs — compact for mobile */
    .review-tab {
        padding: 12px 14px;
        font-size: 0.78rem;
    }

    /* Payment table — prevent cell overflow */
    .payment-table th,
    .payment-table td {
        padding: 10px 8px;
        font-size: 0.78rem;
        white-space: normal;
    }

    .payment-icon {
        width: 36px;
        height: 24px;
        margin-right: 6px;
    }

    /* Sidebar card — tighter padding */
    .sidebar-card {
        padding: 20px;
    }

    .modal-list {
        columns: 1;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .section-padding {
        padding: 48px 0;
    }

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

    .rating-step {
        gap: 16px;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }

    .author-spotlight {
        padding: 24px;
    }

    .author-page-card {
        padding: 24px;
    }

    .about-team-card {
        padding: 24px;
    }

    .author-article-link {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    /* Prevent long words from overflowing on small screens */
    .review-main h2,
    .review-main h3 {
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
    }

    /* Review content gap — tighter on mobile */
    .review-content {
        gap: 24px;
        padding: 32px 0;
    }

    /* Pros/cons text smaller */
    .pros-list li,
    .cons-list li {
        font-size: 0.88rem;
    }
}

/* ---------- BACK TO TOP BUTTON ---------- */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gold);
    color: #0d0a1a;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.2s ease;
}

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

.back-to-top:hover {
    background: #ffe55c;
    box-shadow: 0 6px 24px rgba(255, 215, 0, 0.5);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 16px;
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}
