/* ============================================================
   96M SGP — hub-* design system
   Primary: #FF8A00  Accent/Text: #0524DD  BG: #FFFFFF
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
  color: #0524DD;
  background: #FFFFFF;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── Utility ── */
.hub-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.hub-section { padding: 60px 0; }
.hub-section--alt { background: #f7f9ff; }
.hub-text-center { text-align: center; }
.hub-sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Buttons ── */
.hub-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: opacity .2s, transform .1s;
}
.hub-btn:active { transform: scale(.97); }
.hub-btn--primary { background: #FF8A00; color: #fff; }
.hub-btn--primary:hover { opacity: .88; }
.hub-btn--outline { background: transparent; color: #0524DD; border: 2px solid #0524DD; }
.hub-btn--outline:hover { background: #0524DD; color: #fff; }
.hub-btn--sm { padding: 8px 18px; font-size: .875rem; }

/* ── Nav ── */
.hub-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 2px solid #FF8A00;
  box-shadow: 0 2px 8px rgba(5,36,221,.08);
}
.hub-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}
.hub-nav__logo img { height: 40px; width: auto; }
.hub-nav__links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.hub-nav__links a {
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .9rem;
  color: #0524DD;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.hub-nav__links a:hover,
.hub-nav__links a.hub-nav__link--active {
  color: #FF8A00;
  background: #fff5e6;
}
.hub-nav__links a.hub-nav__link--active {
  border-bottom: 2px solid #FF8A00;
  border-radius: 6px 6px 0 0;
}
.hub-nav__cta { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.hub-nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hub-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0524DD;
  border-radius: 2px;
  transition: .3s;
}

/* ── Mirror / Access Bar ── */
.hub-access-bar {
  background: #f0f4ff;
  border-bottom: 1px solid #dde4ff;
  padding: 8px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.hub-access-bar__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-wrap: nowrap;
}
.hub-access-bar__label {
  font-size: .82rem;
  color: #0524DD;
  font-weight: 600;
  flex-shrink: 0;
}
.hub-access-bar__btn {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s;
  flex-shrink: 0;
}
.hub-access-bar__btn:hover { opacity: .8; }
.hub-access-bar__btn--1 { border: 2px solid #FF8A00; color: #FF8A00; background: transparent; }
.hub-access-bar__btn--2,
.hub-access-bar__btn--3 { border: 2px solid #0524DD; color: #0524DD; background: transparent; }
.hub-access-bar__all {
  font-size: .8rem;
  color: #0524DD;
  font-weight: 600;
  flex-shrink: 0;
  margin-left: 4px;
}

/* ── Hero ── */
.hub-hero {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: center;
}
.hub-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hub-hero__overlay {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, rgba(5,36,221,.72) 0%, rgba(5,36,221,.3) 60%, transparent 100%);
  width: 100%;
  padding: 60px 0;
}
.hub-hero__content { max-width: 560px; }
.hub-hero__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hub-hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.9);
  margin-bottom: 28px;
}

/* ── Category Cards Strip ── */
.hub-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: -28px;
  position: relative;
  z-index: 3;
}
.hub-cat-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(5,36,221,.10);
  padding: 24px 16px;
  text-align: center;
  border-top: 4px solid #FF8A00;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hub-cat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(5,36,221,.16); }
.hub-cat-card__icon { font-size: 2rem; line-height: 1; }
.hub-cat-card__title { font-weight: 700; font-size: 1rem; color: #0524DD; }
.hub-cat-card__desc { font-size: .82rem; color: #555; }

/* ── Section Headings ── */
.hub-section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #0524DD;
  margin-bottom: 8px;
}
.hub-section-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 32px;
}
.hub-section-header { margin-bottom: 32px; }
.hub-section-header a {
  font-size: .9rem;
  font-weight: 600;
  color: #FF8A00;
  text-decoration: underline;
}

