/* =============================================================
   96M Singapore — Design System CSS
   Fonts: Exo 2 (headings), Inter (body)
   Palette: #0d0d1a | #1a1040 | #120d30 | #FF8A00
   ============================================================= */

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

:root {
  --bg: #0d0d1a;
  --surface: #1a1040;
  --surface-alt: #120d30;
  --accent: #FF8A00;
  --text: #FFFFFF;
  --muted: #AAAAAA;
  --border-accent: rgba(255,138,0,0.2);
  --glow: 0 0 20px rgba(255,138,0,0.15);
  --radius: 10px;
  --max-w: 1200px;
  --font-head: 'Exo 2', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* =============================================================
   RESET
   ============================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  background: #0d0d1a;
  font-family: 'Inter', sans-serif;
  color: #fff;
  line-height: 1.7;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

a {
  color: #FF8A00;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* =============================================================
   TYPOGRAPHY
   ============================================================= */

h1 {
  font-family: 'Exo 2', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #FF8A00;
  line-height: 1.2;
}

h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #FF8A00;
  line-height: 1.3;
}

h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
}

h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #AAAAAA;
  line-height: 1.4;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  color: #fff;
}

/* =============================================================
   CONTAINER
   ============================================================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =============================================================
   BUTTONS
   ============================================================= */

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 10px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: #FF8A00;
  color: #000;
}

.btn--primary:hover {
  background: #e07a00;
  color: #000;
  text-decoration: none;
}

.btn--outline {
  background: transparent;
  color: #FF8A00;
  border: 2px solid #FF8A00;
}

