
        /* ============================================
           RESET & VARIABLES
           ============================================ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --deep-sea: #151a24;
            --ocean: #1f2836;
            --teal: #d4af37;
            --teal-dark: #b8912a;
            --sand: #f6f3ec;
            --gold: #d4af37;
            --footer: #0e1218;
            --white: #ffffff;
            --light-gray: #e8e8e8;
            --text-dark: #1a1a2e;
            --text-muted: #646b78;
            --font-heading: 'Bitter', Georgia, serif;
            --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-dark);
            background: var(--white);
            -webkit-font-smoothing: antialiased;
        }

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

        a {
            color: var(--teal);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        a:hover {
            color: var(--teal-dark);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.3;
            color: var(--text-dark);
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ============================================
           HEADER — Sticky dark navy
           ============================================ */
        .site-header {
            background: var(--deep-sea);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--teal);
        }

        .header-inner {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px;
        }

        .site-logo {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 700;
            color: var(--white);
            letter-spacing: 1px;
            text-decoration: none;
        }

        .site-logo span {
            color: var(--teal);
        }

        .site-logo em {
            font-style: normal;
            font-size: 14px;
            font-weight: 400;
            color: rgba(255,255,255,0.5);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-left: 4px;
        }

        .header-nav {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .header-nav a {
            font-size: 13px;
            font-weight: 600;
            color: rgba(255,255,255,0.85);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .header-nav a:hover {
            color: var(--teal);
        }

        .badge-18 {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border: 2px solid var(--teal);
            border-radius: 50%;
            font-size: 10px;
            font-weight: 700;
            color: var(--teal);
        }

        /* Mobile hamburger */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
        }

        .mobile-menu-btn span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--white);
            margin: 5px 0;
            transition: 0.3s;
        }

        @media (max-width: 767px) {
            .mobile-menu-btn {
                display: block;
            }
            .header-nav {
                display: none;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                background: var(--deep-sea);
                flex-direction: column;
                padding: 16px 24px;
                gap: 12px;
                border-top: 1px solid rgba(255,255,255,0.1);
            }
            .header-nav.active {
                display: flex;
            }
        }

        /* ============================================
           HERO
           ============================================ */
        .hero {
            background: linear-gradient(135deg, var(--deep-sea) 0%, var(--ocean) 60%, #2a2016 100%);
            padding: 60px 24px 70px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* Subtle wave decoration */
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40px;
            background: var(--white);
            clip-path: ellipse(55% 100% at 50% 100%);
            z-index: 1;
        }

        .hero .container {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 36px;
            color: var(--white);
            margin-bottom: 16px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .hero-subtitle {
            font-size: 16px;
            color: rgba(255,255,255,0.8);
            margin-bottom: 8px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-byline {
            font-size: 13px;
            color: rgba(255,255,255,0.6);
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .hero-byline img {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--teal);
        }

        .hero-byline a {
            color: rgba(255,255,255,0.85);
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .hero-byline a:hover {
            color: var(--white);
        }

        .btn-primary {
            display: inline-block;
            background: var(--teal);
            color: var(--white);
            font-family: var(--font-body);
            font-size: 16px;
            font-weight: 600;
            padding: 14px 36px;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            transition: background 0.2s ease, transform 0.1s ease;
            text-decoration: none;
        }

        .btn-primary:hover {
            background: var(--teal-dark);
            color: var(--white);
            transform: translateY(-1px);
        }

        .btn-hero-cta {
            display: inline-block;
            background: linear-gradient(135deg, #b8912a 0%, #e6c766 50%, #b8912a 100%);
            background-size: 200% 200%;
            color: var(--deep-sea);
            font-family: var(--font-body);
            font-size: 18px;
            font-weight: 700;
            padding: 16px 40px;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4), 0 0 40px rgba(212, 168, 67, 0.15);
            animation: shimmer 2.5s ease-in-out infinite;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            letter-spacing: 0.3px;
        }

        .btn-hero-cta:hover {
            transform: translateY(-2px) scale(1.03);
            box-shadow: 0 6px 28px rgba(212, 168, 67, 0.55), 0 0 50px rgba(212, 168, 67, 0.2);
            color: var(--deep-sea);
        }

        @keyframes shimmer {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .btn-secondary {
            display: inline-block;
            background: transparent;
            color: var(--teal);
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 600;
            padding: 10px 24px;
            border-radius: 6px;
            border: 2px solid var(--teal);
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
        }

        .btn-secondary:hover {
            background: var(--teal);
            color: var(--white);
        }

        @media (max-width: 767px) {
            .hero {
                padding: 40px 16px 60px;
            }
            .hero h1 {
                font-size: 24px;
            }
            .hero-subtitle {
                font-size: 14px;
            }
            .hero .btn-primary,
            .hero .btn-hero-cta {
                width: 100%;
                padding: 14px 20px;
                font-size: 16px;
            }
        }

        /* ============================================
           AFFILIATE DISCLOSURE
           ============================================ */
        .disclosure {
            background: var(--sand);
            padding: 10px 24px;
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
            border-bottom: 1px solid #e0d5c7;
        }

        /* ============================================
           GAME STATS BAR
           ============================================ */
        .stats-bar {
            background: var(--white);
            padding: 32px 24px;
            border-bottom: 1px solid var(--light-gray);
        }

        .stats-grid {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }

        .stat-box {
            text-align: center;
            padding: 16px 8px;
            background: var(--sand);
            border-radius: 8px;
        }

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

        .stat-value {
            font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 700;
            color: var(--deep-sea);
        }

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

        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .stat-box:last-child {
                grid-column: span 2;
            }
        }

        /* ============================================
           SECTION COMMON
           ============================================ */
        .section {
            padding: 48px 24px;
        }

        .section-alt {
            background: var(--sand);
        }

        .section-dark {
            background: var(--deep-sea);
        }

        .section h2 {
            font-size: 28px;
            margin-bottom: 8px;
        }

        .section-dark h2 {
            color: var(--white);
        }

        .section-intro {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 32px;
            max-width: 700px;
        }

        .section-dark .section-intro {
            color: rgba(255,255,255,0.7);
        }

        /* ============================================
           CASINO CARDS (TOPLIST)
           ============================================ */
        .casino-card {
            background: var(--white);
            border: 1px solid var(--light-gray);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 16px;
            display: grid;
            grid-template-columns: 50px 120px 1fr auto auto;
            gap: 20px;
            align-items: center;
            transition: box-shadow 0.2s ease;
        }

        .casino-card:hover {
            box-shadow: 0 4px 20px rgba(10, 37, 64, 0.1);
        }

        .casino-card.top-pick {
            border: 2px solid var(--teal);
            position: relative;
        }

        .top-pick-badge {
            position: absolute;
            top: -12px;
            left: 20px;
            background: var(--teal);
            color: var(--white);
            font-size: 11px;
            font-weight: 700;
            padding: 3px 12px;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .casino-rank {
            font-family: var(--font-heading);
            font-size: 24px;
            font-weight: 700;
            color: var(--gold);
            text-align: center;
        }

        .casino-logo {
            width: 120px;
            height: 65px;
            object-fit: contain;
            border-radius: 6px;
            background: var(--white);
            border: 1px solid var(--light-gray);
            padding: 4px;
        }

        .casino-info h3 {
            font-size: 17px;
            margin-bottom: 4px;
        }

        .casino-bonus {
            font-size: 14px;
            font-weight: 600;
            color: var(--teal);
            margin-bottom: 6px;
        }

        .casino-features {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .feature-tag {
            font-size: 11px;
            font-weight: 500;
            background: var(--sand);
            color: var(--text-dark);
            padding: 3px 8px;
            border-radius: 4px;
        }

        .casino-rating {
            text-align: center;
        }

        .rating-number {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 700;
            color: var(--gold);
        }

        .rating-stars {
            font-size: 12px;
            color: var(--gold);
        }

        .rating-label {
            font-size: 10px;
            color: var(--text-muted);
            text-transform: uppercase;
        }

        .casino-cta {
            display: flex;
            flex-direction: column;
            gap: 6px;
            min-width: 140px;
        }

        .casino-cta .btn-primary {
            font-size: 14px;
            padding: 10px 20px;
            text-align: center;
        }

        .casino-cta .btn-review {
            font-size: 12px;
            color: var(--text-muted);
            text-align: center;
        }

        @media (max-width: 767px) {
            .casino-card {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 10px;
                padding: 16px;
            }
            .casino-rank {
                font-size: 20px;
            }
            .casino-logo {
                width: 100px;
                height: 55px;
            }
            .casino-info {
                width: 100%;
            }
            .casino-info h3 {
                font-size: 16px;
            }
            .casino-bonus {
                font-size: 13px;
            }
            .casino-features {
                justify-content: center;
            }
            .casino-rating {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
            }
            .casino-cta {
                width: 100%;
                min-width: unset;
            }
            .casino-cta .btn-primary {
                width: 100%;
                padding: 12px;
                font-size: 15px;
            }
            .casino-cta .btn-review {
                font-size: 11px;
            }
        }

        /* View More Dropdown */
        .view-more-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px;
            background: var(--sand);
            border: 1px solid #e0d5c7;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            color: var(--deep-sea);
            margin-top: 8px;
            transition: background 0.2s;
        }

        .view-more-toggle:hover {
            background: #ede3d5;
        }

        .view-more-toggle .arrow {
            transition: transform 0.3s;
        }

        .view-more-toggle.open .arrow {
            transform: rotate(180deg);
        }

        .extra-casinos {
            display: none;
        }

        .extra-casinos.show {
            display: block;
        }

        /* ============================================
           GAME REVIEW (2-col)
           ============================================ */
        .review-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 32px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .review-text p {
            margin-bottom: 16px;
            line-height: 1.8;
        }

        .review-sidebar {
            background: var(--white);
            border: 1px solid var(--light-gray);
            border-radius: 12px;
            padding: 24px;
            height: fit-content;
            position: sticky;
            top: 80px;
        }

        .review-sidebar h3 {
            font-size: 16px;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--teal);
        }

        .sidebar-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--light-gray);
            font-size: 14px;
        }

        .sidebar-row:last-child {
            border-bottom: none;
        }

        .sidebar-label {
            color: var(--text-muted);
        }

        .sidebar-value {
            font-weight: 600;
            color: var(--text-dark);
        }

        @media (max-width: 767px) {
            .review-grid {
                grid-template-columns: 1fr;
            }
            .review-sidebar {
                position: static;
            }
        }

        /* ============================================
           BONUS FEATURES CARDS
           ============================================ */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .feature-card {
            background: var(--white);
            border: 1px solid var(--light-gray);
            border-radius: 12px;
            padding: 28px 24px;
            text-align: center;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .feature-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 24px rgba(10, 37, 64, 0.1);
        }

        .feature-icon {
            font-size: 40px;
            margin-bottom: 16px;
        }

        .feature-card h3 {
            font-size: 18px;
            margin-bottom: 8px;
        }

        .feature-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
        }

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

        /* ============================================
           BIG BASS SERIES GRID
           ============================================ */
        .series-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .series-card {
            background: var(--white);
            border: 1px solid var(--light-gray);
            border-radius: 10px;
            padding: 20px 16px;
            text-align: center;
        }

        .series-card h3 {
            font-size: 14px;
            margin-bottom: 8px;
            min-height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .series-meta {
            font-size: 12px;
            color: var(--text-muted);
        }

        .series-meta span {
            display: block;
            margin-bottom: 2px;
        }

        .series-rtp {
            font-weight: 600;
            color: var(--teal) !important;
        }

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

        /* ============================================
           HOW TO PLAY (dark bg with steps)
           ============================================ */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .step-card {
            text-align: center;
            padding: 24px 16px;
        }

        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--teal);
            color: var(--white);
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .step-card h3 {
            font-size: 16px;
            color: var(--white);
            margin-bottom: 8px;
        }

        .step-card p {
            font-size: 13px;
            color: rgba(255,255,255,0.7);
            line-height: 1.6;
        }

        @media (max-width: 767px) {
            .steps-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
        }

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

        /* ============================================
           COMPARISON TABLE
           ============================================ */
        .comparison-wrapper {
            overflow-x: auto;
            max-width: 1100px;
            margin: 0 auto;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
        }

        .comparison-table thead th {
            background: var(--deep-sea);
            color: var(--white);
            font-family: var(--font-heading);
            font-size: 13px;
            font-weight: 600;
            padding: 14px 16px;
            text-align: left;
            white-space: nowrap;
        }

        .comparison-table thead th:first-child {
            border-radius: 8px 0 0 0;
        }

        .comparison-table thead th:last-child {
            border-radius: 0 8px 0 0;
        }

        .comparison-table tbody td {
            padding: 14px 16px;
            font-size: 14px;
            border-bottom: 1px solid var(--light-gray);
        }

        .comparison-table tbody tr:nth-child(even) {
            background: var(--sand);
        }

        .comparison-table tbody tr:hover {
            background: #eee8db;
        }

        .table-rating {
            font-weight: 700;
            color: var(--gold);
        }

        .check-yes {
            color: var(--teal);
            font-weight: 700;
        }

        /* ============================================
           FAQ ACCORDION
           ============================================ */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border: 1px solid var(--light-gray);
            border-radius: 8px;
            margin-bottom: 8px;
            overflow: hidden;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 20px;
            cursor: pointer;
            background: var(--white);
            font-family: var(--font-heading);
            font-size: 15px;
            font-weight: 600;
            color: var(--text-dark);
            transition: background 0.2s;
        }

        .faq-question:hover {
            background: var(--sand);
        }

        .faq-question .faq-icon {
            font-size: 18px;
            color: var(--teal);
            transition: transform 0.3s;
            flex-shrink: 0;
            margin-left: 12px;
        }

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

        .faq-answer {
            display: none;
            padding: 0 20px 16px;
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        .faq-answer.show {
            display: block;
        }

        /* ============================================
           RESPONSIBLE GAMBLING
           ============================================ */
        .rg-section {
            background: var(--sand);
            padding: 40px 24px;
            text-align: center;
        }

        .rg-section h2 {
            font-size: 22px;
            margin-bottom: 12px;
        }

        .rg-section p {
            font-size: 14px;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto 8px;
            line-height: 1.7;
        }

        .rg-helpline {
            font-size: 16px;
            font-weight: 700;
            color: var(--deep-sea);
            margin-top: 12px;
        }

        .rg-helpline a {
            color: var(--teal);
        }

        /* ============================================
           FOOTER
           ============================================ */
        .site-footer {
            background: var(--footer);
            padding: 48px 24px 20px;
            color: rgba(255,255,255,0.6);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
            max-width: 1100px;
            margin: 0 auto;
            padding-bottom: 32px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .footer-heading {
            font-family: var(--font-heading);
            font-size: 16px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 12px;
        }

        .footer-col p {
            font-size: 13px;
            line-height: 1.7;
            margin-bottom: 8px;
        }

        .footer-col a {
            display: block;
            font-size: 13px;
            color: rgba(255,255,255,0.6);
            padding: 3px 0;
        }

        .footer-col a:hover {
            color: var(--teal);
        }

        .footer-badges {
            display: flex;
            gap: 12px;
            margin-top: 12px;
            flex-wrap: wrap;
        }

        .footer-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 4px;
            background: rgba(255,255,255,0.08);
            color: rgba(255,255,255,0.7);
        }

        .footer-bottom {
            max-width: 1100px;
            margin: 16px auto 0;
            text-align: center;
            font-size: 12px;
        }

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

        /* ============================================
           FLOATING CTA (Desktop: button, Mobile: sticky bar)
           ============================================ */
        .floating-cta-desktop {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 999;
            background: var(--teal);
            color: var(--white);
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 700;
            padding: 14px 24px;
            border-radius: 50px;
            box-shadow: 0 4px 16px rgba(19, 168, 158, 0.4);
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s;
            display: none;
        }

        .floating-cta-desktop:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(19, 168, 158, 0.5);
            color: var(--white);
        }

        .mobile-sticky-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 999;
            background: var(--deep-sea);
            padding: 10px 16px;
            border-top: 2px solid var(--teal);
        }

        .mobile-sticky-bar .btn-primary {
            width: 100%;
            text-align: center;
            padding: 12px;
            font-size: 15px;
            border-radius: 6px;
        }

        @media (min-width: 768px) {
            .floating-cta-desktop {
                display: block;
            }
        }

        @media (max-width: 767px) {
            .mobile-sticky-bar {
                display: block;
            }
            /* Add padding at bottom so content isn't hidden behind sticky bar */
            body {
                padding-bottom: 70px;
            }
        }

        /* ============================================
           AUTHOR PROFILE PAGE
           ============================================ */
        .author-profile-page {
            display: grid;
            grid-template-columns: 220px 1fr;
            gap: 32px;
            align-items: start;
        }

        .author-photo-wrap {
            text-align: center;
        }

        .author-photo {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--teal);
            margin-bottom: 16px;
        }

        .author-meta {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .author-meta-item {
            font-size: 13px;
            color: var(--text-muted);
        }

        .author-bio-text h2 {
            margin-top: 0;
        }

        .author-bio-text h3 {
            margin-top: 24px;
            color: var(--deep-sea);
        }

        @media (max-width: 767px) {
            .author-profile-page {
                grid-template-columns: 1fr;
            }
            .author-photo-wrap {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .author-photo {
                width: 140px;
                height: 140px;
            }
        }

        /* ============================================
           BREADCRUMB
           ============================================ */
        .breadcrumb {
            font-size: 12px;
            color: var(--text-muted);
            padding: 12px 24px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .breadcrumb a {
            color: var(--text-muted);
        }

        .breadcrumb a:hover {
            color: var(--teal);
        }

        /* ============================================
           DETAILED REVIEW CARDS
           ============================================ */
        .review-card {
            background: var(--white);
            border: 1px solid var(--light-gray);
            border-radius: 12px;
            padding: 28px;
            margin-bottom: 24px;
        }

        .review-card-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
            padding-bottom: 16px;
            border-bottom: 2px solid var(--sand);
        }

        .review-card-header img {
            width: 80px;
            height: 44px;
            object-fit: contain;
            border: 1px solid var(--light-gray);
            border-radius: 6px;
            padding: 4px;
        }

        .review-card-header h3 {
            font-size: 20px;
            margin: 0;
        }

        .review-card-header .review-tagline {
            font-size: 13px;
            color: var(--teal);
            font-weight: 600;
        }

        .review-spec-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            margin-bottom: 20px;
        }

        .review-spec {
            background: var(--sand);
            padding: 10px 12px;
            border-radius: 6px;
            font-size: 13px;
        }

        .review-spec-label {
            font-weight: 600;
            color: var(--text-muted);
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        .review-spec-value {
            font-weight: 600;
            color: var(--text-dark);
            margin-top: 2px;
        }

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

        .review-pros-cons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 20px;
        }

        @media (max-width: 600px) {
            .review-pros-cons {
                grid-template-columns: 1fr;
            }
        }

        .review-pros h4, .review-cons h4 {
            font-size: 14px;
            margin-bottom: 8px;
        }

        .review-pros h4 { color: var(--teal); }
        .review-cons h4 { color: #c0392b; }

        .review-pros ul, .review-cons ul {
            list-style: none;
            padding: 0;
        }

        .review-pros li, .review-cons li {
            font-size: 13px;
            padding: 4px 0;
            padding-left: 18px;
            position: relative;
            color: var(--text-muted);
        }

        .review-pros li::before {
            content: '+';
            position: absolute;
            left: 0;
            color: var(--teal);
            font-weight: 700;
        }

        .review-cons li::before {
            content: '-';
            position: absolute;
            left: 2px;
            color: #c0392b;
            font-weight: 700;
        }

        .review-body p {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .review-testing {
            background: var(--sand);
            border-radius: 8px;
            padding: 20px;
            margin: 16px 0;
        }

        .review-testing h4 {
            font-size: 15px;
            margin-bottom: 12px;
            color: var(--deep-sea);
        }

        .review-testing p {
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 10px;
            color: var(--text-dark);
        }

        .review-ratings {
            display: flex;
            gap: 20px;
            margin: 16px 0;
            flex-wrap: wrap;
        }

        .review-rating-item {
            font-size: 13px;
            color: var(--text-muted);
        }

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

        .review-verdict {
            background: linear-gradient(135deg, var(--deep-sea), var(--ocean));
            color: var(--white);
            padding: 16px 20px;
            border-radius: 8px;
            font-size: 14px;
            line-height: 1.6;
            margin: 16px 0;
            border-left: 4px solid var(--teal);
        }

        .verdict-author {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid rgba(255,255,255,0.15);
        }

        .verdict-author img {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--teal);
        }

        .verdict-author a {
            color: rgba(255,255,255,0.85);
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
        }

        .verdict-author a:hover {
            color: var(--white);
            text-decoration: underline;
        }

        .verdict-author span {
            font-size: 11px;
            color: rgba(255,255,255,0.5);
        }

        .review-cta {
            text-align: center;
            margin-top: 16px;
        }

        /* Runners-up list */
        .runners-up-list {
            max-width: 1100px;
            margin: 0 auto;
        }

        .runner-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px;
            background: var(--white);
            border: 1px solid var(--light-gray);
            border-radius: 8px;
            margin-bottom: 8px;
        }

        .runner-item img {
            width: 60px;
            height: 34px;
            object-fit: contain;
        }

        .runner-info {
            flex: 1;
        }

        .runner-info strong {
            font-size: 15px;
        }

        .runner-info span {
            font-size: 13px;
            color: var(--text-muted);
            margin-left: 8px;
        }

        /* Bullet list sections */
        .content-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .content-list ul, .content-list ol {
            padding-left: 24px;
        }

        .content-list li {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 8px;
            color: var(--text-dark);
        }

        .content-list p {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 12px;
        }

        /* ============================================
           SUBPAGE STYLES
           ============================================ */
        .page-hero {
            background: linear-gradient(135deg, var(--deep-sea) 0%, var(--ocean) 100%);
            padding: 40px 24px;
            text-align: center;
        }

        .page-hero h1 {
            font-size: 32px;
            color: var(--white);
        }

        .page-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 24px;
        }

        .page-content h2 {
            font-size: 22px;
            margin: 28px 0 12px;
        }

        .page-content p, .page-content li {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .page-content ul {
            padding-left: 24px;
            margin-bottom: 16px;
        }

        .page-content a {
            color: var(--teal);
        }

        .page-content a.btn-primary {
            color: var(--white);
        }

        .contact-form {
            max-width: 500px;
            margin: 24px auto;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 4px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px 14px;
            border: 1px solid var(--light-gray);
            border-radius: 6px;
            font-family: var(--font-body);
            font-size: 14px;
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

section.stats-bar > div.stats-grid > div.stat-box > div.stat-label { color: #646b78 !important; }
body > div.disclosure > div.container > p { color: #646b78 !important; }
div.disclosure > div.container > p > strong { color: #646b78 !important; }
div.disclosure > div.container > p > a { color: #a8863a !important; }
section#casinos > div.container > div.casino-card > span.top-pick-badge { color: #2e2e2e !important; }
section#casinos > div.container > div.casino-card > div.casino-rank { color: #ba8e2a !important; }
div.container > div.casino-card > div.casino-info > div.casino-bonus { color: #0f837c !important; }
div.container > div.casino-card > div.casino-rating > div.rating-number { color: #ba8e2a !important; }
div.container > div.casino-card > div.casino-cta > a.btn-primary { color: #2e2e2e !important; }
body > section#reviews > div.container > p.section-intro { color: #646b78 !important; }
div#review-jackpot-city > div.review-spec-grid > div.review-spec > div.review-spec-label { color: #646b78 !important; }
div#review-jackpot-city > div.review-pros-cons > div.review-pros > h4 { color: #0f837c !important; }
div#review-jackpot-city > div.review-ratings > span.review-rating-item > strong { color: #b8912a !important; }
div.container > div#review-jackpot-city > div.review-cta > a.btn-primary { color: #2e2e2e !important; }
div#review-spin-casino > div.review-spec-grid > div.review-spec > div.review-spec-label { color: #646b78 !important; }
div#review-spin-casino > div.review-pros-cons > div.review-pros > h4 { color: #0f837c !important; }
div#review-spin-casino > div.review-ratings > span.review-rating-item > strong { color: #b8912a !important; }
div.container > div#review-spin-casino > div.review-cta > a.btn-primary { color: #2e2e2e !important; }
div#review-playojo > div.review-spec-grid > div.review-spec > div.review-spec-label { color: #646b78 !important; }
div#review-playojo > div.review-pros-cons > div.review-pros > h4 { color: #0f837c !important; }
div#review-playojo > div.review-ratings > span.review-rating-item > strong { color: #b8912a !important; }
div.container > div#review-playojo > div.review-cta > a.btn-primary { color: #2e2e2e !important; }
div#review-madcasino > div.review-spec-grid > div.review-spec > div.review-spec-label { color: #646b78 !important; }
div#review-madcasino > div.review-pros-cons > div.review-pros > h4 { color: #0f837c !important; }
div#review-madcasino > div.review-ratings > span.review-rating-item > strong { color: #b8912a !important; }
div.container > div#review-madcasino > div.review-cta > a.btn-primary { color: #2e2e2e !important; }
div#review-tenobet > div.review-spec-grid > div.review-spec > div.review-spec-label { color: #646b78 !important; }
div#review-tenobet > div.review-pros-cons > div.review-pros > h4 { color: #0f837c !important; }
div#review-tenobet > div.review-ratings > span.review-rating-item > strong { color: #b8912a !important; }
div.container > div#review-tenobet > div.review-cta > a.btn-primary { color: #2e2e2e !important; }
div#review-kingdom-casino > div.review-spec-grid > div.review-spec > div.review-spec-label { color: #646b78 !important; }
div#review-kingdom-casino > div.review-pros-cons > div.review-pros > h4 { color: #0f837c !important; }
div#review-kingdom-casino > div.review-ratings > span.review-rating-item > strong { color: #b8912a !important; }
div.container > div#review-kingdom-casino > div.review-cta > a.btn-primary { color: #2e2e2e !important; }
div#review-kingmaker > div.review-spec-grid > div.review-spec > div.review-spec-label { color: #646b78 !important; }
div#review-kingmaker > div.review-pros-cons > div.review-pros > h4 { color: #0f837c !important; }
div#review-kingmaker > div.review-ratings > span.review-rating-item > strong { color: #b8912a !important; }
div.container > div#review-kingmaker > div.review-cta > a.btn-primary { color: #2e2e2e !important; }
div#review-casino-infinity > div.review-spec-grid > div.review-spec > div.review-spec-label { color: #646b78 !important; }
div#review-casino-infinity > div.review-pros-cons > div.review-pros > h4 { color: #0f837c !important; }
div#review-casino-infinity > div.review-ratings > span.review-rating-item > strong { color: #b8912a !important; }
div.container > div#review-casino-infinity > div.review-cta > a.btn-primary { color: #2e2e2e !important; }
div#review-crownplay > div.review-spec-grid > div.review-spec > div.review-spec-label { color: #646b78 !important; }
div#review-crownplay > div.review-pros-cons > div.review-pros > h4 { color: #0f837c !important; }
div#review-crownplay > div.review-ratings > span.review-rating-item > strong { color: #b8912a !important; }
div.container > div#review-crownplay > div.review-cta > a.btn-primary { color: #2e2e2e !important; }
div#review-lucky7even > div.review-spec-grid > div.review-spec > div.review-spec-label { color: #646b78 !important; }
div#review-lucky7even > div.review-pros-cons > div.review-pros > h4 { color: #0f837c !important; }
div#review-lucky7even > div.review-ratings > span.review-rating-item > strong { color: #b8912a !important; }
div.container > div#review-lucky7even > div.review-cta > a.btn-primary { color: #2e2e2e !important; }
div.container > div.runners-up-list > div.runner-item > a.btn-secondary { color: #0f837c !important; }
tbody > tr > td > a.btn-secondary { color: #a8863a !important; }
body > section#series > div.container > p.section-intro { color: #646b78 !important; }
div.series-grid > div.series-card > div.series-meta > span.series-rtp { color: #0f837c !important; }
body > section.rg-section > p { color: #646b78 !important; }
body > section.rg-section > p.rg-helpline { color: #646b78 !important; }
body > section.rg-section > p.rg-helpline > a { color: #a8863a !important; }
body > div.mobile-sticky-bar > a.btn-primary { color: #2e2e2e !important; }