/* ── Game Grid ── */
.hub-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.hub-game-card {
  border-radius: 10px;
  overflow: hidden;
  background: #f7f9ff;
  box-shadow: 0 2px 12px rgba(5,36,221,.08);
  transition: transform .2s;
  cursor: pointer;
}
.hub-game-card:hover { transform: translateY(-3px); }
.hub-game-card img { width: 100%; height: 160px; object-fit: cover; }
.hub-game-card__body { padding: 12px; display: flex; justify-content: space-between; align-items: center; }
.hub-game-card__name { font-weight: 700; font-size: .9rem; color: #0524DD; }

/* ── Trust Strip ── */
.hub-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hub-trust-item { text-align: center; padding: 32px 20px; }
.hub-trust-item__icon { font-size: 2.4rem; margin-bottom: 12px; }
.hub-trust-item__title { font-weight: 800; font-size: 1.1rem; color: #0524DD; margin-bottom: 8px; }
.hub-trust-item__desc { font-size: .9rem; color: #555; line-height: 1.5; }

/* ── Provider Scroll Row ── */
.hub-provider-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #FF8A00 #f0f4ff;
}
.hub-provider-row::-webkit-scrollbar { height: 4px; }
.hub-provider-row::-webkit-scrollbar-track { background: #f0f4ff; }
.hub-provider-row::-webkit-scrollbar-thumb { background: #FF8A00; border-radius: 4px; }
.hub-provider-logo {
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #e0e8ff;
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, box-shadow .2s;
}
.hub-provider-logo:hover { border-color: #FF8A00; box-shadow: 0 2px 12px rgba(255,138,0,.15); }
.hub-provider-logo img { height: 36px; width: auto; }

/* ── Ambassador Strip ── */
.hub-ambassador {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: center;
}
.hub-ambassador__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hub-ambassador__overlay {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, rgba(5,36,221,.8) 0%, transparent 70%);
  width: 100%;
  padding: 48px 0;
}
.hub-ambassador__text { max-width: 480px; }
.hub-ambassador__tagline {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

/* ── Promo Cards ── */
.hub-promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.hub-promo-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(5,36,221,.10);
  background: #f7f9ff;
}
.hub-promo-card img { width: 100%; height: 200px; object-fit: cover; }
.hub-promo-card__body { padding: 20px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.hub-promo-card__title { font-weight: 700; font-size: 1rem; color: #0524DD; }

/* ── Blog Cards ── */
.hub-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hub-blog-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e0e8ff;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(5,36,221,.06);
  transition: box-shadow .2s;
}
.hub-blog-card:hover { box-shadow: 0 6px 24px rgba(5,36,221,.12); }
.hub-blog-card__body { padding: 20px; }
.hub-blog-card__tag {
  display: inline-block;
  background: #fff5e6;
  color: #FF8A00;
  font-size: .75rem;
  font-weight: 700;
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.hub-blog-card__title { font-weight: 700; font-size: 1rem; color: #0524DD; margin-bottom: 8px; line-height: 1.35; }
.hub-blog-card__excerpt { font-size: .875rem; color: #555; margin-bottom: 16px; line-height: 1.5; }
.hub-blog-card__meta { font-size: .8rem; color: #888; margin-bottom: 12px; }
.hub-blog-card__link { font-size: .875rem; font-weight: 700; color: #FF8A00; }
.hub-blog-card__link:hover { text-decoration: underline; }

/* ── Footer ── */
.hub-footer {
  background: #0524DD;
  color: rgba(255,255,255,.85);
  padding: 48px 0 24px;
}
.hub-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.hub-footer__brand img { height: 36px; margin-bottom: 12px; }
.hub-footer__brand p { font-size: .875rem; line-height: 1.6; opacity: .8; }
.hub-footer__heading { font-weight: 700; color: #fff; margin-bottom: 12px; font-size: .95rem; }
.hub-footer__links { display: flex; flex-direction: column; gap: 8px; }
.hub-footer__links a { font-size: .875rem; opacity: .8; transition: opacity .2s; }
.hub-footer__links a:hover { opacity: 1; color: #FF8A00; }
.hub-footer__payments { margin-bottom: 24px; }
.hub-footer__payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}
.hub-footer__payment-row img { height: 28px; width: auto; border-radius: 4px; }
.hub-footer__trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}
.hub-footer__trust-row img { height: 36px; width: auto; }
.hub-footer__divider { border: none; border-top: 1px solid rgba(255,255,255,.12); margin-bottom: 20px; }
.hub-footer__legal { font-size: .78rem; opacity: .65; line-height: 1.6; }
.hub-footer__legal a { color: #FF8A00; text-decoration: underline; }

/* ── Inner Page Hero ── */
.hub-inner-hero {
  background: linear-gradient(135deg, #0524DD 0%, #1a3ab8 100%);
  padding: 56px 0;
  text-align: center;
  color: #fff;
}
.hub-inner-hero__title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.hub-inner-hero__subtitle { font-size: 1.05rem; opacity: .85; }

/* ── Breadcrumb ── */
.hub-breadcrumb {
  background: #f7f9ff;
  padding: 10px 0;
  border-bottom: 1px solid #e0e8ff;
  font-size: .82rem;
}
.hub-breadcrumb ol { display: flex; gap: 8px; align-items: center; }
.hub-breadcrumb li::after { content: '›'; margin-left: 8px; opacity: .5; }
.hub-breadcrumb li:last-child::after { content: ''; }
.hub-breadcrumb a { color: #0524DD; font-weight: 600; }
.hub-breadcrumb span { color: #888; }

/* ── Author Byline ── */
.hub-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #f0f4ff;
  border-radius: 10px;
  margin-bottom: 32px;
}
.hub-byline__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0524DD;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hub-byline__name { font-weight: 700; color: #0524DD; font-size: .95rem; }
.hub-byline__role { font-size: .82rem; color: #555; }

/* ── TOC ── */
.hub-toc {
  background: #f7f9ff;
  border: 1px solid #dde4ff;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 32px;
}
.hub-toc__title { font-weight: 700; font-size: 1rem; color: #0524DD; margin-bottom: 12px; }
.hub-toc ol { padding-left: 20px; list-style: decimal; }
.hub-toc li { margin-bottom: 6px; }
.hub-toc a { font-size: .875rem; color: #0524DD; font-weight: 600; text-decoration: underline; }

/* ── Content Body ── */
.hub-content { max-width: 800px; }
.hub-content h2 { font-size: 1.5rem; font-weight: 800; color: #0524DD; margin: 40px 0 12px; }
.hub-content h3 { font-size: 1.15rem; font-weight: 700; color: #0524DD; margin: 28px 0 10px; }
.hub-content p { margin-bottom: 16px; color: #333; line-height: 1.7; }
.hub-content ul, .hub-content ol { padding-left: 20px; margin-bottom: 16px; }
.hub-content li { margin-bottom: 6px; color: #333; line-height: 1.6; }
.hub-content ul { list-style: disc; }
.hub-content ol { list-style: decimal; }
.hub-content strong { color: #0524DD; }
.hub-content a { color: #FF8A00; text-decoration: underline; font-weight: 600; }
.hub-content table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: .9rem; }
.hub-content th { background: #0524DD; color: #fff; padding: 10px 12px; text-align: left; font-weight: 700; }
.hub-content td { padding: 10px 12px; border-bottom: 1px solid #e0e8ff; color: #333; }
.hub-content tr:nth-child(even) td { background: #f7f9ff; }

/* ── FAQ ── */
.hub-faq { max-width: 800px; }
.hub-faq-item {
  border: 1px solid #dde4ff;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}
.hub-faq-item__q {
  width: 100%;
  background: #f7f9ff;
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  font-size: .95rem;
  color: #0524DD;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.hub-faq-item__q::after { content: '+'; font-size: 1.2rem; font-weight: 400; flex-shrink: 0; }
.hub-faq-item__q[aria-expanded="true"]::after { content: '−'; }
.hub-faq-item__a { padding: 0 20px 16px; font-size: .9rem; color: #333; line-height: 1.6; display: none; }
.hub-faq-item__a.is-open { display: block; }

/* ── Rating ── */
.hub-rating { display: flex; gap: 6px; align-items: center; margin: 16px 0; }
.hub-rating__stars { color: #FF8A00; font-size: 1.4rem; letter-spacing: 2px; }
.hub-rating__score { font-size: 1.4rem; font-weight: 800; color: #0524DD; }
.hub-rating__label { font-size: .875rem; color: #555; }

/* ── Pros/Cons ── */
.hub-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 28px 0; }
.hub-pros, .hub-cons { border-radius: 10px; padding: 20px; }
.hub-pros { background: #f0fff4; border: 1px solid #b2f5c9; }
.hub-cons { background: #fff5f5; border: 1px solid #fec8c8; }
.hub-pros h3, .hub-cons h3 { margin: 0 0 12px; font-size: 1rem; }
.hub-pros h3 { color: #1a7a3c; }
.hub-cons h3 { color: #b91c1c; }
.hub-pros li, .hub-cons li { font-size: .875rem; margin-bottom: 6px; padding-left: 20px; position: relative; }
.hub-pros li::before { content: '✓'; position: absolute; left: 0; color: #1a7a3c; font-weight: 700; }
.hub-cons li::before { content: '✗'; position: absolute; left: 0; color: #b91c1c; font-weight: 700; }

/* ── Related Blog ── */
.hub-related { background: #f7f9ff; border-radius: 10px; padding: 28px; margin: 40px 0; }
.hub-related h3 { font-size: 1.1rem; font-weight: 700; color: #0524DD; margin-bottom: 16px; }
.hub-related ul { display: flex; flex-direction: column; gap: 10px; }
.hub-related a { font-size: .9rem; color: #FF8A00; font-weight: 600; text-decoration: underline; }

/* ── CTA Box ── */
.hub-cta-box {
  background: linear-gradient(135deg, #FF8A00 0%, #e07000 100%);
  border-radius: 10px;
  padding: 36px;
  text-align: center;
  color: #fff;
  margin: 40px 0;
}
.hub-cta-box h2, .hub-cta-box h3 { color: #fff; margin-bottom: 12px; }
.hub-cta-box p { opacity: .9; margin-bottom: 20px; }
.hub-cta-box .hub-btn { background: #fff; color: #FF8A00; font-weight: 800; }
.hub-cta-box .hub-btn:hover { background: #fff5e6; }

/* ── Contact Form ── */
.hub-form { max-width: 600px; }
.hub-form-group { margin-bottom: 20px; }
.hub-form label { display: block; font-weight: 700; font-size: .9rem; color: #0524DD; margin-bottom: 6px; }
.hub-form input,
.hub-form select,
.hub-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #dde4ff;
  border-radius: 10px;
  font-size: .95rem;
  font-family: inherit;
  color: #333;
  background: #fff;
  transition: border-color .2s;
}
.hub-form input:focus,
.hub-form select:focus,
.hub-form textarea:focus { outline: none; border-color: #FF8A00; }
.hub-form textarea { resize: vertical; min-height: 120px; }

/* ── Slot Provider Grid ── */
.hub-provider-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

/* ── Page Layout Helpers ── */
.hub-page-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.hub-sidebar { position: sticky; top: 80px; }
.hub-sidebar-card {
  background: #f0f4ff;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 20px;
}
.hub-sidebar-card h3 { font-size: 1rem; font-weight: 700; color: #0524DD; margin-bottom: 12px; }

/* ── RG Notice ── */
.hub-rg-notice {
  background: #fff5e6;
  border: 1px solid #ffd49a;
  border-radius: 10px;
  padding: 16px 20px;
  font-size: .875rem;
  color: #7a4a00;
  margin: 20px 0;
  line-height: 1.6;
}
.hub-rg-notice a { color: #FF8A00; font-weight: 700; text-decoration: underline; }

/* ── Blog Listing ── */
.hub-blog-listing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hub-page-layout { grid-template-columns: 1fr; }
  .hub-sidebar { position: static; }
  .hub-footer__grid { grid-template-columns: 1fr 1fr; }
  .hub-provider-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .hub-nav__links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 20px;
    border-bottom: 2px solid #FF8A00;
    box-shadow: 0 8px 20px rgba(5,36,221,.08);
    z-index: 99;
    gap: 4px;
  }
  .hub-nav__links.hub-nav__links--open { display: flex; }
  .hub-nav__hamburger { display: flex; }
  .hub-nav__cta .hub-btn--outline { display: none; }
  .hub-categories { grid-template-columns: repeat(2, 1fr); }
  .hub-game-grid { grid-template-columns: repeat(2, 1fr); }
  .hub-trust-strip { grid-template-columns: 1fr; }
  .hub-promo-grid { grid-template-columns: 1fr; }
  .hub-blog-grid { grid-template-columns: 1fr; }
  .hub-blog-listing { grid-template-columns: 1fr; }
  .hub-pros-cons { grid-template-columns: 1fr; }
  .hub-footer__grid { grid-template-columns: 1fr; }
  .hub-provider-grid { grid-template-columns: repeat(3, 1fr); }
  .hub-section { padding: 40px 0; }
  .hub-hero { min-height: 320px; }
}
@media (max-width: 480px) {
  .hub-categories { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hub-game-grid { grid-template-columns: 1fr; }
  .hub-provider-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── FAQ Toggle JS ── */
