/* =============================================
   96M SINGAPORE — DESIGN SYSTEM
   Domain: 96m-singapore.com
   Palette: Orange #FF8A00 · Blue #0524DD · Navy #0A1628 · White #FFFFFF
============================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --orange: #FF8A00;
  --blue: #0524DD;
  --navy: #0A1628;
  --white: #FFFFFF;
  --light-bg: #F5F7FF;
  --muted: #6B7280;
  --border: #E5E7EB;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 20px rgba(5, 36, 221, 0.10);
  --shadow-orange: 0 4px 20px rgba(255, 138, 0, 0.25);
  --max-w: 1200px;
  --font: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); text-decoration: none; }
.btn--primary { background: var(--orange); color: var(--white); box-shadow: var(--shadow-orange); }
.btn--outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn--blue { background: var(--blue); color: var(--white); }
.btn--lg { padding: 16px 36px; font-size: 17px; }

/* ---- NAVIGATION ---- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--orange);
  box-shadow: 0 2px 12px rgba(255,138,0,0.3);
}
.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
.site-nav__logo img { height: 38px; width: auto; }
.site-nav__links {
  display: flex;
  list-style: none;
  gap: 28px;
}
.site-nav__links a {
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  opacity: 0.92;
  transition: opacity 0.2s;
}
.site-nav__links a:hover { opacity: 1; text-decoration: underline; }
.site-nav__cta { display: flex; gap: 10px; }
.site-nav__cta .btn--outline { padding: 8px 18px; font-size: 13px; }
.site-nav__cta .btn--primary { background: var(--navy); padding: 8px 18px; font-size: 13px; box-shadow: none; }
.site-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.site-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */
.site-nav__mobile {
  display: none;
  background: var(--navy);
  padding: 16px 20px 20px;
}
.site-nav__mobile.is-open { display: block; }
.site-nav__mobile a {
  display: block;
  color: var(--white);
  padding: 10px 0;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-nav__mobile .btn { margin-top: 12px; width: 100%; justify-content: center; }

/* ---- ACCESS BAR ---- */
.access-bar {
  background: var(--navy);
  padding: 8px 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.access-bar__label {
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  font-weight: 500;
}
.access-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,138,0,0.18);
  color: var(--orange);
  border: 1px solid rgba(255,138,0,0.35);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.access-bar__btn:hover { background: rgba(255,138,0,0.32); text-decoration: none; }
.access-bar__all {
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  margin-left: 4px;
}

/* ---- HERO ---- */
.hero {
  background: var(--navy);
  padding: 80px 20px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(255,138,0,0.12) 0%, transparent 70%);
}
.hero__tag {
  display: inline-block;
  background: rgba(255,138,0,0.18);
  color: var(--orange);
  border: 1px solid rgba(255,138,0,0.35);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.hero__title span { color: var(--orange); }
.hero__subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 32px;
}
.hero__cta-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__note {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--light-bg);
  padding: 20px;
  border-bottom: 1px solid var(--border);
}
.trust-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.trust-bar__icon { font-size: 20px; }

