/* 96M BetSG — Shared Styles */
:root {
  --color-primary: #FF8A00;
  --color-accent: #0524DD;
  --color-bg: #131313;
}

/* Material Symbols */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

/* Gradients */
.cta-gradient  { background: linear-gradient(135deg, #FFB77F 0%, #FF8A00 100%); }
.blue-gradient { background: linear-gradient(135deg, #1a3aff 0%, #0524DD 100%); }

/* Card hover glow */
.card-glow:hover { box-shadow: 0 0 24px rgba(255, 138, 0, 0.25); }

/* Score bar transition */
.score-bar { transition: width 0.6s ease; }

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Access bar button hover */
.access-bar__btn:hover { filter: brightness(1.2); }

/* Mobile nav active */
.mobile-nav-active { color: #FF8A00; }

/* Table styles */
.data-table th { background: #2a2a2a; }
.data-table tr:hover { background: rgba(255,255,255,0.03); }
