:root {
    --primary:       #d60e28;
    --primary-light: #ef4a5f;
    --primary-soft:  #d66473;
    --gold:          #c5a059;
    --gold-light:    #e0c48a;
    --bg:            #010104;
    --surface:       #121214;
    --surface-2:     #1b1b1e;
    --text:          #ffffff;
    --muted:         #b8b8be;
    --line:          rgba(214,14,40,.28);
    --glow:          rgba(214,14,40,.45);
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    font-size: 14.5px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }
  body::before {
    content:""; position:fixed; inset:0; z-index:-1; pointer-events:none;
    background:
      radial-gradient(ellipse 80% 50% at 10% -10%, rgba(214,14,40,.22), transparent 55%),
      radial-gradient(ellipse 60% 40% at 100% 20%, rgba(197,160,89,.12), transparent 50%),
      radial-gradient(ellipse 50% 40% at 50% 100%, rgba(214,14,40,.1), transparent 55%);
  }
  img { max-width: 100%; display: block; }
  a { color: var(--primary-soft); text-decoration: none; }
  a:hover { color: var(--gold); }
  h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; margin: 0 0 8px; }

  .wrap { max-width: 480px; margin: 0 auto; padding: 0 16px 40px; }
  @media (min-width: 560px) { .wrap { max-width: 560px; padding: 0 18px 48px; } }

  /* Sticky header */
  .top {
    position: sticky; top: 0; z-index: 50;
    background: rgba(1,1,4,.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
  }
  .top-inner {
    max-width: 480px; margin: 0 auto; padding: 10px 16px;
    display: flex; align-items: center; justify-content: space-between;
  }
  @media (min-width: 560px) { .top-inner { max-width: 560px; padding: 10px 18px; } }
  .top .logo img,
  .top .logo svg { height: 26px; width: auto; }
  .top .actions { display: flex; gap: 8px; }

  /* Breadcrumbs */
  .breadcrumbs { margin: 14px 0 2px; }
  .breadcrumbs ol {
    list-style: none; display: flex; flex-wrap: wrap; margin: 0; padding: 0;
    font-size: 11px; color: var(--muted);
  }
  .breadcrumbs li { display: flex; align-items: center; }
  .breadcrumbs li:not(:last-child)::after { content: "\203A"; margin: 0 6px; color: rgba(255,255,255,.25); }
  .breadcrumbs a { color: var(--muted); }
  .breadcrumbs a:hover { color: var(--gold); }
  .breadcrumbs li[aria-current="page"] { color: #fff; font-weight: 600; }

  /* Buttons */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    border-radius: 999px; padding: 9px 18px; font-weight: 800; font-size: 12.5px;
    letter-spacing: .02em; border: 1px solid transparent; cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
    white-space: nowrap;
  }
  .btn:active { transform: scale(.97); }
  .btn-ghost { background: rgba(255,255,255,.05); color: #fff; border-color: rgba(255,255,255,.18); }
  .btn-fire {
    background: linear-gradient(135deg, var(--primary-light), var(--primary) 55%, #7a0616);
    color: #fff; box-shadow: 0 0 18px var(--glow);
  }
  .btn-xl { width: 100%; padding: 14px 18px; font-size: 14px; text-transform: uppercase; }

  /* Hero */
  .hero { margin-top: 16px; }
  .hero-img {
    position: relative; border-radius: 16px; padding: 3px;
    background: linear-gradient(120deg, var(--primary), var(--gold), var(--primary-light), var(--gold-light));
    background-size: 300% 300%;
    animation: borderShift 8s ease infinite;
  }
  @keyframes borderShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  .hero-img-inner {
    position: relative; background: #000; border-radius: 14px; overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,.45);
  }
  .hero-img-inner > img { width: 100%; height: 240px; object-fit: cover; object-position: center 35%; }
  @media (min-width: 560px) { .hero-img-inner > img { height: 280px; } }
  .hero-tag {
    position: absolute; top: 12px; left: 12px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #2a1a05; font-size: 11px; font-weight: 800; text-transform: uppercase;
    letter-spacing: .04em; padding: 5px 12px; border-radius: 999px;
  }
  .hero-logo {
    position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
    filter: drop-shadow(0 4px 10px rgba(0,0,0,.6));
  }
  .hero-logo img { height: 30px; width: auto; }

  /* Stats */
  .stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 14px; }
  .stat {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px; padding: 10px 6px; text-align: center;
  }
  .stat .stat-val {
    display: block; font-family: Georgia, serif; font-size: 1.2rem;
    background: linear-gradient(180deg, #fff, var(--gold-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
  .stat span { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .03em; color: var(--muted); margin-top: 2px; }

  /* H1 + lead */
  h1 { font-size: 1.45rem; margin-top: 18px; line-height: 1.3; }
  h1 .grad { color: inherit; background: none; -webkit-text-fill-color: inherit; }
  .updated { font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin-bottom: 6px; }
  .lead { color: var(--muted); margin: 10px 0 14px; }

  /* Perks */
  .perks { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
  .perk {
    font-size: 12px; padding: 6px 12px; border-radius: 999px;
    background: rgba(214,14,40,.12); border: 1px solid var(--line); color: #fff;
  }
  .perk::before { content: "\2713 "; color: var(--gold); font-weight: 800; }

  /* TOC */
  .toc {
    background: var(--surface); border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px; padding: 16px; margin: 20px 0;
  }
  .toc h2 { font-size: 1rem; margin-bottom: 10px; }
  .toc ol { margin: 0; padding-left: 20px; }
  .toc li { margin-bottom: 6px; }
  .toc a { color: var(--primary-soft); }
  .toc a:hover { color: var(--gold); }

  /* Section titles for showcase */
  .section-title { font-family: Georgia, serif; font-size: 1.1rem; margin: 26px 0 12px; }

  /* Slots scroll */
  .slots-scroll {
    display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: 6px; margin: 0 -16px; padding-left: 16px; padding-right: 16px;
    -ms-overflow-style: none; scrollbar-width: none;
  }
  .slots-scroll::-webkit-scrollbar { display: none; }
  .slot { flex: 0 0 118px; scroll-snap-align: start; text-align: center; }
  .slot img {
    width: 118px; height: 118px; object-fit: cover; border-radius: 14px;
    border: 1px solid var(--gold); box-shadow: 0 6px 18px rgba(0,0,0,.4);
  }
  .slot span { display: block; font-size: 11px; margin-top: 6px; color: var(--muted); }

  /* Promo grid */
  .promo-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .promo-card {
    position: relative; background: var(--surface-2); border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px; padding: 16px;
  }
  .promo-card.featured { border-color: var(--primary); box-shadow: 0 0 20px var(--glow); }
  .label-hot {
    position: absolute; top: -8px; right: 14px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #2a1a05; font-size: 10px; font-weight: 800; text-transform: uppercase;
    padding: 3px 10px; border-radius: 999px;
  }
  .promo-card .type { color: var(--gold); font-size: 11px; text-transform: uppercase; letter-spacing: .04em; font-weight: 700; }
  .promo-card .gain { font-family: Georgia, serif; font-size: 1.15rem; margin: 6px 0; }
  .promo-card .rules { font-size: 12px; color: var(--muted); }

  /* Payments */
  .pay-strip {
    display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 16px;
    background: var(--surface); border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px; padding: 14px; margin-bottom: 12px;
  }
  .pay-strip img { height: 24px; width: auto; opacity: .9; }
  .pay-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .pay-card {
    background: var(--surface-2); border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px; padding: 12px;
  }
  .pay-card.accent { border-color: var(--primary); }
  .pay-card .label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .03em; }
  .pay-card .val { font-family: Georgia, serif; font-size: 1rem; margin-top: 4px; }
  .val-fast { color: var(--primary-light); }

  /* SEO content */
  .seo h2 {
    font-size: 1.1rem; margin-top: 30px; padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .seo h3 { font-size: .95rem; color: #d9d9de; margin-top: 16px; }
  .seo p { margin: 0 0 12px; }
  .seo ul, .seo ol { margin: 0 0 12px; padding-left: 20px; }
  .seo li { margin-bottom: 6px; }
  .seo strong, .seo b { color: inherit; font-weight: inherit; }

  .note {
    background: rgba(197,160,89,.1); border-left: 3px solid var(--gold);
    border-radius: 0 10px 10px 0; padding: 10px 14px; font-size: 13px; margin: 12px 0;
  }
  .note b { color: inherit; font-weight: inherit; }

  .table-wrap { overflow-x: auto; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; margin: 12px 0 16px; }
  table { border-collapse: collapse; width: 100%; min-width: 420px; font-size: 13px; }
  th, td { padding: 9px 12px; text-align: left; white-space: nowrap; }
  th { background: rgba(214,14,40,.22); color: #fff; font-weight: 700; }
  tbody tr:nth-child(even) { background: rgba(255,255,255,.03); }
  tbody tr { border-top: 1px solid rgba(255,255,255,.06); }

  /* Pinned table: fits fully in the content column, no horizontal scroll */
  .table-wrap.table-pinned { overflow-x: hidden; }
  .table-pinned table { width: 100%; min-width: 0; table-layout: fixed; font-size: 11px; }
  .table-pinned th, .table-pinned td {
    padding: 8px 5px; white-space: normal; word-break: break-word; hyphens: auto; vertical-align: top;
  }
  .table-pinned th:nth-child(1), .table-pinned td:nth-child(1) { width: 26%; }
  .table-pinned th:nth-child(2), .table-pinned td:nth-child(2) { width: 19%; }
  .table-pinned th:nth-child(3), .table-pinned td:nth-child(3) { width: 15%; }
  .table-pinned th:nth-child(4), .table-pinned td:nth-child(4) { width: 22%; }
  .table-pinned th:nth-child(5), .table-pinned td:nth-child(5) { width: 18%; }
  @media (min-width: 560px) { .table-pinned table { font-size: 12.5px; } }

  /* FAQ */
  .faq-item {
    border-bottom: 1px solid rgba(255,255,255,.08); padding: 12px 0;
  }
  .faq-item summary {
    list-style: none; cursor: pointer; font-weight: 700; font-size: 13.5px;
    display: flex; justify-content: space-between; align-items: center; gap: 10px;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: "+"; color: var(--gold); font-size: 20px; font-weight: 400; flex-shrink: 0;
  }
  .faq-item[open] summary::after { content: "\2013"; }
  .faq-item p { margin: 10px 0 0; color: var(--muted); font-size: 13.5px; }

  /* Boxes */
  .rg-box {
    border: 1px solid var(--gold); border-radius: 14px; padding: 16px;
    margin: 26px 0; background: rgba(197,160,89,.06);
  }
  .rg-box h2 { color: var(--gold-light); font-size: 1rem; }
  .rg-box p { font-size: 13px; color: var(--muted); margin: 0; }

  .cta-box {
    text-align: center; border: 1px solid var(--line); border-radius: 16px;
    padding: 22px 16px; margin: 20px 0;
  }
  .cta-box h2 { font-size: 1.1rem; }
  .cta-box p { color: var(--muted); margin: 8px 0 14px; }

  footer {
    text-align: center; font-size: 11px; color: var(--muted); padding-top: 20px; line-height: 1.6;
  }
  footer a { color: var(--muted); }

.hero-fallback {
  min-height: 180px;
  background: linear-gradient(160deg, #1a0508 0%, #3a0a12 45%, #0a0a0c 100%);
  display: flex; align-items: center; justify-content: center;
}
.hero-img-inner .hero-fallback img { height: 42px !important; width: auto !important; }
.slot-ph {
  width: 118px; height: 118px; border-radius: 14px;
  border: 1px solid var(--gold);
  background: linear-gradient(160deg, #2a0a10, #120406);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--gold-light); text-align: center; padding: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,.4);
}
.toc-title { font-family: Georgia, serif; font-size: 1rem; margin: 0 0 10px; }
.cta-title { font-family: Georgia, serif; font-size: 1.1rem; margin: 0; }
.rg-title { color: var(--gold-light); font-size: 1rem; font-family: Georgia, serif; margin: 0 0 8px; }

  .pay-strip span {
    font-size: 11px; font-weight: 700; letter-spacing: .04em;
    color: #fff; opacity: .85;
  }
  .logo-mark { display: flex; align-items: center; }
  .logo-mark svg { height: 26px; width: auto; }
