/*
Theme Name: Slotscope
Theme URI: https://github.com/casino-apex
Author: Danbrav
Author URI: https://google.com/deepmind
Description: A premium, ultra-modern dark glassmorphic WordPress theme designed for high-conversion casino reviews, ratings, comparisons, and blogs.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: casino-apex
Tags: dark, responsive-layout, portfolio, custom-menu, featured-images, translation-ready, theme-options
*/

/* ==========================================================================
   1. IMPORT GOOGLE FONTS & DEFINE VARIABLES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --bg-main: #0B0E14;
    --bg-surface: #131924;
    --bg-surface-elevated: #1D263B;
    --bg-glass: rgba(19, 25, 36, 0.7);
    --border-color: rgba(255, 255, 255, 0.02);
    --border-glow: rgba(139, 92, 246, 0.15);
    
    /* Accents */
    --accent-emerald: #10B981;
    --accent-emerald-glow: rgba(16, 185, 129, 0.3);
    --accent-gold: #F59E0B;
    --accent-gold-glow: rgba(245, 158, 11, 0.3);
    --accent-purple: #8B5CF6;
    --accent-purple-glow: rgba(139, 92, 246, 0.3);
    --accent-blue: #3B82F6;
    --accent-red: #EF4444;
    
    /* Text */
    --text-primary: #F3F4F6;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    
    /* Font Families */
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout Constants */
    --container-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(139, 92, 246, 0.15);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   2. GLOBAL RESETS & SCROLLBAR
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-surface-elevated);
    border-radius: var(--border-radius-sm);
    border: 2px solid var(--bg-main);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-purple);
}

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
}

/* Grid & Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    border-left: none !important;
    border-right: none !important;
    outline: none !important;
}

.section-padding {
    padding: 80px 0;
    border-left: none !important;
    border-right: none !important;
    outline: none !important;
}

section {
    border-left: none !important;
    border-right: none !important;
    outline: none !important;
}

.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-subtle);
}

.single-blog-article {
    background: rgba(19, 25, 36, 0.72);
    border: none;
    border-radius: var(--border-radius-md);
    box-shadow: none;
}

.single-blog-article-inner {
    padding: 40px;
}

/* ==========================================================================
   3A. 404 PAGE
   ========================================================================== */
.page-404 {
    min-height: calc(100vh - 80px);
}

.page-404-shell {
    display: grid;
    gap: 24px;
    padding: 56px;
}

.page-404-hero {
    display: grid;
    gap: 18px;
    max-width: 820px;
}

.page-404-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.14);
    border: 1px solid rgba(139, 92, 246, 0.24);
    color: #d8c9ff;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.page-404-title {
    font-size: clamp(40px, 5vw, 66px);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.page-404-text {
    max-width: 720px;
    color: var(--text-secondary);
    font-size: 18px;
}

.page-404-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 8px;
}

.page-404-search {
    padding: 28px;
}

.page-404-search h2 {
    margin-bottom: 8px;
    font-size: 24px;
}

.page-404-search p {
    margin-bottom: 18px;
    color: var(--text-secondary);
}

.page-404-search form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.page-404-search input[type="search"] {
    flex: 1 1 280px;
    min-height: 52px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
}

.page-404-search input[type="submit"] {
    min-height: 52px;
    padding: 0 22px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-blue));
    color: #fff;
    font-weight: 700;
}

.page-404-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.page-404-link-card {
    display: grid;
    gap: 8px;
    padding: 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition-smooth);
}

.page-404-link-card:hover {
    transform: translateY(-2px);
    border-color: rgba(96, 208, 162, 0.22);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.page-404-link-card span {
    color: var(--text-secondary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.page-404-link-card strong {
    color: #fff;
    font-size: 18px;
}

/* Glowing text and borders */
.glow-text-purple {
    text-shadow: 0 0 10px var(--accent-purple-glow);
}
.glow-text-emerald {
    text-shadow: 0 0 10px var(--accent-emerald-glow);
}
.glow-border {
    border-color: var(--accent-purple);
    box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   3. HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(11, 14, 20, 0.68);
    backdrop-filter: blur(22px) saturate(160%);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.site-logo a {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #FFFFFF 0%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-logo a span {
    background: linear-gradient(135deg, var(--accent-emerald) 0%, #34D399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-navigation ul {
    display: flex;
    gap: 32px;
    align-items: center;
}

.main-navigation {
    background: rgba(19, 25, 36, 0.52);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 10px 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.main-navigation > div > ul,
.main-navigation > ul {
    position: relative;
}

.main-navigation .menu-item {
    position: relative;
}

.main-navigation a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: 999px;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.06);
}

.main-navigation .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    padding: 14px 0 0 0;
    flex-direction: column;
    gap: 4px;
    background: rgba(14, 18, 27, 0.82);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
    z-index: 1000;
}

.main-navigation .sub-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
}

.main-navigation .sub-menu > li {
    background: transparent;
}

.main-navigation .menu-item-has-children:hover > .sub-menu,
.main-navigation .menu-item-has-children:focus-within > .sub-menu {
    display: flex;
}

.main-navigation .sub-menu li {
    width: 100%;
}

.main-navigation .sub-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 14px;
    white-space: nowrap;
}

.main-navigation .sub-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
}

.main-navigation .sub-menu .sub-menu {
    top: 0;
    left: calc(100% + 10px);
}

/* Glowing CTA Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-emerald) 0%, #059669 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px var(--accent-emerald-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.btn-secondary {
    background: var(--bg-surface-elevated);
    color: #FFFFFF;
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: #25304B;
    border-color: var(--accent-purple);
    box-shadow: 0 4px 12px var(--accent-purple-glow);
    transform: translateY(-2px);
}

.btn-vip {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #D97706 100%);
    color: #000000;
    box-shadow: 0 4px 15px var(--accent-gold-glow);
    font-weight: 700;
}

.btn-vip:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 24px;
    cursor: pointer;
}

/* ==========================================================================
   4. HOMEPAGE HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 100px 0 140px 0;
    background: radial-gradient(circle at 50% -20%, rgba(139, 92, 246, 0.15) 0%, rgba(11, 14, 20, 0) 60%),
                radial-gradient(circle at 10% 40%, rgba(16, 185, 129, 0.05) 0%, rgba(11, 14, 20, 0) 40%);
    overflow: hidden;
}


.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at 50% 50%, black, transparent);
    z-index: 0;
    pointer-events: none;}

.hero-star-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-burst-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-burst-item {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(var(--radius) * -1)) rotate(var(--tilt));
    transform-origin: center;
    padding: 0;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.98);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    text-shadow:
        0 0 10px rgba(196, 181, 253, 0.26),
        0 0 18px rgba(139, 92, 246, 0.18),
        0 0 26px rgba(110, 231, 183, 0.12);
    opacity: 0;
    will-change: transform, opacity, filter;
    animation: hero-burst-ring 1180ms cubic-bezier(0.16, 0.82, 0.18, 1) forwards;
    animation-delay: var(--delay);
    animation-fill-mode: forwards;
    white-space: nowrap;
    mix-blend-mode: screen;
}

.hero-burst-item--reverse {
    letter-spacing: 0.19em;
}

.hero-burst-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 220%;
    height: 220%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(139, 92, 246, 0.10), rgba(11, 14, 20, 0) 66%);
    filter: blur(14px);
    z-index: -1;
    opacity: 0.85;
}

.hero-click-burst-active .hero-burst-layer {
    opacity: 1;
}

@keyframes hero-burst-ring {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(0) rotate(var(--tilt)) scale(0.52);
        filter: blur(1.5px);
    }
    18% {
        opacity: 1;
    }
    60% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(var(--radius) * -1.02)) rotate(var(--tilt)) scale(var(--scale, 1));
        filter: blur(0);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(var(--radius) * -1.24)) rotate(var(--tilt)) scale(calc(var(--scale, 1) * 1.05));
        filter: blur(0.6px);
    }
}

.hero-star {
    position: absolute;
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
    filter: drop-shadow(0 0 8px rgba(196, 181, 253, 0.45));
    animation: hero-star-fly 650ms ease-out forwards;
}

.hero-star::before,
.hero-star::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2px;
    height: 10px;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    background: linear-gradient(180deg, rgba(255,255,255,1), rgba(139, 92, 246, 0.75));
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.hero-star::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.hero-star--burst {
    width: 14px;
    height: 14px;
    filter: drop-shadow(0 0 14px rgba(110, 231, 183, 0.5));
}

.hero-star--burst::before,
.hero-star--burst::after {
    background: linear-gradient(180deg, rgba(255,255,255,1), rgba(110, 231, 183, 0.85));
}

@keyframes hero-star-fly {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(var(--rot, 0deg)) scale(0.6);
    }
    20% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(calc(-50% + var(--dx, 0px)), calc(-50% + var(--dy, -18px))) rotate(calc(var(--rot, 0deg) + 35deg)) scale(0.95);
    }
}

.hero-container {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-container {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    color: #C084FC;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-badge span {
    width: 6px;
    height: 6px;
    background-color: var(--accent-emerald);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-emerald);
    animation: pulse-glow 2s infinite;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title span {
    background: linear-gradient(135deg, #6EE7B7 0%, #3B82F6 50%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.taxonomy-hub-shell .hero-description,
.taxonomy-hub-shell .hero-description p,
.bonuses-page-content .rich-post-content,
.bonuses-page-content .rich-post-content p,
.bonuses-page-content .rich-post-content li {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.taxonomy-hub-shell .hero-description {
    max-width: 100%;
}

/* Hero Search / Filter */
.hero-search-wrapper {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    background: rgba(19, 25, 36, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.hero-search-wrapper svg {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    margin-top: 0;
    transform: translateY(0);
    color: var(--text-muted);
    opacity: 0.95;
}

.hero-search-wrapper input {
    flex-grow: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 16px;
    padding-left: 0;
    min-height: 20px;
    line-height: 1.2;
}

.hero-search-wrapper input::placeholder {
    color: var(--text-muted);
}

.hero-search-wrapper button {
    background: var(--accent-purple);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    transition: var(--transition-smooth);
}

.hero-search-wrapper button:hover {
    background: #7C3AED;
    transform: scale(1.03);
}

.hero-search-form {
    width: 100%;
}

.hero-search-note {
    margin-top: 14px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}

/* ==========================================================================
   5. TOP FEATURED CASINOS (CARDS)
   ========================================================================== */
.section-title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.section-title-wrap h2 {
    font-size: 32px;
    font-weight: 800;
}

.section-title-wrap p {
    color: var(--text-secondary);
    margin-top: 8px;
}

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

.featured-card {
    position: relative;
    background: linear-gradient(180deg, rgba(29, 38, 59, 0.4) 0%, rgba(19, 25, 36, 0.6) 100%);
    border: none !important;
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: var(--transition-smooth);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.4), transparent);
    transition: var(--transition-smooth);
}