/* ---- SECTIONS ---- */
.section { padding: 72px 20px; }
.section--alt { background: var(--light-bg); }
.section--dark { background: var(--navy); color: var(--white); }
.section__header { text-align: center; margin-bottom: 48px; }
.section__tag {
  display: inline-block;
  background: rgba(255,138,0,0.12);
  color: var(--orange);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.section__title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.25;
  color: inherit;
}
.section--alt .section__title,
.section__title { color: var(--navy); }
.section--dark .section__title { color: var(--white); }
.section__subtitle {
  margin-top: 12px;
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.section--dark .section__subtitle { color: rgba(255,255,255,0.65); }

/* ---- STEPS ---- */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.step-card__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.step-card__title { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.step-card__text { font-size: 14px; color: var(--muted); }

/* ---- CARDS ---- */
.cards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(5,36,221,0.14); }
.card__icon { font-size: 36px; margin-bottom: 14px; }
.card__title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.card__body { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.card__badge {
  display: inline-block;
  background: rgba(255,138,0,0.12);
  color: var(--orange);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ---- FEATURE LIST ---- */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--navy);
}
.feature-list li::before {
  content: '✓';
  min-width: 24px;
  height: 24px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}

/* ---- TWO-COL ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

/* ---- BLOG CARDS ---- */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.blog-card:hover { transform: translateY(-3px); }
.blog-card__img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.blog-card__body { padding: 20px 22px; }
.blog-card__category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  margin-bottom: 8px;
}
.blog-card__title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.45; }
.blog-card__excerpt { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.blog-card__meta { font-size: 12px; color: var(--muted); }

/* ---- FAQ ---- */
.faq__list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  gap: 12px;
}
.faq__question:hover { background: var(--light-bg); }
.faq__chevron {
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.25s;
}
.faq__item.is-open .faq__chevron { transform: rotate(45deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq__item.is-open .faq__answer { max-height: 500px; }
.faq__answer-inner {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

/* ---- AUTHOR BOX ---- */
.author-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 24px;
  margin: 40px 0;
}
.author-box__avatar {
  min-width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--white);
  font-weight: 800;
}
.author-box__name { font-size: 16px; font-weight: 700; color: var(--navy); }
.author-box__role { font-size: 13px; color: var(--orange); font-weight: 600; margin-bottom: 6px; }
.author-box__bio { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ---- RATING ---- */
.rating-row { display: flex; align-items: center; gap: 10px; margin: 8px 0; }
.rating-stars { color: var(--orange); font-size: 18px; letter-spacing: 2px; }
.rating-score { font-size: 28px; font-weight: 800; color: var(--navy); }
.rating-label { font-size: 13px; color: var(--muted); }

/* ---- TABLE ---- */
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
}
.data-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.data-table tr:nth-child(even) td { background: var(--light-bg); }
.data-table tr:last-child td { border-bottom: none; }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  padding: 12px 20px;
  background: var(--light-bg);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb a { color: var(--blue); }
.breadcrumb span { margin: 0 6px; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--navy);
  padding: 52px 20px 48px;
  text-align: center;
}
.page-hero__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero__title span { color: var(--orange); }
.page-hero__subtitle { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto; }

/* ---- DISCLAIMER BOX ---- */
.disclaimer {
  background: rgba(255,138,0,0.07);
  border: 1px solid rgba(255,138,0,0.25);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin: 24px 0;
}
.disclaimer strong { color: var(--navy); }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 56px 20px 0;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-bottom: 48px;
}
.footer-brand__logo img { height: 36px; margin-bottom: 14px; }
.footer-brand__desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 16px; }
.footer-brand__badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}
.footer-col__heading {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 16px;
}
.footer-col__links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col__links a:hover { color: var(--white); text-decoration: none; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px;
  text-align: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.site-footer__bottom p { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.75; }
.site-footer__bottom a { color: rgba(255,255,255,0.5); }

/* ---- RESPONSIBLE GAMBLING BAR ---- */
.rg-bar {
  background: rgba(255,255,255,0.05);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 20px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.rg-bar a { color: rgba(255,255,255,0.55); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .site-nav__links, .site-nav__cta { display: none; }
  .site-nav__hamburger { display: flex; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .two-col--reverse { direction: ltr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 52px 20px; }
  .hero { padding: 56px 20px 52px; }
  .access-bar { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: 8px 16px; }
}
@media (max-width: 480px) {
  .site-footer__grid { grid-template-columns: 1fr; }
  .cards__grid { grid-template-columns: 1fr; }
  .steps__grid { grid-template-columns: 1fr; }
  .hero__cta-group { flex-direction: column; align-items: center; }
  .btn--lg { width: 100%; justify-content: center; }
}
