@import "styles.css";

/* NBAOddsBetting - Pure Vanilla CSS Stylesheet (BettingOdds.com Visual & Layout Blueprint) */

:root {
  --bg: #f4f5f7;
  --bg-alt: #eaedf1;
  --surface: #ffffff;
  --surface-blue: #eff6ff;
  --surface-red: #fef2f2;

  --border: #e2e8f0;
  --border-strong: #cbd5e1;

  --text-main: #111827;
  --text-muted: #64748b;

  --brand-navy: #0f172a;
  --brand-navy-dark: #020617;
  --brand-blue: #174ea6;
  --brand-blue-accent: #2563eb;
  --brand-blue-light: #dbeafe;

  --brand-green: #16803a;
  --brand-green-light: #dcfce7;

  --brand-red: #dc2626;

  --shadow-sm: 0 1px 3px 0 rgba(15, 23, 42, 0.06), 0 1px 2px -1px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 14px -2px rgba(15, 23, 42, 0.08), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 25px -3px rgba(15, 23, 42, 0.1), 0 4px 10px -2px rgba(15, 23, 42, 0.05);

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
}

body {
  background-color: var(--bg);
  color: var(--text-main);
  font-family: Arial, Helvetica, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--brand-blue);
  color: #ffffff;
  padding: 0.5rem 1rem;
  z-index: 100;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 1rem;
}

/* Sports Media Card & Module Styles */
.sports-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.sports-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.section-kicker {
  color: var(--brand-blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.section-kicker::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 3px;
  background-color: var(--brand-red);
  border-radius: 1px;
}

/* Odds button styling - BettingOdds.com compact sports odds pattern */
.odds-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.6rem;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 700;
  color: var(--brand-navy);
  text-decoration: none;
  transition: all 0.15s ease;
  cursor: pointer;
}
.odds-btn:hover {
  background: var(--brand-blue-light);
  border-color: var(--brand-blue-accent);
  color: var(--brand-blue);
}

/* Hide scrollbars for slick horizontal navigation strips */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
