@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

      :root {
        --color-background: #f4f8fa;
        --color-block-bg: #fefffd;
        --color-text: #010000;
        --color-text-muted: #6d7382;
        --color-border: #e5e3e2;
        --color-primary: #397ff8;
        --color-success: #0dbb7e;
        --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 */
      .FfBvfx p {
        margin-bottom: 1rem;
        line-height: 1.75;
      }
      
      .FfBvfx p:last-child {
        margin-bottom: 0;
      }
      
      /* Spacing between different block elements */
      .FfBvfx > * + * {
        margin-top: 1rem;
      }
      
      .FfBvfx h2,
      .FfBvfx h3,
      .FfBvfx h4 {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
      }
      
      .FfBvfx ul,
      .FfBvfx ol {
        margin: 1rem 0;
      }
      
      /* Header */
      .a7FkBz {
        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;
        flex-direction: row;
        align-items: center;
        gap: 16px;
        position: relative;
        z-index: 100;
      }

      .vwEXAI {
        flex-shrink: 0;
      }
      
      .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 24px;
        font-weight: 700;
        color: var(--color-text);
        flex-shrink: 0;
      }
      
      .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 */
      .vwEXAI {
        display: flex;
        gap: 32px;
        align-items: center;
      }
      
      .bMsP0y {
        position: relative;
      }
      
      .nxrVK {
        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;
      }
      
      .nxrVK:hover {
        background: rgba(59, 130, 246, 0.1);
        color: var(--color-primary);
      }
      
      .nxrVK::after {
        content: '▼';
        font-size: 10px;
        opacity: 0.6;
      }
      
      /* Dropdown */
      .ZUXSj {
        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;
      }
      
      .bMsP0y:hover .ZUXSj {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }
      
      .Yb8hU {
        display: block;
        padding: 10px 16px;
        color: var(--color-text);
        text-decoration: none;
        border-radius: 6px;
        transition: all 0.2s ease;
        font-size: 14px;
      }
      
      .Yb8hU:hover {
        background: rgba(59, 130, 246, 0.1);
        color: var(--color-primary);
      }
      
      /* Mobile Menu Button */
      .EOYM3 {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        width: 40px;
        height: 40px;
        position: relative;
        z-index: 1002;
      }
      
      .EOYM3 span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--color-text);
        margin: 0 auto;
        transition: all 0.3s ease;
        position: absolute;
        left: 8px;
      }
      
      .EOYM3 span:nth-child(1) {
        top: 10px;
      }
      
      .EOYM3 span:nth-child(2) {
        top: 19px;
      }
      
      .EOYM3 span:nth-child(3) {
        top: 28px;
      }
      
      /* Hamburger animation */
      .EOYM3.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 19px;
      }
      
      .EOYM3.active span:nth-child(2) {
        opacity: 0;
      }
      
      .EOYM3.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: 19px;
      }
      
      /* Mobile Menu Overlay */
      .M6x2zV {
        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;
      }
      
      #pdQvL.M6x2zV.active {
        opacity: 1 !important;
        visibility: visible !important;
      }
      
      /* Mobile Menu Container */
      #IVLC4,
      .SnakwJ {
        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;
      }
      
      #IVLC4.SnakwJ.active {
        right: 0 !important;
      }
      
      .WADYf {
        padding: 20px;
        border-bottom: 1px solid var(--color-border);
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      
      .p23LV {
        font-size: 20px;
        font-weight: 700;
        color: var(--color-text);
      }
      
      .HD9q6 {
        padding: 20px;
      }
      
      .Py87uc {
        margin-bottom: 16px;
      }
      
      .DdzPhS {
        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;
      }
      
      .DdzPhS:hover {
        background: rgba(59, 130, 246, 0.1);
        color: var(--color-primary);
      }
      
      .DdzPhS.WuFP0U::after {
        content: '▼';
        font-size: 12px;
        transition: transform 0.3s ease;
      }
      
      .DdzPhS.WuFP0U.active::after {
        transform: rotate(180deg);
      }
      
      .MWpSK7 {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-top: 8px;
        padding-left: 16px;
      }
      
      .MWpSK7.active {
        max-height: 500px;
      }
      
      .vNsuRE {
        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;
      }
      
      .vNsuRE:hover {
        background: rgba(59, 130, 246, 0.1);
        color: var(--color-primary);
      }
      
      /* Blocks */
      .RMFg5, .w4EM3, .Hpfax, .FfBvfx, .OXsR8 {
        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 */
      .OXsR8 {
        padding: 20px var(--block-padding);
      }
      
      .pLFynu {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        padding: 10px 0;
        scrollbar-width: thin;
      }
      
      .pLFynu::-webkit-scrollbar {
        height: 4px;
      }
      
      .pLFynu::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 2px;
      }
      
      .pLFynu::-webkit-scrollbar-thumb {
        background: #c1c1c1;
        border-radius: 2px;
      }
      
      .hI420v {
        display: flex;
        gap: 24px;
        flex-wrap: nowrap;
        justify-content: flex-start;
        min-width: max-content;
        padding: 0 10px;
      }
      
      .i7vpbP {
        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;
      }
      
      .i7vpbP: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 */
      .FfBvfx h2 {
        margin-top: 0;
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 1.5rem;
      }
      
      .FfBvfx h2:first-child {
        margin-top: 0;
      }
      
      .RMFg5 {
        text-align: left;
      }
      
      .RMFg5 h1 {
        margin-bottom: 0;
        border-bottom: none;
        text-align: left;
      }
      
      /* Content Blocks */
      .FfBvfx {
        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;
      }
      
      .FfBvfx h2 {
        margin-top: 0;
        border-bottom: none;
      }
      
      .w4EM3 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 */
      .Hpfax {
        margin-bottom: var(--block-spacing);
      }
      
      .Hpfax.single-casino {
        background: var(--color-block-bg);
        border-radius: var(--block-radius);
        box-shadow: var(--block-shadow);
        padding: var(--block-padding);
      }
      
      .Hpfax.single-casino h2 {
        margin-top: 0;
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
        border-bottom: none;
      }
      
      .pL2KH5 {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
      
      /* Casino Item Block */
      .DXrJt {
        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;
      }
      
      .DXrJt:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      }
      
      /* Casino Number */
      .CXIXEc {
        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 */
      .DXrJt:nth-child(1) .CXIXEc {
        background: linear-gradient(135deg, #F59E0B, #D97706);
        box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
      }
      
      .DXrJt:nth-child(2) .CXIXEc {
        background: linear-gradient(135deg, #6B7280, #4B5563);
        box-shadow: 0 2px 8px rgba(107, 114, 128, 0.4);
      }
      
      .DXrJt:nth-child(3) .CXIXEc {
        background: linear-gradient(135deg, #A78BFA, #8B5CF6);
        box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
      }
      
      /* Casino Logo Section */
      .DT8wHr {
        flex-shrink: 0;
        margin-left: 40px;
      }
      
      .DT8wHr img {
        width: 200px;
        height: 100px;
        object-fit: contain;
        border-radius: 8px;
        background: #F9FAFB;
        padding: 12px;
        border: 1px solid var(--color-border);
      }
      
      .xVF2o {
        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 */
      .dF8Ns {
        flex: 1;
        min-width: 0;
      }
      
      .w4YFM {
        font-weight: 700;
        font-size: 20px;
        color: var(--color-text);
        margin-bottom: 8px;
        margin-top: 0;
      }
      
      .rbfvNx {
        font-weight: 600;
        color: var(--color-success);
        font-size: 16px;
        margin-bottom: 8px;
      }
      
      .c0Dglf {
        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;
      }
      
      .c0Dglf:hover {
        background: rgba(59, 130, 246, 0.1);
        color: #2563EB;
      }
      
      /* Casino Rating Section - Modern Star Design */
      .INT6I {
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 0 20px;
      }
      
      .LFP7uE {
        display: flex;
        gap: 4px;
        position: relative;
      }
      
      .rOqFb {
        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%);
      }
      
      .rOqFb.csu8tO {
        background: linear-gradient(135deg, #F59E0B, #D97706);
      }
      
      .rOqFb.TC30e7 {
        background: linear-gradient(90deg, #F59E0B 50%, #E5E7EB 50%);
      }
      
      .sjsHs {
        font-size: 28px;
        font-weight: 700;
        color: var(--color-text);
        line-height: 1;
      }
      
      .AvhVPO {
        font-size: 12px;
        color: var(--color-text-muted);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 600;
      }
      
      .r2ZUV {
        margin-top: 8px;
        font-size: 11px;
        color: var(--color-text-muted);
        line-height: 1.4;
      }
      
      .fvX2e, .nJd4z {
        white-space: nowrap;
        margin-bottom: 2px;
      }
      
      .ZLb7d {
        color: var(--color-success);
        font-weight: 700;
        font-size: 12px;
      }
      
      /* Casino Features Section */
      .hh5nZ1 {
        flex: 1;
        font-size: 14px;
        line-height: 1.6;
        color: var(--color-text-muted);
      }
      
      .So36GG {
        display: flex;
        flex-direction: column;
        gap: 8px;
      }
      
      .bSaHDN {
        display: flex;
        align-items: center;
        gap: 8px;
      }
      
      .bSaHDN::before {
        content: '✓';
        color: var(--color-success);
        font-weight: 700;
        font-size: 16px;
      }
      
      .ASbqD {
        margin-top: 8px;
      }
      
      /* CTA Button */
      .RDgdFd {
        flex-shrink: 0;
      }
      
      /* Centered CTA button for brand reviews */
      .QlNNqv {
        text-align: center;
        margin: 32px 0;
      }
      
      /* CTA wrapper for mobile order */
      .SzB50 {
        padding: 0;
        background: transparent;
        box-shadow: none;
      }
      
      .zMMduM {
        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;
      }
      
      .zMMduM: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, .lqAj9 {
        counter-reset: li-counter;
        list-style: none;
      }
      
      ol li, .lqAj9 li {
        position: relative;
        padding-left: 2rem;
        margin-bottom: 0.75rem;
        counter-increment: li-counter;
      }
      
      ol li::before, .lqAj9 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 */
      .FfBvfx .jNLMYU {
        overflow-x: auto;
        margin: 1.5rem 0;
        -webkit-overflow-scrolling: touch;
      }
      
      .FfBvfx table {
        width: 100%;
        border-collapse: collapse;
        min-width: 100%;
        border: 1px solid var(--color-border);
      }
      
      .FfBvfx table th,
      .FfBvfx table td {
        padding: 0.75rem;
        border: 1px solid var(--color-border);
        text-align: left;
        white-space: nowrap;
      }
      
      .FfBvfx table th {
        background: #F9FAFB;
        font-weight: 600;
      }
      
      /* Allow wrapping for content cells if needed */
      .FfBvfx table td {
        white-space: normal;
      }
      
      /* Footer */
      .heuxGC {
        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;
      }
      
      .iRdvn {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
      }
      
      .P1s2E1 {
        margin-bottom: 24px;
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        text-align: left;
      }
      
      .P1s2E1 p {
        color: var(--color-text-secondary);
        line-height: 1.6;
        margin: 0 0 12px 0;
        text-align: left;
      }
      
      .P1s2E1 p:last-child {
        margin-bottom: 0;
      }
      
      .eDyL6m {
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;
        text-align: center;
      }
      
      .bJSTFc {
        color: var(--color-text-secondary);
        font-size: 14px;
        margin: 0;
      }
      
      .f8pYn {
        display: flex;
        gap: 8px;
        align-items: center;
        font-size: 14px;
      }
      
      .f8pYn a {
        color: var(--color-text-secondary);
        text-decoration: none;
        transition: color 0.2s ease;
      }
      
      .f8pYn a:hover {
        color: var(--color-primary);
      }
      
      .f8pYn .qY3UKu {
        color: var(--color-text-secondary);
        opacity: 0.5;
      }
      
      /* Scroll to top button */
      .DK1tbi {
        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;
      }
      
      .DK1tbi:hover {
        background-color: var(--color-primary-dark);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
      }
      
      .DK1tbi.visible {
        opacity: 1;
        visibility: visible;
      }
      
      .DK1tbi svg {
        width: 24px;
        height: 24px;
        fill: currentColor;
      }
      
      /* Show More Casinos Button */
      .DXrJt.hidden {
        display: none;
      }
      
      .DXrJt.revealed {
        animation: fadeInUp 0.4s ease-out;
      }
      
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      
      /* Keyframes for animations */
      @keyframes popupSlideIn {
        from {
          opacity: 0;
          transform: translate(-50%, -40%);
        }
        to {
          opacity: 1;
          transform: translate(-50%, -50%);
        }
      }

      @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
          transform: translateY(0);
        }
        40% {
          transform: translateY(4px);
        }
        60% {
          transform: translateY(2px);
        }
      }

      @keyframes mobileGiftPulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
      }

      .Kj8kW {
        padding: 24px;
        padding-top: 32px;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      
      .ZN4MJ {
        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);
      }
      
      .ZN4MJ:hover {
        background: rgba(59, 130, 246, 0.1);
        transform: translateX(4px);
      }
      
      .K73yu {
        width: 70px;
        height: 50px;
        flex-shrink: 0;
      }
      
      .K73yu img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 8px;
      }
      
      .K73yu .xVF2o {
        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;
      }
      
      .BarTWY {
        flex: 1;
      }
      
      .zqHS8 {
        margin: 0 0 4px 0;
        font-size: 18px;
        font-weight: 600;
      }
      
      .EAzpV9 {
        color: var(--color-primary);
        font-size: 14px;
        font-weight: 500;
      }
      
      .RNrury {
        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;
      }
      
      .RNrury:hover {
        background: linear-gradient(135deg, #2563EB, #1D4ED8);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
      }
      
      /* Hide scroll to top on mobile */
      @media (max-width: 768px) {
        .DK1tbi {
          display: none;
        }
      }
      
      /* Mobile navigation */
      @media (max-width: 768px) {
        .a7FkBz {
          padding: 12px 16px;
          position: sticky;
          top: 0;
          z-index: 100;
          display: grid;
          grid-template-columns: 1fr auto;
          grid-template-rows: auto auto;
          gap: 8px;
        }

        .a7FkBz > .logo {
          grid-column: 1;
          grid-row: 1;
        }

        .a7FkBz > .vwEXAI {
          display: none;
        }

        .EOYM3 {
          display: block;
          grid-column: 2;
          grid-row: 1;
        }

        /* Note: .MpvWY grid positioning is in casino-stories.ts (randomized CSS) */

        /* Ensure content blocks have proper background */
        .FfBvfx, .RMFg5, .w4EM3, .Hpfax, .OXsR8 {
          background: var(--color-block-bg);
          position: relative;
          z-index: 10;
        }
        
        /* Main content should create new stacking context */
        .UtRCqo {
          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 - H1 → Author → Table → Intro → TOC → Content → Author Full */
        .UtRCqo {
          display: flex;
          flex-direction: column;
        }

        .RMFg5 {
          order: 1;
        }

        /* Author-compact section (top of page) — match real class, not the
         * alias 'ab-c' which was never emitted into HTML. */
        .mY0a9 {
          order: 2;
        }

        .Hpfax {
          order: 3;
        }

        .w4EM3 {
          order: 4;
        }

        .OXsR8 {
          order: 5;
        }

        .FfBvfx {
          order: 6;
        }

        /* Author-full section (above footer) — match real class, not the alias 'ab-f'. */
        .O5mHrS {
          order: 7;
        }

        /* TOC mobile styles */
        .hI420v {
          gap: 12px;
        }
        
        .i7vpbP {
          font-size: 1rem;
          padding: 6px 12px;
        }

        .DXrJt {
          flex-direction: column;
          padding: 20px;
          gap: 16px;
          position: relative;
        }
        
        .CXIXEc {
          position: absolute;
          top: 12px;
          right: 12px;
          left: auto;
          width: 28px;
          height: 28px;
          font-size: 14px;
        }
        
        /* Mobile Layout - Clean vertical structure */
        .DT8wHr {
          margin-left: 0;
          width: 100%;
          display: flex;
          justify-content: center;
        }
        
        .DT8wHr img,
        .xVF2o {
          width: 180px;
          height: 90px;
        }
        
        .dF8Ns {
          width: 100%;
          text-align: center;
        }
        
        .w4YFM {
          font-size: 18px;
          margin-bottom: 4px;
        }
        
        .rbfvNx {
          font-size: 14px;
          margin-bottom: 8px;
        }
        
        .c0Dglf {
          font-size: 13px;
        }
        
        .INT6I {
          width: 100%;
          padding: 12px;
          background: #F9FAFB;
          border-radius: 8px;
          flex-direction: row;
          justify-content: center;
          gap: 16px;
        }
        
        .LFP7uE {
          display: flex;
          gap: 2px;
        }
        
        .rOqFb {
          width: 20px;
          height: 20px;
        }
        
        .sjsHs {
          font-size: 24px;
        }
        
        .r2ZUV {
          font-size: 10px;
        }
        
        .AvhVPO {
          display: none;
        }
        
        .hh5nZ1 {
          width: 100%;
          background: #F9FAFB;
          padding: 12px;
          border-radius: 8px;
        }
        
        .So36GG {
          gap: 6px;
        }
        
        .bSaHDN {
          font-size: 13px;
        }

        .RDgdFd {
          width: 100%;
        }
        
        .zMMduM {
          width: 100%;
          display: block;
          padding: 14px;
          font-size: 16px;
          font-weight: 600;
        }
        
        /* Footer mobile */
        .eDyL6m {
          gap: 12px;
        }
        
        .f8pYn {
          flex-wrap: wrap;
          justify-content: center;
          gap: 6px;
        }
        
        .P1s2E1 {
          margin-bottom: 20px;
          padding-bottom: 20px;
        }
        
        .P1s2E1 p {
          font-size: 14px;
        }
        
        /* Table responsiveness on mobile */
        .FfBvfx .jNLMYU {
          margin: 1rem -1rem;
          padding: 0 1rem;
          max-width: 100vw;
        }
        
        .FfBvfx table {
          font-size: 13px;
        }
        
        .FfBvfx table th,
        .FfBvfx table td {
          padding: 0.5rem;
          font-size: 13px;
        }
        
        /* Make specific columns wrap on mobile if needed */
        .FfBvfx table td:last-child {
          white-space: normal;
          min-width: 100px;
        }
      }
      
      /* Casino Visual Elements */
      .caiXtm {
        display: inline-block;
        margin-right: 5px;
      }
      
      .ImkYxt {
        animation: blink 1.5s ease-in-out infinite;
      }
      
      .RmxOq {
        position: relative;
        font-weight: 500;
      }
      
      @keyframes blink {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.3; }
      }
      
      /* List styling - removed conflicting styles that were breaking ordered list numbering */
      /* The proper list styles are defined earlier in the CSS and in getMarkdownStyles() */

      /* E-E-A-T Author Blocks (randomized classes) */
      
    /* ========================================
       E-E-A-T Author Blocks
       ======================================== */

    /* Compact Author Block (after H1) */
    .mY0a9 {
      background: var(--color-block-bg);
      border-radius: var(--block-radius);
      box-shadow: var(--block-shadow);
      padding: 12px 16px;
      margin-bottom: var(--block-spacing);
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .wQlRT {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
      border: 2px solid var(--color-border);
    }

    .Jdzhcf {
      flex: 1;
      min-width: 0;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 6px 12px;
    }

    .TZYfDf {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .xu9ar {
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--color-text);
    }

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

    .Dc8dNT {
      color: var(--color-text-muted);
      font-size: 12px;
      font-weight: 500;
    }

    .Kex7it {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .ma63RA {
      display: flex;
      align-items: center;
      gap: 3px;
      color: var(--color-text-muted);
      font-size: 12px;
    }

    .xxA3Yc {
      width: 12px;
      height: 12px;
      flex-shrink: 0;
    }

    .HYmmZ {
      display: flex;
      align-items: center;
      color: var(--color-text-muted);
      transition: color 0.2s ease;
    }

    .HYmmZ:hover {
      color: var(--color-primary);
    }

    .nYCpj {
      width: 14px;
      height: 14px;
    }

    .KFu3a0 {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 0.8rem;
      color: var(--color-text-muted, #6b7280);
      white-space: nowrap;
    }

    .uTt3S7 {
      width: 13px;
      height: 13px;
      flex-shrink: 0;
    }

    .GzUB6 {
      width: 100%;
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin-top: 4px;
    }

    .sxZq9w {
      font-size: 13px;
      line-height: 1.5;
      color: var(--color-text-muted);
      margin: 0;
      flex: 1;
    }

    .qCSuW {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      background: var(--color-border);
      border: none;
      border-radius: 50%;
      padding: 0;
      color: var(--color-text-muted);
      cursor: pointer;
      transition: all 0.2s ease;
      flex-shrink: 0;
    }

    .qCSuW:hover {
      background: var(--color-primary);
      color: white;
    }

    .e03Gh {
      width: 14px;
      height: 14px;
      transition: transform 0.2s ease;
    }

    .qCSuW[aria-expanded="true"] .e03Gh {
      transform: rotate(180deg);
    }

    .wTQOp {
      font-size: 13px;
      line-height: 1.5;
      color: var(--color-text);
      margin: 4px 0 0 0;
      width: 100%;
    }

    /* Full Author Block (before footer) */
    .O5mHrS {
      background: var(--color-block-bg);
      border-radius: var(--block-radius);
      box-shadow: var(--block-shadow);
      padding: var(--block-padding);
      margin-bottom: var(--block-spacing);
    }

    .sOIz2 {
      display: flex;
      align-items: flex-start;
      gap: 24px;
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--color-border);
    }

    .F9ycY9 {
      width: 96px;
      height: 96px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
      border: 3px solid var(--color-border);
    }

    .Yoo7p {
      flex: 1;
    }

    .zK6sY1 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--color-text);
      margin: 0 0 8px 0;
      border-bottom: none;
    }

    .WPcXeX {
      font-size: 1rem;
      color: var(--color-primary);
      font-weight: 600;
      margin: 0 0 12px 0;
    }

    .vMWiW,
    .TyX19 {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: var(--color-text-muted);
      margin: 0 0 8px 0;
    }

    .vMWiW svg,
    .TyX19 svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
    }

    .TyX19 a {
      color: var(--color-text-muted);
      text-decoration: none;
    }

    .TyX19 a:hover {
      color: var(--color-primary);
    }

    .T9wMu {
      margin-bottom: 20px;
    }

    .T9wMu p {
      font-size: 1rem;
      line-height: 1.75;
      color: var(--color-text);
      margin: 0;
    }

    .sePxk {
      padding-top: 20px;
      border-top: 1px solid var(--color-border);
    }

    .xihD2 {
      font-size: 14px;
      font-weight: 600;
      color: var(--color-text-muted);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin: 0 0 12px 0;
      border-bottom: none;
    }

    .QIl4E {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .fAiWm9 {
      display: inline-block;
      padding: 6px 12px;
      background: #F3F4F6;
      border-radius: 16px;
      font-size: 13px;
      color: var(--color-text);
      font-weight: 500;
    }

    /* Mobile Styles */
    @media (max-width: 768px) {
      .mY0a9 {
        padding: 10px 12px;
        gap: 10px;
      }

      .wQlRT {
        width: 36px;
        height: 36px;
      }

      .Jdzhcf {
        gap: 4px 8px;
      }

      .TZYfDf {
        gap: 4px;
      }

      .xu9ar {
        font-size: 0.85rem;
      }

      .sPg4r2 {
        display: none;
      }

      .Dc8dNT {
        font-size: 11px;
      }

      .Kex7it {
        gap: 8px;
      }

      .ma63RA {
        font-size: 11px;
      }

      .sxZq9w,
      .wTQOp {
        font-size: 12px;
      }

      .qCSuW {
        width: 20px;
        height: 20px;
      }

      .e03Gh {
        width: 12px;
        height: 12px;
      }

      /* Full block mobile */
      .O5mHrS {
        padding: 20px;
      }

      .sOIz2 {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
      }

      .F9ycY9 {
        width: 80px;
        height: 80px;
      }

      .Yoo7p {
        width: 100%;
      }

      .zK6sY1 {
        font-size: 1.25rem;
      }

      .vMWiW,
      .TyX19 {
        justify-content: center;
      }

      .QIl4E {
        justify-content: center;
      }

      .fAiWm9 {
        font-size: 12px;
        padding: 4px 10px;
      }
    }
  

      /* Instagram Stories (randomized classes) */
      
    /* ========================================
       Instagram Stories Component
       ======================================== */

    /* Stories Bar (inside header - desktop: centered) */
    .MpvWY {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      flex: 1;
      min-width: 0;
      overflow: hidden;
    }

    .MpvWY::-webkit-scrollbar {
      display: none;
    }

    .Rah19 {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      cursor: pointer;
      flex-shrink: 0;
      transition: transform 0.2s ease;
    }

    .Rah19:hover {
      transform: scale(1.05);
    }

    .Rah19:focus {
      outline: none;
    }

    .Rah19:focus .nufNE {
      box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.5);
    }

    /* Desktop: smaller stories */
    .nufNE {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      padding: 2px;
      background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .atqjxk {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--color-block-bg, #fff);
      background: var(--color-block-bg, #fff);
    }

    .AMUnX {
      font-size: 10px;
      color: var(--color-text, #333);
      text-align: center;
      max-width: 52px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    /* Story Modal */
    .Gltu6 {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 99999;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .OyJctI {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.9);
    }

    .bKLNBa {
      position: relative;
      width: 100%;
      max-width: 420px;
      height: 90vh;
      max-height: 750px;
      border-radius: 16px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .ZejFl {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 36px;
      height: 36px;
      background: rgba(0, 0, 0, 0.4);
      border: none;
      border-radius: 50%;
      color: white;
      font-size: 24px;
      cursor: pointer;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
      transition: background 0.2s;
    }

    .ZejFl:hover {
      background: rgba(0, 0, 0, 0.6);
    }

    /* Progress bars */
    .l88ma {
      position: absolute;
      top: 12px;
      left: 12px;
      right: 12px;
      display: flex;
      gap: 4px;
      z-index: 10;
    }

    .q91Gr {
      flex: 1;
      height: 3px;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 2px;
      overflow: hidden;
    }

    .IJJSxK {
      height: 100%;
      background: white;
      width: 0%;
      transition: width 0.05s linear;
    }

    /* Story Body */
    .NLjwSO {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 60px 24px 24px;
      text-align: center;
    }

    .fDrvq {
      width: 100px;
      height: 100px;
      border-radius: 20px;
      object-fit: cover;
      margin-bottom: 20px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
      background: white;
    }

    .HdOD0 {
      font-size: 28px;
      font-weight: 700;
      color: white;
      margin: 0 0 12px;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      border: none;
    }

    .AlULk {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
    }

    .EvsWBD {
      color: #ffd700;
      font-size: 20px;
      letter-spacing: 2px;
    }

    .e44Tk1 {
      font-size: 20px;
      font-weight: 700;
      color: white;
    }

    .PsVTE {
      font-size: 18px;
      font-weight: 600;
      color: white;
      background: rgba(255, 255, 255, 0.2);
      padding: 12px 24px;
      border-radius: 30px;
      margin-bottom: 20px;
      text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    }

    .RZm7AJ {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      margin-bottom: 24px;
    }

    .gHmUX0 {
      font-size: 13px;
      color: white;
      background: rgba(255, 255, 255, 0.15);
      padding: 6px 14px;
      border-radius: 16px;
      backdrop-filter: blur(4px);
    }

    .tWBBjS {
      display: inline-block;
      padding: 16px 48px;
      background: white;
      color: #333;
      font-size: 18px;
      font-weight: 700;
      border-radius: 30px;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .tWBBjS:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 28px rgba(0, 0, 0, 0.4);
    }

    /* Navigation */
    .dUhYp {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      padding: 0 8px;
      pointer-events: none;
    }

    .rCfo5K,
    .jLu8L7 {
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.2);
      border: none;
      border-radius: 50%;
      color: white;
      font-size: 28px;
      cursor: pointer;
      pointer-events: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
      backdrop-filter: blur(4px);
    }

    .rCfo5K:hover,
    .jLu8L7:hover {
      background: rgba(255, 255, 255, 0.4);
    }

    /* Mobile Styles */
    @media (max-width: 768px) {
      .MpvWY {
        /* Grid positioning for header layout */
        grid-column: 1 / -1;
        grid-row: 2;
        width: calc(100% + 32px);
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        /* Original mobile styles */
        gap: 10px;
        justify-content: flex-start;
        flex: none;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        padding-right: 16px;
        padding-bottom: 4px;
      }

      .nufNE {
        width: 56px;
        height: 56px;
      }

      .atqjxk {
        width: 48px;
        height: 48px;
        border-width: 2px;
      }

      .AMUnX {
        font-size: 10px;
        max-width: 56px;
      }

      .bKLNBa {
        max-width: 100%;
        height: 100vh;
        height: 100dvh;
        max-height: none;
        border-radius: 0;
      }

      .fDrvq {
        width: 80px;
        height: 80px;
        border-radius: 16px;
      }

      .HdOD0 {
        font-size: 24px;
      }

      .PsVTE {
        font-size: 16px;
        padding: 10px 20px;
      }

      .tWBBjS {
        padding: 14px 40px;
        font-size: 16px;
      }

      .rCfo5K,
      .jLu8L7 {
        width: 36px;
        height: 36px;
        font-size: 24px;
      }
    }
  

      /* Interactive Elements (randomized classes) */
      
      /* Features Toggle Button */
      .kFB7rm {
        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;
      }

      .kFB7rm:hover {
        background: var(--color-primary);
        color: white;
        border-color: var(--color-primary);
      }

      /* Show More Container */
      .NmJaG {
        display: flex;
        justify-content: center;
        margin-top: 32px;
        padding: 24px 0;
      }

      .L9ugHp {
        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);
      }

      .L9ugHp:hover {
        background: var(--color-primary);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
      }

      .L9ugHp svg {
        width: 24px;
        height: 24px;
      }

      .L9ugHp .arrow-down {
        animation: bounce 2s infinite;
      }

      /* Gift Box Button */
      .Wpy3F {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        position: relative;
        transition: transform 0.3s ease;
      }

      .Wpy3F:hover {
        transform: scale(1.1);
      }

      .Wpy3F img {
        width: 48px;
        height: 48px;
        object-fit: contain;
      }

      /* Bonus Popup */
      .jxAD3 {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        display: none;
      }

      .jxAD3.active {
        display: block;
      }

      .U46VTo {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        cursor: pointer;
      }

      .dba5p {
        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;
      }

      .LAWc9Y {
        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);
      }

      .LAWc9Y:hover {
        opacity: 1;
        background: rgba(0, 0, 0, 0.1);
      }

      .XGc7g {
        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);
      }

      /* Hide mobile gift box by default */
      .dz9WD {
        display: none;
      }

      /* Mobile gift box styles */
      @media (max-width: 768px) {
        .dz9WD {
          display: block;
          position: fixed;
          top: 70px;
          left: 15px;
          z-index: 998;
          animation: mobileGiftPulse 2s ease-in-out infinite;
        }

        .dz9WD .Wpy3F {
          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;
        }

        .dz9WD .Wpy3F img {
          width: 28px;
          height: 28px;
          object-fit: contain;
        }

        .kFB7rm {
          font-size: 12px;
          padding: 3px 10px;
          margin-top: 6px;
        }
      }
    

      /* Regulatory Tooltips */
      .c81o1g {
        position: relative;
        border-bottom: 2px dashed var(--color-primary, #3b82f6);
        text-decoration: none;
        cursor: help;
        color: inherit;
        padding-bottom: 1px;
      }

      .c81o1g::after {
        content: attr(data-al3dre);
        position: absolute;
        bottom: calc(100% + 8px);
        left: 50%;
        transform: translateX(-50%);
        background: var(--color-block-bg, #1f2937);
        color: var(--color-text, #f9fafb);
        padding: 8px 12px;
        border-radius: 6px;
        font-size: 0.82rem;
        line-height: 1.4;
        width: max-content;
        max-width: 300px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s, visibility 0.2s;
        z-index: 100;
        pointer-events: none;
      }

      .c81o1g::before {
        content: '';
        position: absolute;
        bottom: calc(100% + 2px);
        left: 50%;
        transform: translateX(-50%);
        border: 6px solid transparent;
        border-top-color: var(--color-block-bg, #1f2937);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s, visibility 0.2s;
        z-index: 100;
      }

      .c81o1g:hover::after,
      .c81o1g:hover::before,
      .c81o1g.active::after,
      .c81o1g.active::before {
        opacity: 1;
        visibility: visible;
      }

      @media (max-width: 768px) {
        .c81o1g::after {
          position: fixed;
          bottom: 16px;
          left: 16px;
          right: 16px;
          transform: none;
          width: auto;
          max-width: none;
        }
        .c81o1g::before { display: none; }
      }

      
    /* Enhanced table styles */
    .wZdRf {
      overflow-x: auto;
      margin: 20px 0;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    /* List emoji styles */
    .caiXtm {
      display: inline-block;
      margin-right: 5px;
      font-size: 1.1em;
    }
    
    .Q7MJx {
      width: 100%;
      border-collapse: collapse;
      background: white;
      font-size: 14px;
      border: 1px solid #e0e0e0;
    }
    
    .Q7MJx th,
    .Q7MJx td {
      padding: 12px 16px;
      text-align: left;
      border: 1px solid #e0e0e0;
    }
    
    .Q7MJx th {
      background: #f5f5f5;
      font-weight: 600;
      color: #333;
      white-space: nowrap;
    }
    
    
    .Q7MJx tr:hover {
      background: #f9f9f9;
    }
    
    .Q7MJx td:first-child,
    .Q7MJx th:first-child {
      font-weight: 500;
    }
    
    /* Code block styles */
    .nEHAjK {
      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;
    }
    
    .nEHAjK 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 */
    .OaH6Cc {
      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;
    }
    
    .OaH6Cc p {
      margin: 0;
    }
    
    .OaH6Cc p + p {
      margin-top: 10px;
    }
    
    /* List styles */
    .qc6dOE,
    .lqAj9 {
      margin: 16px 0;
      /* Removed padding-left to work with counter-based implementation */
    }
    
    .qc6dOE li,
    .lqAj9 li {
      margin: 8px 0;
      line-height: 1.6;
    }
    
    .qc6dOE li::marker {
      color: #4CAF50;
    }
    
    /* Removed .lqAj9 li::marker to avoid conflict with counter-based implementation */
    
    /* Nested lists */
    .qc6dOE ul,
    .qc6dOE ol,
    .lqAj9 ul,
    .lqAj9 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) {
      .wZdRf {
        margin: 15px 0;
        border-radius: 0;
        box-shadow: none;
        max-width: 100vw;
        -webkit-overflow-scrolling: touch;
      }
      
      .Q7MJx {
        font-size: 13px;
        min-width: 100%;
      }
      
      .Q7MJx th,
      .Q7MJx td {
        padding: 8px 12px;
      }
      
      .nEHAjK {
        padding: 12px;
        font-size: 13px;
        margin: 12px 0;
      }
      
      .OaH6Cc {
        padding: 12px 16px;
        margin: 16px 0;
      }
    }
  