.featured-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: var(--shadow-glow);
}

.featured-card:hover::before {
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-emerald));
}

/* ==========================================================================
   HOMEPAGE EDITORIAL CARDS
   ========================================================================== */
.homepage-editorial-section {
    background: transparent;
}

.homepage-editorial-stream {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.homepage-editorial-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.homepage-editorial-entry {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding: 30px 30px 28px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(139, 92, 246, 0.14) 0%, rgba(139, 92, 246, 0) 34%),
        radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.11) 0%, rgba(16, 185, 129, 0) 30%),
        linear-gradient(180deg, rgba(25, 32, 49, 0.96) 0%, rgba(14, 18, 28, 0.98) 100%);
    border: 1px solid rgba(137, 150, 192, 0.18);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.homepage-editorial-entry::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
    opacity: 0.6;
    pointer-events: none;
}

.homepage-editorial-entry::after {
    content: '';
    position: absolute;
    top: 18px;
    right: 18px;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, rgba(139, 92, 246, 0) 72%);
    pointer-events: none;
}

.homepage-editorial-entry:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 179, 220, 0.3);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
}

.homepage-editorial-entry:nth-child(2n) {
    background:
        radial-gradient(circle at top left, rgba(16, 185, 129, 0.13) 0%, rgba(16, 185, 129, 0) 34%),
        radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0) 30%),
        linear-gradient(180deg, rgba(24, 30, 45, 0.96) 0%, rgba(13, 17, 27, 0.98) 100%);
}

.homepage-editorial-entry:nth-child(3n) {
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.13) 0%, rgba(245, 158, 11, 0) 34%),
        radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0) 30%),
        linear-gradient(180deg, rgba(26, 29, 43, 0.96) 0%, rgba(13, 17, 27, 0.98) 100%);
}

.homepage-editorial-entry > * {
    position: relative;
    z-index: 1;
}

.homepage-editorial-block h2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.homepage-editorial-block h2::after {
    content: 'SlotScope';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.14);
    border: 1px solid rgba(139, 92, 246, 0.22);
    color: #d8c9ff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.homepage-editorial-content {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
}

.homepage-editorial-content p {
    margin-bottom: 16px;
}

.homepage-editorial-content p:last-child {
    margin-bottom: 0;
}

.homepage-editorial-content ul,
.homepage-editorial-content ol {
    display: grid;
    gap: 10px;
    margin: 18px 0;
    padding-left: 0;
    list-style: none;
}

.homepage-editorial-content li {
    position: relative;
    padding: 14px 16px 14px 44px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.homepage-editorial-content li::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-purple));
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.08);
}

.homepage-editorial-content strong {
    color: #ffffff;
}

.homepage-editorial-content a {
    color: #8be7c5;
}

.homepage-editorial-content a:hover {
    color: #b4f2de;
}

.hub-content-card-stream {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hub-content-card,
.hub-editorial-block,
.casino-archive-editor-panel {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 30px 30px 28px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(139, 92, 246, 0.12) 0%, rgba(139, 92, 246, 0) 34%),
        radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0) 30%),
        linear-gradient(180deg, rgba(22, 28, 42, 0.96) 0%, rgba(13, 17, 27, 0.98) 100%);
    border: 1px solid rgba(137, 150, 192, 0.18);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.hub-content-card::before,
.hub-editorial-block::before,
.casino-archive-editor-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
    opacity: 0.6;
    pointer-events: none;
}

.hub-content-card::after,
.hub-editorial-block::after,
.casino-archive-editor-panel::after {
    content: '';
    position: absolute;
    top: 18px;
    right: 18px;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, rgba(139, 92, 246, 0) 72%);
    pointer-events: none;
}

.hub-content-card:nth-child(2n),
.hub-editorial-block:nth-child(2n),
.casino-archive-editor-panel:nth-child(2n) {
    background:
        radial-gradient(circle at top left, rgba(16, 185, 129, 0.13) 0%, rgba(16, 185, 129, 0) 34%),
        radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0) 30%),
        linear-gradient(180deg, rgba(24, 30, 45, 0.96) 0%, rgba(13, 17, 27, 0.98) 100%);
}

.hub-content-card:nth-child(3n),
.hub-editorial-block:nth-child(3n),
.casino-archive-editor-panel:nth-child(3n) {
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.13) 0%, rgba(245, 158, 11, 0) 34%),
        radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0) 30%),
        linear-gradient(180deg, rgba(26, 29, 43, 0.96) 0%, rgba(13, 17, 27, 0.98) 100%);
}

.hub-content-card-head {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hub-content-card-kicker {
    display: inline-flex;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.14);
    border: 1px solid rgba(139, 92, 246, 0.22);
    color: #d8c9ff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hub-content-card-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hub-content-card-body {
    position: relative;
    z-index: 1;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
}

.hub-content-card-body p {
    margin-bottom: 16px;
}

.hub-content-card-body p:last-child {
    margin-bottom: 0;
}

.hub-content-card-body ul,
.hub-content-card-body ol {
    display: grid;
    gap: 10px;
    margin: 18px 0;
    padding-left: 0;
    list-style: none;
}

.hub-content-card-body li {
    position: relative;
    padding: 14px 16px 14px 44px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.hub-content-card-body li::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-purple));
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.08);
}

.hub-content-card-body strong {
    color: #ffffff;
}

.hub-content-card-body a {
    color: #8be7c5;
}

.hub-content-card-body a:hover {
    color: #b4f2de;
}

/* VIP Ribbon */
.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: var(--accent-gold);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-logo {
    width: 80px;
    height: 80px;
    background: var(--bg-surface-elevated);
    border: none !important;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    color: #FFFFFF;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
}

.card-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-title {
    font-size: 22px;
    margin-bottom: 8px;
}

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

.rating-score {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-emerald);
    border: 1px solid rgba(16, 185, 129, 0.2);
    font-size: 14px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: var(--border-radius-sm);
}

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

.card-bonus {
    background: rgba(255, 255, 255, 0.03);
    border: none !important;
    border-radius: var(--border-radius-sm);
    padding: 16px;
    text-align: center;
    margin-bottom: 24px;
}

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

