@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');
      
      :root {
        --color-background: #F7F9FC;
        --color-block-bg: #FFFFFF;
        --color-text: #000000;
        --color-text-muted: #6B7280;
        --color-border: #E5E7EB;
        --color-primary: #3B82F6;
        --color-success: #10B981;
        --max-width: 1300px;
        --block-radius: 8px;
        --block-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        --block-padding: 32px;
        --block-spacing: 24px;
        --font-family: "Open Sans", sans-serif;
      }
      
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      
      html {
        font-size: 16px;
        scroll-behavior: smooth;
      }
      
      body {
        font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.75;
        color: var(--color-text);
        background: var(--color-background);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
      }
      
      .container {
        max-width: var(--max-width);
        margin: 0 auto;
        padding: 20px;
        position: relative;
        overflow-x: hidden; /* Prevent horizontal scroll when menu slides in */
      }
      
      /* Typography - Minimalist Design */
      h1, h2, h3, h4, h5, h6 {
        font-family: 'Open Sans', sans-serif;
        font-weight: 600;
        line-height: 1.3;
        color: var(--color-text);
        letter-spacing: -0.02em;
      }
      
      h1 {
        font-size: 2.25rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
      }
      
      h2 {
        font-size: 1.75rem;
        margin-top: 3rem;
        margin-bottom: 1.25rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid var(--color-border);
      }
      
      /* Remove top margin for first h2 in any container */
      h2:first-child,
      *:first-child h2 {
        margin-top: 0;
      }
      
      h3 {
        font-size: 1.375rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
      }
      
      h4 {
        font-size: 1.125rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
      }
      
      p {
        font-family: 'Open Sans', sans-serif;
        font-size: 1rem; /* 16px */
        font-weight: 400;
        line-height: 1.75;
        margin-bottom: 1.25rem;
        color: var(--color-text); /* Pure black #000000 */
      }
      
      a {
        color: var(--color-primary);
        text-decoration: none;
        transition: all 0.2s ease;
        font-weight: 500;
      }
      
      a:hover {
        color: #2563EB;
      }
      
      /* Bold text styling */
      strong, b {
        font-weight: 700;
        color: var(--color-text);
      }
      
      /* Code styling */
      code {
        font-family: 'Courier New', Courier, monospace;
        background: #F3F4F6;
        padding: 0.125rem 0.25rem;
        border-radius: 0.25rem;
        font-size: 1rem;
        color: var(--color-text);
      }
      
      pre {
        background: #1F2937;
        color: #F9FAFB;
        padding: 1rem;
        border-radius: var(--block-radius);
        overflow-x: auto;
        margin: 1.5rem 0;
      }
      
      pre code {
        background: transparent;
        padding: 0;
        font-size: 0.875rem;
      }
      
      /* Paragraph spacing in content blocks */
      .content-block p {
        margin-bottom: 1rem;
        line-height: 1.75;
      }
      
      .content-block p:last-child {
        margin-bottom: 0;
      }
      
      /* Spacing between different block elements */
      .content-block > * + * {
        margin-top: 1rem;
      }
      
      .content-block h2,
      .content-block h3,
      .content-block h4 {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
      }
      
      .content-block ul,
      .content-block ol {
        margin: 1rem 0;
      }
      
      /* Header */
      .site-header {
        background: var(--color-block-bg);
        border-radius: var(--block-radius);
        box-shadow: var(--block-shadow);
        padding: 16px 24px;
        margin-bottom: var(--block-spacing);
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 100;
      }
      
      .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 24px;
        font-weight: 700;
        color: var(--color-text);
      }
      
      .logo img {
        height: 40px;
        width: auto;
        object-fit: contain;
      }
      
      .logo a {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        color: inherit;
        font-weight: inherit;
      }
      
      /* Navigation */
      .main-nav {
        display: flex;
        gap: 32px;
        align-items: center;
      }
      
      .nav-item {
        position: relative;
      }
      
      .nav-link {
        color: var(--color-text);
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        padding: 8px 12px;
        border-radius: 6px;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        gap: 4px;
      }
      
      .nav-link:hover {
        background: rgba(59, 130, 246, 0.1);
        color: var(--color-primary);
      }
      
      .nav-link::after {
        content: '▼';
        font-size: 10px;
        opacity: 0.6;
      }
      
      /* Dropdown */
      .dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        margin-top: 8px;
        background: var(--color-block-bg);
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 8px;
        min-width: 200px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
      }
      
      .nav-item:hover .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }
      
      .dropdown-item {
        display: block;
        padding: 10px 16px;
        color: var(--color-text);
        text-decoration: none;
        border-radius: 6px;
        transition: all 0.2s ease;
        font-size: 14px;
      }
      
      .dropdown-item:hover {
        background: rgba(59, 130, 246, 0.1);
        color: var(--color-primary);
      }
      
      /* Mobile Menu Button */
      .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        width: 40px;
        height: 40px;
        position: relative;
        z-index: 1002;
      }
      
      .mobile-menu-btn span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--color-text);
        margin: 0 auto;
        transition: all 0.3s ease;
        position: absolute;
        left: 8px;
      }
      
      .mobile-menu-btn span:nth-child(1) {
        top: 10px;
      }
      
      .mobile-menu-btn span:nth-child(2) {
        top: 19px;
      }
      
      .mobile-menu-btn span:nth-child(3) {
        top: 28px;
      }
      
      /* Hamburger animation */
      .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 19px;
      }
      
      .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
      }
      
      .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: 19px;
      }
      
      /* Mobile Menu Overlay */
      .mobile-menu-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: rgba(0, 0, 0, 0.5) !important;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 998 !important;
      }
      
      #mobileMenuOverlay.mobile-menu-overlay.active {
        opacity: 1 !important;
        visibility: visible !important;
      }
      
      /* Mobile Menu Container */
      #mobileMenu,
      .mobile-menu {
        position: fixed !important;
        top: 0 !important;
        right: -350px !important;
        width: 85%;
        max-width: 320px;
        height: 100vh !important;
        background: #FFFFFF !important;
        transition: right 0.3s ease !important;
        z-index: 999 !important;
        overflow-y: auto;
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
        display: block !important;
        visibility: visible !important;
      }
      
      #mobileMenu.mobile-menu.active {
        right: 0 !important;
      }
      
      .mobile-menu-header {
        padding: 20px;
        border-bottom: 1px solid var(--color-border);
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      
      .mobile-menu-logo {
        font-size: 20px;
        font-weight: 700;
        color: var(--color-text);
      }
      
      .mobile-menu-content {
        padding: 20px;
      }
      
      .mobile-nav-item {
        margin-bottom: 16px;
      }
      
      .mobile-nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 16px;
        background: #F9FAFB;
        border-radius: 8px;
        color: var(--color-text);
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        transition: all 0.2s ease;
        cursor: pointer;
        border: none;
        width: 100%;
        text-align: left;
      }
      
      .mobile-nav-link:hover {
        background: rgba(59, 130, 246, 0.1);
        color: var(--color-primary);
      }
      
      .mobile-nav-link.has-dropdown::after {
        content: '▼';
        font-size: 12px;
        transition: transform 0.3s ease;
      }
      
      .mobile-nav-link.has-dropdown.active::after {
        transform: rotate(180deg);
      }
      
      .mobile-dropdown {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-top: 8px;
        padding-left: 16px;
      }
      
      .mobile-dropdown.active {
        max-height: 500px;
      }
      
      .mobile-dropdown-item {
        display: block;
        padding: 10px 16px;
        color: var(--color-text);
        text-decoration: none;
        font-size: 14px;
        border-radius: 6px;
        transition: all 0.2s ease;
        margin-bottom: 4px;
      }
      
      .mobile-dropdown-item:hover {
        background: rgba(59, 130, 246, 0.1);
        color: var(--color-primary);
      }
      
      /* Blocks */
      .h1-block, .intro-block, .casino-table-block, .content-block, .toc-block {
        background: var(--color-block-bg);
        border-radius: var(--block-radius);
        box-shadow: var(--block-shadow);
        padding: var(--block-padding);
        margin-bottom: var(--block-spacing);
      }
      
      /* Table of Contents */
      .toc-block {
        padding: 20px var(--block-padding);
      }
      
      .toc-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        padding: 10px 0;
        scrollbar-width: thin;
      }
      
      .toc-container::-webkit-scrollbar {
        height: 4px;
      }
      
      .toc-container::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 2px;
      }
      
      .toc-container::-webkit-scrollbar-thumb {
        background: #c1c1c1;
        border-radius: 2px;
      }
      
      .toc-items {
        display: flex;
        gap: 24px;
        flex-wrap: nowrap;
        justify-content: flex-start;
        min-width: max-content;
        padding: 0 10px;
      }
      
      .toc-item {
        flex-shrink: 0;
        color: var(--color-text);
        text-decoration: none;
        font-size: 1rem;
        font-weight: 400;
        padding: 8px 16px;
        border: 1px solid var(--color-border);
        border-radius: 20px;
        transition: all 0.2s ease;
        white-space: nowrap;
      }
      
      .toc-item:hover {
        color: var(--color-primary);
        border-color: var(--color-primary);
        background: rgba(59, 130, 246, 0.05);
      }
      
      /* Content blocks - ensure H2 at top of block */
      .content-block h2 {
        margin-top: 0;
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 1.5rem;
      }
      
      .content-block h2:first-child {
        margin-top: 0;
      }
      
      .h1-block {
        text-align: left;
      }
      
      .h1-block h1 {
        margin-bottom: 0;
        border-bottom: none;
        text-align: left;
      }
      
      /* Content Blocks */
      .content-block {
        background: var(--color-block-bg);
        border-radius: var(--block-radius);
        box-shadow: var(--block-shadow);
        padding: var(--block-padding);
        margin-bottom: var(--block-spacing);
        position: relative;
        z-index: 2;
      }
      
      .content-block h2 {
        margin-top: 0;
        border-bottom: none;
      }
      
      .intro-block p {
        font-size: 1rem; /* 16px - same as body text */
        line-height: 1.75;
        color: var(--color-text); /* Pure black */
        margin-bottom: 0;
        font-weight: 400;
      }
      
      /* Casino List */
      .casino-table-block {
        margin-bottom: var(--block-spacing);
      }
      
      .casino-table-block.single-casino {
        background: var(--color-block-bg);
        border-radius: var(--block-radius);
        box-shadow: var(--block-shadow);
        padding: var(--block-padding);
      }
      
      .casino-table-block.single-casino h2 {
        margin-top: 0;
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
        border-bottom: none;
      }
      
      .casino-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
      
      /* Casino Item Block */
      .casino-item {
        background: var(--color-block-bg);
        border-radius: var(--block-radius);
        box-shadow: var(--block-shadow);
        padding: 24px;
        display: flex;
        align-items: center;
        gap: 24px;
        position: relative;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }
      
      .casino-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      }
      
      /* Casino Number */
      .casino-number {
        position: absolute;
        left: -12px;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #3B82F6, #2563EB);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 18px;
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
      }
      
      /* Top 3 Styling */
      .casino-item:nth-child(1) .casino-number {
        background: linear-gradient(135deg, #F59E0B, #D97706);
        box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
      }
      
      .casino-item:nth-child(2) .casino-number {
        background: linear-gradient(135deg, #6B7280, #4B5563);
        box-shadow: 0 2px 8px rgba(107, 114, 128, 0.4);
      }
      
      .casino-item:nth-child(3) .casino-number {
        background: linear-gradient(135deg, #A78BFA, #8B5CF6);
        box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
      }
      
      /* Casino Logo Section */
      .casino-logo {
        flex-shrink: 0;
        margin-left: 40px;
      }
      
      .casino-logo img {
        width: 200px;
        height: 100px;
        object-fit: contain;
        border-radius: 8px;
        background: #F9FAFB;
        padding: 12px;
        border: 1px solid var(--color-border);
      }
      
      .logo-placeholder {
        width: 200px;
        height: 100px;
        background: linear-gradient(135deg, #F3F4F6, #E5E7EB);
        color: var(--color-text-muted);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        font-weight: 700;
        font-size: 36px;
        border: 1px solid var(--color-border);
      }
      
      /* Casino Info Section */
      .casino-info {
        flex: 1;
        min-width: 0;
      }
      
      .casino-name {
        font-weight: 700;
        font-size: 20px;
        color: var(--color-text);
        margin-bottom: 8px;
        margin-top: 0;
      }
      
      .casino-bonus {
        font-weight: 600;
        color: var(--color-success);
        font-size: 16px;
        margin-bottom: 8px;
      }
      
      .casino-review-link {
        color: var(--color-primary);
        display: inline-block;
        text-decoration: none;
        transition: all 0.2s ease;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 500;
      }
      
      .casino-review-link:hover {
        background: rgba(59, 130, 246, 0.1);
        color: #2563EB;
      }
      
      /* Casino Rating Section - Modern Star Design */
      .casino-rating {
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 0 20px;
      }
      
      .casino-rating-stars {
        display: flex;
        gap: 4px;
        position: relative;
      }
      
      .star {
        width: 24px;
        height: 24px;
        background: #E5E7EB;
        clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
      }
      
      .star.filled {
        background: linear-gradient(135deg, #F59E0B, #D97706);
      }
      
      .star.half-filled {
        background: linear-gradient(90deg, #F59E0B 50%, #E5E7EB 50%);
      }
      
      .casino-rating-value {
        font-size: 28px;
        font-weight: 700;
        color: var(--color-text);
        line-height: 1;
      }
      
      .casino-rating-label {
        font-size: 12px;
        color: var(--color-text-muted);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 600;
      }
      
      .casino-rating-extra {
        margin-top: 8px;
        font-size: 11px;
        color: var(--color-text-muted);
        line-height: 1.4;
      }
      
      .casino-payout, .casino-winrate {
        white-space: nowrap;
        margin-bottom: 2px;
      }
      
      .highlight-value {
        color: var(--color-success);
        font-weight: 700;
        font-size: 12px;
      }
      
      /* Casino Features Section */
      .casino-features {
        flex: 1;
        font-size: 14px;
        line-height: 1.6;
        color: var(--color-text-muted);
      }
      
      .casino-features-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
      }
      
      .casino-feature-item {
        display: flex;
        align-items: center;
        gap: 8px;
      }
      
      .casino-feature-item::before {
        content: '✓';
        color: var(--color-success);
        font-weight: 700;
        font-size: 16px;
      }
      
      /* Features Toggle Button */
      .casino-features-toggle {
        background: none;
        border: 1px solid var(--color-border);
        color: var(--color-primary);
        font-size: 13px;
        padding: 4px 12px;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.2s ease;
        margin-top: 8px;
        font-weight: 500;
      }
      
      .casino-features-toggle:hover {
        background: var(--color-primary);
        color: white;
        border-color: var(--color-primary);
      }
      
      .casino-features-hidden {
        margin-top: 8px;
      }
      
      /* CTA Button */
      .casino-cta {
        flex-shrink: 0;
      }
      
      /* Centered CTA button for brand reviews */
      .casino-cta-center {
        text-align: center;
        margin: 32px 0;
      }
      
      /* CTA wrapper for mobile order */
      .casino-cta-wrapper {
        padding: 0;
        background: transparent;
        box-shadow: none;
      }
      
      .cta-button {
        display: inline-block;
        background: linear-gradient(135deg, var(--color-primary), #2563EB);
        color: white;
        padding: 16px 32px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        transition: all 0.3s ease;
        font-size: 16px;
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }
      
      .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
        color: white;
      }
      
      /* Lists - Minimalist */
      ul, ol {
        margin: 1.5rem 0;
        padding-left: 1.5rem;
      }
      
      ul {
        list-style: none;
      }
      
      ul li {
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 0.75rem;
      }
      
      ul li::before {
        content: '•';
        position: absolute;
        left: 0;
        color: var(--color-text);
        font-weight: 400;
        font-size: 1rem;
      }
      
      ol, .ordered-list {
        counter-reset: li-counter;
        list-style: none;
      }
      
      ol li, .ordered-list li {
        position: relative;
        padding-left: 2rem;
        margin-bottom: 0.75rem;
        counter-increment: li-counter;
      }
      
      ol li::before, .ordered-list li::before {
        content: counter(li-counter) '.';
        position: absolute;
        left: 0;
        color: var(--color-text);
        font-weight: 400;
      }
      
      /* Images */
      img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 1.5rem auto;
        border-radius: var(--block-radius);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      }
      
      /* Tables in content */
      .content-block .table-container {
        overflow-x: auto;
        margin: 1.5rem 0;
        -webkit-overflow-scrolling: touch;
      }
      
      .content-block table {
        width: 100%;
        border-collapse: collapse;
        min-width: 100%;
        border: 1px solid var(--color-border);
      }
      
      .content-block table th,
      .content-block table td {
        padding: 0.75rem;
        border: 1px solid var(--color-border);
        text-align: left;
        white-space: nowrap;
      }
      
      .content-block table th {
        background: #F9FAFB;
        font-weight: 600;
      }
      
      /* Allow wrapping for content cells if needed */
      .content-block table td {
        white-space: normal;
      }
      
      /* Footer */
      .site-footer {
        background: var(--color-block-bg);
        border-radius: var(--block-radius);
        box-shadow: var(--block-shadow);
        padding: var(--block-padding);
        margin-top: var(--block-spacing);
        text-align: left;
      }
      
      .footer-content {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
      }
      
      .footer-text {
        margin-bottom: 24px;
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        text-align: left;
      }
      
      .footer-text p {
        color: var(--color-text-secondary);
        line-height: 1.6;
        margin: 0 0 12px 0;
        text-align: left;
      }
      
      .footer-text p:last-child {
        margin-bottom: 0;
      }
      
      .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;
        text-align: center;
      }
      
      .copyright {
        color: var(--color-text-secondary);
        font-size: 14px;
        margin: 0;
      }
      
      .footer-links {
        display: flex;
        gap: 8px;
        align-items: center;
        font-size: 14px;
      }
      
      .footer-links a {
        color: var(--color-text-secondary);
        text-decoration: none;
        transition: color 0.2s ease;
      }
      
      .footer-links a:hover {
        color: var(--color-primary);
      }
      
      .footer-links .separator {
        color: var(--color-text-secondary);
        opacity: 0.5;
      }
      
      /* Scroll to top button */
      .scroll-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background-color: var(--color-primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        border: none;
        font-size: 24px;
      }
      
      .scroll-to-top:hover {
        background-color: var(--color-primary-dark);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
      }
      
      .scroll-to-top.visible {
        opacity: 1;
        visibility: visible;
      }
      
      .scroll-to-top svg {
        width: 24px;
        height: 24px;
        fill: currentColor;
      }
      
      /* Show More Casinos Button */
      .casino-item.hidden {
        display: none;
      }
      
      .casino-item.revealed {
        animation: fadeInUp 0.4s ease-out;
      }
      
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      
      .show-more-container {
        display: flex;
        justify-content: center;
        margin-top: 32px;
        padding: 24px 0;
      }
      
      .show-more-btn {
        background: var(--color-block-bg);
        border: 2px solid var(--color-primary);
        border-radius: 50px;
        padding: 16px 32px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 12px;
        transition: all 0.3s ease;
        color: var(--color-primary);
        font-weight: 600;
        box-shadow: var(--block-shadow);
      }
      
      .show-more-btn:hover {
        background: var(--color-primary);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
      }
      
      .show-more-btn svg {
        width: 24px;
        height: 24px;
      }
      
      .show-more-btn .arrow-down {
        animation: bounce 2s infinite;
      }
      
      @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
          transform: translateY(0);
        }
        40% {
          transform: translateY(4px);
        }
        60% {
          transform: translateY(2px);
        }
      }
      
      /* Gift Box Button */
      .gift-box-container {
        margin-left: auto;
        margin-right: 20px;
      }
      
      .gift-box-btn {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        position: relative;
        transition: transform 0.3s ease;
      }
      
      .gift-box-btn:hover {
        transform: scale(1.1);
      }
      
      .gift-box-btn img {
        width: 48px;
        height: 48px;
        object-fit: contain;
      }
      
      /* Bonus Popup */
      .bonus-popup {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        display: none;
      }
      
      .bonus-popup.active {
        display: block;
      }
      
      .bonus-popup-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        cursor: pointer;
      }
      
      .bonus-popup-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: var(--color-block-bg);
        border-radius: 16px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        max-width: 500px;
        width: 90%;
        max-height: 80vh;
        overflow-y: auto;
        animation: popupSlideIn 0.3s ease-out;
        position: relative;
      }
      
      @keyframes popupSlideIn {
        from {
          opacity: 0;
          transform: translate(-50%, -40%);
        }
        to {
          opacity: 1;
          transform: translate(-50%, -50%);
        }
      }
      
      .bonus-popup-close {
        position: absolute;
        top: 8px;
        right: 8px;
        background: white;
        border: 1px solid rgba(0, 0, 0, 0.1);
        font-size: 24px;
        cursor: pointer;
        color: var(--color-text);
        opacity: 0.8;
        transition: all 0.2s ease;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        z-index: 10;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      }
      
      .bonus-popup-close:hover {
        opacity: 1;
        background: rgba(0, 0, 0, 0.1);
      }
      
      .bonus-popup-title {
        padding: 24px 24px 16px;
        margin: 0;
        font-size: 24px;
        font-weight: 700;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      }
      
      .bonus-casino-list {
        padding: 24px;
        padding-top: 32px;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      
      .bonus-casino-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px;
        background: rgba(0, 0, 0, 0.02);
        border-radius: 10px;
        transition: all 0.2s ease;
        border: 1px solid rgba(0, 0, 0, 0.05);
      }
      
      .bonus-casino-item:hover {
        background: rgba(59, 130, 246, 0.1);
        transform: translateX(4px);
      }
      
      .bonus-casino-logo {
        width: 70px;
        height: 50px;
        flex-shrink: 0;
      }
      
      .bonus-casino-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 8px;
      }
      
      .bonus-casino-logo .logo-placeholder {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #3B82F6, #2563EB);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 700;
        border-radius: 8px;
      }
      
      .bonus-casino-info {
        flex: 1;
      }
      
      .bonus-casino-name {
        margin: 0 0 4px 0;
        font-size: 18px;
        font-weight: 600;
      }
      
      .bonus-casino-bonus {
        color: var(--color-primary);
        font-size: 14px;
        font-weight: 500;
      }
      
      .bonus-casino-cta {
        background: linear-gradient(135deg, #3B82F6, #2563EB);
        color: white;
        text-decoration: none;
        padding: 8px 20px;
        border-radius: 6px;
        font-weight: 600;
        font-size: 13px;
        transition: all 0.2s ease;
        white-space: nowrap;
        flex-shrink: 0;
      }
      
      .bonus-casino-cta:hover {
        background: linear-gradient(135deg, #2563EB, #1D4ED8);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
      }
      
      /* Hide mobile gift box by default */
      .mobile-gift-box {
        display: none;
      }
      
      /* Mobile gift box styles */
      @media (max-width: 768px) {
        .gift-box-container {
          display: none;
        }
        
        .mobile-gift-box {
          display: block;
          position: fixed;
          top: 70px;
          left: 15px;
          z-index: 998;
          animation: mobileGiftPulse 2s ease-in-out infinite;
        }
        
        .mobile-gift-box .gift-box-btn {
          width: 50px;
          height: 50px;
          padding: 0;
          background: white;
          border-radius: 50%;
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          border: 2px solid var(--color-primary);
          overflow: hidden;
          display: flex;
          align-items: center;
          justify-content: center;
        }
        
        .mobile-gift-box .gift-box-btn img {
          width: 28px;
          height: 28px;
          object-fit: contain;
        }
        
        @keyframes mobileGiftPulse {
          0%, 100% { transform: scale(1); }
          50% { transform: scale(1.05); }
        }
      }
      
      /* Hide scroll to top on mobile */
      @media (max-width: 768px) {
        .scroll-to-top {
          display: none;
        }
      }
      
      /* Mobile navigation */
      @media (max-width: 768px) {
        .site-header {
          padding: 12px 16px;
          position: sticky;
          top: 0;
          z-index: 100;
        }
        
        .main-nav {
          display: none;
        }
        
        .mobile-menu-btn {
          display: block;
        }
        
        /* Hide casino separators on mobile - they cause overlap issues */
        .casino-separator {
          display: none !important;
        }
        
        /* Ensure content blocks cover separators */
        .content-block, .h1-block, .intro-block, .casino-table-block, .toc-block {
          background: var(--color-block-bg);
          position: relative;
          z-index: 10;
        }
        
        /* Main content should create new stacking context */
        .main-content {
          position: relative;
          z-index: 5;
          background: var(--color-background);
        }
      }
      
      /* Mobile styles */
      @media (max-width: 768px) {
        :root {
          --block-padding: 20px;
        }
        
        h1 { font-size: 28px; }
        h2 { font-size: 24px; }
        h3 { font-size: 20px; }
        
        /* Reorder blocks on mobile - table before intro */
        .main-content {
          display: flex;
          flex-direction: column;
        }
        
        .h1-block {
          order: 1;
        }
        
        .casino-table-block {
          order: 2;
        }
        
        .intro-block {
          order: 3;
        }
        
        .toc-block {
          order: 4;
        }
        
        .content-block {
          order: 5;
        }
        
        /* TOC mobile styles */
        .toc-items {
          gap: 12px;
        }
        
        .toc-item {
          font-size: 1rem;
          padding: 6px 12px;
        }
        
        .site-header {
          padding: 12px 16px;
        }
        
        .casino-item {
          flex-direction: column;
          padding: 20px;
          gap: 16px;
          position: relative;
        }
        
        .casino-number {
          position: absolute;
          top: 12px;
          right: 12px;
          left: auto;
          width: 28px;
          height: 28px;
          font-size: 14px;
        }
        
        /* Mobile Layout - Clean vertical structure */
        .casino-logo {
          margin-left: 0;
          width: 100%;
          display: flex;
          justify-content: center;
        }
        
        .casino-logo img,
        .logo-placeholder {
          width: 180px;
          height: 90px;
        }
        
        .casino-info {
          width: 100%;
          text-align: center;
        }
        
        .casino-name {
          font-size: 18px;
          margin-bottom: 4px;
        }
        
        .casino-bonus {
          font-size: 14px;
          margin-bottom: 8px;
        }
        
        .casino-review-link {
          font-size: 13px;
        }
        
        .casino-rating {
          width: 100%;
          padding: 12px;
          background: #F9FAFB;
          border-radius: 8px;
          flex-direction: row;
          justify-content: center;
          gap: 16px;
        }
        
        .casino-rating-stars {
          display: flex;
          gap: 2px;
        }
        
        .star {
          width: 20px;
          height: 20px;
        }
        
        .casino-rating-value {
          font-size: 24px;
        }
        
        .casino-rating-extra {
          font-size: 10px;
        }
        
        .casino-rating-label {
          display: none;
        }
        
        .casino-features {
          width: 100%;
          background: #F9FAFB;
          padding: 12px;
          border-radius: 8px;
        }
        
        .casino-features-list {
          gap: 6px;
        }
        
        .casino-feature-item {
          font-size: 13px;
        }
        
        .casino-features-toggle {
          font-size: 12px;
          padding: 3px 10px;
          margin-top: 6px;
        }
        
        .casino-cta {
          width: 100%;
        }
        
        .cta-button {
          width: 100%;
          display: block;
          padding: 14px;
          font-size: 16px;
          font-weight: 600;
        }
        
        /* Footer mobile */
        .footer-bottom {
          gap: 12px;
        }
        
        .footer-links {
          flex-wrap: wrap;
          justify-content: center;
          gap: 6px;
        }
        
        .footer-text {
          margin-bottom: 20px;
          padding-bottom: 20px;
        }
        
        .footer-text p {
          font-size: 14px;
        }
        
        /* Table responsiveness on mobile */
        .content-block .table-container {
          margin: 1rem -1rem;
          padding: 0 1rem;
          max-width: 100vw;
        }
        
        .content-block table {
          font-size: 13px;
        }
        
        .content-block table th,
        .content-block table td {
          padding: 0.5rem;
          font-size: 13px;
        }
        
        /* Make specific columns wrap on mobile if needed */
        .content-block table td:last-child {
          white-space: normal;
          min-width: 100px;
        }
      }
      
      /* Casino Visual Elements */
      .list-emoji {
        display: inline-block;
        margin-right: 5px;
      }
      
      .blinking-stars {
        animation: blink 1.5s ease-in-out infinite;
      }
      
      .important-text {
        position: relative;
        font-weight: 500;
      }
      
      @keyframes blink {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.3; }
      }
      
      /* Casino Separators */
      .casino-separator {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 40px 0;
        opacity: 0.6;
        position: relative;
        z-index: -1;
        height: 40px;
      }
      
      .spinning-coin {
        animation: spin 3s linear infinite;
      }
      
      .rotating-dice {
        animation: rotate 4s ease-in-out infinite;
      }
      
      .floating-cards {
        animation: float 3s ease-in-out infinite;
      }
      
      .pulsing-chip {
        animation: pulse 2s ease-in-out infinite;
      }
      
      @keyframes spin {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
      }
      
      @keyframes rotate {
        0%, 100% { transform: rotate(0deg); }
        50% { transform: rotate(180deg); }
      }
      
      @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
      }
      
      @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.1); }
      }
      
      /* List styling - removed conflicting styles that were breaking ordered list numbering */
      /* The proper list styles are defined earlier in the CSS and in getMarkdownStyles() */
      
      /* Mobile adjustments */
      @media (max-width: 768px) {
        .casino-separator {
          margin: 30px 0;
        }
      }
      
      
    /* Enhanced table styles */
    .table-wrapper {
      overflow-x: auto;
      margin: 20px 0;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    /* List emoji styles */
    .list-emoji {
      display: inline-block;
      margin-right: 5px;
      font-size: 1.1em;
    }
    
    /* Casino separator animations */
    .casino-separator {
      text-align: center;
      margin: 50px 0;
      position: relative;
      z-index: 1;
      height: 40px;
    }
    
    .spinning-coin {
      animation: spin 3s linear infinite;
    }
    
    .rotating-dice {
      animation: rotate 4s ease-in-out infinite;
    }
    
    .floating-cards {
      animation: float 3s ease-in-out infinite;
    }
    
    .pulsing-chip {
      animation: pulse 2s ease-in-out infinite;
    }
    
    @keyframes spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    
    @keyframes rotate {
      0%, 100% { transform: rotate(0deg); }
      50% { transform: rotate(180deg); }
    }
    
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    
    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.1); }
    }
    
    .content-table {
      width: 100%;
      border-collapse: collapse;
      background: white;
      font-size: 14px;
      border: 1px solid #e0e0e0;
    }
    
    .content-table th,
    .content-table td {
      padding: 12px 16px;
      text-align: left;
      border: 1px solid #e0e0e0;
    }
    
    .content-table th {
      background: #f5f5f5;
      font-weight: 600;
      color: #333;
      white-space: nowrap;
    }
    
    
    .content-table tr:hover {
      background: #f9f9f9;
    }
    
    .content-table td:first-child,
    .content-table th:first-child {
      font-weight: 500;
    }
    
    /* Code block styles */
    .code-block {
      background: #f6f8fa;
      border-radius: 6px;
      padding: 16px;
      overflow-x: auto;
      margin: 16px 0;
      border: 1px solid #e1e4e8;
      font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
      font-size: 14px;
      line-height: 1.5;
    }
    
    .code-block code {
      background: transparent;
      padding: 0;
      color: #24292e;
    }
    
    /* Inline code */
    code:not(pre code) {
      background: #f3f4f6;
      padding: 2px 6px;
      border-radius: 3px;
      font-size: 0.9em;
      color: #e01e5a;
      font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    }
    
    /* Blockquote styles */
    .styled-quote {
      border-left: 4px solid #4CAF50;
      padding-left: 20px;
      margin: 20px 0;
      color: #555;
      font-style: italic;
      background: #f9f9f9;
      padding: 15px 20px;
      border-radius: 0 4px 4px 0;
    }
    
    .styled-quote p {
      margin: 0;
    }
    
    .styled-quote p + p {
      margin-top: 10px;
    }
    
    /* List styles */
    .unordered-list,
    .ordered-list {
      margin: 16px 0;
      /* Removed padding-left to work with counter-based implementation */
    }
    
    .unordered-list li,
    .ordered-list li {
      margin: 8px 0;
      line-height: 1.6;
    }
    
    .unordered-list li::marker {
      color: #4CAF50;
    }
    
    /* Removed .ordered-list li::marker to avoid conflict with counter-based implementation */
    
    /* Nested lists */
    .unordered-list ul,
    .unordered-list ol,
    .ordered-list ul,
    .ordered-list ol {
      margin-top: 8px;
      margin-bottom: 8px;
    }
    
    /* Horizontal rule */
    hr {
      border: none;
      border-top: 2px solid #e0e0e0;
      margin: 30px 0;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .table-wrapper {
        margin: 15px 0;
        border-radius: 0;
        box-shadow: none;
        max-width: 100vw;
        -webkit-overflow-scrolling: touch;
      }
      
      .content-table {
        font-size: 13px;
        min-width: 100%;
      }
      
      .content-table th,
      .content-table td {
        padding: 8px 12px;
      }
      
      .code-block {
        padding: 12px;
        font-size: 13px;
        margin: 12px 0;
      }
      
      .styled-quote {
        padding: 12px 16px;
        margin: 16px 0;
      }
    }
  