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

      :root {
        --color-background: #f7f8fd;
        --color-block-bg: #ffffff;
        --color-text: #000000;
        --color-text-muted: #6d707d;
        --color-border: #e5e4e6;
        --color-primary: #397ff6;
        --color-success: #0db881;
        --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 */
      .wwCbNl p {
        margin-bottom: 1rem;
        line-height: 1.75;
      }
      
      .wwCbNl p:last-child {
        margin-bottom: 0;
      }
      
      /* Spacing between different block elements */
      .wwCbNl > * + * {
        margin-top: 1rem;
      }
      
      .wwCbNl h2,
      .wwCbNl h3,
      .wwCbNl h4 {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
      }
      
      .wwCbNl ul,
      .wwCbNl ol {
        margin: 1rem 0;
      }
      
      /* Header */
      .I4UF2 {
        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;
      }

      .YBsBi4 {
        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 */
      .YBsBi4 {
        display: flex;
        gap: 32px;
        align-items: center;
      }
      
      .TGYZF {
        position: relative;
      }
      
      .heDYS {
        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;
      }
      
      .heDYS:hover {
        background: rgba(59, 130, 246, 0.1);
        color: var(--color-primary);
      }
      
      .heDYS::after {
        content: '▼';
        font-size: 10px;
        opacity: 0.6;
      }
      
      /* Dropdown */
      .VSOmbY {
        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;
      }
      
      .TGYZF:hover .VSOmbY {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }
      
      .dtb6Qa {
        display: block;
        padding: 10px 16px;
        color: var(--color-text);
        text-decoration: none;
        border-radius: 6px;
        transition: all 0.2s ease;
        font-size: 14px;
      }
      
      .dtb6Qa:hover {
        background: rgba(59, 130, 246, 0.1);
        color: var(--color-primary);
      }
      
      /* Mobile Menu Button */
      .fKrQU {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        width: 40px;
        height: 40px;
        position: relative;
        z-index: 1002;
      }
      
      .fKrQU span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--color-text);
        margin: 0 auto;
        transition: all 0.3s ease;
        position: absolute;
        left: 8px;
      }
      
      .fKrQU span:nth-child(1) {
        top: 10px;
      }
      
      .fKrQU span:nth-child(2) {
        top: 19px;
      }
      
      .fKrQU span:nth-child(3) {
        top: 28px;
      }
      
      /* Hamburger animation */
      .fKrQU.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 19px;
      }
      
      .fKrQU.active span:nth-child(2) {
        opacity: 0;
      }
      
      .fKrQU.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: 19px;
      }
      
      /* Mobile Menu Overlay */
      .jtfvx {
        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;
      }
      
      #miEtdB.jtfvx.active {
        opacity: 1 !important;
        visibility: visible !important;
      }
      
      /* Mobile Menu Container */
      #WcqQvN,
      .h7VYGq {
        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;
      }
      
      #WcqQvN.h7VYGq.active {
        right: 0 !important;
      }
      
      .MA9bs {
        padding: 20px;
        border-bottom: 1px solid var(--color-border);
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      
      .LRDWz {
        font-size: 20px;
        font-weight: 700;
        color: var(--color-text);
      }
      
      .ClHpZJ {
        padding: 20px;
      }
      
      .qQLnN {
        margin-bottom: 16px;
      }
      
      .yCZXO {
        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;
      }
      
      .yCZXO:hover {
        background: rgba(59, 130, 246, 0.1);
        color: var(--color-primary);
      }
      
      .yCZXO.bLttOj::after {
        content: '▼';
        font-size: 12px;
        transition: transform 0.3s ease;
      }
      
      .yCZXO.bLttOj.active::after {
        transform: rotate(180deg);
      }
      
      .zxcve {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-top: 8px;
        padding-left: 16px;
      }
      
      .zxcve.active {
        max-height: 500px;
      }
      
      .EjXEg {
        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;
      }
      
      .EjXEg:hover {
        background: rgba(59, 130, 246, 0.1);
        color: var(--color-primary);
      }
      
      /* Blocks */
      .tmDV5Q, .ytMKtb, .N3AWz, .wwCbNl, .jF2jD1 {
        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 */
      .jF2jD1 {
        padding: 20px var(--block-padding);
      }
      
      .PCxMZz {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        padding: 10px 0;
        scrollbar-width: thin;
      }
      
      .PCxMZz::-webkit-scrollbar {
        height: 4px;
      }
      
      .PCxMZz::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 2px;
      }
      
      .PCxMZz::-webkit-scrollbar-thumb {
        background: #c1c1c1;
        border-radius: 2px;
      }
      
      .HDvym {
        display: flex;
        gap: 24px;
        flex-wrap: nowrap;
        justify-content: flex-start;
        min-width: max-content;
        padding: 0 10px;
      }
      
      .oDhjS {
        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;
      }
      
      .oDhjS: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 */
      .wwCbNl h2 {
        margin-top: 0;
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 1.5rem;
      }
      
      .wwCbNl h2:first-child {
        margin-top: 0;
      }
      
      .tmDV5Q {
        text-align: left;
      }
      
      .tmDV5Q h1 {
        margin-bottom: 0;
        border-bottom: none;
        text-align: left;
      }
      
      /* Content Blocks */
      .wwCbNl {
        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;
      }
      
      .wwCbNl h2 {
        margin-top: 0;
        border-bottom: none;
      }
      
      .ytMKtb 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 */
      .N3AWz {
        margin-bottom: var(--block-spacing);
      }
      
      .N3AWz.single-casino {
        background: var(--color-block-bg);
        border-radius: var(--block-radius);
        box-shadow: var(--block-shadow);
        padding: var(--block-padding);
      }
      
      .N3AWz.single-casino h2 {
        margin-top: 0;
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
        border-bottom: none;
      }
      
      .Obc3n {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
      
      /* Casino Item Block */
      .eva54A {
        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;
      }
      
      .eva54A:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      }
      
      /* Casino Number */
      .HsMvpA {
        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 */
      .eva54A:nth-child(1) .HsMvpA {
        background: linear-gradient(135deg, #F59E0B, #D97706);
        box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
      }
      
      .eva54A:nth-child(2) .HsMvpA {
        background: linear-gradient(135deg, #6B7280, #4B5563);
        box-shadow: 0 2px 8px rgba(107, 114, 128, 0.4);
      }
      
      .eva54A:nth-child(3) .HsMvpA {
        background: linear-gradient(135deg, #A78BFA, #8B5CF6);
        box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
      }
      
      /* Casino Logo Section */
      .TulNmA {
        flex-shrink: 0;
        margin-left: 40px;
      }
      
      .TulNmA img {
        width: 200px;
        height: 100px;
        object-fit: contain;
        border-radius: 8px;
        background: #F9FAFB;
        padding: 12px;
        border: 1px solid var(--color-border);
      }
      
      .P5ikX5 {
        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 */
      .o8Cdi {
        flex: 1;
        min-width: 0;
      }
      
      .CC9g5 {
        font-weight: 700;
        font-size: 20px;
        color: var(--color-text);
        margin-bottom: 8px;
        margin-top: 0;
      }
      
      .AM5blY {
        font-weight: 600;
        color: var(--color-success);
        font-size: 16px;
        margin-bottom: 8px;
      }
      
      .W5qeA {
        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;
      }
      
      .W5qeA:hover {
        background: rgba(59, 130, 246, 0.1);
        color: #2563EB;
      }
      
      /* Casino Rating Section - Modern Star Design */
      .hL3SOO {
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 0 20px;
      }
      
      .IixGn9 {
        display: flex;
        gap: 4px;
        position: relative;
      }
      
      .HCLKme {
        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%);
      }
      
      .HCLKme.CsEFY {
        background: linear-gradient(135deg, #F59E0B, #D97706);
      }
      
      .HCLKme.z9CZX {
        background: linear-gradient(90deg, #F59E0B 50%, #E5E7EB 50%);
      }
      
      .CZmBC {
        font-size: 28px;
        font-weight: 700;
        color: var(--color-text);
        line-height: 1;
      }
      
      .ytbtb {
        font-size: 12px;
        color: var(--color-text-muted);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 600;
      }
      
      .kvKwF {
        margin-top: 8px;
        font-size: 11px;
        color: var(--color-text-muted);
        line-height: 1.4;
      }
      
      .cFRR6, .tlQzs {
        white-space: nowrap;
        margin-bottom: 2px;
      }
      
      .uDBAZ {
        color: var(--color-success);
        font-weight: 700;
        font-size: 12px;
      }
      
      /* Casino Features Section */
      .XuFwJZ {
        flex: 1;
        font-size: 14px;
        line-height: 1.6;
        color: var(--color-text-muted);
      }
      
      .fxpiL6 {
        display: flex;
        flex-direction: column;
        gap: 8px;
      }
      
      .oclj4 {
        display: flex;
        align-items: center;
        gap: 8px;
      }
      
      .oclj4::before {
        content: '✓';
        color: var(--color-success);
        font-weight: 700;
        font-size: 16px;
      }
      
      .NQTmlW {
        margin-top: 8px;
      }
      
      /* CTA Button */
      .X6jdk {
        flex-shrink: 0;
      }
      
      /* Centered CTA button for brand reviews */
      .ARlzPo {
        text-align: center;
        margin: 32px 0;
      }
      
      /* CTA wrapper for mobile order */
      .oWpXw {
        padding: 0;
        background: transparent;
        box-shadow: none;
      }
      
      .SA2Azn {
        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;
      }
      
      .SA2Azn: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, .lcwKU {
        counter-reset: li-counter;
        list-style: none;
      }
      
      ol li, .lcwKU li {
        position: relative;
        padding-left: 2rem;
        margin-bottom: 0.75rem;
        counter-increment: li-counter;
      }
      
      ol li::before, .lcwKU 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 */
      .wwCbNl .aGdYN {
        overflow-x: auto;
        margin: 1.5rem 0;
        -webkit-overflow-scrolling: touch;
      }
      
      .wwCbNl table {
        width: 100%;
        border-collapse: collapse;
        min-width: 100%;
        border: 1px solid var(--color-border);
      }
      
      .wwCbNl table th,
      .wwCbNl table td {
        padding: 0.75rem;
        border: 1px solid var(--color-border);
        text-align: left;
        white-space: nowrap;
      }
      
      .wwCbNl table th {
        background: #F9FAFB;
        font-weight: 600;
      }
      
      /* Allow wrapping for content cells if needed */
      .wwCbNl table td {
        white-space: normal;
      }
      
      /* Footer */
      .qDu8v {
        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;
      }
      
      .GFbpJt {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
      }
      
      .MNrXui {
        margin-bottom: 24px;
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        text-align: left;
      }
      
      .MNrXui p {
        color: var(--color-text-secondary);
        line-height: 1.6;
        margin: 0 0 12px 0;
        text-align: left;
      }
      
      .MNrXui p:last-child {
        margin-bottom: 0;
      }
      
      .c379Wt {
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;
        text-align: center;
      }
      
      .dWBdb3 {
        color: var(--color-text-secondary);
        font-size: 14px;
        margin: 0;
      }
      
      .L5EioX {
        display: flex;
        gap: 8px;
        align-items: center;
        font-size: 14px;
      }
      
      .L5EioX a {
        color: var(--color-text-secondary);
        text-decoration: none;
        transition: color 0.2s ease;
      }
      
      .L5EioX a:hover {
        color: var(--color-primary);
      }
      
      .L5EioX .YdzPD {
        color: var(--color-text-secondary);
        opacity: 0.5;
      }
      
      /* Scroll to top button */
      .oxj6d {
        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;
      }
      
      .oxj6d:hover {
        background-color: var(--color-primary-dark);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
      }
      
      .oxj6d.visible {
        opacity: 1;
        visibility: visible;
      }
      
      .oxj6d svg {
        width: 24px;
        height: 24px;
        fill: currentColor;
      }
      
      /* Show More Casinos Button */
      .eva54A.hidden {
        display: none;
      }
      
      .eva54A.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); }
      }

      .DkLnxc {
        padding: 24px;
        padding-top: 32px;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      
      .uWvqRA {
        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);
      }
      
      .uWvqRA:hover {
        background: rgba(59, 130, 246, 0.1);
        transform: translateX(4px);
      }
      
      .GIXAjd {
        width: 70px;
        height: 50px;
        flex-shrink: 0;
      }
      
      .GIXAjd img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 8px;
      }
      
      .GIXAjd .P5ikX5 {
        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;
      }
      
      .EcmtDa {
        flex: 1;
      }
      
      .nqWpR {
        margin: 0 0 4px 0;
        font-size: 18px;
        font-weight: 600;
      }
      
      .HJ8bmJ {
        color: var(--color-primary);
        font-size: 14px;
        font-weight: 500;
      }
      
      .OG9N5 {
        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;
      }
      
      .OG9N5: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) {
        .oxj6d {
          display: none;
        }
      }
      
      /* Mobile navigation */
      @media (max-width: 768px) {
        .I4UF2 {
          padding: 12px 16px;
          position: sticky;
          top: 0;
          z-index: 100;
          display: grid;
          grid-template-columns: 1fr auto;
          grid-template-rows: auto auto;
          gap: 8px;
        }

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

        .I4UF2 > .YBsBi4 {
          display: none;
        }

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

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

        /* Ensure content blocks have proper background */
        .wwCbNl, .tmDV5Q, .ytMKtb, .N3AWz, .jF2jD1 {
          background: var(--color-block-bg);
          position: relative;
          z-index: 10;
        }
        
        /* Main content should create new stacking context */
        .jhD4dF {
          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 */
        .jhD4dF {
          display: flex;
          flex-direction: column;
        }

        .tmDV5Q {
          order: 1;
        }

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

        .N3AWz {
          order: 3;
        }

        .ytMKtb {
          order: 4;
        }

        .jF2jD1 {
          order: 5;
        }

        .wwCbNl {
          order: 6;
        }

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

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

        .eva54A {
          flex-direction: column;
          padding: 20px;
          gap: 16px;
          position: relative;
        }
        
        .HsMvpA {
          position: absolute;
          top: 12px;
          right: 12px;
          left: auto;
          width: 28px;
          height: 28px;
          font-size: 14px;
        }
        
        /* Mobile Layout - Clean vertical structure */
        .TulNmA {
          margin-left: 0;
          width: 100%;
          display: flex;
          justify-content: center;
        }
        
        .TulNmA img,
        .P5ikX5 {
          width: 180px;
          height: 90px;
        }
        
        .o8Cdi {
          width: 100%;
          text-align: center;
        }
        
        .CC9g5 {
          font-size: 18px;
          margin-bottom: 4px;
        }
        
        .AM5blY {
          font-size: 14px;
          margin-bottom: 8px;
        }
        
        .W5qeA {
          font-size: 13px;
        }
        
        .hL3SOO {
          width: 100%;
          padding: 12px;
          background: #F9FAFB;
          border-radius: 8px;
          flex-direction: row;
          justify-content: center;
          gap: 16px;
        }
        
        .IixGn9 {
          display: flex;
          gap: 2px;
        }
        
        .HCLKme {
          width: 20px;
          height: 20px;
        }
        
        .CZmBC {
          font-size: 24px;
        }
        
        .kvKwF {
          font-size: 10px;
        }
        
        .ytbtb {
          display: none;
        }
        
        .XuFwJZ {
          width: 100%;
          background: #F9FAFB;
          padding: 12px;
          border-radius: 8px;
        }
        
        .fxpiL6 {
          gap: 6px;
        }
        
        .oclj4 {
          font-size: 13px;
        }

        .X6jdk {
          width: 100%;
        }
        
        .SA2Azn {
          width: 100%;
          display: block;
          padding: 14px;
          font-size: 16px;
          font-weight: 600;
        }
        
        /* Footer mobile */
        .c379Wt {
          gap: 12px;
        }
        
        .L5EioX {
          flex-wrap: wrap;
          justify-content: center;
          gap: 6px;
        }
        
        .MNrXui {
          margin-bottom: 20px;
          padding-bottom: 20px;
        }
        
        .MNrXui p {
          font-size: 14px;
        }
        
        /* Table responsiveness on mobile */
        .wwCbNl .aGdYN {
          margin: 1rem -1rem;
          padding: 0 1rem;
          max-width: 100vw;
        }
        
        .wwCbNl table {
          font-size: 13px;
        }
        
        .wwCbNl table th,
        .wwCbNl table td {
          padding: 0.5rem;
          font-size: 13px;
        }
        
        /* Make specific columns wrap on mobile if needed */
        .wwCbNl table td:last-child {
          white-space: normal;
          min-width: 100px;
        }
      }
      
      /* Casino Visual Elements */
      .ygAvUp {
        display: inline-block;
        margin-right: 5px;
      }
      
      .SFuWw {
        animation: blink 1.5s ease-in-out infinite;
      }
      
      .bURct {
        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) */
    .XnKDJ5 {
      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;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .O4UzE {
      flex: 1;
    }

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

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

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

    .XhazE2 svg,
    .kMtdw svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
    }

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

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

    .BolyPd {
      margin-bottom: 20px;
    }

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

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

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

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

    .aXYsF {
      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) {
      .XnKDJ5 {
        padding: 10px 12px;
        gap: 10px;
      }

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

      .XeHr8A {
        gap: 4px 8px;
      }

      .B77YTb {
        gap: 4px;
      }

      .Ni7OVn {
        font-size: 0.85rem;
      }

      .OaG5os {
        display: none;
      }

      .fMy09b {
        font-size: 11px;
      }

      .PUgQq {
        gap: 8px;
      }

      .NDyQT {
        font-size: 11px;
      }

      .nREEW,
      .Aoe0yC {
        font-size: 12px;
      }

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

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

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

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

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

      .O4UzE {
        width: 100%;
      }

      .KtgEU {
        font-size: 1.25rem;
      }

      .XhazE2,
      .kMtdw {
        justify-content: center;
      }

      .Ksnp6 {
        justify-content: center;
      }

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

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

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

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

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

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

    .pcQjOw:focus {
      outline: none;
    }

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

    /* Desktop: smaller stories */
    .hN7AFX {
      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;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .hhGtw6,
    .qyuPL {
      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);
    }

    .hhGtw6:hover,
    .qyuPL:hover {
      background: rgba(255, 255, 255, 0.4);
    }

    /* Mobile Styles */
    @media (max-width: 768px) {
      .kQez0 {
        /* 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;
      }

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

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

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

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

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

      .xSqe1c {
        font-size: 24px;
      }

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

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

      .hhGtw6,
      .qyuPL {
        width: 36px;
        height: 36px;
        font-size: 24px;
      }
    }
  

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

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

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

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

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

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

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

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

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

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

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

      .x6C5rY.active {
        display: block;
      }

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

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

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

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

      .ZvfuMG {
        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 */
      .ZMa1zx {
        display: none;
      }

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

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

        .ZMa1zx .P1j8Z img {
          width: 28px;
          height: 28px;
          object-fit: contain;
        }

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

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

      .gcCHXQ::after {
        content: attr(data-qebnc);
        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;
      }

      .gcCHXQ::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;
      }

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

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

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