.card-bonus-val {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: #FFFFFF;
}

.card-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.card-features li svg {
    color: var(--accent-emerald);
    flex-shrink: 0;
}

/* ==========================================================================
   6. CASINO COMPARISON TABLE
   ========================================================================== */
.comparison-table-wrap {
    overflow-x: auto;
    margin-top: 30px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th {
    background: var(--bg-surface-elevated);
    padding: 18px 24px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table th:first-child {
    border-top-left-radius: var(--border-radius-md);
}
.comparison-table th:last-child {
    border-top-right-radius: var(--border-radius-md);
}

.comparison-table td {
    padding: 24px;
    background: rgba(19, 25, 36, 0.4);
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
    transition: var(--transition-smooth);
}

.comparison-table tr:last-child td:first-child {
    border-bottom-left-radius: var(--border-radius-md);
}
.comparison-table tr:last-child td:last-child {
    border-bottom-right-radius: var(--border-radius-md);
}

.comparison-table tr:hover td {
    background: rgba(29, 38, 59, 0.4);
}

/* Table Row Details */
.table-casino-identity {
    display: flex;
    align-items: center;
    gap: 16px;
}

.table-logo {
    width: 60px;
    height: 60px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
}

.table-casino-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.table-casino-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--accent-gold);
}

.table-bonus-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
}

.table-bonus-col p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.table-payment-icons {
    display: flex;
    gap: 8px;
}

.payment-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.table-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.table-actions .btn {
    padding: 10px 20px;
    font-size: 14px;
    width: 140px;
}

.review-link {
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
    width: 140px;
    display: inline-block;
}

.review-link:hover {
    color: var(--accent-purple);
    text-decoration: underline;
}

/* ==========================================================================
   7. SINGLE CASINO DETAILS PAGE (single-casino.php)
   ========================================================================== */
.casino-review-hero {
    position: relative;
    padding: 80px 0;
    background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, rgba(11, 14, 20, 0) 50%),
                linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-main) 100%);
    border-bottom: 1px solid var(--border-color);
}

.casino-review-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.review-header-flex {
    display: flex;
    gap: 32px;
    align-items: center;
}

.review-hero-logo {
    width: 120px;
    height: 120px;
    background: var(--bg-surface-elevated);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    flex-shrink: 0;
}

.review-hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.review-hero-details h1 {
    font-size: 40px;
    margin-bottom: 12px;
}

.review-quick-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
}

.meta-item-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 50px;
}

.rating-radial-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Circular Rating Dial */
.rating-circle-box {
    position: relative;
    width: 80px;
    height: 80px;
}

.rating-circle-svg {
    transform: rotate(-90deg);
}

.rating-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 6;
}

.rating-circle-fill {
    fill: none;
    stroke: var(--accent-emerald);
    stroke-width: 6;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease-in-out;
}

.rating-circle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: #FFFFFF;
}

/* Breakdown Grid */
.ratings-breakdown-card {
    padding: 32px;
    margin-bottom: 30px;
}

.breakdown-row {
    margin-bottom: 20px;
}

.breakdown-row:last-child {
    margin-bottom: 0;
}

.breakdown-label-wrap {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.breakdown-label {
    font-weight: 600;
    color: var(--text-secondary);
}

.breakdown-score {
    font-weight: 700;
    color: #FFFFFF;
}

.breakdown-bar-track {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.breakdown-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-emerald));
    border-radius: 4px;
    width: 0;
    transition: width 1s ease-out;
}

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

.pros-box, .cons-box {
    padding: 24px;
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
}

.pros-box {
    border-left: 4px solid var(--accent-emerald);
}

.cons-box {
    border-left: 4px solid var(--accent-red);
}

.pros-box h3, .cons-box h3 {
    font-size: 18px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pros-box ul li, .cons-box ul li {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
}

.pros-box ul li svg {
    color: var(--accent-emerald);
    flex-shrink: 0;
    margin-top: 3px;
}

.cons-box ul li svg {
    color: var(--accent-red);
    flex-shrink: 0;
    margin-top: 3px;
}

/* ==========================================================================
   PROVIDER REVIEW PAGES (single-provider.php / archive-provider.php)
   ========================================================================== */
.provider-review-grid {
    align-items: start;
}

.provider-review-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-self: start;
    position: sticky;
    top: 120px;
}

.provider-overview-panel {
    padding: 28px;
    margin: 30px 0;
}

.provider-feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.provider-feature-tags span {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(139, 92, 246, 0.28);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.10), rgba(99, 102, 241, 0.10));
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.provider-facts-card {
    padding: 28px;
}

.provider-facts-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.provider-facts-list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
}

.provider-facts-list strong {
    color: #ffffff;
    flex-shrink: 0;
}

.provider-games-section {
    padding: 28px;
    margin: 30px 0;
}

.provider-carousel-shell {
    overflow-x: auto;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
}

.provider-carousel-track {
    display: flex;
    gap: 18px;
    min-width: max-content;
}

.provider-carousel-track .featured-card {
    width: 320px;
    flex: 0 0 320px;
}

.provider-card {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 100%;
}

.provider-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.provider-card-logo {
    width: 84px;
    height: 84px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.03);
    flex-shrink: 0;
}

.provider-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.provider-card-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(16, 185, 129, 0.25);
    background: rgba(16, 185, 129, 0.10);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.provider-card-rating span {
    color: #fbbf24;
}

.provider-card-title {
    font-size: 24px;
    margin: 0;
}

.provider-card-title a {
    color: #ffffff;
}

.provider-card-excerpt {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.75;
}

.provider-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.provider-card-meta span {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    font-size: 13px;
}

.provider-card-actions {
    margin-top: auto;
}

.provider-card-actions .btn {
    width: 100%;
    justify-content: center;
}

.provider-archive-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

/* Detailed Content */
.rich-post-content {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.rich-post-content h2, 
.rich-post-content h3 {
    color: #FFFFFF;
    margin: 36px 0 16px 0;
}

.rich-post-content p {
    margin-bottom: 20px;
}

/* FAQ Accordion */
.hub-faq-section {
    padding: clamp(24px, 3vw, 36px);
    background: linear-gradient(180deg, rgba(19, 25, 36, 0.96), rgba(17, 22, 33, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.hub-faq-accordion {
    margin-top: 12px;
    display: grid;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.faq-item:hover {
    transform: translateY(-1px);
    border-color: rgba(141, 97, 255, 0.18);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.faq-question {
    padding: 22px 26px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.35;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question span {
    flex: 0 0 auto;
    opacity: 0.72;
}

.faq-answer {
    padding: 0 26px;
    max-height: 0;
    overflow: hidden;
    color: var(--text-secondary);
    line-height: 1.75;
    transition: max-height 0.32s ease;
}

.faq-item.active {
    border-color: rgba(141, 97, 255, 0.28);
    background: linear-gradient(180deg, rgba(141, 97, 255, 0.05), rgba(255, 255, 255, 0.025));
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.faq-item.active .faq-answer {
    padding: 0 26px 22px 26px;
    max-height: 500px;
}

.hub-faq-title {
    margin-bottom: 8px;
    padding: 0 4px;
}

.hub-faq-title h2 {
    margin: 0;
}

/* Sticky Playbar for Mobile */
.mobile-sticky-playbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(19, 25, 36, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    padding: 16px 24px;
    z-index: 999;
    display: none;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   8. BLOG GRID & SINGLE POSTS
   ========================================================================== */
.blog-home {
    padding: 36px 0 84px;
}

.blog-home-hero {
    padding: 44px 0 28px;
}

.blog-home-shell {
    max-width: 1280px;
}

.blog-home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.9fr);
    gap: 36px;
    align-items: start;
}

.blog-home-hero-copy {
    padding-top: 16px;
}

.blog-home-title {
    max-width: 12ch;
}

.blog-home-description {
    max-width: 58ch;
}

.blog-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.blog-home-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.blog-home-pill {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
}

.blog-home-pill:hover {
    color: #FFFFFF;
    border-color: rgba(139, 92, 246, 0.35);
    background: rgba(139, 92, 246, 0.08);
}

.blog-home-hero-panel {
    padding: 28px;
}

.blog-home-stats {
    display: grid;
    gap: 12px;
}

.blog-home-stat {
    padding: 18px 16px;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
}

.blog-home-stat strong {
    display: block;
    font-size: 32px;
    line-height: 1;
    color: #FFFFFF;
    font-family: var(--font-heading);
    margin-bottom: 6px;
}

.blog-home-stat span {
    font-size: 13px;
    color: var(--text-secondary);
}

.blog-home-featured {
    padding: 12px 0 0;
}

.blog-home-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(290px, 0.85fr);
    gap: 36px;
    align-items: start;
}

.blog-home-main {
    min-width: 0;
}

.blog-featured-card {
    overflow: hidden;
    margin-bottom: 36px;
}

.blog-featured-thumb {
    position: relative;
    aspect-ratio: 16 / 8;
    overflow: hidden;
    background: var(--bg-surface-elevated);
}

.blog-featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-featured-thumb-placeholder,
.blog-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.14), rgba(16, 185, 129, 0.08));
}

.blog-featured-body {
    padding: 28px;
}

.blog-featured-title {
    font-size: 30px;
    line-height: 1.2;
    margin: 12px 0 14px;
}

.blog-featured-title a {
    color: #FFFFFF;
}

.blog-featured-excerpt {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.blog-home-posts-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 18px;
}

.blog-home-posts-header h2 {
    font-size: 32px;
    line-height: 1.15;
    max-width: 14ch;
}

.blog-home-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-home-sidebar {
    position: sticky;
    top: 28px;
    display: grid;
    gap: 24px;
}

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

.blog-sidebar-cats {
    display: grid;
    gap: 10px;
}

.blog-sidebar-cats li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: #FFFFFF;
    transition: var(--transition-smooth);
}

.blog-sidebar-cats li a:hover {
    border-color: rgba(16, 185, 129, 0.35);
    background: rgba(16, 185, 129, 0.07);
    transform: translateY(-1px);
}

.blog-sidebar-cats strong {
    color: var(--accent-gold);
    font-family: var(--font-heading);
}

.blog-sidebar-links {
    display: grid;
    gap: 10px;
}

.blog-sidebar-links a {
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.blog-sidebar-links a:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 92, 246, 0.35);
}

.blog-empty-state {
    padding: 48px;
    text-align: center;
    border-radius: var(--border-radius-md);
}

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

.blog-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.25);
    box-shadow: var(--shadow-glow);
}

