/* ============================================================
   96M Sic Bo — Global Styles
   Colors: Blue #0047AB | Orange #FF6000 | White #FFFFFF
   ============================================================ */

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

:root {
  --blue: #0047AB;
  --blue-dark: #003580;
  --blue-light: #e8f0fb;
  --orange: #FF6000;
  --orange-dark: #d94f00;
  --white: #ffffff;
  --text: #111827;
  --text-muted: #6B7280;
  --border: #e5e7eb;
  --bg-alt: #f8fafc;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

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

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

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 0.875rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1.1rem; }
ul, ol { margin-bottom: 1.1rem; padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 4rem 0; }
.section--alt { background: var(--bg-alt); }
.section--blue { background: var(--blue); color: var(--white); }
.section--blue h2, .section--blue h3, .section--blue p { color: var(--white); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-white { background: var(--white); color: var(--orange); }
.btn-white:hover { background: #f0f0f0; color: var(--orange-dark); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.1rem; }

/* ---- Navigation ---- */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--blue);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--blue);
  text-decoration: none;
}
.nav-brand:hover { color: var(--blue-dark); text-decoration: none; }
.nav-brand img { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--blue);
  background: var(--blue-light);
  text-decoration: none;
}
.nav-links .nav-cta a {
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
  padding: 0.5rem 1.1rem;
}
.nav-links .nav-cta a:hover { background: var(--orange-dark); color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--blue);
  border-radius: 3px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---- Footer ---- */
