/* =====================================================
       TOKENS
    ===================================================== */
    :root {
      --c-bg:      #F5F7FB;
      --c-surface: #FFFFFF;
      --c-border:  #E3E8F0;
      --c-text:    #0D1A2D;
      --c-muted:   #566275;
      --c-accent:  #0062F5;
      --c-green:   #00B860;
      --c-gold:    #F4A800;
      --c-red:     #E84040;

      --r-sm: 6px;
      --r-md: 12px;
      --r-lg: 20px;

      --sh-sm: 0 1px 4px rgba(0,0,0,.06);
      --sh-md: 0 4px 18px rgba(0,0,0,.09);
      --sh-lg: 0 8px 32px rgba(0,0,0,.12);

      --fh: 'Sora', sans-serif;
      --fb: 'DM Sans', sans-serif;
      --header-h: 64px;
      --mw: 1180px;
    }

    /* =====================================================
       RESET
    ===================================================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
    body {
      font-family: var(--fb);
      font-size: 16px;
      line-height: 1.65;
      color: var(--c-text);
      background: linear-gradient(170deg, #EEF4FF 0%, #F5F7FB 30%, #F0FBF5 60%, #F5F7FB 100%);
      background-attachment: fixed;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }
    svg { display: block; flex-shrink: 0; }

    /* =====================================================
       LAYOUT
    ===================================================== */
    .wrap {
      width: 100%;
      max-width: var(--mw);
      margin-inline: auto;
      padding-inline: 20px;
    }
    .section     { padding: 64px 0; }
    .section--sm { padding: 40px 0; }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(0,98,245,.09);
      color: var(--c-accent);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 4px 11px;
      border-radius: 100px;
      margin-bottom: 14px;
    }
    .section-label--green { background: rgba(0,184,96,.1); color: var(--c-green); }

    .section-title {
      font-family: var(--fh);
      font-size: clamp(1.45rem, 3vw, 2rem);
      font-weight: 700;
      line-height: 1.2;
      color: var(--c-text);
      margin-bottom: 10px;
    }
    .section-sub {
      color: var(--c-muted);
      font-size: .95rem;
      margin-bottom: 36px;
      max-width: 560px;
    }
    .text-center { text-align: center; }
    .text-center .section-sub { margin-inline: auto; max-width: 100%; }

    /* =====================================================
       BUTTONS
    ===================================================== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      font-family: var(--fh);
      font-weight: 600;
      font-size: .875rem;
      padding: 12px 22px;
      border-radius: var(--r-md);
      transition: filter .18s, transform .14s;
      white-space: nowrap;
      text-align: center;
    }
    .btn:hover  { filter: brightness(1.07); transform: translateY(-1px); }
    .btn:active { transform: none; filter: brightness(.97); }

    .btn--primary {
      background: linear-gradient(135deg, #0062F5, #0042C4);
      color: #fff;
      box-shadow: 0 4px 14px rgba(0,98,245,.32);
    }
    .btn--green {
      background: linear-gradient(135deg, #00B860, #008A48);
      color: #fff;
      box-shadow: 0 4px 14px rgba(0,184,96,.28);
    }
    .btn--outline {
      border: 2px solid var(--c-accent);
      color: var(--c-accent);
      background: transparent;
    }
    .btn--outline:hover { background: rgba(0,98,245,.05); }
    .btn--sm   { padding: 8px 16px; font-size: .8rem; }
    .btn--full { width: 100%; }

    .btn--disabled {
      background: #cbd5e1 !important;
      color: #94a3b8 !important;
      cursor: not-allowed;
      pointer-events: none;
      opacity: 0.7;
      box-shadow: none !important;
      border-color: #cbd5e1 !important;
    }

    /* =====================================================
       HEADER
    ===================================================== */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 900;
      height: var(--header-h);
      background: var(--c-surface);
      border-bottom: 1px solid var(--c-border);
      box-shadow: var(--sh-sm);
    }
    .header-inner {
      display: flex;
      align-items: center;
      height: 100%;
      gap: 8px;
    }

    .logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
    .logo-mark {
      width: 38px; height: 38px;
      background: linear-gradient(135deg, #0062F5, #00B860);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--fh);
      font-weight: 800;
      color: #fff;
      font-size: .8rem;
      letter-spacing: -.02em;
    }
    .logo-name {
      font-family: var(--fh);
      font-weight: 800;
      font-size: 1rem;
      color: var(--c-text);
      line-height: 1.1;
    }
    .logo-name span { color: var(--c-accent); }
    .logo-tagline {
      font-size: .6rem;
      font-weight: 500;
      color: var(--c-muted);
      letter-spacing: .05em;
      text-transform: uppercase;
    }

    /* Desktop nav */
    .main-nav { margin-left: auto; }
    .nav-list { display: flex; align-items: center; gap: 2px; }
    .nav-item { position: relative; }
    .nav-link {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 8px 12px;
      font-size: .86rem;
      font-weight: 500;
      border-radius: var(--r-sm);
      color: var(--c-text);
      transition: background .14s, color .14s;
      white-space: nowrap;
    }
    .nav-link:hover, .nav-link.active {
      background: rgba(0,98,245,.08);
      color: var(--c-accent);
    }
    .nav-chevron { width: 14px; height: 14px; transition: transform .2s; color: var(--c-muted); }
    .nav-item:hover .nav-chevron { transform: rotate(180deg); }

    .nav-drop {
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      min-width: 230px;
      background: var(--c-surface);
      border: 1px solid var(--c-border);
      border-radius: var(--r-md);
      box-shadow: var(--sh-md);
      padding: 6px;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-6px);
      transition: opacity .17s, transform .17s;
    }
    .nav-drop::before {
      content: '';
      position: absolute;
      top: -10px;
      left: 0;
      right: 0;
      height: 10px;
    }
    .nav-item:hover .nav-drop,
    .nav-item:focus-within .nav-drop {
      opacity: 1;
      pointer-events: all;
      transform: translateY(0);
    }
    .nav-drop a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 9px 12px;
      border-radius: var(--r-sm);
      font-size: .84rem;
      font-weight: 500;
      color: var(--c-text);
      transition: background .12s, color .12s;
    }
    .nav-drop a:hover { background: rgba(0,98,245,.07); color: var(--c-accent); }
    .dd-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--c-accent);
      opacity: .45;
      flex-shrink: 0;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px; height: 40px;
      margin-left: auto;
      padding: 8px;
      border-radius: var(--r-sm);
      transition: background .14s;
    }
    .hamburger:hover { background: var(--c-bg); }
    .hamburger span {
      display: block;
      height: 2px;
      background: var(--c-text);
      border-radius: 2px;
      transition: transform .2s, opacity .2s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed;
      inset: var(--header-h) 0 0 0;
      background: var(--c-surface);
      overflow-y: auto;
      z-index: 850;
      padding: 12px 20px 48px;
      border-top: 1px solid var(--c-border);
      animation: fadeDown .18s ease;
    }
    @keyframes fadeDown { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:none; } }
    .mobile-menu.open { display: block; }

    .mob-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 4px;
      border-bottom: 1px solid var(--c-border);
      font-size: .94rem;
      font-weight: 500;
      color: var(--c-text);
      width: 100%;
      text-align: left;
    }
    .mob-sub { padding: 4px 0 4px 16px; display: none; }
    .mob-sub.open { display: block; }
    .mob-sub a {
      display: block;
      padding: 10px 4px;
      font-size: .86rem;
      color: var(--c-muted);
      border-bottom: 1px solid var(--c-border);
    }
    .mob-sub a:last-child { border: none; }

    /* =====================================================
       NOTIFICATION BAR
    ===================================================== */
    .notif-bar {
      background: #0A1628;
      color: rgba(255,255,255,.82);
      border-bottom: 1px solid rgba(255,255,255,.06);
      text-align: center;
      padding: 9px 20px;
      font-size: .8rem;
      font-weight: 500;
      letter-spacing: .01em;
    }
    .notif-bar strong { font-weight: 700; }

    /* AU flag image — shared helper */
    .au-flag {
      display: inline-block;
      width: 20px;
      height: 14px;
      border-radius: 2px;
      overflow: hidden;
      vertical-align: middle;
      flex-shrink: 0;
      box-shadow: 0 0 0 1px rgba(0,0,0,.12);
      line-height: 0;
    }
    .au-flag img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    /* Slightly larger in notif bar */
    .notif-bar .au-flag { width: 18px; height: 13px; }
    /* Trust bar — replace globe SVG slot */
    .trust-item .au-flag { width: 20px; height: 14px; }

    /* =====================================================
       HERO
    ===================================================== */
    .hero {
      background: linear-gradient(150deg, #EBF2FF 0%, #EDFBF4 60%, var(--c-bg) 100%);
      padding: 28px 0 28px;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 480px; height: 480px;
      background: radial-gradient(circle, rgba(0,98,245,.07) 0%, transparent 65%);
      pointer-events: none;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }
    .hero h1 {
      font-family: var(--fh);
      font-size: clamp(1.85rem, 4vw, 2.75rem);
      font-weight: 800;
      line-height: 1.16;
      letter-spacing: -.025em;
      color: var(--c-text);
      margin-bottom: 16px;
    }
    .hero h1 em { font-style: normal; color: var(--c-accent); }
    .hero-desc {
      color: var(--c-muted);
      font-size: 1rem;
      margin-bottom: 28px;
      max-width: 460px;
      line-height: 1.7;
    }
    .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
    .hero-stats {
      display: flex;
      gap: 28px;
      margin-top: 36px;
      padding-top: 28px;
      border-top: 1px solid var(--c-border);
    }
    .stat-val {
      font-family: var(--fh);
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--c-accent);
      line-height: 1;
    }
    .stat-lbl { font-size: .75rem; color: var(--c-muted); font-weight: 500; margin-top: 4px; }

    .hero-visual { display: flex; justify-content: center; }
    .pid-card {
      background: var(--c-surface);
      border-radius: var(--r-lg);
      box-shadow: var(--sh-lg);
      padding: 26px 22px;
      width: 100%;
      max-width: 350px;
      position: relative;
      overflow: hidden;
    }
    .pid-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, #0062F5, #00B860);
    }
    .pid-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 18px;
    }
    .pid-card-name { font-family: var(--fh); font-weight: 800; font-size: .88rem; }
    .pid-card-name span { color: var(--c-accent); }
    .pid-verified {
      background: rgba(0,184,96,.12);
      color: var(--c-green);
      font-size: .68rem;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 100px;
    }
    .pid-row {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 11px 0;
      border-bottom: 1px solid var(--c-border);
    }
    .pid-row:last-of-type { border-bottom: none; }
    .pid-ava {
      width: 40px; height: 40px;
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--fh);
      font-weight: 800;
      font-size: .78rem;
      color: #fff;
      flex-shrink: 0;
    }
    .pid-info { flex: 1; }
    .pid-cname { font-weight: 600; font-size: .82rem; }
    .pid-stars { color: var(--c-gold); font-size: .72rem; letter-spacing: 1px; }
    .pid-bonus { font-size: .72rem; color: var(--c-muted); }
    .pid-cta {
      background: var(--c-accent);
      color: #fff;
      font-size: .7rem;
      font-weight: 700;
      padding: 5px 10px;
      border-radius: var(--r-sm);
      white-space: nowrap;
    }
    .pid-footer {
      margin-top: 14px;
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: .7rem;
      color: var(--c-muted);
    }
    .pid-footer-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-green); flex-shrink: 0; }

    /* =====================================================
       TRUST BAR
    ===================================================== */
    .trust-bar {
      background: rgba(255,255,255,.65);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--c-border);
      padding: 13px 0;
    }
    .trust-list {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px 28px;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: .8rem;
      font-weight: 500;
      color: var(--c-muted);
    }
    .trust-item strong { color: var(--c-text); }
    .trust-icon { width: 17px; height: 17px; flex-shrink: 0; color: var(--c-accent); }

    /* =====================================================
       BREADCRUMB
    ===================================================== */
    .breadcrumb {
      padding: 13px 0;
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: .78rem;
      color: var(--c-muted);
      flex-wrap: wrap;
    }
    .breadcrumb a { color: var(--c-accent); }

    /* =====================================================
       CASINO LISTING
    ===================================================== */
    .casino-list { display: flex; flex-direction: column; gap: 14px; }

    .casino-card {
      background: rgba(255,255,255,.82);
      backdrop-filter: blur(4px);
      border: 1px solid var(--c-border);
      border-radius: var(--r-lg);
      box-shadow: var(--sh-sm);
      display: grid;
      grid-template-columns: 108px 1fr auto;
      align-items: center;
      overflow: hidden;
      position: relative;
      transition: box-shadow .2s, transform .15s;
    }
    .casino-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
    .casino-card.featured {
      border-color: var(--c-accent);
      box-shadow: 0 0 0 1px var(--c-accent), var(--sh-md);
    }

    .cc-rank {
      position: absolute;
      top: 11px; left: 11px;
      width: 22px; height: 22px;
      border-radius: 50%;
      background: var(--c-accent);
      color: #fff;
      font-size: .68rem;
      font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      z-index: 1;
    }
    .cc-rank.gold { background: var(--c-gold); }

    .cc-logo-area {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
      min-height: 110px;
      padding: 16px 12px;
      border-right: 1px solid var(--c-border);
      background: var(--c-bg);
    }
    .cc-logo-box {
      width: 68px; height: 68px;
      border-radius: var(--r-md);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--fh);
      font-weight: 800;
      font-size: .9rem;
      color: #fff;
    }

    .cc-body { padding: 16px; flex: 1; }
    .cc-name {
      font-family: var(--fh);
      font-weight: 700;
      font-size: .98rem;
      margin-bottom: 5px;
    }
    .cc-stars {
      display: flex;
      align-items: center;
      gap: 2px;
      margin-bottom: 9px;
    }
    .star   { color: var(--c-gold); font-size: .9rem; }
    .star.e { color: #CED5E0; }
    .cc-rating { font-size: .75rem; font-weight: 600; color: var(--c-muted); margin-left: 5px; }

    .cc-bonus {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(0,184,96,.09);
      color: #00703A;
      border-radius: var(--r-sm);
      font-size: .79rem;
      font-weight: 600;
      padding: 4px 10px;
      margin-bottom: 9px;
    }
    .cc-bonus-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--c-green); flex-shrink: 0; }

    .cc-tags { display: flex; gap: 6px; flex-wrap: wrap; }
    .cc-tag {
      background: var(--c-bg);
      border: 1px solid var(--c-border);
      border-radius: 100px;
      font-size: .7rem;
      padding: 2px 9px;
      color: var(--c-muted);
      font-weight: 500;
    }

    .cc-action {
      padding: 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      border-left: 1px solid var(--c-border);
      min-width: 136px;
    }
    .cc-pid-label {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: .67rem;
      font-weight: 600;
      color: var(--c-accent);
    }
    .cc-pid-check {
      width: 13px; height: 13px;
      border-radius: 50%;
      background: var(--c-accent);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .cc-pid-check svg { width: 7px; height: 7px; }
    .cc-tc { font-size: .63rem; color: var(--c-muted); text-align: center; }

    .featured-ribbon {
      position: absolute;
      top: 0; right: 20px;
      background: linear-gradient(135deg, #0062F5, #00B860);
      color: #fff;
      font-size: .64rem;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      padding: 3px 12px;
      border-radius: 0 0 8px 8px;
    }

    .cc-mobile-cta { display: none; margin-top: 11px; gap: 8px; flex-wrap: wrap; }

    /* =====================================================
       STEPS
    ===================================================== */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }
    .step-card {
      background: rgba(255,255,255,.78);
      backdrop-filter: blur(4px);
      border: 1px solid var(--c-border);
      border-radius: var(--r-lg);
      padding: 28px 22px;
      position: relative;
      overflow: hidden;
    }
    .step-card::before {
      content: attr(data-n);
      position: absolute;
      top: -8px; right: 14px;
      font-family: var(--fh);
      font-size: 4.5rem;
      font-weight: 800;
      color: rgba(0,98,245,.05);
      line-height: 1;
    }
    .step-icon {
      width: 46px; height: 46px;
      background: linear-gradient(135deg, rgba(0,98,245,.1), rgba(0,184,96,.1));
      border-radius: var(--r-md);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
    }
    .step-icon svg { width: 22px; height: 22px; color: var(--c-accent); }
    .step-title { font-family: var(--fh); font-weight: 700; font-size: .93rem; margin-bottom: 8px; }
    .step-desc  { font-size: .875rem; color: var(--c-muted); line-height: 1.6; }

    /* =====================================================
       INFO CARDS
    ===================================================== */
    .info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 18px;
    }
    .info-card {
      background: rgba(255,255,255,.78);
      backdrop-filter: blur(4px);
      border: 1px solid var(--c-border);
      border-radius: var(--r-lg);
      padding: 24px;
      transition: box-shadow .2s;
    }
    .info-card:hover { box-shadow: var(--sh-md); }
    .info-icon {
      width: 42px; height: 42px;
      border-radius: var(--r-md);
      background: rgba(0,98,245,.08);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 14px;
    }
    .info-icon svg { width: 20px; height: 20px; color: var(--c-accent); }
    .info-title { font-family: var(--fh); font-weight: 700; font-size: .92rem; margin-bottom: 8px; }
    .info-desc  { font-size: .875rem; color: var(--c-muted); line-height: 1.65; }

    /* =====================================================
       TABLE
    ===================================================== */
    .table-wrap {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      border-radius: var(--r-md);
      border: 1px solid var(--c-border);
    }
    table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,.85); }
    thead th {
      background: linear-gradient(90deg, #0062F5, #0042C4);
      color: #fff;
      font-family: var(--fh);
      font-weight: 600;
      font-size: .8rem;
      text-align: left;
      padding: 12px 16px;
      white-space: nowrap;
    }
    tbody td {
      padding: 13px 16px;
      font-size: .875rem;
      border-bottom: 1px solid var(--c-border);
      vertical-align: middle;
    }
    tbody tr:last-child td { border-bottom: none; }
    tbody tr:hover td { background: rgba(0,98,245,.025); }
    .td-yes { color: var(--c-green); font-weight: 600; }
    .td-no  { color: var(--c-red); }

    /* =====================================================
       FAQ
    ===================================================== */
    .faq-list { display: flex; flex-direction: column; gap: 9px; }
    .faq-item {
      background: rgba(255,255,255,.82);
      backdrop-filter: blur(4px);
      border: 1px solid var(--c-border);
      border-radius: var(--r-md);
      overflow: hidden;
    }
    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 17px 20px;
      font-family: var(--fh);
      font-weight: 600;
      font-size: .9rem;
      text-align: left;
      color: var(--c-text);
      background: transparent;
      transition: background .14s;
    }
    .faq-q:hover { background: rgba(0,98,245,.03); }
    .faq-q.active { color: var(--c-accent); }
    .faq-toggle {
      width: 24px; height: 24px;
      border-radius: 50%;
      border: 1.5px solid var(--c-border);
      flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      transition: transform .24s, background .14s, border-color .14s;
    }
    .faq-toggle svg { width: 12px; height: 12px; color: var(--c-muted); transition: color .14s; }
    .faq-q.active .faq-toggle {
      transform: rotate(45deg);
      background: var(--c-accent);
      border-color: var(--c-accent);
    }
    .faq-q.active .faq-toggle svg { color: #fff; }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
    .faq-a-inner {
      padding: 0 20px 18px;
      font-size: .88rem;
      color: var(--c-muted);
      line-height: 1.72;
    }
    .faq-a-inner a { color: var(--c-accent); text-decoration: underline; }

    /* =====================================================
       PROSE
    ===================================================== */
    .prose h2 {
      font-family: var(--fh);
      font-weight: 800;
      font-size: 1.3rem;
      margin-top: 44px;
      margin-bottom: 14px;
      color: var(--c-text);
      padding-bottom: 10px;
      border-bottom: 2px solid var(--c-border);
    }
    .prose h2:first-of-type { margin-top: 0; }
    .prose h3 {
      font-family: var(--fh);
      font-weight: 600;
      font-size: 1rem;
      margin-top: 24px;
      margin-bottom: 10px;
      color: var(--c-accent);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .prose h3::before {
      content: '';
      width: 3px;
      height: 14px;
      background: var(--c-accent);
      border-radius: 2px;
      flex-shrink: 0;
    }
    .prose p { color: var(--c-muted); font-size: .95rem; margin-bottom: 16px; line-height: 1.75; }
    .prose ul { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
    .prose ul li {
      padding-left: 18px;
      position: relative;
      font-size: .93rem;
      color: var(--c-muted);
    }
    .prose ul li::before {
      content: '';
      position: absolute;
      left: 0; top: 9px;
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--c-green);
    }

    /* =====================================================
       CTA BANNER
    ===================================================== */
    .cta-banner {
      background: linear-gradient(135deg, #0062F5 0%, #00B860 100%);
      border-radius: var(--r-lg);
      padding: 44px 36px;
      text-align: center;
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute;
      top: -50px; right: -50px;
      width: 200px; height: 200px;
      background: rgba(255,255,255,.07);
      border-radius: 50%;
    }
    .cta-banner h2 {
      font-family: var(--fh);
      font-size: clamp(1.3rem, 3vw, 1.75rem);
      font-weight: 800;
      margin-bottom: 10px;
      color: #fff;
    }
    .cta-banner p { color: rgba(255,255,255,.82); margin-bottom: 26px; max-width: 480px; margin-inline: auto; }
    .cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
    .cta-btn-white {
      background: #fff;
      color: var(--c-accent);
      font-family: var(--fh);
      font-weight: 700;
      padding: 13px 28px;
      border-radius: var(--r-md);
      font-size: .88rem;
      display: inline-flex; align-items: center; gap: 7px;
      transition: filter .18s, transform .14s;
    }
    .cta-btn-white:hover { filter: brightness(1.04); transform: translateY(-1px); }
    .cta-btn-ghost {
      border: 2px solid rgba(255,255,255,.55);
      color: #fff;
      font-family: var(--fh);
      font-weight: 600;
      padding: 13px 28px;
      border-radius: var(--r-md);
      font-size: .88rem;
      display: inline-flex; align-items: center; gap: 7px;
      transition: background .18s;
    }
    .cta-btn-ghost:hover { background: rgba(255,255,255,.12); }
    .cta-note { font-size: .7rem; color: rgba(255,255,255,.45); margin-top: 14px; }

    /* =====================================================
       FOOTER
    ===================================================== */
    .site-footer {
      background: #09152A;
      color: rgba(255,255,255,.72);
      padding-top: 56px;
    }

    .eeat-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 32px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .eeat-label {
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,.35);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 7px;
    }
    .eeat-label-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--c-accent); flex-shrink: 0; }
    .eeat-name  { font-family: var(--fh); font-weight: 700; font-size: .98rem; color: #fff; margin-bottom: 3px; }
    .eeat-role  { font-size: .78rem; color: rgba(255,255,255,.4); margin-bottom: 10px; }
    .eeat-text  { font-size: .82rem; line-height: 1.65; color: rgba(255,255,255,.52); }
    .eeat-rows  { display: flex; flex-direction: column; gap: 10px; }
    .eeat-row {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: .8rem;
      color: rgba(255,255,255,.52);
      line-height: 1.55;
    }
    .eeat-row-icon {
      width: 20px; height: 20px;
      border-radius: 4px;
      background: rgba(255,255,255,.07);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .eeat-row-icon svg { width: 11px; height: 11px; color: rgba(255,255,255,.45); }
    .eeat-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border: 1px solid rgba(0,184,96,.3);
      background: rgba(0,184,96,.07);
      color: var(--c-green);
      border-radius: var(--r-sm);
      font-size: .72rem;
      font-weight: 600;
      padding: 4px 10px;
      margin-top: 10px;
    }
    .age-circle {
      width: 38px; height: 38px;
      border-radius: 50%;
      border: 2px solid var(--c-red);
      color: var(--c-red);
      font-family: var(--fh);
      font-weight: 800;
      font-size: .78rem;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .help-number { font-family: var(--fh); font-weight: 700; font-size: .92rem; color: var(--c-green); margin: 4px 0 2px; }

    .footer-nav {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 32px;
      padding: 40px 0;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .fnav-heading {
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,.3);
      margin-bottom: 14px;
    }
    .fnav-links { display: flex; flex-direction: column; gap: 9px; }
    .fnav-links a { font-size: .84rem; color: rgba(255,255,255,.55); transition: color .14s; }
    .fnav-links a:hover { color: #fff; }

    .footer-bottom {
      padding: 22px 0;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }
    .footer-copy { font-size: .76rem; color: rgba(255,255,255,.32); }
    .footer-badges { display: flex; align-items: center; gap: 10px; }
    .footer-badge {
      background: rgba(255,255,255,.07);
      border-radius: var(--r-sm);
      padding: 4px 12px;
      font-size: .72rem;
      font-weight: 600;
      color: rgba(255,255,255,.45);
    }

    .disclaimer { background: rgba(0,0,0,.18); padding: 16px 0; }
    .disclaimer p {
      font-size: .7rem;
      color: rgba(255,255,255,.28);
      line-height: 1.65;
      text-align: center;
    }

    /* =====================================================
       ARTICLE META BAR (dates + author)
    ===================================================== */
    .article-meta {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 6px 20px;
      padding: 11px 0 14px;
      border-bottom: 1px solid var(--c-border);
    }
    .article-meta-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: .78rem;
      color: var(--c-muted);
    }
    .article-meta-item svg { width: 13px; height: 13px; color: var(--c-accent); flex-shrink: 0; }
    .article-meta-item strong { color: var(--c-text); font-weight: 600; }
    .article-meta-sep { width: 1px; height: 14px; background: var(--c-border); align-self: center; }
    .updated-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(0,184,96,.1);
      color: var(--c-green);
      font-size: .7rem;
      font-weight: 700;
      padding: 2px 9px;
      border-radius: 100px;
      letter-spacing: .04em;
    }
    .updated-badge::before {
      content: '';
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--c-green);
    }

    /* =====================================================
       UTILITIES
    ===================================================== */
    .bg-surface { background: transparent; }
    .bg-soft    { background: transparent; }
    .mt-12 { margin-top: 12px; }
    .mt-32 { margin-top: 32px; }

    /* =====================================================
       RESPONSIVE
    ===================================================== */
    @media (max-width: 900px) {
      .hero-grid { grid-template-columns: 1fr; }
      .hero-visual { display: none; }
      .casino-card { grid-template-columns: 80px 1fr; }
      .cc-action { display: none; }
      .cc-mobile-cta { display: flex; }
    }
    @media (max-width: 768px) {
      :root { --header-h: 56px; }
      .main-nav { display: none; }
      .hamburger { display: flex; }
      .section { padding: 44px 0; }
      .hero { padding: 40px 0 36px; }
      .hero h1 { font-size: 1.65rem; }
      .hero-stats { gap: 20px; flex-wrap: wrap; }
      .cc-logo-area { min-height: 80px; padding: 12px 8px; }
      .cc-logo-box { width: 56px; height: 56px; font-size: .78rem; }
      .footer-nav { grid-template-columns: 1fr 1fr; }
      .eeat-grid { grid-template-columns: 1fr; }
      .steps-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .hero-actions, .cta-actions { flex-direction: column; }
      .btn, .cta-btn-white, .cta-btn-ghost { width: 100%; justify-content: center; }
      .trust-list { gap: 10px 18px; }
      .footer-nav { grid-template-columns: 1fr; }
    }
    /* =====================================================
       RESPONSIBLE GAMBLING RESOURCES STRIP
    ===================================================== */
    .rg-section {
      padding: 28px 0 24px;
      border-bottom: 1px solid rgba(255,255,255,.08);
      margin-bottom: 0;
    }
    .rg-header {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 16px;
      font-size: .74rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255,255,255,.35);
    }
    .rg-header-icon { width: 14px; height: 14px; color: rgba(255,255,255,.35); flex-shrink: 0; }
    .rg-header-sub {
      font-weight: 400;
      letter-spacing: 0;
      text-transform: none;
      font-size: .72rem;
      color: rgba(255,255,255,.25);
      margin-left: 4px;
    }
    .rg-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .rg-pill {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.09);
      border-radius: 10px;
      padding: 8px 14px 8px 8px;
      text-decoration: none;
      transition: background .16s, border-color .16s, transform .14s;
      cursor: pointer;
    }
    .rg-pill:hover {
      background: rgba(255,255,255,.09);
      border-color: rgba(255,255,255,.18);
      transform: translateY(-1px);
    }
    .rg-pill-mark {
      flex-shrink: 0;
      border-radius: 5px;
      overflow: hidden;
      line-height: 0;
    }
    .rg-pill-mark svg { display: block; }
    .rg-pill-body {
      display: flex;
      flex-direction: column;
      gap: 1px;
    }
    .rg-pill-name {
      font-size: .78rem;
      font-weight: 600;
      color: rgba(255,255,255,.72);
      white-space: nowrap;
      line-height: 1.2;
    }
    .rg-pill:hover .rg-pill-name { color: #fff; }
    .rg-pill-phone {
      font-size: .66rem;
      font-weight: 500;
      color: rgba(255,255,255,.35);
      font-variant-numeric: tabular-nums;
      line-height: 1.2;
    }
    @media (max-width: 600px) {
      .rg-pills { gap: 8px; }
      .rg-pill { padding: 7px 11px 7px 7px; gap: 7px; }
      .rg-pill-name { font-size: .74rem; }
      .rg-header-sub { display: none; }
    }


    /* =====================================================
       BONUS BELL (header gift icon + popup)
    ===================================================== */
    .bonus-trigger {
      position: relative;
      margin-left: 12px;
      flex-shrink: 0;
    }
    .bonus-btn {
      width: 40px; height: 40px;
      border-radius: 10px;
      background: rgba(0,184,96,.1);
      border: 1.5px solid rgba(0,184,96,.25);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: background .18s, border-color .18s, transform .18s;
      position: relative;
    }
    .bonus-btn:hover { background: rgba(0,184,96,.18); border-color: rgba(0,184,96,.45); }
    .bonus-btn svg { width: 20px; height: 20px; color: var(--c-green); }

    /* bounce animation on the gift icon */
    @keyframes gift-bounce {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      20%       { transform: translateY(-4px) rotate(-6deg); }
      40%       { transform: translateY(-2px) rotate(5deg); }
      60%       { transform: translateY(-3px) rotate(-3deg); }
      80%       { transform: translateY(-1px) rotate(2deg); }
    }
    .bonus-btn svg { animation: gift-bounce 3.5s ease-in-out infinite; }

    /* red dot badge */
    .bonus-dot {
      position: absolute;
      top: 6px; right: 6px;
      width: 8px; height: 8px;
      background: #E84040;
      border-radius: 50%;
      border: 2px solid var(--c-surface);
      animation: pulse-dot 2s ease-in-out infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { transform: scale(1); opacity: 1; }
      50%       { transform: scale(1.3); opacity: .7; }
    }

    /* popup */
    .bonus-popup {
      position: absolute;
      top: calc(100% + 10px);
      right: 0;
      width: 300px;
      background: var(--c-surface);
      border: 1px solid var(--c-border);
      border-radius: var(--r-lg);
      box-shadow: var(--sh-lg);
      padding: 0;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-8px) scale(.97);
      transform-origin: top right;
      transition: opacity .2s, transform .2s;
      z-index: 800;
      overflow: hidden;
    }
    .bonus-popup.open {
      opacity: 1;
      pointer-events: all;
      transform: translateY(0) scale(1);
    }
    .bonus-popup-bar {
      height: 4px;
      background: linear-gradient(90deg, #0062F5, #00B860);
    }
    .bonus-popup-inner { padding: 16px 18px 18px; }
    .bonus-popup-label {
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--c-muted);
      margin-bottom: 10px;
    }
    .bonus-popup-row {
      display: flex;
      align-items: center;
      gap: 12px;
      background: var(--c-bg);
      border: 1px solid var(--c-border);
      border-radius: var(--r-md);
      padding: 11px 12px;
      margin-bottom: 8px;
      text-decoration: none;
      transition: box-shadow .15s, transform .15s;
    }
    .bonus-popup-row:hover { box-shadow: var(--sh-md); transform: translateY(-1px); }
    .bonus-popup-logo {
      width: 44px; height: 44px;
      border-radius: 9px;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--fh);
      font-weight: 800;
      font-size: .8rem;
      color: #fff;
      flex-shrink: 0;
    }
    .bonus-popup-info { flex: 1; min-width: 0; }
    .bonus-popup-name {
      font-family: var(--fh);
      font-weight: 700;
      font-size: .82rem;
      color: var(--c-text);
      margin-bottom: 3px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .bonus-popup-offer {
      font-size: .73rem;
      color: var(--c-green);
      font-weight: 600;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .bonus-popup-arrow {
      width: 30px; height: 30px;
      border-radius: 8px;
      background: var(--c-green);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .bonus-popup-arrow svg { width: 14px; height: 14px; color: #fff; }
    .bonus-popup-footer {
      font-size: .62rem;
      color: var(--c-muted);
      text-align: center;
      padding-top: 4px;
    }

    @media (max-width: 480px) {
      .bonus-popup { width: calc(100vw - 32px); right: -16px; }
    }


    /* Prose: ordered list */
    .prose ol {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 20px;
      counter-reset: prose-ol;
      padding: 0;
    }
    .prose ol li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: .93rem;
      color: var(--c-muted);
      counter-increment: prose-ol;
      padding-left: 0;
    }
    /* убираем старый ::before у ul li чтобы не конфликтовал */
    .prose ol li::before {
      content: counter(prose-ol);
      min-width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--c-accent);
      color: #fff;
      font-family: var(--fh);
      font-size: .7rem;
      font-weight: 700;
      line-height: 24px;
      text-align: center;
      flex-shrink: 0;
      position: static;
      top: auto; left: auto;
    }

    /* Prose: checklist */
    .prose ul.checklist li {
      padding-left: 28px;
    }
    .prose ul.checklist li::before {
      content: '';
      width: 16px; height: 16px;
      border: 2px solid var(--c-border);
      border-radius: 4px;
      background: rgba(0,98,245,.06);
      top: 4px;
    }

    /* Prose: comparison table inside text */
    .prose .table-wrap {
      margin: 20px 0 24px;
      font-size: .875rem;
    }
    .prose .table-wrap table { font-size: .85rem; }
    .prose .table-wrap thead th:first-child { color: #fff; }
    .prose .table-wrap tbody td:first-child { font-weight: 600; color: var(--c-text); }

    /* Prose: inline toc navigation */
    .prose-toc {
      background: rgba(0,98,245,.04);
      border: 1px solid rgba(0,98,245,.12);
      border-radius: var(--r-md);
      padding: 18px 22px;
      margin-bottom: 32px;
    }
    .prose-toc-label {
      font-family: var(--fh);
      font-size: .75rem;
      font-weight: 700;
      color: var(--c-accent);
      letter-spacing: .06em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .prose-toc-list {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .prose-toc-list a {
      font-size: .83rem;
      color: var(--c-muted);
      display: flex;
      align-items: center;
      gap: 7px;
      transition: color .14s;
    }
    .prose-toc-list a:hover { color: var(--c-accent); }
    .prose-toc-list a::before {
      content: '';
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--c-accent);
      flex-shrink: 0;
      opacity: .45;
    }

    /* Responsible gambling block in prose */
    .rg-inline-box {
      background: linear-gradient(135deg, rgba(0,98,245,.06), rgba(0,184,96,.06));
      border: 1px solid rgba(0,184,96,.2);
      border-radius: var(--r-md);
      padding: 18px 20px;
      margin-top: 12px;
    }
    .rg-inline-box p { margin-bottom: 0; font-size: .875rem; }
    .rg-inline-box a { color: var(--c-green); font-weight: 600; }
/* =====================================================
   ADDITIONAL COMPONENTS (Refactored from Inline)
   ===================================================== */

/* Casino Review Header */
.casino-review-header {
  padding: 40px 0;
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
}
.cr-header-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}
.cr-logo-box {
  width: 140px;
  height: 140px;
  font-size: 2.5rem;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--c-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--c-accent);
}
.cr-info {
  flex: 1;
  min-width: 300px;
}
.cr-info h1 {
  font-family: var(--fh);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.cr-stars-line {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cr-bonus-box {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--c-green);
  background: rgba(0,184,96,.06);
  padding: 12px 20px;
  border-radius: var(--r-md);
  display: inline-block;
}
.cr-cta-box {
  flex-shrink: 0;
}

/* Layout Grid */
.cr-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
}

/* Features */
.cr-features-box {
  margin-top: 40px;
  padding: 32px;
  background: #F8FAFC;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
}
.cr-features-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cr-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.cr-feature-icon {
  width: 24px;
  height: 24px;
  background: var(--c-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Page Hero Shortcode */
.page-hero {
  padding: 24px 0 20px;
}
.page-hero-inner {
  max-width: 720px;
}
.page-hero h1 {
  font-family: var(--fh);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.025em;
  color: var(--c-text);
  margin-bottom: 16px;
}
.page-hero-desc {
  color: var(--c-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Listing Extra Container */
.extra-casinos-container {
  display: none;
  flex-direction: column;
  gap: 14px;
}
.extra-casinos-container.is-visible {
  display: flex;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .cr-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .casino-sidebar {
    order: 2;
  }
}

@media (max-width: 768px) {
  .cr-header-flex {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .cr-info {
    min-width: 100%;
  }
  .cr-info h1 {
    font-size: 1.8rem;
  }
  .cr-stars-line {
    justify-content: center;
  }
  .cr-features-list {
    grid-template-columns: 1fr;
  }
  .cr-cta-box {
    width: 100%;
  }
  .cr-cta-box .btn {
    width: 100%;
  }
}

/* Utilities */
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }

/* FAQ Component Refinement */
.faq-container {
  max-width: 760px;
  margin: 0 auto;
}
.section-label-center {
  display: block;
  text-align: center;
  margin-inline: auto;
  width: fit-content;
}
.full-width-sub {
  max-width: 100%;
}

/* PID Visual Colors */
.pid-ava.blue { background: linear-gradient(135deg, #0062F5, #003DAA); }
.pid-ava.green { background: linear-gradient(135deg, #00B860, #006038); }
.pid-ava.gold { background: linear-gradient(135deg, #F4A800, #B87C00); }

/* Prose Container */
.prose-container {
  max-width: 820px;
}