.blog-thumb {
    height: 200px;
    background: var(--bg-surface-elevated);
    overflow: hidden;
    position: relative;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.blog-card-content {
    padding: 24px;
}

.blog-tag {
    display: inline-block;
    background: rgba(139, 92, 246, 0.1);
    color: #A78BFA;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.blog-card-title {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.blog-meta-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    font-size: 12px;
    color: var(--text-muted);
}

/* Sidebar Widgets */
.sidebar-widget {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-purple);
}

.sidebar-casinos-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 16px;
}

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

/* ==========================================================================
   8B. SEARCH RESULTS PAGE
   ========================================================================== */
.search-results-page {
    padding: 44px 0 84px;
}

.search-results-shell {
    max-width: 1280px;
}

.search-results-hero {
    padding: 20px 0 32px;
}

.search-results-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
    gap: 34px;
    align-items: start;
}

.search-results-title {
    max-width: 14ch;
}

.search-results-description {
    max-width: 58ch;
}

.search-results-panel {
    padding: 28px;
}

.search-results-form {
    display: grid;
    gap: 12px;
}

.search-results-form input[type="search"] {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: #FFFFFF;
}

.search-results-content {
    padding-top: 10px;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.search-result-card {
    padding: 26px;
}

.search-result-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.search-result-date {
    color: var(--text-muted);
    font-size: 12px;
}

.search-result-title {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 12px;
}

.search-result-title a {
    color: #FFFFFF;
}

.search-result-excerpt {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 18px;
}

.search-empty-state {
    padding: 48px;
    text-align: center;
}

/* ==========================================================================
   9. FOOTER SECTION & RESPONSIBLE GAMING
   ========================================================================== */
.site-footer {
    background: #070A10;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px 0;
    color: var(--text-secondary);
}

.footer-glass-panel {
    background: rgba(19, 25, 36, 0.52);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.footer-glass-panel.footer-grid,
.footer-glass-panel.footer-bottom {
    border-radius: var(--border-radius-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 18px;
    padding: 28px 32px 20px;
}

.footer-about p {
    font-size: 14px;
    margin-top: 16px;
    margin-bottom: 24px;
    max-width: 340px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
}

.social-icon:hover {
    background: var(--accent-purple);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.footer-links-title {
    font-size: 16px;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.footer-menu li {
    margin-bottom: 12px;
    position: relative;
}

.footer-menu a {
    font-size: 14px;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-menu a:hover {
    color: #FFFFFF;
    transform: translateX(4px);
}

.footer-menu .sub-menu {
    display: none;
    margin-top: 10px;
    margin-left: 14px;
    padding: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
}

.footer-menu li:hover > .sub-menu,
.footer-menu li:focus-within > .sub-menu {
    display: block;
}

.footer-menu .sub-menu li {
    margin-bottom: 8px;
}

.footer-menu .sub-menu a {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-menu .sub-menu a:hover {
    color: #FFFFFF;
}

/* Responsible Gaming Compliance */
.responsible-gaming-banner {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.rg-badge-18 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-red);
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
}

.rg-text h4 {
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.rg-text p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom {
    border-top: none;
    margin-top: 6px;
    padding: 14px 32px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

/* ==========================================================================
   10. RESPONSIVE MEDIA QUERIES
   ========================================================================== */

.casino-banner-wrap {
    margin: 28px 0;
}

.casino-banner {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
    background:
        radial-gradient(circle at top left, rgba(139, 92, 246, 0.14) 0%, rgba(139, 92, 246, 0) 34%),
        linear-gradient(180deg, rgba(20, 27, 43, 0.98) 0%, rgba(12, 16, 26, 0.98) 100%);
}

.casino-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0));
    pointer-events: none;
}

.casino-banner::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -20px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(110, 231, 183, 0.16) 0%, rgba(110, 231, 183, 0) 68%);
    pointer-events: none;
}

.casino-banner--emerald {
    background:
        radial-gradient(circle at top left, rgba(16, 185, 129, 0.16) 0%, rgba(16, 185, 129, 0) 34%),
        linear-gradient(180deg, rgba(18, 34, 31, 0.98) 0%, rgba(12, 16, 26, 0.98) 100%);
}

.casino-banner--gold {
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.16) 0%, rgba(245, 158, 11, 0) 34%),
        linear-gradient(180deg, rgba(35, 28, 16, 0.98) 0%, rgba(12, 16, 26, 0.98) 100%);
}

.casino-banner--violet {
    background:
        radial-gradient(circle at top left, rgba(139, 92, 246, 0.16) 0%, rgba(139, 92, 246, 0) 34%),
        linear-gradient(180deg, rgba(24, 19, 40, 0.98) 0%, rgba(12, 16, 26, 0.98) 100%);
}

.casino-banner--left .casino-banner-body,
.casino-banner--right .casino-banner-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.casino-banner--left .casino-banner-copy,
.casino-banner--right .casino-banner-copy {
    flex: 1 1 auto;
    min-width: 0;
}

.casino-banner-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.16);
    border: 1px solid rgba(110, 231, 183, 0.25);
    color: #d7ffef;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.casino-banner-title {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(22px, 2.6vw, 32px);
    line-height: 1.12;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.casino-banner-text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.casino-banner-text p {
    margin: 0;
}

.casino-banner-promo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}

.casino-banner-promo-label {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.casino-banner-promo-code {
    appearance: none;
    border: none;
    background: linear-gradient(135deg, rgba(110, 231, 183, 0.18), rgba(139, 92, 246, 0.18));
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.casino-banner-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
}

.casino-banner-cta {
    min-width: 170px;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.96), rgba(139, 92, 246, 0.96));
    color: #FFFFFF;
    box-shadow: 0 10px 24px rgba(99, 102, 241, 0.28);
}

.casino-banner-cta:hover {
    background: linear-gradient(135deg, rgba(109, 112, 255, 1), rgba(147, 95, 255, 1));
    box-shadow: 0 12px 28px rgba(99, 102, 241, 0.34);
}

.homepage-banner-widget-area {
    padding-top: 4px;
    padding-bottom: 8px;
}

.homepage-banner-widget {
    margin-bottom: 18px;
}