.site-footer {
  background: #0d1b3e;
  color: #c8d3e8;
  padding: 3rem 0 1.5rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.footer-brand { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; color: var(--white); margin-bottom: 0.5rem; }
.footer-desc { color: #c8d3e8; font-size: 0.88rem; line-height: 1.6; }
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 0.75rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul a { color: #c8d3e8; }
.footer-col ul a:hover { color: var(--orange); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: #8a99b3;
}
.footer-disclaimer { font-size: 0.78rem; color: #6b7a96; line-height: 1.5; margin-top: 0.75rem; }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 60%, #001a5c 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,96,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-content { max-width: 560px; }
.hero-badge {
  display: inline-block;
  background: rgba(255,96,0,0.2);
  border: 1px solid var(--orange);
  color: #ffb380;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1.1rem; }
.hero p { color: #c5d5f0; font-size: 1.05rem; margin-bottom: 1.75rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.dice-display {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.die {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* ---- Cards / Features ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.card h3 { color: var(--blue); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  padding: 3rem 0;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero .breadcrumb { font-size: 0.85rem; color: #a8c0e8; margin-bottom: 0.75rem; }
.page-hero .breadcrumb a { color: #a8c0e8; }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero .lead { color: #c5d5f0; font-size: 1.05rem; max-width: 700px; }

/* ---- Tables ---- */
.table-wrap { overflow-x: auto; margin: 1.5rem 0; border-radius: var(--radius); box-shadow: var(--shadow); }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: var(--white);
}
thead th {
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.9rem 1rem;
  text-align: left;
  white-space: nowrap;
}
tbody tr:nth-child(even) { background: var(--bg-alt); }
tbody tr:hover { background: var(--blue-light); }
td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
td:first-child { font-weight: 600; }
.badge-low { background: #dcfce7; color: #166534; padding: 0.2rem 0.6rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; }
.badge-mid { background: #fef9c3; color: #854d0e; padding: 0.2rem 0.6rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; }
.badge-high { background: #fee2e2; color: #991b1b; padding: 0.2rem 0.6rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; }

/* ---- Steps ---- */
.steps { counter-reset: step; }
.step-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: start;
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.step-body h3 { color: var(--blue); margin-top: 0.1rem; }

/* ---- Strategy boxes ---- */
.strategy-box {
  border-left: 4px solid var(--orange);
  background: var(--bg-alt);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}
.strategy-box h3 { color: var(--orange); }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #c94400 100%);
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.9); margin-bottom: 1.75rem; font-size: 1.05rem; }

/* ---- Blog cards ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-body { padding: 1.4rem; }
.blog-cat {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--blue); text-decoration: none; }
.blog-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.9rem; }
.blog-meta { font-size: 0.8rem; color: var(--text-muted); }

/* ---- Article content ---- */
.article-content { max-width: 780px; margin: 0 auto; }
.article-content h2 { color: var(--blue); margin-top: 2.5rem; margin-bottom: 0.75rem; }
.article-content h3 { color: var(--text); margin-top: 1.75rem; }

/* ---- Ambassadors ---- */
.ambassador-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.ambassador-card {
  background: var(--blue-light);
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.ambassador-card .amb-emoji { font-size: 3rem; margin-bottom: 0.75rem; }
.ambassador-card h3 { color: var(--blue); font-size: 1.1rem; margin-bottom: 0.25rem; }
.ambassador-card .amb-title { color: var(--text-muted); font-size: 0.88rem; }

/* ---- Info box ---- */
.info-box {
  background: var(--blue-light);
  border: 1px solid #b8d0f5;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.info-box strong { color: var(--blue); }

/* ---- Two-column content ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .ambassador-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 0.75rem 1rem;
    border-bottom: 2px solid var(--blue);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.7rem 1rem; border-radius: 6px; }
  .footer-grid { grid-template-columns: 1fr; }
  .ambassador-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .die { width: 60px; height: 60px; font-size: 1.9rem; }
  .section { padding: 2.5rem 0; }
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-blue { color: var(--blue); }
.text-orange { color: var(--orange); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ============================================================
   SIC BO THEME — Dice, Felt, Casino Elements
   ============================================================ */

/* ---- CSS Dice ---- */
.dice-hero {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
}
.die-css {
  width: 88px;
  height: 88px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 0 #c8c8c8, 0 10px 28px rgba(0,0,0,0.35);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  padding: 12px;
  gap: 4px;
  position: relative;
  transform: rotate(-4deg);
  transition: transform 0.3s;
}
.die-css:nth-child(2) { transform: rotate(3deg) translateY(-8px); }
.die-css:nth-child(3) { transform: rotate(-2deg); }
.die-css:hover { transform: rotate(0deg) translateY(-4px) scale(1.05); }
.dot {
  background: #1a1a2e;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.dot.hidden { visibility: hidden; }
/* die face: 4 */
.face-four .dot:nth-child(1),
.face-four .dot:nth-child(3),
.face-four .dot:nth-child(7),
.face-four .dot:nth-child(9) { visibility: visible; }
.face-four .dot:nth-child(2),
.face-four .dot:nth-child(4),
.face-four .dot:nth-child(5),
.face-four .dot:nth-child(6),
.face-four .dot:nth-child(8) { visibility: hidden; }
/* die face: 2 */
.face-two .dot:nth-child(3),
.face-two .dot:nth-child(7) { visibility: visible; }
.face-two .dot:nth-child(1),
.face-two .dot:nth-child(2),
.face-two .dot:nth-child(4),
.face-two .dot:nth-child(5),
.face-two .dot:nth-child(6),
.face-two .dot:nth-child(8),
.face-two .dot:nth-child(9) { visibility: hidden; }
/* die face: 6 */
.face-six .dot:nth-child(1),
.face-six .dot:nth-child(3),
.face-six .dot:nth-child(4),
.face-six .dot:nth-child(6),
.face-six .dot:nth-child(7),
.face-six .dot:nth-child(9) { visibility: visible; }
.face-six .dot:nth-child(2),
.face-six .dot:nth-child(5),
.face-six .dot:nth-child(8) { visibility: hidden; }

/* ---- Payout Showcase Strip ---- */
.payout-strip {
  background: #0d1b3e;
  border-top: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  padding: 1.1rem 0;
  overflow: hidden;
}
.payout-strip-inner {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.payout-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.6rem 1.75rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  min-width: 130px;
}
.payout-pill:last-child { border-right: none; }
.payout-pill .pill-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #a8c0e8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}
.payout-pill .pill-value {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.payout-pill .pill-edge {
  font-size: 0.72rem;
  color: #6b7a96;
  margin-top: 0.15rem;
}

/* ---- Felt / Table section ---- */
.felt-section {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,71,171,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(255,96,0,0.08) 0%, transparent 60%),
    #0a1628;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  color: #fff;
}
.felt-section::before {
  content: '⚀ ⚁ ⚂ ⚃ ⚄ ⚅';
  position: absolute;
  font-size: 8rem;
  opacity: 0.03;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 1.5rem;
}
.felt-section h2 { color: #fff; }
.felt-section p { color: #c8d3e8; }

/* Dice watermark decoration */
.dice-watermark {
  position: absolute;
  font-size: 12rem;
  opacity: 0.04;
  pointer-events: none;
  line-height: 1;
  user-select: none;
}
.dice-watermark.top-right { top: -1rem; right: -1rem; }
.dice-watermark.bottom-left { bottom: -1rem; left: -1rem; }

/* ---- Text Logo ---- */
.logo {
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.3em;
  line-height: 1;
  text-decoration: none;
  user-select: none;
  font-family: var(--font-heading);
  font-weight: 700;
}
.logo .logo-top {
  color: var(--blue);
  letter-spacing: -0.02em;
}
.logo .logo-bottom {
  color: var(--orange);
  letter-spacing: 0.01em;
}
/* Nav size */
.logo--nav .logo-top  { font-size: 1.3rem; }
.logo--nav .logo-bottom { font-size: 1.3rem; }
/* Hero size */
.logo--hero { margin-bottom: 1.25rem; }
.logo--hero .logo-top  { font-size: 2.8rem; color: #fff; }
.logo--hero .logo-bottom { font-size: 2.8rem; }
/* About size */
.logo--about { margin-bottom: 1.1rem; }
.logo--about .logo-top  { font-size: 2rem; }
.logo--about .logo-bottom { font-size: 2rem; }

/* ---- About 96M ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.stat-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat-box {
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem;
  text-align: center;
}
.stat-box .stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-box .stat-label {
  font-size: 0.82rem;
  color: #c5d5f0;
  line-height: 1.4;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--blue-light);
  border: 1px solid #b8d0f5;
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--blue);
}

/* ---- Sic Bo Quick-bet showcase ---- */
.bet-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.bet-tile {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.2rem 1rem;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}
.bet-tile:hover {
  background: rgba(255,96,0,0.12);
  border-color: var(--orange);
}
.bet-tile .bt-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}
.bet-tile .bt-payout {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.bet-tile .bt-edge {
  font-size: 0.75rem;
  color: #8a99b3;
}

/* ---- Responsive additions ---- */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .stat-boxes { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .die-css { width: 68px; height: 68px; padding: 9px; border-radius: 14px; }
  .payout-pill { min-width: 100px; padding: 0.6rem 1rem; }
  .payout-pill .pill-value { font-size: 1.15rem; }
  .stat-boxes { grid-template-columns: 1fr 1fr; }
  .bet-showcase { grid-template-columns: 1fr 1fr; }
}
