/* ==========================================================================
   Extracted Stylesheets
   ========================================================================== */


    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

    :root {
      
      --bg:       #010D1A;
      --bg-card:  #0A2040;
      --bg-sec:   #060F20;
      --bg-alt:   #010D1A;
      --primary:  #00B4D8;
      --gold:     #FFD060;
      --green:    #00E676;
      --text:     #F0F8FF;
      --muted:    #B8D8F0;
      --border:   rgba(0,180,220,0.30);
      --light:    #060F20;
      --grad1:    #00C8FF;
      --grad2:    #0080C0;
      --btn-text: #000;
      --glow:     rgba(0,180,220,0.50);
      
      --radius:   14px;
      --radius-sm: 8px;
      --radius-lg: 20px;
      --shadow:   0 8px 32px rgba(0,0,0,.45);
      --shadow-lg: 0 20px 60px rgba(0,0,0,.6);
    }

    body {
      background: var(--bg);
      color: var(--text);
      
      font-family: &#39;Plus Jakarta Sans&#39;, system-ui, sans-serif;
      
      line-height: 1.65;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    h1, h2, h3, h4, h5, h6 {
      
      font-family: &#39;Nunito&#39;, sans-serif;
      
      line-height: 1.2;
    }
    /* Strict visual hierarchy — each level clearly smaller than the previous */
    h1 { font-size: clamp(28px,5vw,56px);  font-weight: 900; line-height: 1.08; letter-spacing: -0.02em; color: var(--text); }
    h2 { font-size: clamp(22px,3.5vw,38px); font-weight: 800; line-height: 1.15; letter-spacing: -0.01em; color: var(--text); margin-bottom: 0.5em; }
    h3 { font-size: clamp(17px,2.5vw,24px); font-weight: 700; color: var(--text); margin-bottom: 0.4em; }
    h4 { font-size: clamp(14px,2vw,18px);   font-weight: 700; color: var(--gold); margin-bottom: 0.3em; }
    h5 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary); margin-bottom: 0.25em; }
    h6 { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 0.2em; }
    p  { font-size: 15px; line-height: 1.85; color: var(--muted); margin-bottom: 1rem; }
    p:last-child { margin-bottom: 0; }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    section { padding: 80px 0; }
    nav, footer { /* inherits block padding */ }

    /* Section labels */
    .section-label {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--primary); margin-bottom: 10px;
    }

    /* Gradient text utilities */
    .grad-primary {
      background: linear-gradient(135deg, var(--grad1), var(--grad2));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .grad-gold {
      background: linear-gradient(135deg, var(--gold), #FF8C00);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    /* Legacy aliases */
    .grad-pink { background: linear-gradient(135deg,var(--grad1),var(--grad2)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

    /* ── Fire CTA — bright yellow-orange, used in every section ── */
    .btn-fire-cta {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 16px 36px;
      background: linear-gradient(135deg, #FFD000 0%, #FF6D00 55%, #FF4500 100%);
      color: #0D0D0D; font-weight: 900; font-size: 15px;
      border-radius: 14px; border: none; cursor: pointer; text-decoration: none;
      box-shadow: 0 4px 24px rgba(255,160,0,.5);
      transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .18s, background .15s;
      font-family: &#39;Plus Jakarta Sans&#39;, system-ui, sans-serif;
      position: relative; overflow: hidden;
    }
    .btn-fire-cta::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.3) 50%, transparent 70%);
      transform: translateX(-100%); transition: transform .5s ease;
    }
    .btn-fire-cta:hover::after { transform: translateX(100%); }
    .btn-fire-cta:hover {
      background: linear-gradient(135deg, #FFEA00 0%, #FFB300 55%, #FF6D00 100%);
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 10px 36px rgba(255,180,0,.65); color: #000;
    }
    .btn-fire-cta:active { transform: translateY(0) scale(.98); }
    /* Section CTA row wrapper */
    .section-fire-cta {
      text-align: center; margin-top: 44px; padding-top: 36px;
      border-top: 1px solid var(--border, rgba(255,255,255,.07));
    }
    .section-fire-cta .cta-sub {
      display: block; margin-top: 10px;
      font-size: 12px; color: var(--muted, #B0B0C8); letter-spacing: .02em;
    }

    /* Buttons */
    .btn-gold {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 28px;
      background: linear-gradient(135deg, var(--gold), #FF8C00);
      color: #000; font-weight: 800; font-size: 14px; border-radius: var(--radius);
      box-shadow: 0 4px 24px rgba(255,215,0,.4);
      transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .18s;
      border: none; cursor: pointer;
      font-family: &#39;Plus Jakarta Sans&#39;, system-ui, sans-serif;
    }
    .btn-gold:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 36px rgba(255,215,0,.6); color: #000; }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 28px;
      background: linear-gradient(135deg, var(--grad1), var(--grad2));
      color: var(--btn-text); font-weight: 800; font-size: 14px; border-radius: var(--radius);
      box-shadow: 0 4px 24px var(--glow);
      transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .18s;
      border: none; cursor: pointer;
      font-family: &#39;Plus Jakarta Sans&#39;, system-ui, sans-serif;
    }
    .btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 40px var(--glow); }

    .btn-outline {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 12px 26px;
      background: rgba(255,255,255,0.05);
      color: var(--primary); font-weight: 700; font-size: 14px; border-radius: var(--radius);
      border: 1.5px solid var(--primary);
      transition: all .18s; cursor: pointer;
      font-family: &#39;Plus Jakarta Sans&#39;, system-ui, sans-serif;
    }
    .btn-outline:hover { background: rgba(255,255,255,0.1); color: var(--text); border-color: var(--gold); }

    /* Glow effect for special elements */
    .glow-primary { box-shadow: 0 0 30px var(--glow); }
    .glow-gold    { box-shadow: 0 0 30px rgba(255,215,0,0.4); }

    /* Card base */
    .card-dark {
      background: var(--bg-card); border: 1.5px solid var(--border);
      border-radius: var(--radius); transition: transform .24s cubic-bezier(.34,1.56,.64,1), border-color .2s, box-shadow .24s;
    }
    .card-dark:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: 0 16px 40px var(--glow); }

    /* Error block */
    .block-error {
      background: #1a0000; color: #ff6b6b; padding: 16px; margin: 12px 0;
      border-left: 4px solid #ff4081; font-family: monospace; border-radius: var(--radius-sm);
    }

    /* Scrollbar */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

    @media (max-width: 768px) {
      section { padding: 56px 0; }
      .container { padding: 0 16px; }
      h1 { font-size: clamp(24px,8vw,40px); }
      h2 { font-size: clamp(18px,6vw,30px); }
    }
  


.sb-sticky {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  background: linear-gradient(90deg, #010D1A 0%, #0A2040 50%, #010D1A 100%);
  border-bottom: 1px solid rgba(0,180,220,.35);
  box-shadow: 0 2px 24px rgba(0,0,0,.6);
  padding: 0;
  transform: translateY(0);
  transition: transform .3s ease;
}
.sb-sticky.sb-sticky--hidden { transform: translateY(-100%); }
.sb-sticky-inner {
  display: flex; align-items: center; gap: 16px;
  max-width: 1200px; margin: 0 auto; padding: 9px 24px;
}
.sb-sticky-badge {
  flex-shrink: 0;
  background: linear-gradient(135deg,#FFD060,#FF8C00);
  color: #000; font-size: 10px; font-weight: 900;
  padding: 3px 10px; border-radius: 20px; letter-spacing: .06em; text-transform: uppercase;
}
.sb-sticky-name {
  font-weight: 800; font-size: 14px; color: #fff; flex-shrink: 0;
  white-space: nowrap;
}
.sb-sticky-bonus {
  font-size: 13px; color: #B8D8F0; flex: 1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sb-sticky-cta {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 22px;
  background: linear-gradient(135deg,#FFD000 0%,#FF6D00 55%,#FF4500 100%);
  color: #000; font-weight: 900; font-size: 13px;
  border-radius: 10px; text-decoration: none; border: none; cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  white-space: nowrap;
}
.sb-sticky-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,160,0,.5); }
.sb-sticky-age {
  flex-shrink: 0; font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,.4); border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px; padding: 2px 5px;
}
.sb-sticky-close {
  flex-shrink: 0; background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.35); font-size: 16px; line-height: 1;
  padding: 4px; transition: color .15s;
}
.sb-sticky-close:hover { color: #fff; }
/* Push body down so sticky doesn't cover content */
body.has-sticky { padding-top: 48px; }
@media (max-width: 600px) {
  .sb-sticky-bonus { display: none; }
  .sb-sticky-inner { gap: 10px; padding: 9px 14px; }
  .sb-sticky-cta { padding: 8px 14px; font-size: 12px; }
}



.sb-navbar {
  position: sticky; top: 0; z-index: 9000;
  background: #0A0012; border-bottom: 1px solid rgba(204,0,204,.3);
  height: 64px; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 4px 40px rgba(0,0,0,.8);
}
.sb-navbar .nb-logo { display: flex; align-items: center; gap: 10px; font-family: 'Exo 2', sans-serif; font-size: 19px; font-weight: 900; }
.sb-navbar .nb-logo-icon { width: 36px; height: 36px; border-radius: 9px; background: linear-gradient(135deg,#E040FB,#9C27B0); display: flex; align-items: center; justify-content: center; font-size: 18px; box-shadow: 0 0 16px rgba(224,64,251,.5); }
.sb-navbar .nb-logo em { color: #FFD700; font-style: normal; }
.sb-navbar .nb-links { display: flex; gap: 4px; }
.sb-navbar .nb-links a { color: #A0A0C0; font-size: 13.5px; font-weight: 500; padding: 6px 12px; border-radius: 7px; transition: color .15s, background .15s; }
.sb-navbar .nb-links a:hover { color: #fff; background: rgba(224,64,251,.12); }
.sb-navbar .nb-actions { display: flex; align-items: center; gap: 10px; }
.sb-navbar .nb-age { background: rgba(255,215,0,.12); color: #FFD700; border: 1px solid rgba(255,215,0,.3); border-radius: 6px; font-size: 11px; font-weight: 700; padding: 4px 8px; }
.sb-navbar .nb-cta { display: inline-flex; align-items: center; padding: 8px 18px; background: linear-gradient(135deg,#FFD700,#FF8C00); color: #0D0D0D; font-weight: 800; font-size: 13px; border-radius: 9px; transition: transform .15s; }
.sb-navbar .nb-cta:hover { transform: translateY(-1px); }
@media (max-width: 768px) { .sb-navbar .nb-links { display: none; } }



.sb-hero {
  position: relative;
  padding: 110px 0 90px;
  text-align: center;
  overflow: hidden;
  background: url('../images/hero-bg.webp') center/cover no-repeat;
}
.sb-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,.52);
  pointer-events: none;
}
.sb-hero .container { position: relative; z-index: 1; }
.sb-hero .hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff; font-size: .8rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
.sb-hero h1 {
  color: #fff;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
  max-width: 820px;
  margin-left: auto; margin-right: auto;
}
.sb-hero .hero-sub {
  font-size: 1.2rem; color: rgba(255,255,255,.9);
  max-width: 600px; margin: 0 auto 42px;
  line-height: 1.6;
}
.sb-hero .hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 600px) {
  .sb-hero { padding: 80px 0 70px; }
  .sb-hero .hero-sub { font-size: 1rem; }
}



.sb-toc {
  background: var(--bg-sec, #111124);
  border-top: 1px solid var(--border, rgba(224,64,251,0.18));
  border-bottom: 1px solid var(--border, rgba(224,64,251,0.18));
  padding: 22px 0;
}
.sb-toc .toc-inner { display: flex; align-items: flex-start; gap: 20px; flex-wrap: wrap; }
.sb-toc .toc-header {
  display: flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .07em; color: var(--primary, #E040FB);
  white-space: nowrap; flex-shrink: 0; padding-top: 4px;
}
.sb-toc .toc-header::before {
  content: '≡';  font-size: 1rem; line-height: 1;
}
.sb-toc .toc-list { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; }
.sb-toc .toc-list li a {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 13px;
  background: var(--bg-card, #1A1A2E);
  border: 1px solid var(--border, rgba(224,64,251,0.15));
  border-radius: 20px; font-size: .82rem; color: var(--muted, #B0B0C8);
  text-decoration: none;
  transition: color .15s, border-color .15s, background .15s;
}
.sb-toc .toc-list li a:hover {
  color: var(--primary, #E040FB);
  border-color: rgba(224,64,251,0.45);
  background: rgba(224,64,251,0.07);
}
.sb-toc .toc-num {
  color: var(--primary, #E040FB); font-weight: 700;
  font-size: .72rem; opacity: .8;
}



.sb-casino-stats { background: #0A0A1A; padding: 32px 0; border-top: 1px solid rgba(224,64,251,.15); border-bottom: 1px solid rgba(224,64,251,.15); }
.sb-casino-stats .cs-grid { display: flex; justify-content: center; flex-wrap: wrap; border: 1px solid rgba(224,64,251,.2); border-radius: 16px; overflow: hidden; max-width: 900px; margin: 0 auto; }
.sb-casino-stats .cs-stat { flex: 1; min-width: 150px; padding: 22px 20px; text-align: center; border-right: 1px solid rgba(224,64,251,.15); }
.sb-casino-stats .cs-stat:last-child { border-right: none; }
.sb-casino-stats .cs-icon { font-size: 1.6rem; margin-bottom: 6px; }
.sb-casino-stats .cs-value { display: block; font-family: 'Exo 2', sans-serif; font-size: 28px; font-weight: 900; color: #E040FB; letter-spacing: -0.02em; }
.sb-casino-stats .cs-label { font-size: 11px; color: #B0B0C8; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }
@media (max-width: 600px) { .sb-casino-stats .cs-stat { min-width: 120px; } }



.sb-casino-table { background: var(--bg, #0D0D0D); }
.sb-casino-table .ct-head {
  text-align: center; margin-bottom: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.sb-casino-table .ct-wrap {
  overflow-x: auto; border-radius: var(--radius, 14px);
  border: 1.5px solid var(--border, rgba(224,64,251,0.18));
}
.sb-casino-table table { width: 100%; border-collapse: collapse; min-width: 760px; }
.sb-casino-table thead th {
  background: var(--bg-sec, #111124); color: var(--muted, #B0B0C8);
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: 14px 16px; text-align: left;
  border-bottom: 2px solid var(--border, rgba(224,64,251,0.25));
}
.sb-casino-table tbody tr {
  border-bottom: 1px solid var(--border, rgba(224,64,251,0.08));
  transition: background .15s;
}
.sb-casino-table tbody tr:last-child { border-bottom: none; }
.sb-casino-table tbody tr:hover { background: rgba(224,64,251,0.04); }
.sb-casino-table tbody tr.ct-top1 { background: rgba(255,215,0,0.03); }
.sb-casino-table tbody tr.ct-top1:hover { background: rgba(255,215,0,0.06); }
.sb-casino-table td { padding: 16px; vertical-align: middle; }
.sb-casino-table .ct-rank {
  font-size: 1.1rem; font-weight: 900; color: var(--muted, #B0B0C8);
  width: 32px; text-align: center; padding-right: 0;
}
.sb-casino-table tr.ct-top1 .ct-rank { color: var(--gold, #FFD700); }
.sb-casino-table .ct-logo { font-size: 1.75rem; width: 42px; text-align: center; padding-left: 0; }
.sb-casino-table .ct-name { font-weight: 700; font-size: .95rem; color: var(--text, #fff); min-width: 140px; }
.sb-casino-table .ct-name small { display: block; font-weight: 400; font-size: .78rem; color: var(--muted, #B0B0C8); margin-top: 2px; }
.sb-casino-table .ct-bonus { color: var(--gold, #FFD700); font-weight: 700; font-size: .9rem; min-width: 160px; }
.sb-casino-table .ct-bonus small { display: block; color: var(--muted, #B0B0C8); font-weight: 400; font-size: .75rem; margin-top: 2px; }
.sb-casino-table .ct-deposit { color: var(--text, #fff); font-size: .88rem; white-space: nowrap; }
.sb-casino-table .ct-wager { color: var(--muted, #B0B0C8); font-size: .85rem; white-space: nowrap; }
.sb-casino-table .ct-license-badge {
  display: inline-block; padding: 3px 10px;
  border-radius: 20px; font-size: .72rem; font-weight: 700; white-space: nowrap;
  background: rgba(0,230,118,0.1); color: #00E676; border: 1px solid rgba(0,230,118,0.25);
}
.sb-casino-table .ct-license-badge.mga { background: rgba(33,150,243,0.1); color: #42A5F5; border-color: rgba(33,150,243,0.3); }
.sb-casino-table .ct-license-badge.ukgc { background: rgba(171,71,188,0.1); color: #CE93D8; border-color: rgba(171,71,188,0.3); }
.sb-casino-table .ct-score { font-size: 1.1rem; font-weight: 900; color: var(--primary, #E040FB); white-space: nowrap; }
.sb-casino-table .ct-cta a {
  display: inline-block; padding: 9px 18px;
  background: var(--gold, #FFD700); color: #000;
  font-weight: 800; font-size: .82rem;
  border-radius: 8px; text-decoration: none; white-space: nowrap;
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s;
}
.sb-casino-table .ct-cta a:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 6px 20px rgba(255,215,0,.35); }
.sb-casino-table .ct-note {
  text-align: center; margin-top: 16px;
  font-size: .78rem; color: var(--muted, #B0B0C8);
}
@media (max-width: 700px) {
  .sb-casino-table .ct-deposit,
  .sb-casino-table .ct-wager,
  .sb-casino-table thead th:nth-child(5),
  .sb-casino-table thead th:nth-child(6),
  .sb-casino-table td:nth-child(5),
  .sb-casino-table td:nth-child(6) { display: none; }
}



.sb-game-specs { background: var(--bg-sec, #111124); }
.sb-game-specs .gs-inner {
  display: grid; grid-template-columns: 300px 1fr; gap: 52px;
  align-items: center; max-width: 900px; margin: 0 auto;
}
.sb-game-specs .gs-img {
  border-radius: var(--radius, 14px); overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
  aspect-ratio: 3/4; background: var(--bg-card, #1A1A2E);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; border: 1.5px solid var(--border, rgba(224,64,251,0.18));
  position: relative;
}
.sb-game-specs .gs-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sb-game-specs .gs-provider-badge {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(0,0,0,.75); backdrop-filter: blur(8px);
  color: var(--muted, #B0B0C8); font-size: .72rem; font-weight: 600;
  padding: 4px 12px; border-radius: 20px; border: 1px solid var(--border);
}
.sb-game-specs .gs-tag {
  display: inline-block; padding: 4px 14px;
  background: rgba(224,64,251,0.12); color: var(--primary, #E040FB);
  border: 1px solid rgba(224,64,251,0.35); border-radius: 20px;
  font-size: .75rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: 14px;
}
.sb-game-specs .gs-name { font-size: 2rem; font-weight: 900; margin-bottom: 4px; line-height: 1.15; }
.sb-game-specs .gs-subtitle { color: var(--muted, #B0B0C8); margin-bottom: 28px; font-size: .9rem; }
.sb-game-specs .gs-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px;
}
.sb-game-specs .gs-stat {
  background: var(--bg-card, #1A1A2E); border: 1px solid var(--border, rgba(224,64,251,0.18));
  border-radius: 10px; padding: 14px 18px;
  transition: border-color .2s;
}
.sb-game-specs .gs-stat:hover { border-color: var(--primary, #E040FB); }
.sb-game-specs .gs-stat-label {
  font-size: .72rem; color: var(--muted, #B0B0C8);
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: 5px;
}
.sb-game-specs .gs-stat-value { font-size: 1.2rem; font-weight: 800; color: var(--text, #fff); }
.sb-game-specs .gs-stat-value.green { color: #00E676; }
.sb-game-specs .gs-stat-value.gold  { color: var(--gold, #FFD700); }
.sb-game-specs .gs-stat-value.purple{ color: var(--primary, #E040FB); }
.sb-game-specs .gs-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.sb-game-specs .gs-btns a {
  display: inline-block; padding: 13px 28px; border-radius: 10px;
  font-weight: 800; font-size: .92rem; text-decoration: none;
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s;
}
.sb-game-specs .btn-play {
  background: var(--gold, #FFD700); color: #000;
}
.sb-game-specs .btn-play:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(255,215,0,.4); }
.sb-game-specs .btn-demo {
  background: transparent; color: var(--primary, #E040FB);
  border: 2px solid var(--primary, #E040FB);
}
.sb-game-specs .btn-demo:hover { transform: translateY(-3px); background: rgba(224,64,251,0.08); box-shadow: 0 8px 24px rgba(224,64,251,.2); }
@media (max-width: 720px) {
  .sb-game-specs .gs-inner { grid-template-columns: 1fr; }
  .sb-game-specs .gs-img { max-width: 260px; margin: 0 auto; }
  .sb-game-specs .gs-name { font-size: 1.6rem; }
}



.sb-game-grid { background: var(--bg-sec, #111124); }
.sb-game-grid .gg-head { text-align:center; margin-bottom: 40px; }
.sb-game-grid .games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sb-game-grid .game-card {
  background: var(--bg-card, #1A1A2E);
  border: 1.5px solid var(--border, rgba(224,64,251,.18));
  border-radius: 12px; overflow: hidden;
  transition: transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .22s, border-color .2s;
  cursor: pointer; display: block; text-decoration: none;
}
.sb-game-grid .game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px var(--glow, rgba(224,64,251,.25));
  border-color: var(--primary, #E040FB);
}
.sb-game-grid .game-thumb {
  aspect-ratio: 3/4; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--bg-card, #1A1A2E), var(--bg-sec, #111124));
  display: flex; align-items: center; justify-content: center;
}
.sb-game-grid .game-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s;
}
.sb-game-grid .game-card:hover .game-thumb img { transform: scale(1.07); }
.sb-game-grid .game-emoji-box {
  width: 80px; height: 80px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--grad1, #E040FB), var(--grad2, #9C27B0));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.6rem;
  box-shadow: 0 8px 28px var(--glow, rgba(224,64,251,.4));
}
.sb-game-grid .rtp-badge {
  position: absolute; top: 8px; right: 8px; z-index: 2;
  background: rgba(0,0,0,.6); backdrop-filter: blur(6px);
  border: 1px solid var(--green, #00E676);
  border-radius: 5px; font-size: 10px; font-weight: 700;
  color: var(--green, #00E676); padding: 2px 8px;
}
.sb-game-grid .max-badge {
  position: absolute; top: 8px; left: 8px; z-index: 2;
  background: rgba(0,0,0,.6); backdrop-filter: blur(6px);
  border: 1px solid var(--gold, #FFD700);
  border-radius: 5px; font-size: 10px; font-weight: 700;
  color: var(--gold, #FFD700); padding: 2px 8px;
}
.sb-game-grid .game-info { padding: 12px 14px 14px; }
.sb-game-grid .game-name {
  font-size: 13px; font-weight: 800; margin-bottom: 3px;
  color: var(--text, #fff);
}
.sb-game-grid .game-provider { font-size: 11px; color: var(--muted, #808098); }
.sb-game-grid .game-play-btn {
  display: block; margin: 10px 14px 14px;
  padding: 7px 0; text-align: center;
  background: linear-gradient(135deg, var(--grad1, #E040FB), var(--grad2, #9C27B0));
  color: var(--btn-text, #fff); font-weight: 700; font-size: 12px;
  border-radius: 7px; transition: opacity .15s;
}
.sb-game-grid .game-card:hover .game-play-btn { opacity: .88; }
@media (max-width: 1024px) { .sb-game-grid .games-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px)  { .sb-game-grid .games-grid { grid-template-columns: repeat(2, 1fr); } }



.sb-bonus { background: var(--bg-sec, var(--light, #f6f7fb)); }
.sb-bonus .bonus-head { margin-bottom: 48px; }
.sb-bonus .bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}
.sb-bonus .bonus-card {
  background: var(--bg-card, #fff);
  border: 1.5px solid var(--border, #e8e9ef);
  border-radius: var(--r, var(--radius, 14px));
  padding: 32px 28px;
  position: relative;
  transition: transform .26s cubic-bezier(.34,1.56,.64,1), box-shadow .26s, border-color .2s;
}
.sb-bonus .bonus-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 48px rgba(0,0,0,.25);
  border-color: var(--primary);
}
.sb-bonus .bonus-ribbon {
  position: absolute; top: -1px; right: 24px;
  background: var(--primary); color: #fff;
  font-size: .72rem; font-weight: 700;
  padding: 5px 14px;
  border-radius: 0 0 10px 10px;
  letter-spacing: .04em; text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.sb-bonus .bonus-name {
  font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--muted, #666);
}
.sb-bonus .bonus-value {
  font-size: 2.2rem; font-weight: 900;
  color: var(--primary);
  line-height: 1.1; letter-spacing: -.02em;
  margin-bottom: 12px;
}
.sb-bonus .bonus-condition {
  font-size: .84rem; color: var(--muted, #999); margin: 0;
  border-top: 1px solid var(--border, #e8e9ef); padding-top: 12px; margin-top: 12px;
}



/* ═══ How To Start — Google-Play card grid ═══════════════════════════════════ */
.sb-how-to-start {
  background: var(--bg-sec, #0A0A1A);
  padding: 96px 0;
  overflow: hidden;
}
.sb-how-to-start .section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}
.sb-how-to-start .section-head p {
  font-size: 16px;
  color: var(--muted, #B0B0C8);
  margin-top: 12px;
  line-height: 1.7;
}

/* ── Step connector strip ── */
.hts-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  padding: 0 12px;
}
.hts-conn-node {
  display: flex;
  align-items: center;
  gap: 0;
}
.hts-conn-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--grad1, #E040FB), var(--grad2, #9C27B0));
  color: #fff;
  font-size: 13px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 18px var(--glow, rgba(224,64,251,.5));
  flex-shrink: 0;
  font-family: var(--font-display, 'Exo 2', sans-serif);
}
.hts-conn-line {
  height: 2px;
  flex: 1;
  min-width: 60px; max-width: 180px;
  background: linear-gradient(90deg, var(--grad1, #E040FB), var(--grad2, #9C27B0));
  opacity: .3;
}

/* ── 4-column card grid ── */
.hts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── Step card ── */
.hts-card {
  background: var(--bg-card, #1A1A2E);
  border: 1.5px solid var(--border, rgba(224,64,251,.15));
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .24s cubic-bezier(.34,1.56,.64,1), border-color .2s, box-shadow .2s;
}
.hts-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary, #E040FB);
  box-shadow: 0 20px 48px var(--glow, rgba(224,64,251,.25));
}

/* ── Card image area ── */
.hts-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg, #0D0D0D), var(--bg-card, #1A1A2E));
  flex-shrink: 0;
}
.hts-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.hts-card:hover .hts-img-wrap img {
  transform: scale(1.05);
}
.hts-emoji-vis {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 72px;
  background: radial-gradient(ellipse at center, rgba(224,64,251,.15) 0%, transparent 70%);
}

/* Step number badge — top-left overlay */
.hts-num-badge {
  position: absolute;
  top: 12px; left: 12px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--grad1, #E040FB), var(--grad2, #9C27B0));
  color: #fff;
  font-size: 14px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px var(--glow, rgba(224,64,251,.5));
  font-family: var(--font-display, 'Exo 2', sans-serif);
  z-index: 2;
}

/* Gradient overlay — bottom of image for text readability */
.hts-img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,10,26,.85) 100%);
  pointer-events: none;
}

/* ── Card body ── */
.hts-body {
  padding: 20px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hts-body h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text, #fff);
  line-height: 1.3;
  letter-spacing: -.01em;
  font-family: var(--font-display, 'Exo 2', sans-serif);
}
.hts-body p {
  font-size: 13.5px;
  color: var(--muted, #B0B0C8);
  line-height: 1.7;
  margin: 0;
}

/* ── Tablet: 2 cols ── */
@media (max-width: 1024px) {
  .hts-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hts-connector { display: none; }
}

/* ── Mobile: 1 col ── */
@media (max-width: 600px) {
  .hts-grid { grid-template-columns: 1fr; gap: 14px; }
  .sb-how-to-start { padding: 64px 0; }
  .hts-img-wrap { aspect-ratio: 16/9; }
  .hts-body { padding: 16px 18px 20px; }
}



.sb-strategies { background: var(--bg, #0D0D0D); }
.sb-strategies .str-head {
  text-align: center; margin-bottom: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.sb-strategies .str-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px;
}
.sb-strategies .str-card {
  background: var(--bg-card, #1A1A2E);
  border: 1.5px solid var(--border, rgba(224,64,251,0.18));
  border-radius: var(--radius, 14px); padding: 28px;
  display: flex; flex-direction: column;
  transition: transform .24s cubic-bezier(.34,1.56,.64,1), border-color .2s, box-shadow .24s;
}
.sb-strategies .str-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary, #E040FB);
  box-shadow: 0 16px 40px rgba(224,64,251,0.14);
}
.sb-strategies .str-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(224,64,251,0.2), rgba(123,47,190,0.2));
  border: 1px solid rgba(224,64,251,0.25);
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
}
.sb-strategies .str-name { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.sb-strategies .str-desc { font-size: .87rem; color: var(--muted, #B0B0C8); margin-bottom: 16px; line-height: 1.72; flex: 1; }
.sb-strategies .str-risk {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: 20px; font-size: .74rem; font-weight: 700;
  width: fit-content; margin-bottom: 14px;
}
.sb-strategies .str-risk.low  { background: rgba(0,230,118,0.1);  color: #00E676; border: 1px solid rgba(0,230,118,0.25); }
.sb-strategies .str-risk.med  { background: rgba(255,215,0,0.1);   color: var(--gold,#FFD700); border: 1px solid rgba(255,215,0,0.25); }
.sb-strategies .str-risk.high { background: rgba(230,57,70,0.1);   color: #E63946; border: 1px solid rgba(230,57,70,0.25); }
.sb-strategies .str-steps { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--border); padding-top: 14px; }
.sb-strategies .str-steps li {
  font-size: .83rem; color: var(--muted, #B0B0C8); padding: 5px 0;
  display: flex; gap: 9px; align-items: baseline;
}
.sb-strategies .str-steps li::before { content: '→'; color: var(--primary, #E040FB); flex-shrink: 0; font-weight: 700; }



/* ═══ Pros & Cons — dark luxury split card ═══════════════════════════════════ */
.sb-pros-cons {
  background: var(--bg, #0D0D0D);
  padding: 96px 0;
}
.sb-pros-cons .pc-head {
  text-align: center;
  margin-bottom: 56px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.sb-pros-cons .pc-head h2 {
  color: var(--text, #fff);
}

/* ── Two-column grid ── */
.pc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 940px;
  margin: 0 auto;
}

/* ── Card ── */
.pc-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid transparent;
  background-clip: padding-box;
  position: relative;
}
.pc-card--pro {
  background: linear-gradient(160deg, rgba(0,230,118,.07) 0%, var(--bg-card, #1A1A2E) 40%);
  border-color: rgba(0,230,118,.22);
  box-shadow: 0 0 40px rgba(0,230,118,.07);
}
.pc-card--con {
  background: linear-gradient(160deg, rgba(255,71,87,.07) 0%, var(--bg-card, #1A1A2E) 40%);
  border-color: rgba(255,71,87,.22);
  box-shadow: 0 0 40px rgba(255,71,87,.07);
}

/* ── Card header ── */
.pc-card-head {
  display: flex; align-items: center; gap: 12px;
  padding: 22px 26px 18px;
  position: relative;
}
.pc-card--pro .pc-card-head {
  border-bottom: 1px solid rgba(0,230,118,.15);
}
.pc-card--con .pc-card-head {
  border-bottom: 1px solid rgba(255,71,87,.15);
}

.pc-head-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.pc-card--pro .pc-head-icon {
  background: rgba(0,230,118,.15);
  box-shadow: 0 0 20px rgba(0,230,118,.2);
}
.pc-card--con .pc-head-icon {
  background: rgba(255,71,87,.15);
  box-shadow: 0 0 20px rgba(255,71,87,.2);
}

.pc-head-label {
  flex: 1;
}
.pc-head-label strong {
  display: block;
  font-size: 18px; font-weight: 800;
  font-family: var(--font-display, 'Exo 2', sans-serif);
  color: var(--text, #fff);
}
.pc-card--pro .pc-head-label span { color: rgba(0,230,118,.8); font-size: 12px; font-weight: 600; }
.pc-card--con .pc-head-label span { color: rgba(255,71,87,.8);  font-size: 12px; font-weight: 600; }

.pc-count-badge {
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 20px;
  font-family: var(--font-display, 'Exo 2', sans-serif);
}
.pc-card--pro .pc-count-badge { background: rgba(0,230,118,.15); color: #00E676; }
.pc-card--con .pc-count-badge { background: rgba(255,71,87,.15);  color: #FF4757; }

/* ── Item list ── */
.pc-list {
  list-style: none;
  padding: 8px 0 16px;
}
.pc-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 13px 26px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background .18s;
  cursor: default;
}
.pc-item:last-child { border-bottom: none; }
.pc-item:hover { background: rgba(255,255,255,.03); }

/* Icon circle */
.pc-item-icon {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
  font-size: 12px; font-weight: 900;
  line-height: 1;
}
.pc-card--pro .pc-item-icon {
  background: rgba(0,230,118,.18);
  color: #00E676;
  box-shadow: 0 0 8px rgba(0,230,118,.3);
}
.pc-card--con .pc-item-icon {
  background: rgba(255,71,87,.18);
  color: #FF4757;
  box-shadow: 0 0 8px rgba(255,71,87,.3);
}

.pc-item-text {
  font-size: 14px;
  color: var(--muted, #B0B0C8);
  line-height: 1.6;
  flex: 1;
}
.pc-item:hover .pc-item-text { color: var(--text, #fff); }

/* ── Bottom verdict bar ── */
.pc-verdict {
  max-width: 940px;
  margin: 24px auto 0;
  background: var(--bg-card, #1A1A2E);
  border: 1.5px solid var(--border, rgba(224,64,251,.15));
  border-radius: 16px;
  padding: 20px 28px;
  display: flex; align-items: center; gap: 20px;
}
.pc-verdict-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--primary, #E040FB);
  white-space: nowrap;
}
.pc-verdict-text {
  font-size: 14px;
  color: var(--muted, #B0B0C8);
  line-height: 1.5;
  margin: 0;
}
.pc-verdict-score {
  margin-left: auto;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--grad1, #E040FB), var(--grad2, #9C27B0));
  border-radius: 12px;
  padding: 10px 18px;
  text-align: center;
}
.pc-verdict-score strong {
  display: block;
  font-size: 22px; font-weight: 900;
  color: #fff;
  font-family: var(--font-display, 'Exo 2', sans-serif);
  line-height: 1;
}
.pc-verdict-score span {
  font-size: 10px; color: rgba(255,255,255,.7); font-weight: 600; text-transform: uppercase;
}

/* ── Responsive ── */
@media (max-width: 680px) {
  .pc-grid { grid-template-columns: 1fr; gap: 16px; }
  .pc-verdict { flex-direction: column; align-items: flex-start; gap: 12px; }
  .pc-verdict-score { margin-left: 0; width: 100%; }
  .sb-pros-cons { padding: 64px 0; }
}



.sb-trust {
  background: var(--primary);
  padding: 72px 0;
}
.sb-trust .trust-inner {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 36px;
}
.sb-trust h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
.sb-trust .trust-score-wrap {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap; justify-content: center;
}
.sb-trust .trust-score {
  font-size: 5rem; font-weight: 900;
  color: #fff; line-height: 1;
  letter-spacing: -.04em;
}
.sb-trust .trust-score-detail {
  text-align: left;
  display: flex; flex-direction: column; gap: 6px;
}
.sb-trust .stars {
  display: flex; gap: 4px;
}
.sb-trust .star {
  width: 24px; height: 24px;
  fill: #fff; opacity: .3;
}
.sb-trust .star.filled { opacity: 1; }
.sb-trust .trust-reviews {
  font-size: .9rem; color: rgba(255,255,255,.75);
  font-weight: 500;
}
.sb-trust .trust-badges {
  display: flex; flex-wrap: wrap;
  gap: 12px; justify-content: center;
}
.sb-trust .trust-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50px;
  padding: 11px 24px;
  font-size: .9rem; font-weight: 600; color: #fff;
  backdrop-filter: blur(6px);
  transition: background .2s;
}
.sb-trust .trust-badge:hover { background: rgba(255,255,255,.22); }
.sb-trust .trust-badge-emoji { font-size: 1.1rem; }



.sb-faq { background: var(--light); }
.sb-faq .faq-head {
  text-align: center; margin-bottom: 52px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.sb-faq .faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.sb-faq .faq-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.sb-faq .faq-item.open {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.sb-faq .faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 26px;
  cursor: pointer;
  font-weight: 600; font-size: 1rem;
  color: #000;
  user-select: none;
  gap: 16px;
}
.sb-faq .faq-q:hover { color: var(--primary); }
.sb-faq .faq-arrow {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--primary);
  transition: transform .3s, background .2s;
  font-weight: 700;
}
.sb-faq .faq-item.open .faq-arrow {
  transform: rotate(45deg);
  background: var(--primary);
  color: #fff;
}
.sb-faq .faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.sb-faq .faq-body-inner {
  padding: 0 26px 22px;
  color: #555;
  font-size: .96rem;
  line-height: 1.72;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin: 0 26px;
}



.sb-author-bio {
  background: var(--bg-sec, #111124);
  border-top: 1px solid var(--border, rgba(224,64,251,0.18));
}
.sb-author-bio .ab-card {
  display: flex; align-items: flex-start; gap: 28px;
  background: var(--bg-card, #1A1A2E);
  border: 1.5px solid var(--border, rgba(224,64,251,0.18));
  border-radius: var(--radius, 14px); padding: 32px;
  max-width: 840px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.sb-author-bio .ab-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary, #E040FB), #7B2FBE, transparent);
}
.sb-author-bio .ab-avatar {
  width: 86px; height: 86px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary, #E040FB), #7B2FBE);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; overflow: hidden;
  border: 2.5px solid var(--primary, #E040FB);
  box-shadow: 0 0 28px rgba(224,64,251,.3);
}
.sb-author-bio .ab-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.sb-author-bio .ab-name { font-size: 1.1rem; font-weight: 800; margin-bottom: 2px; }
.sb-author-bio .ab-role {
  font-size: .82rem; color: var(--primary, #E040FB);
  font-weight: 600; margin-bottom: 10px; display: flex; align-items: center; gap: 6px;
}
.sb-author-bio .ab-role::before { content: '✓'; font-size: .7rem; }
.sb-author-bio .ab-bio {
  font-size: .88rem; color: var(--muted, #B0B0C8); line-height: 1.78; margin-bottom: 14px;
}
.sb-author-bio .ab-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 14px; }
.sb-author-bio .ab-meta-item { font-size: .77rem; color: var(--muted, #B0B0C8); display: flex; align-items: center; gap: 5px; }
.sb-author-bio .ab-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.sb-author-bio .ab-socials a {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 13px;
  background: rgba(224,64,251,0.07); border: 1px solid var(--border);
  border-radius: 20px; font-size: .79rem; color: var(--muted, #B0B0C8);
  text-decoration: none;
  transition: color .15s, border-color .15s, background .15s;
}
.sb-author-bio .ab-socials a:hover {
  color: var(--primary, #E040FB);
  border-color: rgba(224,64,251,.4);
  background: rgba(224,64,251,0.12);
}
@media (max-width: 560px) {
  .sb-author-bio .ab-card { flex-direction: column; align-items: center; text-align: center; }
  .sb-author-bio .ab-meta { justify-content: center; }
  .sb-author-bio .ab-socials { justify-content: center; }
  .sb-author-bio .ab-role { justify-content: center; }
}



/* ═══ Mobile Sticky CTA — single bright button, always visible on mobile ═════ */
.sb-mcta {
  display: none; /* shown only on mobile via @media */
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(to top, rgba(8,6,18,.98) 80%, rgba(8,6,18,0));
  pointer-events: none; /* only the button is interactive */
}

/* The single CTA button */
.sb-mcta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  letter-spacing: .01em;
  font-family: var(--font-display, 'Exo 2', sans-serif);
  text-decoration: none;
  pointer-events: all;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
  outline: none;

  /* Bright yellow-orange gradient — impossible to miss */
  background: linear-gradient(135deg, #FFD000 0%, #FF6D00 60%, #FF4500 100%);
  color: #0D0D0D;
  box-shadow:
    0 4px 24px rgba(255, 160, 0, .55),
    0 0 0 0 rgba(255, 200, 0, .35);

  /* Pulse animation */
  animation: mcta-pulse 2.4s ease-in-out infinite;
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .18s;
}

@keyframes mcta-pulse {
  0%   { box-shadow: 0 4px 24px rgba(255,160,0,.55), 0 0 0 0   rgba(255,200,0,.35); }
  50%  { box-shadow: 0 4px 32px rgba(255,160,0,.75), 0 0 0 12px rgba(255,200,0,0);  }
  100% { box-shadow: 0 4px 24px rgba(255,160,0,.55), 0 0 0 0   rgba(255,200,0,0);  }
}

/* Yellow hover — even brighter */
.sb-mcta-btn:hover {
  background: linear-gradient(135deg, #FFEA00 0%, #FFB300 60%, #FF6D00 100%);
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 8px 36px rgba(255,180,0,.7);
  color: #000;
}
.sb-mcta-btn:active {
  transform: translateY(0) scale(.98);
}

/* Shine sweep on hover */
.sb-mcta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .5s ease;
}
.sb-mcta-btn:hover::after { transform: translateX(100%); }

/* Button icon */
.sb-mcta-icon {
  font-size: 20px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(0,0,0,.3));
}

/* Sub-label under main text */
.sb-mcta-labels {
  display: flex; flex-direction: column; align-items: flex-start; gap: 1px;
}
.sb-mcta-main  { font-size: 15px; font-weight: 900; line-height: 1.1; }
.sb-mcta-sub   { font-size: 11px; font-weight: 600; opacity: .75; line-height: 1; }

/* Close button — small X top-right */
.sb-mcta-close {
  position: absolute;
  top: -8px; right: 12px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.6);
  font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: background .15s;
}
.sb-mcta-close:hover { background: rgba(255,255,255,.25); color: #fff; }

/* Slide-in from bottom */
.sb-mcta {
  transform: translateY(110%);
  transition: transform .38s cubic-bezier(.22,1,.36,1);
}
.sb-mcta.is-visible { transform: translateY(0); }

/* Hidden when user closes */
body.mcta-closed .sb-mcta { display: none !important; }

/* ── Only show on mobile ── */
@media (min-width: 769px) { .sb-mcta { display: none !important; } }
@media (max-width: 768px)  { .sb-mcta { display: block; } }



.sb-gambling-footer { background: #06060F; border-top: 1px solid rgba(224,64,251,.15); padding: 56px 0 0; }
.sb-gambling-footer .gf-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.sb-gambling-footer .gf-logo { display: flex; align-items: center; gap: 10px; font-family: 'Exo 2', sans-serif; font-size: 18px; font-weight: 900; margin-bottom: 14px; }
.sb-gambling-footer .gf-logo-icon { width: 34px; height: 34px; border-radius: 8px; background: linear-gradient(135deg,#E040FB,#9C27B0); display: flex; align-items: center; justify-content: center; font-size: 17px; }
.sb-gambling-footer .gf-desc { font-size: 13px; color: #808098; line-height: 1.75; max-width: 300px; margin-bottom: 18px; }
.sb-gambling-footer .gf-trust { display: flex; flex-wrap: wrap; gap: 8px; }
.sb-gambling-footer .gf-trust img { height: 28px; width: auto; filter: grayscale(60%); opacity: .75; transition: opacity .15s, filter .15s; }
.sb-gambling-footer .gf-trust img:hover { opacity: 1; filter: none; }
.sb-gambling-footer h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: #606080; margin-bottom: 14px; }
.sb-gambling-footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.sb-gambling-footer ul li a { font-size: 13px; color: #606080; transition: color .15s; }
.sb-gambling-footer ul li a:hover { color: #E040FB; }
.sb-gambling-footer .gf-payments { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; padding: 18px 0; border-top: 1px solid rgba(224,64,251,.1); border-bottom: 1px solid rgba(224,64,251,.1); margin-bottom: 0; }
.sb-gambling-footer .gf-pay-badge { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 6px; padding: 5px 12px; font-size: 12px; font-weight: 700; color: #606080; }
.sb-gambling-footer .gf-disclaimer { font-size: 11px; color: #404060; line-height: 1.85; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.04); }
.sb-gambling-footer .gf-bar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.04); font-size: 12px; color: #404060; }
@media (max-width: 768px) { .sb-gambling-footer .gf-grid { grid-template-columns: 1fr; gap: 28px; } }



.sb-popup-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
  padding: 16px;
}
.sb-popup-overlay.is-open { display: flex; }

.sb-popup-box {
  position: relative;
  background: linear-gradient(160deg, #0A2040 0%, #010D1A 100%);
  border: 1.5px solid rgba(0,180,220,.4);
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(0,0,0,.8), 0 0 60px rgba(0,180,220,.15);
  max-width: 480px; width: 100%;
  overflow: hidden;
  animation: popup-in .35s cubic-bezier(.22,1,.36,1);
}
@keyframes popup-in {
  from { opacity: 0; transform: scale(.88) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.sb-popup-img {
  position: relative; width: 100%; height: 200px; overflow: hidden;
  background: linear-gradient(135deg, #010D1A, #0A2040);
}
.sb-popup-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(.85);
}
.sb-popup-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, #0A2040 100%);
}
.sb-popup-exclusive {
  position: absolute; top: 14px; left: 14px;
  background: linear-gradient(135deg,#FFD000,#FF6D00);
  color: #000; font-size: 10px; font-weight: 900;
  padding: 4px 12px; border-radius: 20px; letter-spacing: .07em; text-transform: uppercase;
}

.sb-popup-body { padding: 24px 28px 28px; text-align: center; }
.sb-popup-title {
  font-size: 22px; font-weight: 900; color: #F0F8FF;
  margin-bottom: 10px; line-height: 1.2;
  font-family: var(--font-display, 'Nunito', sans-serif);
}
.sb-popup-bonus {
  font-size: 28px; font-weight: 900; line-height: 1.1;
  background: linear-gradient(135deg,#FFD000,#FF8C00);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.sb-popup-terms {
  font-size: 11px; color: rgba(184,216,240,.55);
  margin-bottom: 20px; line-height: 1.5;
}
.sb-popup-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 16px 24px;
  background: linear-gradient(135deg,#FFD000 0%,#FF6D00 55%,#FF4500 100%);
  color: #0D0D0D; font-weight: 900; font-size: 16px;
  border-radius: 14px; border: none; cursor: pointer; text-decoration: none;
  box-shadow: 0 6px 28px rgba(255,160,0,.55);
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .18s;
  font-family: var(--font-display, 'Nunito', sans-serif);
  letter-spacing: .01em;
}
.sb-popup-cta:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 36px rgba(255,160,0,.7); color: #000; }
.sb-popup-sub {
  margin-top: 12px; font-size: 10px; color: rgba(184,216,240,.4);
}

.sb-popup-close {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.7); font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s; z-index: 2;
}
.sb-popup-close:hover { background: rgba(255,255,255,.15); color: #fff; }



.rg-strip {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 8888;
  background: rgba(1,13,26,.97);
  border-top: 1px solid rgba(0,180,220,.2);
  padding: 8px 0;
}
.rg-strip-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.rg-18 {
  background: #FF4500; color: #fff; font-size: 11px; font-weight: 900;
  padding: 2px 8px; border-radius: 4px; flex-shrink: 0; letter-spacing: .05em;
}
.rg-text { font-size: 11px; color: rgba(184,216,240,.5); flex: 1; line-height: 1.4; }
.rg-link { font-size: 11px; color: rgba(0,180,220,.6); text-decoration: underline; white-space: nowrap; }
.rg-link:hover { color: #00B4D8; }
.rg-close { background: none; border: none; cursor: pointer; color: rgba(255,255,255,.25); font-size: 14px; padding: 2px 4px; }
.rg-close:hover { color: rgba(255,255,255,.6); }
/* Push mobile CTA above the RG strip */
.sb-mcta { bottom: 48px !important; }
@media (min-width: 769px) { .rg-strip { padding: 6px 0; } }

/* ==========================================================================
   Blog Post & Blog Archive Styles
   ========================================================================== */

/* Single Post Container */
.nwm-post-container {
  background: var(--bg);
  color: var(--text);
  padding-bottom: 80px;
}

/* Post Hero Section */
.post-hero {
  position: relative;
  padding: 80px 0 50px;
  background: radial-gradient(circle at top left, rgba(0, 180, 216, 0.08), transparent 60%),
              radial-gradient(circle at bottom right, rgba(255, 208, 96, 0.03), transparent 60%),
              #010D1A;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.post-meta-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.post-category {
  display: inline-block;
  background: rgba(0, 180, 216, 0.12);
  border: 1px solid rgba(0, 180, 216, 0.3);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 20px;
}
.post-date {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.post-title {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.post-excerpt {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 900px;
  margin-bottom: 30px;
}
.post-author-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.author-bar-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  object-fit: cover;
}
.author-bar-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.author-bar-name {
  font-size: 14px;
  color: #fff;
}
.author-bar-role {
  font-size: 12px;
  color: var(--muted);
}
.post-reading-time {
  margin-left: auto;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Post Layout Grid */
.post-layout-wrap {
  padding: 60px 0;
  background: var(--bg);
}
.post-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

/* Main Content Area */
.post-main-content {
  min-width: 0;
}

/* Post Body Typography */
.post-body-text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 60px;
}
.post-body-text h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #fff;
  margin: 40px 0 20px;
  border-bottom: 1.5px solid var(--border);
  padding-bottom: 8px;
  letter-spacing: -0.01em;
}
.post-body-text h3 {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  color: #fff;
  margin: 32px 0 16px;
}
.post-body-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 24px;
}
.post-body-text ul, .post-body-text ol {
  margin-bottom: 28px;
  padding-left: 24px;
}
.post-body-text li {
  margin-bottom: 10px;
  line-height: 1.75;
}
.post-body-text strong {
  color: #fff;
}
.post-body-text blockquote {
  background: var(--bg-card);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  margin: 36px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-size: 17px;
  color: var(--text);
  box-shadow: var(--shadow);
}
.post-body-text blockquote p {
  margin-bottom: 0;
}
.post-body-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 36px 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}
.post-body-text th, .post-body-text td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.post-body-text th {
  background: var(--bg-sec);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.post-body-text tr:last-child td {
  border-bottom: none;
}
.post-body-text tr:hover {
  background: rgba(0, 180, 216, 0.03);
}
.post-body-text img {
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  margin: 36px auto;
  max-width: 100%;
  height: auto;
}

/* Sidebar Styling */
.post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 80px;
  z-index: 10;
}
.sidebar-widget {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

/* Author Sidebar Widget */
.author-widget {
  text-align: center;
}
.widget-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  margin: 0 auto 16px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(0, 180, 216, 0.3);
}
.author-widget h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.widget-author-role {
  font-size: 12px;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.widget-author-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 20px;
}
.widget-author-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}
.widget-author-stats span {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(255, 208, 96, 0.08);
  padding: 6px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 208, 96, 0.15);
}

/* CTA Sidebar Widget */
.cta-widget {
  background: linear-gradient(145deg, #0A2040 0%, #03142B 100%);
  border-color: rgba(0, 180, 216, 0.4);
}
.cta-widget-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.35) 0%, transparent 70%);
  pointer-events: none;
}
.cta-widget-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #FF8C00);
  color: #000;
  font-size: 10px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.cta-widget h3 {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.25;
}
.cta-widget-bonus {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}
.cta-widget p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}
.cta-widget .btn-fire-cta {
  width: 100%;
  justify-content: center;
  font-size: 14px;
  padding: 14px;
}
.cta-widget-terms {
  display: block;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 10px;
}

/* -------------------------------------------------------------------------- */
/* Blog Archive Styles */
/* -------------------------------------------------------------------------- */

/* Archive Hero Section */
.blog-archive-hero {
  padding: 100px 0 70px;
  text-align: center;
  background: radial-gradient(circle at 50% 120%, rgba(0, 180, 216, 0.12), transparent 70%),
              #010D1A;
  border-bottom: 1px solid var(--border);
}
.archive-eyebrow {
  display: inline-block;
  background: rgba(255, 208, 96, 0.1);
  border: 1px solid rgba(255, 208, 96, 0.3);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.blog-archive-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.archive-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Archive List & Grid */
.blog-archive-list {
  padding: 80px 0 100px;
  background: var(--bg);
}
.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

/* Post Card Styling */
.post-card {
  position: relative;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.2s, box-shadow 0.28s;
  box-shadow: var(--shadow);
}
.post-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 45px var(--glow);
}
.post-card-link-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
}
.post-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-bottom: 1.5px solid var(--border);
}
.post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.post-card:hover .post-card-img img {
  transform: scale(1.05);
}
.post-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(0, 180, 216, 0.95);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.post-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post-card-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 500;
}
.post-card-title {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.post-card:hover .post-card-title {
  color: var(--primary);
}
.post-card-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card-more {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.post-card:hover .post-card-more {
  gap: 8px;
}

/* Pagination Styling */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.blog-pagination ul {
  display: flex;
  list-style: none;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.blog-pagination li a, .blog-pagination li.active span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 6px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s;
}
.blog-pagination li a {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--muted);
}
.blog-pagination li a:hover {
  border-color: var(--primary);
  color: #fff;
  background: rgba(0, 180, 216, 0.08);
}
.blog-pagination li.active span {
  background: linear-gradient(135deg, var(--grad1), var(--grad2));
  color: #000;
  border: none;
}
.blog-pagination li.disabled span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  cursor: not-allowed;
  border-radius: var(--radius-sm);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .post-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .post-sidebar {
    position: static;
  }
  .blog-posts-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .post-hero {
    padding: 50px 0 35px;
  }
  .post-author-bar {
    flex-wrap: wrap;
    gap: 12px;
  }
  .post-reading-time {
    width: 100%;
    margin-left: 0;
    padding-top: 6px;
    border-top: 1px dashed rgba(255, 255, 255, 0.06);
  }
  .blog-archive-hero {
    padding: 60px 0 45px;
  }
}

/* Post Featured Image (Thumbnail) in Single Post */
.post-featured-image {
  width: 100%;
  margin-bottom: 36px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
}
.post-thumbnail-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}