.homepage-banner-widget:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .casino-banner {
        padding: 22px;
        border-radius: 22px;
    }

    .casino-banner--left .casino-banner-body,
    .casino-banner--right .casino-banner-body {
        flex-direction: column;
        align-items: flex-start;
    }

    .casino-banner-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .casino-banner-cta {
        width: 100%;
        min-width: 0;
    }
}

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

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

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

    .provider-review-sidebar {
        position: static;
    }

    .provider-archive-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-home-hero-grid,
    .blog-home-grid {
        grid-template-columns: 1fr;
    }

    .blog-home-sidebar {
        position: static;
    }

    .search-results-hero-grid,
    .search-results-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-navigation {
        display: none; /* In production JS toggles menu class */
    }
    .menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .featured-grid, .blog-grid {
        grid-template-columns: 1fr;
    }

    .homepage-editorial-entry {
        padding: 24px 22px 22px;
        border-radius: 24px;
    }

    .homepage-editorial-content {
        font-size: 15px;
    }

    .homepage-editorial-content li {
        padding: 13px 14px 13px 40px;
    }

    .hub-content-card,
    .hub-editorial-block,
    .casino-archive-editor-panel {
        padding: 24px 22px 22px;
        border-radius: 24px;
    }

    .hub-content-card-body {
        font-size: 15px;
    }

    .hub-content-card-body li {
        padding: 13px 14px 13px 40px;
    }

    .blog-home {
        padding-top: 18px;
    }

    .blog-home-title {
        max-width: 100%;
    }

    .blog-home-post-grid {
        grid-template-columns: 1fr;
    }

    .provider-carousel-track .featured-card {
        width: 300px;
        flex: 0 0 300px;
    }

    .blog-home-posts-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .search-results-page {
        padding-top: 24px;
    }

    .search-results-title {
        max-width: 100%;
    }
    
    .section-title-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    /* Comparison Table Responsive transformation to cards */
    .comparison-table, .comparison-table tbody, .comparison-table tr, .comparison-table td, .comparison-table th {
        display: block;
    }
    .comparison-table thead {
        display: none;
    }
    .comparison-table tr {
        background: rgba(19, 25, 36, 0.6);
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius-md);
        margin-bottom: 20px;
        padding: 16px;
    }
    .comparison-table td {
        border-bottom: none;
        padding: 12px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .comparison-table td::before {
        content: attr(data-label);
        font-weight: 700;
        font-size: 13px;
        color: var(--text-secondary);
        text-transform: uppercase;
    }
    .table-actions {
        align-items: stretch;
        width: 100%;
    }
    .table-actions .btn, .review-link {
        width: 100%;
        text-align: center;
    }
    
    /* Review Single page adjustments */
    .casino-review-grid {
        grid-template-columns: 1fr;
    }
    
    .review-header-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .review-quick-meta {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

    .page-hero-grid {
        grid-template-columns: 1fr;
    }

    .page-shell-grid {
        grid-template-columns: 1fr;
    }

    .slot-single-grid {
        grid-template-columns: 1fr !important;
    }

    .page-hero-title {
        max-width: none;
    }

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

    .page-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .page-content-panel {
        padding: 0;
    }

    .page-content-panel-inner {
        padding: 28px;
    }

    .page-content-panel-aside {
        padding: 22px;
    }

    .provider-games-section,
    .provider-overview-panel,
    .provider-facts-card,
    .provider-card {
        padding: 20px;
    }

    .provider-carousel-track {
        gap: 14px;
    }

    .provider-carousel-track .featured-card {
        width: 280px;
        flex: 0 0 280px;
    }

    .provider-card-title {
        font-size: 20px;
    }

    .provider-facts-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .provider-archive-cards {
        grid-template-columns: 1fr;
    }

    .casino-shortcode-stats {
        grid-template-columns: 1fr;
    }

    .casino-shortcode-rating {
        padding: 22px;
    }
    
    .mobile-sticky-playbar {
        display: flex;
    }
    
    body {
        padding-bottom: 80px; /* space for playbar */
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .responsible-gaming-banner {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Animations */
@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.4;
        box-shadow: 0 0 2px var(--accent-emerald);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 10px var(--accent-emerald);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   11. WAGER CALCULATOR WIDGET
   ========================================================================== */
.wager-calc-box {
    animation: fade-in-up 0.4s ease both;
}

.wager-calc-box input[type="number"] {
    transition: var(--transition-smooth);
}

.wager-calc-box input[type="number"]:focus {
    border-color: var(--accent-purple) !important;
    box-shadow: 0 0 0 3px var(--accent-purple-glow);
}

.wager-calc-box input[type="checkbox"] {
    accent-color: var(--accent-purple);
}

/* ==========================================================================
   12. PROMO CODE COPY BUTTON & MODAL
   ========================================================================== */
.meta-item-pill[title="Click to Copy Promo Code"] {
    position: relative;
    user-select: none;
}

.meta-item-pill[title="Click to Copy Promo Code"]::after {
    content: '📋 Click to copy';
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 4px 10px;
    font-size: 11px;
    color: var(--text-muted);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.meta-item-pill[title="Click to Copy Promo Code"]:hover::after {
    opacity: 1;
}

/* ==========================================================================
   13. RICH POST CONTENT: BLOCKQUOTE STYLING
   ========================================================================== */
.rich-post-content blockquote {
    border-left: 4px solid var(--accent-purple);
    padding: 18px 22px;
    margin: 28px 0;
    background: rgba(139, 92, 246, 0.08);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    color: #FFFFFF;
    font-style: italic;
    font-size: 15px;
    line-height: 1.7;
}

.rich-post-content h2 {
    font-size: 28px;
    scroll-margin-top: 120px;
}

.rich-post-content h3 {
    font-size: 22px;
    scroll-margin-top: 120px;
}

.rich-post-content a {
    color: var(--accent-purple);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.rich-post-content a:hover {
    color: #A78BFA;
}

.rich-post-content ul,
.rich-post-content ol {
    margin: 0 0 20px 0;
    padding-left: 0;
    list-style: none;
}

.rich-post-content li {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.6;
}

.rich-post-content strong {
    color: #FFFFFF;
}

.rich-post-content > :first-child {
    margin-top: 0;
}

.rich-post-content > :last-child {
    margin-bottom: 0;
}

.rich-post-content table,
.rich-post-content .wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    background: rgba(19, 25, 36, 0.58);
}

.rich-post-content .wp-block-table {
    overflow-x: auto;
    margin: 28px 0;
}

.rich-post-content table th,
.rich-post-content table td,
.rich-post-content .wp-block-table table th,
.rich-post-content .wp-block-table table td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
}

.rich-post-content table th,
.rich-post-content .wp-block-table table th {
    background: var(--bg-surface-elevated);
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 12px;
    text-align: left;
}

.rich-post-content table tr:last-child td,
.rich-post-content .wp-block-table table tr:last-child td {
    border-bottom: none;
}

.rich-post-content table td,
.rich-post-content .wp-block-table table td {
    color: var(--text-secondary);
}

.rich-post-content figure {
    margin: 28px 0;
}

.rich-post-content img {
    border-radius: var(--border-radius-md);
}

.rich-post-content hr {
    border: 0;
    height: 1px;
    background: var(--border-color);
    margin: 32px 0;
}

/* ==========================================================================
   14. PAGE TEMPLATE + SHORTCODE SYSTEM
   ========================================================================== */
.page-hero-section {
    padding: 84px 0 96px 0;
}

.page-shell {
    width: 100%;
}

.page-shell-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.9fr) minmax(320px, 0.8fr);
    gap: 40px;
    align-items: start;
    max-width: 1280px;
}

.page-shell-grid--single {
    grid-template-columns: minmax(0, 1fr);
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.9fr) minmax(320px, 0.8fr);
    gap: 40px;
    align-items: center;
}

.page-hero-copy {
    text-align: left;
    max-width: 100%;
}

.page-hero-title {
    max-width: 16ch;
    margin-bottom: 18px;
}

.page-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.page-hero-panel {
    padding: 28px;
    background: linear-gradient(180deg, rgba(19, 25, 36, 0.72), rgba(19, 25, 36, 0.5));
}

.page-hero-panel-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-gold);
    margin-bottom: 18px;
    font-weight: 700;
}

.page-hero-panel-grid {
    display: grid;
    gap: 14px;
}

.page-hero-mini-card {
    padding: 16px;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
}

.page-hero-mini-card strong {
    display: block;
    color: #FFFFFF;
    font-size: 16px;
    margin-bottom: 6px;
}

.page-hero-mini-card span {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.55;
}

.page-content-section {
    background: linear-gradient(180deg, rgba(19, 25, 36, 0.2) 0%, rgba(11, 14, 20, 0) 100%);
    padding: 0 0 96px 0;
}

.page-content-shell {
    max-width: 1280px;
    margin: 0 auto;
}

.page-content-panel {
    padding: 0;
    border-radius: var(--border-radius-lg);
}

