  /* ═══════════════════════════════════════════════
   SlotBonus888 — Blog Styles
   Shared by: blog/index.html + all blog posts
═══════════════════════════════════════════════ */

  /* ── Blog index hero ────────────────────────── */
  .blog-idx-hero {
    background: #111110;
    padding: calc(var(--nav-h) + 44px) var(--px) 40px;
    border-bottom: 3px solid var(--gold-dim);
    text-align: center;
  }

  .blog-idx-hero h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
  }

  .blog-idx-hero h1 span {
    color: var(--gold-light);
  }

  .blog-idx-hero p {
    color: #aaa9a4;
    font-size: 1rem;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.65;
  }

  /* ── Blog listing ───────────────────────────── */
  .blog-idx-wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 48px var(--px) 0;
  }

  .blog-idx-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* ── Blog list item ─────────────────────────── */
  .blog-list-item {
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
  }

  .blog-list-item:first-child {
    border-top: 1px solid var(--border);
  }

  .blog-list-item__tag {
    display: inline-block;
    background: #16a34a;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 3px;
    margin-bottom: 10px;
  }

  .blog-list-item__title {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.4;
    margin: 0 0 6px;
  }

  .blog-list-item__title a {
    color: var(--gold-light);
    text-decoration: none;
  }

  .blog-list-item__title a:hover {
    text-decoration: underline;
  }

  .blog-list-item__date {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 10px;
  }

  .blog-list-item__excerpt {
    font-size: 0.95rem;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 14px;
  }

  .blog-list-item__read {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
  }

  .blog-list-item__read:hover {
    text-decoration: underline;
  }

  /* ── Pagination ─────────────────────────────── */
  .blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 32px 0 48px;
  }

  .blog-pagination__page,
  .blog-pagination__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--border);
    color: var(--text-2);
    background: var(--bg-1);
    cursor: pointer;
    font-family: inherit;
    transition: border-color .15s, color .15s, background .15s;
  }

  .blog-pagination__page:hover,
  .blog-pagination__btn:hover {
    border-color: var(--gold-dim);
    color: var(--gold);
    background: rgba(240, 192, 64, 0.06);
  }

  .blog-pagination__page--active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
  }

  .blog-pagination__page--active:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: #000;
  }

  .blog-pagination__btn--disabled {
    opacity: 0.35;
    pointer-events: none;
    cursor: default;
  }

  /* ── Article hero ───────────────────────────── */
  .blog-hero {
    background: #111110;
    padding: calc(var(--nav-h) + 48px) var(--px) 44px;
    border-bottom: 3px solid var(--gold-dim);
  }

  .blog-hero__inner {
    max-width: 820px;
    margin: 0 auto;
  }

  .blog-hero__tag {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 18px;
  }

  .blog-hero h1 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 18px;
  }

  .blog-hero h1 span {
    color: var(--gold-light);
  }

  .blog-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.82rem;
    color: #8a8880;
  }

  /* ── Breadcrumb ─────────────────────────────── */
  .blog-crumb {
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    padding: 10px var(--px);
    font-size: 0.8rem;
    color: var(--text-3);
  }

  .blog-crumb__inner {
    max-width: 820px;
    margin: 0 auto;
  }

  .blog-crumb a {
    color: var(--gold);
    text-decoration: none;
  }

  .blog-crumb a:hover {
    text-decoration: underline;
  }

  .blog-crumb__sep {
    margin: 0 6px;
  }

  /* ── Article wrap ───────────────────────────── */
  .blog-wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 48px var(--px) 80px;
  }

  /* ── TOC ────────────────────────────────────── */
  .blog-toc {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold-dim);
    border-radius: 8px;
    padding: 20px 24px;
    margin-bottom: 40px;
  }

  .blog-toc__title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 12px;
  }

  .blog-toc ol {
    margin: 0;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .blog-toc li {
    font-size: 0.9rem;
  }

  .blog-toc a {
    color: var(--gold);
    text-decoration: none;
  }

  .blog-toc a:hover {
    text-decoration: underline;
  }

  /* ── Body typography ────────────────────────── */
  .blog-body h2 {
    font-size: clamp(1.2rem, 3vw, 1.55rem);
    font-weight: 800;
    color: var(--text);
    margin: 48px 0 16px;
    padding-top: 8px;
    border-top: 2px solid var(--border);
  }

  .blog-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 28px 0 12px;
  }

  .blog-body p {
    font-size: 1rem;
    color: var(--text-2);
    line-height: 1.8;
    margin-bottom: 18px;
  }

  .blog-body ul,
  .blog-body ol {
    padding-left: 22px;
    margin-bottom: 18px;
  }

  .blog-body li {
    font-size: 1rem;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 8px;
  }

  .blog-body a {
    color: var(--gold);
    font-weight: 600;
  }

  .blog-body a:hover {
    text-decoration: underline;
  }

  /* ── Comparison table ───────────────────────── */
  .blog-table-wrap {
    overflow-x: auto;
    margin: 24px 0 32px;
    border-radius: 8px;
    border: 1px solid var(--border);
  }

  .blog-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    min-width: 480px;
  }

  .blog-table thead th {
    background: #111110;
    color: var(--gold-light);
    font-weight: 700;
    text-align: left;
    padding: 11px 14px;
    border-bottom: 2px solid var(--gold-dim);
    white-space: nowrap;
  }

  .blog-table tbody tr:nth-child(even) {
    background: var(--bg-2);
  }

  .blog-table tbody td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    color: var(--text-2);
    vertical-align: middle;
  }

  .blog-table tbody tr:last-child td {
    border-bottom: none;
  }

  .blog-table .win {
    color: #16a34a;
    font-weight: 700;
  }

  .blog-table .label {
    font-weight: 700;
    color: var(--text);
  }

  /* ── Highlight box ──────────────────────────── */
  .blog-highlight {
    background: #fffbee;
    border: 1px solid #e8c84a;
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    padding: 18px 22px;
    margin: 24px 0;
  }

  .blog-highlight p {
    margin: 0;
    color: var(--text);
    font-size: 0.95rem;
  }

  /* ── FAQ ────────────────────────────────────── */
  .blog-faq {
    margin-top: 12px;
  }

  .blog-faq__item {
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
  }

  .blog-faq__q {
    padding: 15px 18px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bg-1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .blog-faq__q::after {
    content: '+';
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
  }

  .blog-faq__a {
    padding: 0 18px 15px;
    font-size: 0.92rem;
    color: var(--text-2);
    line-height: 1.75;
    background: var(--bg-1);
  }