.btn--outline:hover {
  background: #FF8A00;
  color: #000;
  text-decoration: none;
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* =============================================================
   NAVIGATION
   ============================================================= */

.site-nav {
  position: sticky;
  top: 0;
  background: #0d0d1a;
  border-bottom: 1px solid rgba(255, 138, 0, 0.2);
  height: 65px;
  z-index: 1000;
  display: flex;
  align-items: center;
}

.site-nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-nav__logo img {
  height: 40px;
  width: auto;
}

.site-nav__logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-nav__logo-text {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #FF8A00;
}

.site-nav__links {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: center;
}

.site-nav__links li a {
  color: #AAAAAA;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
  text-decoration: none;
}

.site-nav__links li a:hover,
.site-nav__links li a.active {
  color: #FF8A00;
  text-decoration: none;
}

.site-nav__cta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.site-nav__hamburger {
  display: none;
  background: none;
  border: none;
  color: #FF8A00;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}

/* =============================================================
   MIRROR BAR
   ============================================================= */

.mirror-bar {
  background: #120d30;
  border-bottom: 1px solid rgba(255, 138, 0, 0.15);
  padding: 0.5rem 0;
}

.mirror-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.mirror-bar__label {
  font-size: 0.85rem;
  color: #AAAAAA;
  white-space: nowrap;
}

.mirror-bar__links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.mirror-bar__btn {
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  line-height: 1.5;
}

.mirror-bar__btn--orange {
  background: #FF8A00;
  color: #000;
}

.mirror-bar__btn--orange:hover {
  background: #e07a00;
  color: #000;
  text-decoration: none;
}

.mirror-bar__btn--blue {
  background: #1a1040;
  color: #FF8A00;
  border: 1px solid #FF8A00;
}

.mirror-bar__btn--blue:hover {
  background: #FF8A00;
  color: #000;
  text-decoration: none;
}

.mirror-bar__all {
  font-size: 0.8rem;
  color: #FF8A00;
  margin-left: auto;
  cursor: pointer;
  text-decoration: none;
}

.mirror-bar__all:hover {
  text-decoration: underline;
}

/* =============================================================
   HERO
   ============================================================= */

.hero {
  padding: 5rem 0 4rem;
  text-align: center;
}

.hero__image {
  max-width: 100%;
  border-radius: 10px;
  margin: 2rem auto;
}

.hero__badge {
  background: rgba(255, 138, 0, 0.1);
  color: #FF8A00;
  border: 1px solid rgba(255, 138, 0, 0.3);
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero__title {
  font-family: 'Exo 2', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #FF8A00;
  text-shadow: 0 0 30px rgba(255, 138, 0, 0.35);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: #AAAAAA;
  max-width: 650px;
  margin: 1rem auto;
  line-height: 1.7;
}

.hero__cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =============================================================
   SECTIONS
   ============================================================= */

.section {
  padding: 4rem 0;
}

.section--alt {
  background: #120d30;
}

.section__title {
  font-size: 1.8rem;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  color: #FF8A00;
  margin-bottom: 0.5rem;
}

.section__subtitle {
  color: #AAAAAA;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

/* =============================================================
   CARD GRID
   ============================================================= */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #1a1040;
  border: 1px solid rgba(255, 138, 0, 0.2);
  border-radius: 10px;
  padding: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(255, 138, 0, 0.15);
}

.card__img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.card__title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.card__text {
  color: #AAAAAA;
  font-size: 0.9rem;
}

/* =============================================================
   GAME GRID
   ============================================================= */

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.game-card {
  background: #1a1040;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 138, 0, 0.2);
  transition: transform 0.2s;
}

.game-card:hover {
  transform: scale(1.03);
}

.game-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.game-card__label {
  padding: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

/* =============================================================
   PROVIDER GRID
   ============================================================= */

.provider-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.provider-logo {
  background: #1a1040;
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(255, 138, 0, 0.1);
}

.provider-logo img {
  height: 32px;
  width: auto;
  filter: brightness(0.85);
}

/* =============================================================
   BONUS CARD
   ============================================================= */

.bonus-card {
  background: linear-gradient(135deg, #1a1040, #120d30);
  border: 1px solid rgba(255, 138, 0, 0.4);
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.bonus-card__amount {
  font-family: 'Exo 2', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #FF8A00;
  line-height: 1;
}

.bonus-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.bonus-card__text {
  color: #AAAAAA;
  font-size: 0.95rem;
}

/* =============================================================
   BLOG GRID
   ============================================================= */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: #1a1040;
  border: 1px solid rgba(255, 138, 0, 0.2);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.blog-card:hover {
  box-shadow: 0 0 20px rgba(255, 138, 0, 0.12);
}

.blog-card__category {
  font-size: 0.75rem;
  font-weight: 600;
  color: #FF8A00;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.blog-card__title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  flex: 1;
}

.blog-card__excerpt {
  color: #AAAAAA;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-card__link {
  color: #FF8A00;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.blog-card__link:hover {
  text-decoration: underline;
}

/* =============================================================
   FAQ
   ============================================================= */

.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 138, 0, 0.2);
  padding: 1.25rem 0;
}

.faq-item__q {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  user-select: none;
}

.faq-item__q::after {
  content: '+';
  color: #FF8A00;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-left: 1rem;
  line-height: 1;
}

.faq-item.is-open .faq-item__q::after {
  content: '−';
}

.faq-item__a {
  color: #AAAAAA;
  padding-top: 0.75rem;
  display: none;
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-item.is-open .faq-item__a {
  display: block;
}

/* =============================================================
   FOOTER
   ============================================================= */

.site-footer {
  background: #120d30;
  border-top: 1px solid rgba(255, 138, 0, 0.2);
  padding: 3rem 0 1.5rem;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.site-footer__brand p {
  color: #AAAAAA;
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.site-footer__links h4,
.site-footer__trust h4 {
  color: #FF8A00;
  margin-bottom: 0.75rem;
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.site-footer__links ul li a {
  color: #AAAAAA;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer__links ul li a:hover {
  color: #FF8A00;
  text-decoration: none;
}

.site-footer__links ul li {
  margin-bottom: 0.4rem;
}

.trust-badges,
.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.5rem;
}

.trust-badge {
  background: rgba(255, 138, 0, 0.1);
  border: 1px solid rgba(255, 138, 0, 0.3);
  color: #FF8A00;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.site-footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  margin-top: 2rem;
}

.site-footer__bottom p {
  color: #AAAAAA;
  font-size: 0.8rem;
}

.site-footer__bottom p a {
  color: #FF8A00;
}

.site-footer__disclaimer {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.6;
}

.author-byline {
  color: #AAAAAA;
  font-size: 0.85rem;
  margin-top: 1rem;
}

.author-byline strong {
  color: #FF8A00;
}

/* =============================================================
   TRUST BAR
   ============================================================= */

.trust-bar {
  background: #120d30;
  padding: 1.5rem 0;
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #AAAAAA;
  font-size: 0.9rem;
}

.trust-item__icon {
  font-size: 1.3rem;
}

/* =============================================================
   PROMO BOX
   ============================================================= */

.promo-box {
  background: #1a1040;
  border: 1px solid rgba(255, 138, 0, 0.3);
  border-radius: 10px;
  padding: 2rem;
}

.promo-box__label {
  display: inline-block;
  background: #FF8A00;
  color: #000;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.2rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

/* =============================================================
   UTILITY CLASSES
   ============================================================= */

.text-orange { color: #FF8A00; }
.text-muted  { color: #AAAAAA; }
.text-white  { color: #ffffff; }
.text-center { text-align: center; }
.text-sm     { font-size: 0.875rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }

.surface {
  background: #1a1040;
  border: 1px solid rgba(255, 138, 0, 0.2);
  border-radius: 10px;
  padding: 1.5rem;
}

.glow {
  box-shadow: 0 0 20px rgba(255, 138, 0, 0.15);
}

.divider {
  border: none;
  border-top: 1px solid rgba(255, 138, 0, 0.15);
  margin: 2rem 0;
}

/* Star ratings */
.stars {
  color: #FF8A00;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

/* Affiliate & responsible gambling notices */
.affiliate-notice {
  background: rgba(255, 138, 0, 0.05);
  border: 1px solid rgba(255, 138, 0, 0.15);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: #AAAAAA;
  margin-bottom: 2rem;
}

.rg-notice {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

/* =============================================================
   RESPONSIVE — max-width 768px
   ============================================================= */

@media (max-width: 768px) {
  /* Nav */
  .site-nav__hamburger {
    display: block;
  }

  .site-nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    background: #1a1040;
    padding: 1rem 1.5rem;
    gap: 0;
    z-index: 999;
  }

  .site-nav__links li {
    border-bottom: 1px solid rgba(255, 138, 0, 0.1);
  }

  .site-nav__links li:last-child {
    border-bottom: none;
  }

  .site-nav__links li a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1rem;
  }

  .site-nav.is-open .site-nav__links {
    display: flex;
  }

  .site-nav__cta {
    display: none;
  }

  /* Hero */
  .hero {
    padding: 3rem 0 2rem;
  }

  .hero__title {
    font-size: 1.8rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  /* Bonus card */
  .bonus-card {
    flex-direction: column;
    gap: 1rem;
  }

  .bonus-card__amount {
    font-size: 2.2rem;
  }

  /* Footer grid */
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  /* Mirror bar */
  .mirror-bar__all {
    margin-left: 0;
    width: 100%;
    margin-top: 0.25rem;
  }

  /* Sections */
  .section {
    padding: 2.5rem 0;
  }
}

@media (max-width: 480px) {
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__cta .btn {
    text-align: center;
  }

  .trust-bar__inner {
    gap: 1rem;
  }
}