.page-content-panel-inner {
    padding: 48px;
}

.page-content-panel .rich-post-content {
    max-width: 100%;
}

.page-content-panel-aside {
    padding: 28px;
    background: linear-gradient(180deg, rgba(19, 25, 36, 0.72), rgba(19, 25, 36, 0.5));
}

.bonuses-page-content .bonus-content-panel {
    padding: 0;
}

.bonuses-page-content .bonus-content-panel .rich-post-content {
    padding: 40px 48px 48px;
    color: var(--text-primary);
}

.bonuses-page-content .bonus-content-panel .rich-post-content p,
.bonuses-page-content .bonus-content-panel .rich-post-content li,
.bonuses-page-content .bonus-content-panel .rich-post-content td,
.bonuses-page-content .bonus-content-panel .rich-post-content th,
.bonuses-page-content .bonus-content-panel .rich-post-content blockquote,
.bonuses-page-content .bonus-content-panel .rich-post-content ul,
.bonuses-page-content .bonus-content-panel .rich-post-content ol {
    color: var(--text-primary);
}

.bonuses-page-content .bonus-content-panel .rich-post-content a {
    color: var(--accent-emerald);
}

.bonuses-page-content .bonus-content-panel .rich-post-content a:hover {
    color: #34D399;
}

.page-shell-grid--single .page-content-panel {
    width: 100%;
}

.page-toc-intro {
    margin-bottom: 20px;
}

.page-toc-intro h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.page-toc-intro p,
.page-toc-empty p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

.page-toc {
    display: grid;
    gap: 12px;
}

.page-toc-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 14px 16px;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.page-toc-item:hover {
    transform: translateY(-1px);
    border-color: rgba(79, 204, 149, 0.35);
    background: rgba(255, 255, 255, 0.05);
}

.page-toc-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    border-radius: 50%;
    background: rgba(165, 116, 255, 0.12);
    border: 1px solid rgba(165, 116, 255, 0.22);
    color: var(--accent-purple);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.08em;
}

.page-toc-text {
    color: #FFFFFF;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 600;
}

.page-toc-level-3 {
    padding-left: 28px;
}

.page-toc-level-3 .page-toc-index {
    background: rgba(79, 204, 149, 0.12);
    border-color: rgba(79, 204, 149, 0.22);
    color: var(--accent-emerald);
}

.page-toc-empty {
    padding: 18px;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
}

.page-toc-empty strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.page-featured-image {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin-bottom: 32px;
    border: 1px solid var(--border-color);
}

.page-featured-image img {
    width: 100%;
    display: block;
}

.page-links {
    margin-top: 24px;
    color: var(--text-secondary);
}

/* Legal Pages */
.legal-page {
    background: var(--bg-main);
}

.legal-page-shell {
    max-width: 860px;
    margin: 0 auto;
    padding: 36px;
}

.legal-page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.12);
    color: #C4B5FD;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.legal-page-badge span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent-emerald);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.7);
}

.legal-page-title {
    font-size: 42px;
    margin-bottom: 12px;
}

.legal-page-intro {
    max-width: 760px;
    color: var(--text-secondary);
    font-size: 17px;
}

.legal-page-article {
    max-width: 860px;
    margin: 0 auto;
}

.legal-page-article-inner {
    padding: 36px;
}

.legal-rich-content {
    max-width: 100%;
}

.legal-rich-content h2 {
    margin-top: 36px;
    margin-bottom: 14px;
    font-size: 28px;
}

.legal-rich-content p {
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.75;
}

.legal-rich-content ul,
.legal-rich-content ol {
    margin: 18px 0;
    padding-left: 22px;
    list-style: disc;
}

.legal-rich-content li {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.casino-shortcode-block {
    margin: 24px 0;
}

.casino-card-compact .card-features {
    display: none;
}

.casino-card-excerpt {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.casino-card-meta {
    margin-top: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.casino-card-meta strong {
    color: #FFFFFF;
}

.casino-card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.casino-shortcode-rating {
    padding: 28px;
    display: grid;
    gap: 8px;
    justify-items: start;
}

.casino-shortcode-rating-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-gold);
}

.casino-shortcode-rating-value {
    font-size: 34px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
}

.casino-shortcode-rating .rating-stars {
    font-size: 18px;
}

.casino-shortcode-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    padding: 22px;
    margin: 24px 0;
}

.casino-shortcode-stat {
    padding: 18px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.03);
}

.casino-shortcode-stat span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.casino-shortcode-stat strong {
    display: block;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 1.3;
}

.casino-shortcode-table {
    margin-top: 0;
}

.slot-demo-iframe-wrap {
    margin: 0 auto 50px auto;
    padding: 28px;
    max-width: 900px;
}

.slot-demo-iframe-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.slot-demo-iframe-kicker {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 8px;
}

.slot-demo-iframe-head h2 {
    margin: 0;
    color: #FFFFFF;
    font-size: 24px;
}

.slot-demo-iframe-shell {
    position: relative;
    padding-top: 56.25%;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: #0c1119;
}

.slot-demo-iframe-shell iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================================================
   14. FEATURED CARD ENHANCED GLOW ON HOVER
   ========================================================================== */
.featured-card:nth-child(1):hover {
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.15), var(--shadow-subtle);
    border-color: rgba(245, 158, 11, 0.2);
}

.featured-card:nth-child(2):hover {
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2), var(--shadow-subtle);
    border-color: rgba(139, 92, 246, 0.25);
}

.featured-card:nth-child(3):hover {
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.15), var(--shadow-subtle);
    border-color: rgba(16, 185, 129, 0.2);
}

/* ==========================================================================
   15. CATEGORY NICHE CARDS HOVER
   ========================================================================== */
.glass-panel[onclick]:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.25);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(139, 92, 246, 0.12);
}

/* ==========================================================================
   16. WORDPRESS DEFAULT CATEGORY LINKS OVERRIDE
   ========================================================================== */
.blog-card-content .cat-links a,
.entry-header .cat-links a {
    background: rgba(139, 92, 246, 0.1);
    color: #A78BFA;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

/* ==========================================================================
   17. WP PAGINATION OVERRIDE
   ========================================================================== */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.nav-links a,
.nav-links span {
    display: inline-block;
    padding: 10px 20px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    background: var(--accent-purple);
    border-color: var(--accent-purple);
    color: #FFFFFF;
}

/* ==========================================================================
   18. REVIEW ENGINE + AUTOCOMPLETE
   ========================================================================== */
.apex-breadcrumbs {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    margin: 0 0 20px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 1.2;
}

.apex-breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.apex-breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.apex-breadcrumbs li + li::before {
    content: "/";
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
}

.apex-breadcrumbs a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.apex-breadcrumbs a:hover {
    color: #FFFFFF;
    transform: translateY(-1px);
}

.apex-breadcrumbs span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.related-content-section {
    padding: 0 0 64px;
}

.related-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.related-content-column {
    padding: 0;
    overflow: visible;
    text-align: center;
}

.related-content-column h3 {
    margin: 0 0 14px;
    font-size: 18px;
    text-align: center;
}

.related-content-stack {
    display: grid;
    gap: 14px;
    justify-items: center;
}

.related-blog-card {
    margin: 0;
}

.related-blog-card-compact {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
    border-radius: 18px;
    width: min(100%, 760px);
}

.related-blog-card-compact .blog-thumb {
    min-height: 84px;
    height: 84px;
    border-radius: 14px;
}

.related-blog-card-compact .blog-thumb img {
    min-height: 84px;
    height: 84px;
    object-fit: cover;
}

.related-blog-card-compact .blog-card-content {
    padding: 4px 2px 2px 0;
}

.related-blog-card-compact .blog-card-title {
    font-size: 18px;
    line-height: 1.15;
}

.related-blog-card-compact .blog-card-excerpt {
    display: none;
}

.related-blog-card-compact .blog-meta-footer {
    margin-top: 10px !important;
    font-size: 12px;
}

.casino-card-compact {
    padding-top: 18px;
    padding-bottom: 18px;
    width: min(100%, 760px);
}

.casino-card-compact .card-logo {
    width: 72px;
    height: 72px;
    margin-bottom: 10px;
}

.casino-card-compact .card-title {
    font-size: 20px;
    line-height: 1.1;
}

.casino-card-compact .card-bonus {
    padding: 14px 16px;
    margin-bottom: 12px;
}

.casino-card-compact .card-bonus-val {
    font-size: 18px;
    line-height: 1.25;
}

.search-autocomplete-panel {
    margin-top: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(14, 18, 27, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.search-autocomplete-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #FFFFFF;
}

.search-autocomplete-item:hover {
    background: rgba(16, 185, 129, 0.08);
}

.search-autocomplete-item:last-child {
    border-bottom: 0;
}

.search-autocomplete-type {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.search-autocomplete-title {
    font-weight: 700;
}

.search-autocomplete-empty {
    padding: 14px 16px;
    color: var(--text-secondary);
}

.taxonomy-hub-shell .taxonomy-hub-hero {
    padding-top: 72px;
}

.taxonomy-hub-shell .hero-badge {
    width: fit-content;
}

.taxonomy-hub-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.taxonomy-hub-child-terms {
    padding: 28px;
}

.taxonomy-hub-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.taxonomy-hub-collections {
    display: grid;
    gap: 32px;
}

.taxonomy-hub-section {
    display: grid;
    gap: 18px;
}

.taxonomy-hub-section .section-title-wrap {
    justify-content: center;
    text-align: center;
}

.taxonomy-hub-section .section-title-wrap > div {
    text-align: center;
}

.taxonomy-hub-section .section-title-wrap h2,
.taxonomy-hub-section .section-title-wrap p {
    text-align: center;
}

.casino-archive-panel {
    background: linear-gradient(180deg, rgba(15, 20, 30, 0.96) 0%, rgba(10, 14, 22, 0.98) 100%);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.casino-archive-panel-content {
    padding-bottom: 40px;
}

.casino-archive-filter-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    overflow-x: auto;
    padding-bottom: 10px;
    flex-wrap: wrap;
}

.casino-archive-filter {
    padding: 8px 20px;
    font-size: 13px;
    border-radius: 999px;
}

.casino-archive-filter.is-active {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.95), rgba(99, 102, 241, 0.92));
    border-color: rgba(196, 181, 253, 0.35);
    color: #ffffff;
}

.casino-archive-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.casino-archive-card {
    display: grid;
    grid-template-columns: 140px minmax(0, 1.55fr) minmax(240px, 1fr) 180px;
    gap: 24px;
    align-items: center;
    padding: 28px;
    background:
        radial-gradient(circle at top left, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0) 32%),
        linear-gradient(180deg, rgba(18, 41, 36, 0.9) 0%, rgba(16, 24, 34, 0.92) 100%);
    border-color: rgba(52, 211, 153, 0.16);
}

.casino-archive-card-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.casino-archive-card-logo {
    width: 100px;
    height: 100px;
    background: rgba(10, 19, 29, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
}

.casino-archive-card-rating {
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 15px;
}

.casino-archive-card-copy {
    text-align: left;
}

.casino-archive-card-title {
    font-size: 24px;
    line-height: 1.15;
    margin-bottom: 6px;
    color: #FFFFFF;
}

.casino-archive-card-kicker {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.casino-archive-card-pros {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.casino-archive-card-pros li {
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.casino-archive-card-pros span {
    color: var(--accent-emerald);
}

.casino-archive-card-offer {
    text-align: left;
    padding: 18px 20px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(52, 211, 153, 0.14);
    background:
        radial-gradient(circle at top left, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0) 48%),
        rgba(255, 255, 255, 0.02);
}

.casino-archive-card-offer-label {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.casino-archive-card-offer-title {
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
}

.casino-archive-card-offer-meta {
    font-size: 12px;
    color: var(--text-secondary);
}

.casino-archive-card-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.casino-archive-card-button {
    width: 100%;
    justify-content: center;
}

.casino-archive-empty {
    padding: 32px;
    background:
        radial-gradient(circle at top left, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0) 42%),
        linear-gradient(180deg, rgba(18, 41, 36, 0.9) 0%, rgba(16, 24, 34, 0.92) 100%);
    border-color: rgba(52, 211, 153, 0.16);
}

.casino-archive-empty p {
    margin: 0;
    color: var(--text-secondary);
}

.casino-archive-editor-panel {
    background:
        radial-gradient(circle at top left, rgba(22, 163, 74, 0.18) 0%, rgba(22, 163, 74, 0) 36%),
        linear-gradient(180deg, rgba(16, 39, 33, 0.96) 0%, rgba(9, 19, 29, 0.98) 100%);
    border-color: rgba(74, 222, 128, 0.22);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.casino-archive-editor-panel .rich-post-content {
    color: #F3F7F5;
}

.casino-archive-editor-panel .rich-post-content h2,
.casino-archive-editor-panel .rich-post-content h3,
.casino-archive-editor-panel .rich-post-content h4 {
    color: #FFFFFF;
}

.casino-archive-editor-panel .rich-post-content p,
.casino-archive-editor-panel .rich-post-content li,
.casino-archive-editor-panel .rich-post-content td,
.casino-archive-editor-panel .rich-post-content th,
.casino-archive-editor-panel .rich-post-content blockquote,
.casino-archive-editor-panel .rich-post-content ul,
.casino-archive-editor-panel .rich-post-content ol {
    color: #E7F1EC;
}

.casino-archive-editor-panel .rich-post-content a {
    color: #6EE7B7;
}

.casino-archive-editor-panel .rich-post-content a:hover {
    color: #A7F3D0;
}

@media (max-width: 1024px) {
    .related-content-grid {
        grid-template-columns: 1fr;
    }

    .taxonomy-hub-hero {
        padding-top: 56px;
    }

    .casino-archive-card {
        grid-template-columns: 140px minmax(0, 1fr);
    }

    .casino-archive-card-offer,
    .casino-archive-card-actions {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .casino-archive-panel-content {
        padding-bottom: 24px;
    }

    .casino-archive-card {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .casino-archive-card-brand,
    .casino-archive-card-copy,
    .casino-archive-card-offer {
        text-align: center;
    }

    .casino-archive-card-pros li {
        justify-content: center;
    }
}


/* ========================================================================== 
   36. SEO / CONVERSION UTILITIES
   ========================================================================== */
.hero-trust-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-trust-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent-emerald);
}

.hero-trust-icon--emerald {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-emerald);
}

.hero-trust-icon--purple {
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-purple);
}

.hero-trust-icon--gold {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-gold);
}

.hero-trust-copy {
    text-align: left;
}

.hero-trust-copy h5 {
    font-size: 15px;
    color: #FFFFFF;
    font-weight: 700;
}

.hero-trust-copy p {
    font-size: 12px;
    color: var(--text-muted);
}

.conversion-section {
    padding-top: 24px;
}

.conversion-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 24px;
    align-items: center;
}

.conversion-copy {
    padding: 28px;
}

.conversion-copy h2 {
    font-size: clamp(28px, 3vw, 42px);
    margin-bottom: 12px;
}

.conversion-copy p {
    color: var(--text-secondary);
    max-width: 58ch;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: #dbcfff;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.conversion-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.conversion-mini-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 16px;
}

.conversion-mini-links a {
    color: var(--text-secondary);
    font-size: 14px;
    text-decoration: underline;
    text-decoration-color: rgba(139, 92, 246, 0.45);
    text-underline-offset: 3px;
}

.conversion-tool {
    display: flex;
    justify-content: center;
}

.wager-calc-box {
    padding: 28px;
    border-radius: var(--border-radius-md);
    max-width: 440px;
    width: 100%;
    margin: 0;
    border: 1px solid var(--border-color);
    background: rgba(19, 25, 36, 0.8);
}

.wager-calc-title {
    font-size: 20px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-align: center;
    font-family: var(--font-heading);
}

.wager-calc-group {
    margin-bottom: 16px;
}

.wager-calc-group--tight {
    margin-bottom: 20px;
}

.wager-calc-label {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    font-weight: 500;
}

.wager-calc-input {
    width: 100%;
    padding: 10px 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    color: #FFFFFF;
    border-radius: var(--border-radius-sm);
    outline: none;
}

.wager-calc-toggle {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wager-calc-toggle input {
    cursor: pointer;
    width: 16px;
    height: 16px;
}

.wager-calc-toggle label {
    font-size: 12px;
    color: var(--text-secondary);
    cursor: pointer;
}

.wager-calc-results {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 20px;
}

.wager-calc-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    margin-bottom: 8px;
}

.wager-calc-row:last-child {
    margin-bottom: 0;
}

.wager-calc-row span {
    color: var(--text-secondary);
}

.wager-calc-row strong {
    color: var(--accent-gold);
}

.wager-calc-row--primary {
    font-size: 14px;
}

.wager-calc-row--primary span {
    color: #FFFFFF;
    font-weight: 600;
}

.wager-calc-row--primary strong {
    color: var(--accent-emerald);
    font-size: 16px;
}

.wager-calc-badge {
    text-align: center;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(16,185,129,0.1);
    color: var(--accent-emerald);
    border: 1px solid rgba(16,185,129,0.2);
}


@media (max-width: 900px) {
    .conversion-grid {
        grid-template-columns: 1fr;
    }

    .hero-trust-grid {
        gap: 24px;
    }
}


.homepage-compare-strip {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 20px 22px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    background: rgba(19, 25, 36, 0.75);
}

.homepage-compare-strip__copy h3 {
    margin-top: 8px;
    font-size: 24px;
}

.homepage-compare-strip__copy p {
    margin-top: 6px;
    color: var(--text-secondary);
    max-width: 72ch;
}

.homepage-compare-strip__actions {
    flex-shrink: 0;
}

.casino-compare-toggle {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(139, 92, 246, 0.22);
    color: #FFFFFF;
    cursor: pointer;
}

.casino-compare-toggle:hover {
    border-color: rgba(139, 92, 246, 0.38);
    color: #ffffff;
}

.slotscope-compare-drawer {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: min(640px, calc(100vw - 24px));
    border-radius: 24px;
    border: 1px solid rgba(139, 92, 246, 0.18);
    background: rgba(11, 14, 20, 0.94);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(18px);
    z-index: 4000;
    padding: 18px;
    transform: translateY(130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.slotscope-compare-drawer.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.slotscope-compare-drawer__header,
.slotscope-compare-drawer__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.slotscope-compare-drawer__header {
    margin-bottom: 14px;
}

.slotscope-compare-drawer__eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #bcaefc;
    font-weight: 700;
}

.slotscope-compare-drawer__title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.slotscope-compare-drawer__close {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: #fff;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
}

.slotscope-compare-drawer__body {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}

.slotscope-compare-slot {
    min-height: 220px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.03);
    padding: 16px;
}

.slotscope-compare-slot--empty {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    color: var(--text-secondary);
}

.slotscope-compare-slot--empty strong {
    color: #fff;
    font-size: 16px;
}

.slotscope-compare-card__title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
}

.slotscope-compare-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.slotscope-compare-row:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.slotscope-compare-row span {
    color: var(--text-secondary);
    font-size: 13px;
}

.slotscope-compare-row strong {
    color: #fff;
    font-size: 13px;
    text-align: right;
}

@media (max-width: 720px) {
    .slotscope-compare-drawer {
        right: 12px;
        left: 12px;
        width: auto;
        bottom: 12px;
    }

    .slotscope-compare-drawer__body {
        grid-template-columns: 1fr;
    }

    .homepage-compare-strip {
        flex-direction: column;
        align-items: flex-start;
    }
}


.bonus-checker-box {
    padding: 28px;
    border-radius: var(--border-radius-md);
    max-width: 440px;
    width: 100%;
    margin: 0;
    border: 1px solid rgba(139, 92, 246, 0.16);
    background: rgba(19, 25, 36, 0.84);
}

.bonus-checker-title {
    font-size: 20px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-align: center;
    font-family: var(--font-heading);
}

.bonus-checker-group {
    margin-bottom: 16px;
}

.bonus-checker-group--tight {
    margin-bottom: 20px;
}

.bonus-checker-label {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    font-weight: 500;
}

.bonus-checker-input {
    width: 100%;
    padding: 10px 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    color: #FFFFFF;
    border-radius: var(--border-radius-sm);
    outline: none;
}

.bonus-checker-results {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 20px;
}

.bonus-checker-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    margin-bottom: 8px;
}

.bonus-checker-row:last-child {
    margin-bottom: 0;
}

.bonus-checker-row span {
    color: var(--text-secondary);
}

.bonus-checker-row strong {
    color: #FFFFFF;
    text-align: right;
}

.bonus-checker-row--primary strong {
    color: var(--accent-emerald);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.bonus-checker-row--secondary strong {
    color: var(--text-primary);
    font-size: 12px;
    line-height: 1.45;
}

.bonus-checker-badge {
    text-align: center;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(139,92,246,0.12);
    color: #dbcfff;
    border: 1px solid rgba(139,92,246,0.18);
}


.payment-helper-box {
    padding: 28px;
    border-radius: var(--border-radius-md);
    max-width: 440px;
    width: 100%;
    margin: 0;
    border: 1px solid rgba(80, 160, 255, 0.16);
    background: rgba(19, 25, 36, 0.84);
}

.payment-helper-eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-blue);
    margin-bottom: 10px;
}

.payment-helper-title {
    font-size: 20px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 14px;
    font-family: var(--font-heading);
}

.payment-helper-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.payment-helper-group {
    margin-bottom: 16px;
}

.payment-helper-label {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    font-weight: 500;
}

.payment-helper-select {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    color: #FFFFFF;
    border-radius: var(--border-radius-sm);
    outline: none;
}

.payment-helper-results {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 18px;
}

.payment-helper-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    margin-bottom: 8px;
}

.payment-helper-row:last-child {
    margin-bottom: 0;
}

.payment-helper-row span {
    color: var(--text-secondary);
}

.payment-helper-row strong {
    color: #FFFFFF;
    text-align: right;
}

.payment-helper-row--primary strong {
    color: var(--accent-blue);
    font-weight: 800;
}

.payment-helper-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

.payment-helper-footnote {
    font-size: 12px;
    color: var(--text-secondary);
}

.payment-helper-footnote a {
    color: var(--accent-blue);
    text-decoration: none;
}

.random-pick-section {
    padding-top: 0;
}

.random-pick-widget {
    padding: 28px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(145deg, rgba(19,25,36,0.92), rgba(17,22,33,0.84));
    box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}

.random-pick-widget__header,
.random-pick-widget__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.random-pick-widget__body {
    margin: 24px 0;
}

.random-pick-widget__eyebrow {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(141, 97, 255, 0.12);
    border: 1px solid rgba(141, 97, 255, 0.16);
    color: #d7ccff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.random-pick-widget__title {
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.1;
    margin-bottom: 12px;
}

.random-pick-widget__text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 14px;
    max-width: 760px;
}

.random-pick-widget__meta {
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.random-pick-widget.is-flipping {
    transform: translateY(-2px);
}

@media (max-width: 980px) {
    .random-pick-widget__header,
    .random-pick-widget__footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .slotscope-saved-launcher {
        left: 12px;
        bottom: 12px;
        padding: 12px 14px;
    }

    .slotscope-saved-drawer {
        left: 12px;
        right: 12px;
        width: auto;
        bottom: 72px;
        max-height: 68vh;
    }

    .payment-helper-actions {
        flex-direction: column;
    }
}


.inline-banner-block {
    margin: 28px 0;
    display: grid;
    gap: 10px;
}

.inline-banner-block--left {
    justify-items: start;
}

.inline-banner-block--center {
    justify-items: center;
}

.inline-banner-block--right {
    justify-items: end;
}

.inline-banner-shell {
    overflow: hidden;
    background: rgba(19, 25, 36, 0.82);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.inline-banner-shell--border {
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.inline-banner-link,
.inline-banner-image {
    display: block;
    width: 100%;
}

.inline-banner-image {
    height: auto;
    object-fit: contain;
}

.inline-banner-caption {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-secondary);
    padding: 0 6px;
    max-width: 100%;
}

@media (max-width: 720px) {
    .inline-banner-block {
        margin: 22px 0;
    }
}


.casino-apex-banner-editor {
    border: 1px dashed rgba(255,255,255,0.15);
    border-radius: 18px;
    padding: 16px;
    background: rgba(19, 25, 36, 0.8);
}

.casino-apex-banner-editor-preview {
    margin-bottom: 12px;
    border-radius: 16px;
    overflow: hidden;
}

.casino-apex-banner-editor__toolbar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Review content list styling */
.rich-post-content ul,
.rich-post-content ol {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
    display: grid;
    gap: 0.75rem;
}

.rich-post-content ul {
    list-style: disc outside;
}

.rich-post-content ol {
    list-style: decimal outside;
}

.rich-post-content li {
    margin: 0;
    padding-left: 0.15rem;
    color: var(--text-primary);
}

.rich-post-content li::marker {
    color: var(--accent-emerald);
    font-weight: 700;
}

.rich-post-content ul ul,
.rich-post-content ol ol,
.rich-post-content ul ol,
.rich-post-content ol ul {
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
}

.rich-post-content blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border-left: 3px solid rgba(94, 197, 159, 0.45);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    color: var(--text-primary);
}

