:root {
  --bg-body: #0a0a0f;
  --bg-card: #12121c;
  --bg-elevated: #151520;
  --bg-data: #0e0e18;
  --bg-tag: #1a1a2e;
  --border: #1e1e2e;
  --border-subtle: #1a1a2a;
  --text-primary: #e2e2e8;
  --text-body: #c0c0d0;
  --text-muted: #7b7b9d;
  --text-label: #555570;
  --text-stat: #8888a0;
  --text-footer: #555570;
  --text-white: #ffffff;
  --gold: #c9a96e;
  --gold-dim: rgba(201, 169, 110, 0.12);
  --red: #e05252;
  --slate: #8a9cc5;
  --bs-body-bg: #0a0a0f;
  --bs-body-color: #e2e2e8;
  --bs-border-color: #1e1e2e;
  --bs-card-bg: #12121c;
  --bs-card-border-color: #1e1e2e;
  --bs-link-color: #c9a96e;
  --bs-link-hover-color: #d4b87a;
  --bs-emphasis-color: #ffffff;
}
body {
  font-family: 'Instrument Sans', -apple-system, sans-serif;
  background: #0a0a0f;
  color: #e2e2e8;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: #c9a96e;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #d4b87a;
}
.container-sm {
  max-width: 720px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.container-sm {
  max-width: 720px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #555570;
  margin-bottom: 20px;
}
.section-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.card-date-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 16px;
}
.card-date-nav-center {
  text-align: center;
  flex: 1;
}
.card-date-nav-center .section-label {
  margin-bottom: 4px;
}
.card-date-nav-center .section-title {
  margin-bottom: 0;
}
.card-date-nav-arrow {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  color: #7b7b9d;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.15s;
  white-space: nowrap;
  min-width: 90px;
  justify-content: center;
}
.card-date-nav-arrow:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.035);
  border-color: #1e1e2e;
  text-decoration: none;
}
.card-date-nav-arrow.disabled {
  visibility: hidden;
}
.card-date-nav-arrow i {
  font-size: 11px;
}
@media (max-width: 480px) {
  .card-date-nav-arrow {
    padding: 6px 10px;
    font-size: 11px;
    min-width: 70px;
  }
  .card-date-nav-center .section-title {
    font-size: 18px;
  }
}
.tag {
  display: inline-block;
  background: #1a1a2e;
  color: #7b7b9d;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.card-date {
  font-size: 13px;
  font-weight: 600;
  color: #7b7b9d;
}
.record-bar {
  display: flex;
  gap: 16px;
  align-items: center;
}
.record-bar .record-item {
  font-size: 14px;
  font-weight: 600;
}
.record-bar .wins {
  color: #c9a96e;
}
.record-bar .losses {
  color: #e05252;
}
.record-bar .pushes {
  color: #8a9cc5;
}
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #7b7b9d;
}
.empty-state h3 {
  font-size: 20px;
  font-weight: 700;
  color: #c0c0d0;
  margin-bottom: 8px;
}
.empty-state p {
  font-size: 15px;
  color: #555570;
}
.error-page {
  text-align: center;
  padding: 80px 20px;
}
.error-code {
  font-size: 80px;
  font-weight: 700;
  color: #1e1e2e;
  line-height: 1;
  margin-bottom: 16px;
}
.error-heading {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.error-message {
  font-size: 15px;
  color: #555570;
  margin-bottom: 32px;
}
.site-footer {
  border-top: 1px solid #1e1e2e;
  padding: 32px 0;
  margin-top: 80px;
  text-align: center;
  font-size: 12px;
  color: #555570;
}
.site-footer .footer-links {
  margin-top: 8px;
}
.site-footer .footer-links a {
  color: #7b7b9d;
  text-decoration: none;
}
.site-footer .footer-links a:hover {
  color: #e2e2e8;
}
.site-footer .footer-links a + a {
  margin-left: 16px;
}
.text-green {
  color: #c9a96e !important;
}
.text-red {
  color: #e05252 !important;
}
.text-blue {
  color: #8a9cc5 !important;
}
.text-muted-custom {
  color: #7b7b9d !important;
}
.text-label {
  color: #555570 !important;
}
.bg-card {
  background: #12121c !important;
}
.bg-elevated {
  background: #151520 !important;
}
.errorlist {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  font-size: 13px;
  color: #e05252;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.navbar {
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #1e1e2e;
  padding: 14px 0;
}
.navbar-brand {
  font-family: 'Instrument Sans', -apple-system, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff !important;
  letter-spacing: -0.5px;
}
.navbar-brand span {
  color: #c9a96e;
}
.nav-link {
  color: #7b7b9d !important;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px !important;
  transition: color 0.2s;
}
.nav-link:hover,
.nav-link.active {
  color: #ffffff !important;
}
.navbar-toggler {
  border-color: #1e1e2e;
}
.navbar-toggler-icon {
  filter: invert(0.8);
}
.desktop-subnav {
  background: #0a0a0f;
  border-bottom: 1px solid #1e1e2e;
}
.desktop-subnav .container {
  display: flex;
  gap: 0;
}
.desktop-subnav-link {
  padding: 10px 18px;
  color: #7b7b9d;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.desktop-subnav-link:hover {
  color: #c0c0d0;
  text-decoration: none;
}
.desktop-subnav-link.active {
  color: #c9a96e;
  border-bottom-color: #c9a96e;
}
.card {
  background: #12121c;
  border: 1px solid #1e1e2e;
  border-radius: 12px;
}
.card-header {
  background: transparent;
  border-bottom: 1px solid #1e1e2e;
}
.pick-card {
  background: #12121c;
  border: 1px solid #1e1e2e;
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  transition: border-color 0.2s, transform 0.2s;
}
.pick-card:hover {
  border-color: #2a2a3a;
  transform: translateY(-2px);
}
.pick-card .tag {
  display: inline-block;
  background: #1a1a2e;
  color: #7b7b9d;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.pick-card .matchup {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}
.pick-card .spread {
  font-size: 14px;
  color: #7b7b9d;
  margin-bottom: 12px;
}
.pick-card .pick-value {
  font-size: 16px;
  font-weight: 700;
  color: #c9a96e;
  margin-bottom: 8px;
}
.top-picks-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.top-pick-card {
  display: block;
  background: #12121c;
  border: 1px solid #1e1e2e;
  border-radius: 10px;
  padding: 20px 24px;
  text-decoration: none;
  color: #c0c0d0;
  transition: border-color 0.2s, transform 0.15s;
}
.top-pick-card:hover {
  border-color: rgba(201, 169, 110, 0.12);
  transform: translateX(2px);
  color: #c0c0d0;
}
.top-pick-rank {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #c9a96e;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.top-pick-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.top-pick-matchup {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.top-pick-team {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
}
.top-pick-detail {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.top-pick-value {
  font-size: 18px;
  font-weight: 800;
  color: #c9a96e;
}
.top-pick-conf {
  font-size: 13px;
  font-weight: 600;
  color: #7b7b9d;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
}
.top-pick-summary {
  font-size: 13px;
  color: #7b7b9d;
  line-height: 1.5;
}
.top-pick-summary strong {
  color: #ffffff;
}
.top-picks-day {
  margin-bottom: 32px;
}
.top-picks-day-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #1e1e2e;
}
.top-picks-date {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}
.top-picks-slate-link {
  font-size: 12px;
  color: #7b7b9d;
  text-decoration: none;
}
.top-picks-slate-link:hover {
  color: #c9a96e;
}
.top-picks-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
}
.top-picks-pagination a {
  font-size: 13px;
  font-weight: 600;
  color: #c9a96e;
  text-decoration: none;
}
.top-picks-pagination a:hover {
  color: #ffffff;
}
.top-picks-page-info {
  font-size: 12px;
  color: #7b7b9d;
}
@media (max-width: 767px) {
  .top-pick-card {
    padding: 16px 14px;
  }
  .top-pick-team {
    font-size: 15px;
  }
  .top-pick-value {
    font-size: 16px;
  }
  .top-pick-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.pick-box {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.06) 0%, rgba(10, 10, 15, 0.8) 100%);
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 12px;
  padding: 24px 28px;
}
.pick-box .pick-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 8px;
}
.pick-box .pick-value {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}
.pick-box .pick-odds {
  font-size: 14px;
  color: #9d8a6e;
}
.secondary-pick {
  background: #12121c;
  border: 1px solid #1e1e2e;
  border-radius: 12px;
  padding: 20px 24px;
}
.secondary-pick .pick-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8a9cc5;
  margin-bottom: 6px;
}
.secondary-pick .pick-value {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}
.secondary-pick .dot.filled {
  background: #8a9cc5;
}
.confidence {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.confidence .dots {
  display: flex;
  gap: 5px;
}
.confidence .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1e1e2e;
}
.confidence .dot.filled {
  background: #c9a96e;
}
.confidence .dot.filled-blue {
  background: #8a9cc5;
}
.confidence .conf-text {
  font-size: 12px;
  color: #7b7b9d;
  font-weight: 500;
}
.badge-win {
  background: rgba(61, 220, 132, 0.12);
  color: #3ddc84;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 6px;
}
.badge-loss {
  background: rgba(224, 82, 82, 0.1);
  color: #e05252;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 6px;
}
.badge-push {
  background: rgba(138, 156, 197, 0.1);
  color: #8a9cc5;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 6px;
}
.badge-pending {
  background: rgba(123, 123, 157, 0.15);
  color: #7b7b9d;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 6px;
}
.lean-badge {
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}
.tag {
  display: inline-block;
  background: #1a1a2e;
  color: #7b7b9d;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.stat-card {
  background: #12121c;
  border: 1px solid #1e1e2e;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.stat-card .stat-value {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card .stat-value.green {
  color: #c9a96e;
}
.stat-card .stat-value.red {
  color: #e05252;
}
.stat-card .stat-value.blue {
  color: #8a9cc5;
}
.stat-card .stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #555570;
}
.streak {
  display: inline-flex;
  gap: 3px;
}
.streak .w {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c9a96e;
}
.streak .l {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e05252;
}
.streak .p {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8a9cc5;
}
.record-bar {
  display: flex;
  gap: 16px;
  align-items: center;
}
.record-bar .record-item {
  font-size: 14px;
  font-weight: 600;
}
.record-bar .wins {
  color: #c9a96e;
}
.record-bar .losses {
  color: #e05252;
}
.record-bar .pushes {
  color: #8a9cc5;
}
.btn-primary {
  background: #c9a96e;
  border-color: #c9a96e;
  color: #0a0a0f;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 8px;
  transition: all 0.2s;
}
.btn-primary:hover {
  background: #d4b87a;
  border-color: #d4b87a;
  color: #0a0a0f;
  transform: translateY(-1px);
}
.btn-outline-secondary {
  border-color: #1e1e2e;
  color: #7b7b9d;
  font-weight: 500;
  border-radius: 8px;
}
.btn-outline-secondary:hover {
  background: #12121c;
  border-color: #2a2a3a;
  color: #ffffff;
}
.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #3c4043;
  font-weight: 500;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid #dadce0;
  transition: background 0.15s, box-shadow 0.15s;
}
.btn-google:hover {
  background: #f7f8f8;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  color: #3c4043;
}
.form-control,
.form-select {
  background: #0e0e18;
  border: 1px solid #1e1e2e;
  color: #e2e2e8;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
}
.form-control:focus,
.form-select:focus {
  background: #0e0e18;
  border-color: #c9a96e;
  color: #e2e2e8;
  box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.15);
}
.form-control::placeholder,
.form-select::placeholder {
  color: #555570;
}
.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #7b7b9d;
  margin-bottom: 6px;
}
.form-text {
  color: #555570;
}
.errorlist {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  font-size: 13px;
  color: #e05252;
}
.divider-text {
  display: flex;
  align-items: center;
  color: #7b7b9d;
  font-size: 13px;
}
.divider-text::before,
.divider-text::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #1e1e2e;
}
.divider-text span {
  padding: 0 12px;
}
.table {
  --bs-table-bg: transparent;
  --bs-table-color: #c0c0d0;
  --bs-table-border-color: #1e1e2e;
  --bs-table-striped-bg: rgba(18, 18, 28, 0.5);
  --bs-table-hover-bg: rgba(26, 26, 46, 0.5);
}
.table thead th {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #555570;
  border-bottom: 1px solid #1e1e2e;
  padding: 12px 16px;
}
.table td {
  padding: 12px 16px;
  vertical-align: middle;
  font-size: 14px;
}
.record-table {
  table-layout: fixed;
}
.record-table th:first-child,
.record-table td:first-child {
  width: 40%;
}
.record-table th:nth-child(2),
.record-table td:nth-child(2),
.record-table th:nth-child(3),
.record-table td:nth-child(3),
.record-table th:nth-child(4),
.record-table td:nth-child(4) {
  width: 12%;
}
.record-table th:last-child,
.record-table td:last-child {
  width: 24%;
}
.alert-danger {
  background: rgba(224, 82, 82, 0.1);
  border-color: rgba(224, 82, 82, 0.2);
  color: #e05252;
}
.alert-success {
  background: rgba(201, 169, 110, 0.1);
  border-color: rgba(201, 169, 110, 0.2);
  color: #c9a96e;
}
.mobile-top-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #1e1e2e;
  z-index: 1050;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.mobile-top-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}
.mobile-brand {
  font-family: 'Instrument Sans', -apple-system, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.5px;
}
.mobile-brand span {
  color: #c9a96e;
}
.mobile-brand:hover {
  color: #ffffff;
  text-decoration: none;
}
.mobile-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-header-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #12121c;
  border: 1px solid #1e1e2e;
  color: #7b7b9d;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.mobile-header-action:hover {
  color: #ffffff;
  background: #151520;
  text-decoration: none;
}
.mobile-header-cta {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: #c9a96e;
  color: #0a0a0f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border-radius: 100px;
  text-decoration: none;
  transition: filter 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.mobile-header-cta:hover {
  filter: brightness(1.1);
  color: #0a0a0f;
  text-decoration: none;
}
.mobile-header-cta:active {
  filter: brightness(0.9);
}
.mobile-tabs {
  position: relative;
}
.mobile-tabs::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  background: linear-gradient(to right, transparent, rgba(10, 10, 15, 0.95));
  pointer-events: none;
  z-index: 1;
}
.mobile-tabs-scroll {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 0;
}
.mobile-tabs-scroll::-webkit-scrollbar {
  display: none;
}
.mobile-tab {
  flex: 1 0 80px;
  text-align: center;
  padding: 10px 18px;
  color: #7b7b9d;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.mobile-tab:hover {
  color: #c0c0d0;
  text-decoration: none;
}
.mobile-tab.active {
  color: #c9a96e;
  border-bottom-color: #c9a96e;
}
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid #1e1e2e;
  z-index: 1050;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.mobile-bottom-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 6px 0;
  padding-bottom: calc(6px + env(safe-area-inset-bottom, 0px));
}
.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 1;
  min-height: 50px;
  color: #7b7b9d;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  padding: 6px 4px;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-item i {
  font-size: 22px;
  line-height: 1;
}
.mobile-nav-item span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.mobile-nav-item.active {
  color: #c9a96e;
}
.mobile-nav-item:hover {
  color: #ffffff;
  text-decoration: none;
}
.mobile-nav-item.active:hover {
  color: #c9a96e;
}
.mobile-nav-cta {
  color: #c9a96e;
}
.mobile-more-sheet {
  position: fixed;
  inset: 0;
  z-index: 1060;
  pointer-events: none;
  visibility: hidden;
}
.mobile-more-sheet.open {
  pointer-events: auto;
  visibility: visible;
}
.mobile-more-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-more-sheet.open .mobile-more-backdrop {
  opacity: 1;
}
.mobile-more-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #151520;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 12px 0;
  padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}
.mobile-more-sheet.open .mobile-more-panel {
  transform: translateY(0);
}
.mobile-more-handle {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: #1e1e2e;
  margin: 0 auto 16px;
}
.mobile-more-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  color: #c0c0d0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.15s;
}
.mobile-more-item:hover {
  background: #12121c;
  color: #ffffff;
}
.mobile-more-item i {
  font-size: 20px;
  color: #7b7b9d;
  width: 24px;
  text-align: center;
}
.mobile-more-badge {
  margin-left: auto;
  font-size: 11px;
  color: #555570;
  font-weight: 400;
}
@media (max-width: 767px) {
  body {
    padding-top: 52px;
    padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px));
  }
  body:has(.mobile-tabs) {
    padding-top: 90px;
  }
  .navbar {
    display: none !important;
  }
  .site-footer {
    margin-bottom: 0;
  }
}
.locked-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: #c9a96e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.locked-badge i {
  font-size: 11px;
}
.top-pick-card-gated {
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(201, 169, 110, 0.12);
}
.top-pick-card-gated .top-pick-matchup {
  opacity: 1;
}
.top-pick-card-gated .top-pick-locked {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0 4px;
}
.game-row-gated {
  cursor: pointer;
}
.game-row-gated .game-row-teams {
  opacity: 1;
}
.pick-card-gated {
  position: relative;
  border: 1px solid rgba(201, 169, 110, 0.12);
}
.pick-card-gated .matchup {
  opacity: 1;
}
.pick-card-gated .pick-card-locked {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 0 8px;
}
.pick-box-gated {
  padding: 24px 28px;
}
.pick-box-gated .pick-label {
  margin-bottom: 8px;
}
.pick-value-redacted {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.redacted-block {
  display: inline-block;
  background: rgba(201, 169, 110, 0.15);
  border-radius: 4px;
  vertical-align: middle;
}
.redacted-team {
  width: 120px;
  height: 24px;
}
.redacted-spread {
  width: 56px;
  height: 24px;
}
.pick-odds-redacted {
  margin-bottom: 14px;
}
.redacted-odds {
  width: 40px;
  height: 16px;
}
.pick-box-gated .confidence {
  margin-bottom: 20px;
}
.pick-box-unlock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: rgba(201, 169, 110, 0.12);
  color: #c9a96e;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 8px;
  border: 1px solid rgba(201, 169, 110, 0.25);
  text-decoration: none;
  transition: all 0.2s;
}
.pick-box-unlock:hover {
  background: rgba(201, 169, 110, 0.2);
  border-color: #c9a96e;
  color: #c9a96e;
}
.pick-box-unlock i {
  font-size: 13px;
}
.analysis-gated {
  position: relative;
}
.analysis-gated-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
}
.analysis-gated-bars .skel-line {
  height: 12px;
  border-radius: 4px;
  background: #1e1e2e;
}
.analysis-gated-bars .skel-line:nth-child(odd) {
  width: 100%;
}
.analysis-gated-bars .skel-line:nth-child(even) {
  width: 75%;
}
.analysis-gated-bars .skel-line:nth-child(3n) {
  width: 60%;
}
.guest-cta {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.04) 0%, #12121c 100%);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 12px;
  padding: 36px 32px;
  text-align: center;
  margin: 20px 0;
}
.guest-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: #c9a96e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.guest-cta-badge i {
  font-size: 12px;
}
.guest-cta-title {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}
.guest-cta-text {
  font-size: 14px;
  color: #7b7b9d;
  max-width: 380px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.guest-cta .btn-primary {
  padding: 12px 36px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.guest-cta-login {
  margin-top: 14px;
  font-size: 13px;
  color: #555570;
}
.guest-cta-login a {
  color: #c9a96e;
  text-decoration: none;
}
.guest-cta-login a:hover {
  color: #d4b87a;
}
.paywall-teaser {
  font-size: 15px;
  line-height: 1.7;
  color: #b0b0c0;
  max-width: 500px;
  margin: 0 auto 24px;
}
.paywall-teaser strong {
  color: #ffffff;
}
.paywall-btn {
  font-weight: 700;
  padding: 12px 32px;
  letter-spacing: 0.3px;
}
.paywall-lock-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 20px;
  color: #c9a96e;
}
.paywall-meta {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 12px;
  color: #555570;
}
.paywall-meta-units {
  color: #c9a96e;
  font-weight: 600;
}
.paywall-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.paywall-blur {
  position: relative;
  border: 1px solid #1e1e2e;
  border-radius: 12px;
  overflow: hidden;
  background: #12121c;
}
.paywall-blur-fake {
  padding: 28px;
  filter: blur(6px);
  user-select: none;
  pointer-events: none;
  opacity: 0.4;
}
.paywall-blur-fake p {
  font-size: 15px;
  line-height: 1.75;
  color: #c0c0d0;
  margin-bottom: 12px;
}
.paywall-blur-pick {
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 16px;
}
.paywall-blur-pick-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 4px;
}
.paywall-blur-pick-value {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
}
.paywall-blur-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  background: radial-gradient(ellipse at center, rgba(10, 10, 15, 0.6) 0%, rgba(10, 10, 15, 0.95) 70%);
}
.paywall-card {
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(201, 169, 110, 0.04) 0%, #0a0a0f 100%);
  padding: 32px;
  text-align: center;
}
.paywall-card-tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.paywall-tag-units {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(201, 169, 110, 0.12);
  color: #c9a96e;
  border: 1px solid rgba(201, 169, 110, 0.2);
}
.paywall-card-footer {
  margin-top: 16px;
  font-size: 12px;
  color: #555570;
}
.paywall-strip {
  border: 1px solid #1e1e2e;
  border-radius: 12px;
  background: #12121c;
  padding: 24px 28px;
}
.paywall-strip .paywall-teaser {
  margin: 0 0 20px;
  max-width: none;
}
.paywall-strip-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.paywall-strip-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #555570;
}
.paywall-strip-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #2a2a3e;
}
.paywall-strip-btn {
  color: #c9a96e;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 6px;
  border: 1px solid rgba(201, 169, 110, 0.12);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.paywall-strip-btn:hover {
  background: rgba(201, 169, 110, 0.12);
  border-color: #c9a96e;
  color: #c9a96e;
}
.auth-container {
  max-width: 420px;
  margin: 60px auto;
}
.auth-container h1 {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}
.auth-container .auth-subtitle {
  font-size: 15px;
  color: #7b7b9d;
  margin-bottom: 32px;
}
.auth-card {
  background: #12121c;
  border: 1px solid #1e1e2e;
  border-radius: 12px;
  padding: 32px;
}
.invite-code-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
}
.invite-code-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c9a96e;
}
.invite-code-value {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 2px;
}
.welcome-check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #c9a96e;
  color: #0a0a0f;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.welcome-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #1e1e2e;
}
.welcome-item:last-of-type {
  border-bottom: none;
}
.welcome-item strong {
  display: block;
  margin-bottom: 2px;
  color: #e2e2e8;
}
.welcome-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}
.checkbox-group,
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.checkbox-option,
.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0a0a0f;
  border: 1px solid #1e1e2e;
  border-radius: 8px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 13px;
  color: #c0c0d0;
  transition: border-color 0.15s, background 0.15s;
}
.checkbox-option:hover,
.radio-option:hover {
  border-color: rgba(201, 169, 110, 0.12);
  color: #ffffff;
}
.checkbox-option input[type="checkbox"],
.radio-option input[type="checkbox"],
.checkbox-option input[type="radio"],
.radio-option input[type="radio"] {
  accent-color: #c9a96e;
  margin: 0;
}
.checkbox-option input:checked ~ span,
.radio-option input:checked ~ span {
  color: #ffffff;
}
.checkbox-option:has(input:checked),
.radio-option:has(input:checked) {
  border-color: #c9a96e;
  background: rgba(201, 169, 110, 0.12);
  color: #ffffff;
}
.divider-text {
  display: flex;
  align-items: center;
  color: #7b7b9d;
  font-size: 13px;
}
.divider-text::before,
.divider-text::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #1e1e2e;
}
.divider-text span {
  padding: 0 12px;
}
.games-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  min-height: 60vh;
}
.date-sidebar {
  position: sticky;
  top: 80px;
  align-self: start;
}
.month-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.month-nav .month-label {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}
.month-nav a {
  color: #7b7b9d;
  font-size: 18px;
  padding: 4px 8px;
}
.month-nav a:hover {
  color: #ffffff;
}
.day-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  text-align: center;
}
.day-grid .day-header {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #555570;
  padding: 4px 0;
}
.day-cell {
  padding: 5px 2px;
  font-size: 12px;
  color: #7b7b9d;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  display: block;
  line-height: 1.2;
}
.day-cell:hover {
  background: #12121c;
  color: #ffffff;
}
.day-cell.active {
  background: #c9a96e;
  color: #0a0a0f;
  font-weight: 700;
}
.day-cell.future {
  color: #555570;
  opacity: 0.4;
}
.day-cell.other-month {
  color: #555570;
  cursor: default;
}
.day-cell.has-picks::after {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #c9a96e;
  margin: 1px auto 0;
}
.day-cell.active.has-picks::after {
  background: #0a0a0f;
}
.sport-tabs,
.sport-filter-tabs {
  display: flex;
  gap: 4px;
}
.sport-filter-tabs {
  margin-top: 12px;
}
.sport-tab {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #555570;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.15s;
}
.sport-tab:hover {
  color: #ffffff;
  background: #12121c;
}
.sport-tab.active {
  color: #c9a96e;
  background: rgba(201, 169, 110, 0.12);
}
.games-header {
  margin-bottom: 24px;
}
.games-header .tag {
  margin-bottom: 8px;
}
.games-date-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 4px 0 2px;
}
.games-count {
  font-size: 12px;
  color: #555570;
}
.top-plays {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.06) 0%, rgba(10, 10, 15, 0.8) 100%);
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 24px;
}
.top-plays .section-label {
  margin-bottom: 8px;
}
.game-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  border-bottom: 1px solid #1a1a2a;
  color: #c0c0d0;
  text-decoration: none;
  transition: background 0.1s;
  font-size: 13px;
}
.game-row:hover {
  background: #12121c;
  color: #ffffff;
}
.game-row:last-child {
  border-bottom: none;
}
.game-row.featured-row {
  border-bottom-color: rgba(201, 169, 110, 0.12);
}
.game-row-line1 {
  display: flex;
  align-items: center;
  gap: 12px;
}
.game-row-line2 {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 34px;
}
.game-row-teams {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
}
.team-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-row-spread {
  font-size: 11px;
  color: #7b7b9d;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  white-space: nowrap;
}
.game-row-total {
  font-size: 12px;
  color: #7b7b9d;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  white-space: nowrap;
  flex-shrink: 0;
}
.game-row-our-pick {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #555570;
}
.game-row-pick {
  font-size: 12px;
  font-weight: 600;
  color: #c9a96e;
  white-space: nowrap;
}
.game-row-confidence {
  flex-shrink: 0;
}
.team-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 14px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #ffffff;
  flex-shrink: 0;
  padding: 0 4px;
}
.at-symbol {
  color: #555570;
  font-size: 11px;
  flex-shrink: 0;
}
.pick-star {
  color: #c9a96e;
  font-size: 11px;
  flex-shrink: 0;
  margin: 0 1px;
}
.team-name.picked {
  color: #ffffff;
  font-weight: 600;
}
.conf-label {
  font-size: 11px;
  font-weight: 600;
  color: #7b7b9d;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
}
.game-row-pick-pending {
  color: #555570 !important;
  font-weight: 400 !important;
  font-style: italic;
}
.game-row-pending {
  cursor: default;
}
.all-games {
  border: 1px solid #1e1e2e;
  border-radius: 8px;
  overflow: hidden;
}
.all-games .section-label {
  padding: 12px 16px 4px;
  margin-bottom: 0;
}
.mobile-date-nav {
  display: none;
}
.mobile-sport-tabs {
  display: none;
}
@media (max-width: 767px) {
  .games-layout {
    grid-template-columns: 1fr;
  }
  .date-sidebar {
    display: none;
  }
  .mobile-date-nav {
    display: block;
    margin-bottom: 0;
  }
  .mobile-sport-tabs {
    display: flex;
    gap: 6px;
    padding: 8px 0 12px;
    border-bottom: 1px solid #1e1e2e;
    margin-bottom: 12px;
  }
  .mobile-date-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    cursor: pointer;
    list-style: none;
  }
  .mobile-date-header::-webkit-details-marker {
    display: none;
  }
  .mobile-day-arrow {
    color: #7b7b9d;
    font-size: 22px;
    padding: 4px 12px;
    text-decoration: none;
  }
  .mobile-day-arrow:hover {
    color: #ffffff;
  }
  .mobile-date-label {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
  }
  .mobile-cal-icon {
    font-size: 10px;
    color: #7b7b9d;
    margin-left: 4px;
    transition: transform 0.2s;
  }
  .mobile-date-nav[open] .mobile-cal-icon {
    transform: rotate(180deg);
  }
  .mobile-calendar {
    padding: 12px 0 16px;
    border-bottom: 1px solid #1e1e2e;
    margin-bottom: 4px;
  }
  .games-main {
    padding: 0 4px;
  }
  .top-plays {
    padding: 12px 10px;
    margin-bottom: 16px;
  }
  .games-header {
    margin-bottom: 16px;
  }
  .all-games {
    border-radius: 6px;
  }
  .game-row {
    padding: 10px 8px;
  }
  .game-row-line1 {
    flex-wrap: wrap;
    gap: 4px 8px;
  }
  .game-row-line2 {
    padding-left: 0;
  }
  .team-badge {
    min-width: 24px;
    height: 24px;
    border-radius: 12px;
    font-size: 7px;
    padding: 0 3px;
  }
}
.analysis-embed {
  background: #12121c;
  border: 1px solid #1e1e2e;
  border-radius: 12px;
  padding: 32px;
  overflow-x: auto;
}
.analysis-embed .lines-bar {
  display: flex;
  justify-content: center;
  gap: 32px;
  background: #12121c;
  border: 1px solid #1e1e2e;
  border-radius: 12px;
  padding: 18px 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.analysis-embed .line-item {
  text-align: center;
}
.analysis-embed .line-item .label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #555570;
  margin-bottom: 4px;
}
.analysis-embed .line-item .value {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}
.analysis-embed .line-item .value .team {
  font-size: 13px;
  font-weight: 500;
  color: #7b7b9d;
}
.analysis-embed .books {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.analysis-embed .book-chip {
  background: #12121c;
  border: 1px solid #1e1e2e;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 11px;
  color: #7b7b9d;
}
.analysis-embed .book-chip .bname {
  font-weight: 700;
  color: #a0a0b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.analysis-embed .book-chip .bline {
  color: #ffffff;
  font-weight: 600;
}
.analysis-embed .split-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.analysis-embed .team-card {
  background: #12121c;
  border: 1px solid #1e1e2e;
  border-radius: 12px;
  padding: 18px 20px;
}
.analysis-embed .team-card .team-name {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}
.analysis-embed .team-card .stat-line {
  font-size: 12px;
  color: #8888a0;
  margin-bottom: 4px;
}
.analysis-embed .team-card .stat-line .val {
  color: #c0c0d0;
  font-weight: 600;
}
.analysis-embed .data-section {
  background: #0e0e18;
  border: 1px solid #1a1a2a;
  border-radius: 10px;
  padding: 20px;
  margin: 24px 0;
  font-size: 12px;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  color: #8888a0;
  line-height: 1.8;
}
.analysis-embed .data-section .head {
  color: #555570;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.analysis-embed .data-section .val {
  color: #c0c0d0;
}
.analysis-embed .data-section .hot {
  color: #c9a96e;
}
.analysis-embed .data-section .cold {
  color: #e05252;
}
.analysis-embed .analysis p {
  font-size: 15px;
  color: #c0c0d0;
  margin-bottom: 16px;
  line-height: 1.75;
}
.analysis-embed .analysis strong {
  color: #ffffff;
  font-weight: 600;
}
.team-badge-lg {
  min-width: 36px;
  height: 36px;
  border-radius: 18px;
  font-size: 11px;
  padding: 0 6px;
  vertical-align: middle;
}
.pick-detail-matchup {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.stat-abbr {
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 3px;
  text-decoration-color: #555570;
  cursor: help;
  position: relative;
}
.stat-abbr:hover::after,
.stat-abbr:focus::after {
  content: attr(data-tip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #151520;
  border: 1px solid #1e1e2e;
  color: #c0c0d0;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  z-index: 10;
  pointer-events: none;
}
.gd-section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #1e1e2e;
}
.gd-section .section-label {
  margin-bottom: 16px;
}
.gd-records {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.gd-record-team {
  background: #12121c;
  border: 1px solid #1e1e2e;
  border-radius: 10px;
  padding: 16px;
}
.gd-team-name {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gd-record-line {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 13px;
}
.gd-record-val {
  color: #e2e2e8;
  font-weight: 600;
}
.gd-record-label {
  color: #7b7b9d;
}
.gd-stats-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.gd-stats-table th,
.gd-stats-table td {
  padding: 8px 12px;
  text-align: center;
}
.gd-stats-table thead th {
  color: #7b7b9d;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid #1e1e2e;
}
.gd-stats-table tbody td {
  color: #e2e2e8;
  border-bottom: 1px solid #1a1a2a;
}
.gd-stats-table tbody tr:last-child td {
  border-bottom: none;
}
.gd-stat-label-col {
  color: #555570 !important;
  font-size: 11px !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 80px;
}
.gd-players-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.gd-players-team {
  min-width: 0;
}
.gd-players-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.gd-players-table th {
  color: #7b7b9d;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px;
  border-bottom: 1px solid #1e1e2e;
  text-align: left;
}
.gd-players-table th:not(:first-child) {
  text-align: center;
}
.gd-players-table td {
  padding: 6px;
  color: #c0c0d0;
  border-bottom: 1px solid #1a1a2a;
}
.gd-players-table td:not(:first-child) {
  text-align: center;
}
.gd-players-table tbody tr:last-child td {
  border-bottom: none;
}
.gd-odds-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.gd-odds-table th {
  color: #7b7b9d;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 10px;
  border-bottom: 1px solid #1e1e2e;
  text-align: center;
}
.gd-odds-table th:first-child {
  text-align: left;
}
.gd-odds-table td {
  padding: 8px 10px;
  color: #e2e2e8;
  border-bottom: 1px solid #1a1a2a;
  text-align: center;
}
.gd-odds-table td:first-child {
  text-align: left;
}
.gd-odds-table tbody tr:last-child td {
  border-bottom: none;
}
.gd-book-name {
  font-weight: 500;
}
.gd-book-name a {
  color: #c9a96e;
  text-decoration: none;
}
.gd-book-name a:hover {
  color: #d4b87a;
  text-decoration: underline;
}
.gd-odds-disclaimer {
  font-size: 11px;
  color: #555570;
  margin-top: 10px;
  font-style: italic;
}
.analysis-prose {
  color: #c0c0d0;
  line-height: 1.8;
  font-size: 15px;
}
.analysis-prose p {
  margin-bottom: 16px;
}
.analysis-prose strong {
  color: #ffffff;
}
.analysis-heading {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}
.jump-to-analysis {
  color: #c9a96e;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}
.jump-to-analysis:hover {
  color: #d4b87a;
}
.jump-to-analysis i {
  font-size: 16px;
  vertical-align: middle;
}
.analysis-promo {
  text-align: center;
  padding: 32px 24px;
  background: #12121c;
  border: 1px solid #1e1e2e;
  border-radius: 10px;
}
.analysis-promo-icon {
  font-size: 28px;
  color: #c9a96e;
  margin-bottom: 12px;
}
.analysis-promo-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}
.analysis-promo p {
  font-size: 14px;
  color: #7b7b9d;
  max-width: 440px;
  margin: 0 auto 20px;
  line-height: 1.6;
}
@media (max-width: 575px) {
  .gd-records {
    grid-template-columns: 1fr;
  }
  .gd-players-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .gd-stats-table th,
  .gd-stats-table td {
    padding: 6px 8px;
  }
  .gd-odds-table {
    font-size: 11px;
  }
  .gd-odds-table th,
  .gd-odds-table td {
    padding: 6px;
  }
}
.landing-wrap {
  font-family: 'Instrument Sans', -apple-system, sans-serif;
  overflow-x: hidden;
}
.l-hero {
  padding: 72px 24px 64px;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.l-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -100px;
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.l-hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.l-hero-text {
  animation: l-fadeUp 0.7s ease both;
}
.l-invite-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 169, 110, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: #c9a96e;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.l-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c9a96e;
  animation: l-pulse 2s ease-in-out infinite;
}
@keyframes l-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.7);
  }
}
.l-hero h1 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(56px, 5.5vw, 64px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.hero-gold {
  color: #c9a96e;
}
.l-hero-body {
  font-size: 17px;
  color: #7b7b9d;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 540px;
}
.l-hero-card {
  animation: l-fadeUp 0.7s ease 0.3s both;
}
.l-hero-card .l-card {
  max-height: 380px;
  overflow-y: auto;
}
.l-hero-card .l-card::-webkit-scrollbar {
  width: 4px;
}
.l-hero-card .l-card::-webkit-scrollbar-track {
  background: transparent;
}
.l-hero-card .l-card::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 2px;
}
.l-card-subtitle {
  text-align: center;
  margin-top: 8px;
  font-size: 11px;
  color: #555570;
  letter-spacing: 0.3px;
}
.l-card-footer-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #c9a96e;
  text-decoration: none;
  transition: opacity 0.2s;
}
.l-card-footer-link:hover {
  opacity: 0.8;
  color: #c9a96e;
}
.l-card-footer-link i {
  font-size: 14px;
}
.l-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.l-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #c9a96e;
  color: #0a0a0f;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.l-btn-primary:hover {
  background: #d4b87a;
  color: #0a0a0f;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.18);
}
.l-btn-ghost {
  color: #555570;
  font-size: 13px;
  font-weight: 500;
  padding: 13px 20px;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.l-btn-ghost:hover {
  color: #ffffff;
}
.l-section-label {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  color: #7b7b9d;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-section-label .l-date {
  font-family: 'Instrument Sans', -apple-system, sans-serif;
  font-size: 12px;
  color: #555570;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.l-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  overflow: hidden;
}
.l-pick-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.15s;
  text-decoration: none;
  color: inherit;
}
.l-pick-row:last-child {
  border-bottom: none;
}
.l-pick-row:hover {
  background: rgba(255, 255, 255, 0.035);
  color: inherit;
  text-decoration: none;
}
.l-pick-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.l-pick-league {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: #7b7b9d;
  background: rgba(255, 255, 255, 0.05);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.l-pick-teams {
  font-size: 14px;
  font-weight: 500;
  color: #e2e2e8;
}
.l-pick-teams .at {
  color: #555570;
  font-size: 12px;
  margin: 0 2px;
}
.l-pick-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.l-unit-badge {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}
.l-unit-badge.u5,
.l-unit-badge.u4 {
  background: rgba(201, 169, 110, 0.12);
  color: #c9a96e;
  border: 1px solid rgba(201, 169, 110, 0.2);
}
.l-unit-badge.u3 {
  background: rgba(138, 156, 197, 0.1);
  color: #8a9cc5;
  border: 1px solid rgba(138, 156, 197, 0.15);
}
.l-unit-badge.u2,
.l-unit-badge.u1 {
  background: rgba(255, 255, 255, 0.03);
  color: #555570;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.l-divider {
  max-width: 900px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
}
.l-engine-wrap {
  background: #12121c;
  border-top: 1px solid #1e1e2e;
  border-bottom: 1px solid #1e1e2e;
}
.l-engine {
  padding: 64px 24px;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}
.l-engine::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(138, 156, 197, 0.02) 0%, transparent 65%);
  pointer-events: none;
}
.l-engine-header {
  text-align: center;
  margin-bottom: 64px;
}
.l-eyebrow {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: #8a9cc5;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.l-eyebrow .l-line {
  width: 24px;
  height: 1px;
  background: rgba(138, 156, 197, 0.3);
}
.l-engine-header h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(40px, 5.5vw, 56px);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 18px;
}
.l-engine-header p {
  font-size: 15px;
  color: #7b7b9d;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.l-pipeline {
  display: flex;
  flex-direction: column;
  position: relative;
}
.l-pipeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 40px;
  bottom: 40px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.04), rgba(138, 156, 197, 0.15) 30%, rgba(201, 169, 110, 0.15) 70%, rgba(255, 255, 255, 0.04));
}
.l-stage {
  display: flex;
  gap: 32px;
  padding: 28px 0;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.l-stage.visible {
  opacity: 1;
  transform: translateY(0);
}
.l-stage-marker {
  flex-shrink: 0;
  width: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2px;
}
.l-stage-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  position: relative;
  z-index: 2;
}
.l-stage-icon.ingest {
  background: rgba(138, 156, 197, 0.1);
  border: 1px solid rgba(138, 156, 197, 0.15);
  color: #8a9cc5;
}
.l-stage-icon.quant {
  background: rgba(168, 130, 255, 0.08);
  border: 1px solid rgba(168, 130, 255, 0.2);
  color: #a882ff;
}
.l-stage-icon.situational {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}
.l-stage-icon.synthesis {
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: #c9a96e;
}
.l-stage-content {
  flex: 1;
  padding-top: 2px;
}
.l-stage-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.l-stage-content p {
  font-size: 14px;
  color: #7b7b9d;
  line-height: 1.7;
  margin-bottom: 16px;
}
.l-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.l-pill {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.l-pill.blue {
  background: rgba(138, 156, 197, 0.06);
  color: rgba(138, 156, 197, 0.7);
  border: 1px solid rgba(138, 156, 197, 0.1);
}
.l-pill.purple {
  background: rgba(168, 130, 255, 0.06);
  color: rgba(168, 130, 255, 0.7);
  border: 1px solid rgba(168, 130, 255, 0.1);
}
.l-pill.amber {
  background: rgba(245, 158, 11, 0.06);
  color: rgba(245, 158, 11, 0.7);
  border: 1px solid rgba(245, 158, 11, 0.1);
}
.l-pill.green {
  background: rgba(201, 169, 110, 0.06);
  color: rgba(201, 169, 110, 0.7);
  border: 1px solid rgba(201, 169, 110, 0.1);
}
.l-output {
  margin-top: 8px;
  background: rgba(201, 169, 110, 0.02);
  border: 1px solid rgba(201, 169, 110, 0.08);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-output-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.l-conf-fires {
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1;
}
.l-output-label {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: #c9a96e;
  white-space: nowrap;
}
.l-output-badge {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  color: #c9a96e;
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.2);
  padding: 4px 10px;
  border-radius: 4px;
}
.l-output-mobile {
  margin-top: 8px;
  background: rgba(201, 169, 110, 0.03);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.l-output-mobile-label {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: #c9a96e;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.l-output-mobile-sublabel {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  color: #7b7b9d;
  letter-spacing: 0.5px;
}
.l-engine-numbers {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.l-engine-stat {
  text-align: center;
}
.l-engine-stat .num {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}
.l-engine-stat .num .accent {
  color: #8a9cc5;
}
.l-engine-stat .label {
  font-size: 11px;
  color: #555570;
}
.l-announce {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(201, 169, 110, 0.04);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  font-size: 13px;
  font-weight: 500;
  color: #c9a96e;
  text-decoration: none;
  transition: background 0.2s;
}
.l-announce:hover {
  background: rgba(201, 169, 110, 0.07);
  color: #c9a96e;
  text-decoration: none;
}
.l-announce .bi-trophy-fill {
  font-size: 11px;
}
.l-announce .bi-arrow-right {
  font-size: 12px;
  transition: transform 0.2s;
}
.l-announce:hover .bi-arrow-right {
  transform: translateX(3px);
}
.l-arena-promo {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px;
}
.l-arena-promo-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.04) 0%, rgba(201, 169, 110, 0.01) 100%);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.l-arena-promo-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.l-arena-promo-card:hover {
  border-color: #c9a96e;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.07) 0%, rgba(201, 169, 110, 0.02) 100%);
  color: inherit;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.08);
}
.l-arena-promo-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.l-arena-promo-new {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c9a96e;
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.2);
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}
.l-arena-promo-new i {
  font-size: 9px;
  margin-right: 2px;
}
.l-arena-promo-headline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 400;
  color: #ffffff;
  white-space: nowrap;
}
.l-arena-promo-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.l-arena-promo-sub {
  font-size: 13px;
  color: #7b7b9d;
  line-height: 1.5;
  max-width: 240px;
}
.l-arena-promo-cta {
  font-size: 13px;
  font-weight: 600;
  color: #c9a96e;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.l-arena-promo-cta i {
  font-size: 14px;
  transition: transform 0.2s;
}
.l-arena-promo-card:hover .l-arena-promo-cta i {
  transform: translateX(3px);
}
.l-record {
  padding: 80px 24px;
  max-width: 900px;
  margin: 0 auto;
}
.l-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  padding: 0 4px;
}
.l-section-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
}
.l-view-all {
  font-size: 13px;
  font-weight: 500;
  color: #c9a96e;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.2s;
  text-decoration: none;
}
.l-view-all:hover {
  opacity: 0.8;
  color: #c9a96e;
}
.l-stats-row {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.l-stat-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.l-stat-card .l-stat-value {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}
.l-stat-card .l-stat-value .green {
  color: #c9a96e;
}
.l-stat-card .l-stat-label {
  font-size: 11px;
  color: #555570;
  letter-spacing: 0.3px;
}
a.l-result-row {
  text-decoration: none;
  color: inherit;
}
a.l-result-row:hover {
  background: rgba(255, 255, 255, 0.035);
}
.l-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 13px;
}
.l-result-row:last-child {
  border-bottom: none;
}
.l-result-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b0b0c4;
  font-weight: 500;
}
.l-result-spread {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 11px;
  color: #7b7b9d;
  margin-left: 2px;
}
.l-result-badge {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.l-result-badge.win {
  background: rgba(201, 169, 110, 0.1);
  color: #c9a96e;
}
.l-result-badge.loss {
  background: rgba(224, 82, 82, 0.1);
  color: #e05252;
}
.l-result-badge.push {
  background: rgba(255, 255, 255, 0.04);
  color: #555570;
}
.l-bottom-cta {
  text-align: center;
  padding: 40px 24px 100px;
  position: relative;
}
.l-bottom-cta::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.l-tagline {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.l-bottom-cta p {
  font-size: 14px;
  color: #555570;
  margin-bottom: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
@keyframes l-fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes l-fadeDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.l-anim {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.l-anim.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .l-hero {
    padding: 48px 20px 48px;
  }
  .l-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .l-hero-card {
    max-width: 480px;
  }
  .l-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .l-stats-row {
    flex-direction: column;
  }
  .l-engine-numbers {
    flex-direction: column;
    gap: 24px;
  }
  .l-pipeline::before {
    left: 20px;
  }
  .l-stage-marker {
    width: 40px;
  }
  .l-stage-icon {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
  .l-stage {
    gap: 20px;
  }
  .l-engine,
  .l-record {
    padding-left: 20px;
    padding-right: 20px;
  }
  .l-arena-promo {
    padding: 32px 20px;
  }
  .l-arena-promo-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
  }
  .l-arena-promo-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .l-arena-promo-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .l-pick-teams {
    font-size: 13px;
  }
  .l-engine-header h2 {
    letter-spacing: -1px;
  }
}
.dash-view-all {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: #c9a96e;
  text-decoration: none;
}
.dash-view-all:hover {
  color: #d4b87a;
}
.dash-view-all i {
  margin-left: 4px;
}
.dash-empty-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px 20px;
  background: #12121c;
  border: 1px solid #1e1e2e;
  border-radius: 8px;
  color: #7b7b9d;
  font-size: 13px;
}
.dash-week {
  background: #12121c;
  border: 1px solid #1e1e2e;
  border-radius: 8px;
  overflow: hidden;
}
.dash-week-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
.dash-week-row:last-child {
  border-bottom: none;
}
.dash-week-row:hover {
  background: rgba(255, 255, 255, 0.035);
  color: inherit;
}
.dash-week-row.today {
  background: rgba(201, 169, 110, 0.04);
  border-left: 3px solid #c9a96e;
  padding-left: 17px;
}
.dash-week-date {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 100px;
}
.dash-week-day {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: #7b7b9d;
  text-transform: uppercase;
  width: 28px;
}
.dash-week-num {
  font-size: 13px;
  font-weight: 500;
  color: #e2e2e8;
}
.dash-week-picks {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 12px;
  color: #7b7b9d;
  min-width: 70px;
  text-align: center;
}
.dash-week-results {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  min-width: 120px;
  justify-content: flex-end;
}
.dash-w {
  color: #3ddc84;
}
.dash-l {
  color: #e05252;
}
.dash-p {
  color: #8a9cc5;
}
.dash-pending {
  color: #7b7b9d;
  font-weight: 400;
}
.dash-game-more {
  padding: 8px 20px;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 11px;
  color: #7b7b9d;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.team-header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.team-badge-xl {
  min-width: 56px;
  height: 56px;
  border-radius: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.team-pick-record {
  display: flex;
  align-items: center;
  gap: 8px;
}
.game-row-date {
  font-size: 12px;
  color: #7b7b9d;
  white-space: nowrap;
}
.game-row-score {
  font-size: 13px;
  color: #c0c0d0;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
}
.team-conference-group {
  margin-bottom: 32px;
}
.team-conference-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #1e1e2e;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
}
.team-grid-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #c0c0d0;
  transition: background 0.15s;
}
.team-grid-item:hover {
  background: rgba(255, 255, 255, 0.035);
  color: #ffffff;
}
.team-description {
  color: #c0c0d0;
  font-size: 14px;
  line-height: 1.6;
  max-width: 680px;
}
.team-description p {
  margin: 0;
}
.team-link {
  color: inherit;
  text-decoration: none;
}
.team-link:hover {
  color: #c9a96e;
}
@media (max-width: 480px) {
  .team-badge-xl {
    min-width: 44px;
    height: 44px;
    font-size: 12px;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.post-page {
  max-width: 720px;
}
.post-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 8px;
}
.post-subtitle {
  font-size: 18px;
  color: #7b7b9d;
  font-style: italic;
  margin-bottom: 16px;
}
.post-meta {
  font-size: 13px;
  color: #7b7b9d;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.post-meta-sep {
  color: #555570;
}
.post-record .wins {
  color: #3ddc84;
  font-weight: 600;
}
.post-record .losses {
  color: #e05252;
  font-weight: 600;
}
.post-record .pushes {
  color: #7b7b9d;
  font-weight: 600;
}
.post-units {
  font-weight: 700;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
}
.text-green {
  color: #3ddc84;
}
.text-red {
  color: #e05252;
}
.post-type-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 2px 8px;
  border-radius: 4px;
  line-height: 1.4;
}
.post-type-recap {
  background: rgba(201, 169, 110, 0.12);
  color: #c9a96e;
  border: 1px solid rgba(201, 169, 110, 0.2);
}
.post-type-pregame {
  background: rgba(138, 156, 197, 0.1);
  color: #8a9cc5;
  border: 1px solid rgba(138, 156, 197, 0.15);
}
.post-sport-tag {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #555570;
}
.post-tab-bar {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.post-tab {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid #1e1e2e;
  background: #12121c;
  color: #7b7b9d;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s;
}
.post-tab:hover {
  color: #ffffff;
  background: #151520;
}
.post-tab.active {
  color: #c9a96e;
  background: rgba(201, 169, 110, 0.12);
  border-color: rgba(201, 169, 110, 0.2);
}
.post-tab-panel {
  display: none;
}
.post-tab-panel.active {
  display: block;
}
.post-scoreboard {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
a.post-result-card {
  text-decoration: none;
  color: inherit;
}
.post-result-card {
  background: #12121c;
  border: 1px solid #1e1e2e;
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: border-color 0.15s;
}
.post-result-card:hover {
  border-color: rgba(201, 169, 110, 0.2);
}
.post-result-card.result-win {
  border-left: 3px solid #3ddc84;
}
.post-result-card.result-loss {
  border-left: 3px solid #e05252;
}
.post-result-card.result-push {
  border-left: 3px solid #f59e0b;
}
.post-result-card.post-result-card-sm {
  padding: 8px 12px;
}
.post-result-card.post-result-card-sm .post-result-teams {
  font-size: 13px;
}
.post-result-card.post-result-card-sm .team-color-dot {
  width: 8px;
  height: 8px;
}
.post-result-teams {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #e2e2e8;
  flex-wrap: wrap;
  min-width: 0;
}
.team-color-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.post-team-name {
  white-space: nowrap;
}
.post-score {
  font-weight: 700;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  color: #ffffff;
}
.post-at {
  color: #555570;
  font-size: 12px;
}
.post-result-pick {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.post-pick-value {
  font-size: 13px;
  color: #7b7b9d;
  white-space: nowrap;
}
.post-confidence {
  font-size: 12px;
  font-weight: 600;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  color: #555570;
}
.post-featured-tag {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #c9a96e;
  background: rgba(201, 169, 110, 0.12);
  padding: 1px 5px;
  border-radius: 4px;
}
.result-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1px 6px;
  border-radius: 4px;
}
.result-badge.result-win {
  background: rgba(61, 220, 132, 0.12);
  color: #3ddc84;
}
.result-badge.result-loss {
  background: rgba(224, 82, 82, 0.1);
  color: #e05252;
}
.result-badge.result-push {
  background: rgba(245, 158, 11, 0.08);
  color: #f59e0b;
}
.post-content h2,
.post-content .post-section-heading {
  font-size: 18px;
  font-weight: 700;
  color: #c9a96e;
  margin-top: 32px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.post-content p {
  font-size: 16px;
  color: #c0c0d0;
  line-height: 1.85;
  margin-bottom: 16px;
}
.post-content strong {
  color: #ffffff;
}
.post-sibling-cta {
  display: block;
  text-decoration: none;
  background: #12121c;
  border: 1px solid #1e1e2e;
  border-radius: 8px;
  padding: 16px 24px;
  margin-top: 32px;
  transition: border-color 0.15s;
}
.post-sibling-cta:hover {
  border-color: rgba(201, 169, 110, 0.2);
}
.post-sibling-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #555570;
  margin-bottom: 4px;
}
.post-sibling-title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #c9a96e;
}
.post-sibling-pending {
  border-style: dashed;
  opacity: 0.5;
  pointer-events: none;
}
.post-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #1e1e2e;
}
.post-nav-link {
  text-decoration: none;
  color: #c9a96e;
}
.post-nav-link:hover {
  color: #d4b87a;
}
.post-nav-label {
  font-size: 13px;
  display: block;
  color: #7b7b9d;
}
.post-nav-date {
  font-size: 15px;
  font-weight: 600;
}
.post-filter-tabs {
  display: flex;
  gap: 8px;
}
.post-filter-tab {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  text-decoration: none;
  color: #7b7b9d;
  background: #12121c;
  border: 1px solid #1e1e2e;
  transition: all 0.15s;
}
.post-filter-tab:hover {
  color: #ffffff;
  background: #151520;
}
.post-filter-tab.active {
  color: #c9a96e;
  background: rgba(201, 169, 110, 0.12);
  border-color: rgba(201, 169, 110, 0.2);
}
.post-list-card {
  transition: border-color 0.15s;
}
.post-list-card:hover {
  border-color: rgba(201, 169, 110, 0.2);
}
.post-list-subtitle {
  font-size: 14px;
  color: #7b7b9d;
  font-style: italic;
}
.post-gated {
  text-align: center;
  padding: 48px 24px;
  background: #12121c;
  border: 1px solid #1e1e2e;
  border-radius: 8px;
}
.post-gated h3 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 8px;
}
.post-gated p {
  color: #7b7b9d;
  font-size: 15px;
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .post-title {
    font-size: 24px;
  }
  .post-subtitle {
    font-size: 15px;
  }
  .post-result-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .post-result-pick {
    flex-wrap: wrap;
  }
}
.stats-filters {
  background: #12121c;
  border: 1px solid #1e1e2e;
  border-radius: 12px;
  padding: 24px;
}
.applied-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.applied-filter {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #1a1a2e;
  border: 1px solid #1e1e2e;
  border-radius: 100px;
  padding: 4px 10px 4px 12px;
  font-size: 13px;
  color: #c0c0d0;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.applied-filter:hover {
  border-color: #e05252;
  background: rgba(224, 82, 82, 0.1);
  color: #e2e2e8;
}
.applied-filter__label {
  color: #7b7b9d;
  font-weight: 600;
}
.applied-filter .bi-x {
  font-size: 16px;
  line-height: 1;
  opacity: 0.5;
}
.applied-filter:hover .bi-x {
  opacity: 1;
  color: #e05252;
}
.stats-table {
  table-layout: fixed;
}
.stats-table th:first-child,
.stats-table td:first-child {
  width: 30%;
}
.stats-table th:nth-child(2),
.stats-table td:nth-child(2),
.stats-table th:nth-child(3),
.stats-table td:nth-child(3),
.stats-table th:nth-child(4),
.stats-table td:nth-child(4),
.stats-table th:nth-child(5),
.stats-table td:nth-child(5) {
  width: 12%;
}
.stats-table th:last-child,
.stats-table td:last-child {
  width: 22%;
}
.stats-row--clickable {
  cursor: pointer;
  transition: background 0.15s;
}
.stats-row--clickable:hover {
  background: rgba(255, 255, 255, 0.035) !important;
}
.drill-link {
  color: #c9a96e;
  text-decoration: none;
}
.drill-link:hover {
  color: #d4b87a;
  text-decoration: underline;
}
.drill-back {
  display: inline-block;
  color: #7b7b9d;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 8px;
  transition: color 0.15s;
}
.drill-back:hover {
  color: #c9a96e;
}
.drill-table td {
  font-size: 13px;
}
.drill-row--win {
  border-left: 3px solid #3ddc84;
}
.drill-row--loss {
  border-left: 3px solid #e05252;
}
.drill-row--push {
  border-left: 3px solid #8a9cc5;
}
.result-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 2px 8px;
  border-radius: 4px;
}
.result-badge--win {
  color: #3ddc84;
  background: rgba(61, 220, 132, 0.12);
}
.result-badge--loss {
  color: #e05252;
  background: rgba(224, 82, 82, 0.1);
}
.result-badge--push {
  color: #8a9cc5;
  background: rgba(138, 156, 197, 0.1);
}
.arena-page {
  padding-bottom: 80px;
}
.arena-pills {
  padding: 16px 0;
  border-bottom: 1px solid #1e1e2e;
  margin-bottom: 32px;
}
.arena-pills .container {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.arena-pills .container::-webkit-scrollbar {
  display: none;
}
.arena-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Instrument Sans', -apple-system, sans-serif;
  color: #7b7b9d;
  background: #12121c;
  border: 1px solid #1e1e2e;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.15s;
}
.arena-pill:hover {
  color: #e2e2e8;
  border-color: rgba(201, 169, 110, 0.2);
}
.arena-pill.active {
  color: #c9a96e;
  background: rgba(201, 169, 110, 0.12);
  border-color: rgba(201, 169, 110, 0.2);
}
.arena-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 32px;
  align-items: start;
}
.arena-feed {
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  border: 1px solid #1e1e2e;
  border-radius: 12px;
  background: #12121c;
}
.arena-feed::-webkit-scrollbar {
  width: 4px;
}
.arena-feed::-webkit-scrollbar-track {
  background: transparent;
}
.arena-feed::-webkit-scrollbar-thumb {
  background: #1e1e2e;
  border-radius: 2px;
}
.arena-feed-header {
  padding: 12px 20px;
  border-bottom: 1px solid #1e1e2e;
}
.arena-feed-tabs {
  display: flex;
  gap: 4px;
}
.arena-feed-tab {
  padding: 4px 12px;
  border: none;
  background: none;
  font-family: 'Instrument Sans', -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #7b7b9d;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.15s;
}
.arena-feed-tab:hover {
  color: #e2e2e8;
}
.arena-feed-tab.active {
  color: #e2e2e8;
  background: rgba(255, 255, 255, 0.035);
}
.arena-feed-panel {
  display: none;
}
.arena-feed-panel.active {
  display: block;
}
.arena-feed-about {
  padding: 20px;
}
.arena-feed-about p {
  font-size: 13px;
  color: #c0c0d0;
  line-height: 1.7;
  margin: 0 0 16px;
}
.arena-feed-about-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.arena-feed-about-step {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #c0c0d0;
  line-height: 1.5;
}
.arena-feed-about-step span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: #c9a96e;
  font-size: 11px;
  font-weight: 700;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  flex-shrink: 0;
}
.arena-feed-about-muted {
  font-size: 12px !important;
  color: #7b7b9d !important;
}
.arena-feed-about-link {
  font-size: 13px;
  font-weight: 600;
  color: #c9a96e;
  text-decoration: none;
}
.arena-feed-about-link:hover {
  opacity: 0.8;
  color: #c9a96e;
}
.arena-feed-list {
  padding: 8px 0;
}
.arena-feed-item {
  display: block;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.15s;
  text-decoration: none;
  color: inherit;
}
.arena-feed-item:last-child {
  border-bottom: none;
}
.arena-feed-item:hover {
  background: rgba(255, 255, 255, 0.035);
  color: inherit;
  text-decoration: none;
}
.arena-feed-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.arena-feed-capper {
  font-size: 13px;
  font-weight: 600;
  color: #e2e2e8;
}
.arena-feed-time {
  font-size: 11px;
  color: #555570;
}
.arena-feed-pick {
  font-size: 13px;
  color: #c0c0d0;
  margin-bottom: 4px;
}
.arena-feed-pick strong {
  color: #ffffff;
}
.arena-result-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
}
.arena-result-badge.win {
  background: rgba(61, 220, 132, 0.12);
  color: #3ddc84;
}
.arena-result-badge.loss {
  background: rgba(224, 82, 82, 0.1);
  color: #e05252;
}
.arena-result-badge.push {
  background: rgba(138, 156, 197, 0.1);
  color: #8a9cc5;
}
.arena-feed-reasoning {
  font-size: 12px;
  color: #7b7b9d;
  line-height: 1.5;
}
.arena-feed-empty {
  padding: 32px 20px;
  text-align: center;
  color: #7b7b9d;
  font-size: 13px;
}
.arena-main {
  min-width: 0;
}
.arena-section-header {
  margin-bottom: 16px;
}
.arena-section-header h2 {
  font-family: 'Instrument Sans', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #e2e2e8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}
.arena-ticker {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 32px;
  -webkit-overflow-scrolling: touch;
}
.arena-ticker::-webkit-scrollbar {
  height: 3px;
}
.arena-ticker::-webkit-scrollbar-track {
  background: transparent;
}
.arena-ticker::-webkit-scrollbar-thumb {
  background: #1e1e2e;
  border-radius: 2px;
}
.arena-ticker-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #12121c;
  border: 1px solid #1e1e2e;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
.arena-ticker-emoji {
  font-size: 18px;
}
.arena-ticker-name {
  font-size: 13px;
  font-weight: 600;
  color: #e2e2e8;
}
.arena-ticker-roi {
  font-size: 13px;
  font-weight: 700;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
}
.arena-ticker-roi.positive {
  color: #3ddc84;
}
.arena-ticker-roi.negative {
  color: #e05252;
}
.arena-ticker-roi .bi {
  font-size: 10px;
}
.arena-chart {
  margin-bottom: 32px;
  background: #12121c;
  border: 1px solid #1e1e2e;
  border-radius: 12px;
  padding: 20px;
}
.arena-chart-container {
  position: relative;
  height: 300px;
}
.arena-chart-empty {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7b7b9d;
  font-size: 13px;
}
.arena-chart-legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 16px;
}
.arena-chart-legend-item {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-family: 'Instrument Sans', -apple-system, sans-serif;
  color: #c0c0d0;
}
.arena-chart-legend-item:hover {
  color: #ffffff;
}
.arena-chart-legend-item img {
  border-radius: 2px;
}
.arena-leaderboard {
  background: #12121c;
  border: 1px solid #1e1e2e;
  border-radius: 12px;
  padding: 20px;
}
.arena-table {
  margin-bottom: 0;
}
.arena-table thead th {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #555570;
  border-bottom-color: #1e1e2e;
  padding: 8px 12px;
}
.arena-table tbody td {
  font-size: 13px;
  color: #c0c0d0;
  border-bottom-color: rgba(255, 255, 255, 0.04);
  padding: 12px;
  vertical-align: middle;
}
.arena-table .col-rank {
  width: 48px;
  text-align: center;
}
.arena-table .col-capper {
  min-width: 140px;
}
.arena-table .col-bankroll {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-weight: 600;
  color: #ffffff;
}
.arena-table .col-roi {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-weight: 600;
}
.arena-table .col-units {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
}
.arena-table .col-record {
  color: #7b7b9d;
}
.arena-table .col-winrate {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
}
.arena-capper-link {
  text-decoration: none;
  font-weight: 600;
  color: #ffffff;
  transition: opacity 0.15s;
}
.arena-capper-link:hover {
  opacity: 0.8;
  color: #ffffff;
}
.arena-empty-state {
  padding: 32px;
  text-align: center;
  color: #7b7b9d;
  font-size: 14px;
}
.arena-model-icon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  display: inline-block;
  margin-right: 4px;
}
.arena-model-icon-lg {
  width: 22px;
  height: 22px;
}
.arena-model-icon-xl {
  width: 32px;
  height: 32px;
}
.text-green {
  color: #3ddc84 !important;
}
.text-red {
  color: #e05252 !important;
}
.arena-capper-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #12121c;
  border: 1px solid #1e1e2e;
  border-radius: 12px;
  padding: 20px 24px;
}
.arena-capper-card-avatar {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border: 1px solid #1e1e2e;
  background: #151520;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.arena-capper-card-emoji {
  font-size: 28px;
}
.arena-capper-card-info {
  min-width: 0;
}
.arena-capper-card-name {
  font-family: 'Instrument Sans', -apple-system, sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 2px;
}
.arena-capper-card-tagline {
  font-size: 13px;
  color: #7b7b9d;
  margin-bottom: 8px;
}
.arena-capper-card-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.arena-capper-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.arena-capper-stat-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #555570;
}
.arena-capper-stat-value {
  font-size: 14px;
  font-weight: 600;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  color: #ffffff;
}
.arena-form {
  letter-spacing: 2px;
}
.arena-scout-reasoning {
  font-size: 14px;
  color: #c0c0d0;
  line-height: 1.7;
}
.pick-meta {
  margin-top: 4px;
}
.pick-units {
  font-size: 13px;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  color: #7b7b9d;
}
.arena-about {
  padding: 40px 0 80px;
}
.arena-about-header {
  margin-bottom: 48px;
}
.arena-about-header h1 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 400;
  color: #e2e2e8;
  margin: 0 0 12px;
}
.arena-about-header p {
  font-size: 15px;
  color: #c0c0d0;
  line-height: 1.7;
  max-width: 620px;
}
.arena-about-lede {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem) !important;
  color: #c9a96e !important;
  margin-bottom: 16px !important;
}
.arena-about-section {
  margin-bottom: 48px;
}
.arena-about-section h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #e2e2e8;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #1e1e2e;
}
.arena-about-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.arena-about-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.arena-about-step strong {
  display: block;
  font-size: 15px;
  color: #e2e2e8;
  margin-bottom: 4px;
}
.arena-about-step p {
  font-size: 14px;
  color: #c0c0d0;
  line-height: 1.7;
  margin: 0;
}
.arena-about-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: #c9a96e;
  font-size: 14px;
  font-weight: 700;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  flex-shrink: 0;
}
.arena-about-models {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.arena-about-model-card {
  background: #12121c;
  border: 1px solid #1e1e2e;
  border-radius: 12px;
  padding: 20px;
}
.arena-about-model-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.arena-about-model-name {
  font-size: 16px;
  font-weight: 700;
  color: #e2e2e8;
}
.arena-about-model-id {
  font-size: 11px;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  color: #555570;
}
.arena-about-model-tagline {
  font-size: 13px;
  color: #c9a96e;
  margin: 0 0 8px;
  font-style: italic;
}
.arena-about-model-bio {
  font-size: 13px;
  color: #c0c0d0;
  line-height: 1.6;
  margin: 0;
}
.arena-about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.arena-about-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 14px;
  color: #c0c0d0;
  line-height: 1.7;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.arena-about-list li:last-child {
  border-bottom: none;
}
.arena-about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c9a96e;
}
.arena-about-rules li::before {
  background: #3ddc84;
}
.arena-post-list-page {
  padding-bottom: 80px;
}
.arena-intel-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: start;
}
.arena-date-sidebar {
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}
.arena-date-sidebar::-webkit-scrollbar {
  width: 3px;
}
.arena-date-sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.arena-date-sidebar::-webkit-scrollbar-thumb {
  background: #1e1e2e;
  border-radius: 2px;
}
.arena-date-month {
  margin-bottom: 4px;
}
.arena-date-month .arena-date-month-dates {
  display: none;
}
.arena-date-month.open .arena-date-month-dates {
  display: block;
}
.arena-date-month.open .arena-date-chevron {
  transform: rotate(90deg);
}
.arena-date-month-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #555570;
  padding: 8px;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 4px;
  transition: color 0.15s;
}
.arena-date-month-label:hover {
  color: #e2e2e8;
}
.arena-date-chevron {
  font-size: 10px;
  transition: transform 0.15s;
}
.arena-date-month-dates {
  padding-bottom: 8px;
}
.arena-date-link {
  display: block;
  padding: 4px 8px;
  font-size: 13px;
  color: #7b7b9d;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.15s;
}
.arena-date-link:hover {
  color: #e2e2e8;
  background: rgba(255, 255, 255, 0.035);
}
.arena-date-link.active {
  color: #c9a96e;
  background: rgba(201, 169, 110, 0.12);
}
.arena-date-clear {
  display: block;
  padding: 8px;
  font-size: 12px;
  color: #7b7b9d;
  text-decoration: none;
}
.arena-date-clear:hover {
  color: #e2e2e8;
}
.arena-intel-main {
  min-width: 0;
}
.arena-post-date-group {
  margin-bottom: 32px;
}
.arena-post-date-heading {
  font-family: 'Instrument Sans', -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #555570;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #1e1e2e;
}
.arena-post-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.arena-post-card {
  display: block;
  background: #12121c;
  border: 1px solid #1e1e2e;
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, background 0.15s;
}
.arena-post-card:hover {
  border-color: rgba(201, 169, 110, 0.2);
  background: #151520;
  color: inherit;
  text-decoration: none;
}
.arena-post-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.arena-post-card-capper {
  font-size: 13px;
  font-weight: 600;
  color: #e2e2e8;
  flex: 1;
}
.arena-post-card-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #e2e2e8;
  margin: 0 0 4px;
  line-height: 1.3;
}
.arena-post-card-subtitle {
  font-size: 13px;
  color: #7b7b9d;
  margin: 0;
  line-height: 1.5;
}
.arena-post-card-stats {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  font-size: 12px;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  color: #7b7b9d;
}
.arena-intel-model-row {
  margin-bottom: 20px;
}
.arena-intel-model-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #e2e2e8;
  margin-bottom: 8px;
}
.arena-intel-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.arena-post-card-empty {
  border-style: dashed;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0.5;
}
.arena-post-card-empty:hover {
  border-color: #1e1e2e;
  background: #12121c;
}
.arena-post-card-pending {
  border-style: dashed;
  opacity: 0.5;
  pointer-events: none;
}
.arena-post-card-pending-text {
  font-size: 12px;
  color: #555570;
  font-style: italic;
  margin: 0;
}
.arena-activity-heading {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  margin-bottom: 16px;
}
.arena-feed-viewall {
  display: block;
  text-align: center;
  padding: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #c9a96e;
  text-decoration: none;
  border-top: 1px solid #1e1e2e;
}
.arena-feed-viewall:hover {
  text-decoration: underline;
}
.arena-filter-group {
  margin-bottom: 24px;
}
.arena-filter-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #555570;
  padding: 4px 8px 8px;
  border-bottom: 1px solid #1e1e2e;
  margin-bottom: 4px;
}
.arena-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 0;
}
.arena-pagination-link {
  font-size: 13px;
  font-weight: 600;
  color: #c9a96e;
  text-decoration: none;
}
.arena-pagination-link:hover {
  text-decoration: underline;
}
.arena-pagination-link.disabled {
  color: #555570;
  pointer-events: none;
}
.arena-pagination-info {
  font-size: 12px;
  color: #555570;
}
.arena-picks-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.arena-picks-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.arena-picks-table thead {
  position: sticky;
  top: 0;
  z-index: 1;
}
.arena-picks-table th {
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #555570;
  background: #0a0a0f;
  border-bottom: 1px solid #1e1e2e;
  white-space: nowrap;
}
.arena-picks-th-game {
  text-align: left;
}
.arena-picks-th-capper {
  text-align: center;
  width: 1%;
}
.arena-picks-th-capper .arena-model-icon {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 auto 2px;
}
.arena-picks-th-name {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.arena-picks-row {
  border-bottom: 1px solid #1e1e2e;
}
.arena-picks-row:hover {
  background: rgba(201, 169, 110, 0.03);
}
.arena-picks-row-empty {
  opacity: 0.4;
}
.arena-picks-game {
  padding: 12px;
  white-space: nowrap;
}
.arena-picks-teams {
  display: flex;
  align-items: center;
  gap: 4px;
}
.arena-picks-team-abbr {
  font-weight: 600;
  font-size: 13px;
}
.arena-picks-at {
  color: #555570;
  font-size: 11px;
  margin: 0 2px;
}
.arena-picks-score {
  font-size: 11px;
  color: #555570;
  margin-top: 2px;
}
.arena-picks-cell {
  padding: 8px 12px;
  text-align: center;
  vertical-align: middle;
  min-width: 90px;
}
.arena-picks-cell-win {
  background: rgba(61, 220, 132, 0.06);
}
.arena-picks-cell-loss {
  background: rgba(224, 82, 82, 0.06);
}
.arena-picks-pick {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  color: #e2e2e8;
}
.arena-picks-pick:hover {
  color: #c9a96e;
}
.arena-picks-value {
  font-weight: 600;
  font-size: 12px;
  white-space: nowrap;
}
.arena-picks-units {
  font-size: 10px;
  color: #555570;
  font-weight: 600;
}
.arena-picks-dash {
  color: #555570;
  opacity: 0.3;
}
.arena-post-page {
  max-width: 720px;
}
.arena-post-scoreboard {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 768px) {
  .arena-layout {
    grid-template-columns: 1fr;
  }
  .arena-feed {
    position: static;
    max-height: none;
    order: 2;
  }
  .arena-main {
    order: 1;
  }
  .arena-chart-container {
    height: 220px;
  }
  .arena-table .col-units,
  .arena-table .col-winrate {
    display: none;
  }
  .arena-intel-layout {
    grid-template-columns: 1fr;
  }
  .arena-date-sidebar {
    position: static;
    max-height: none;
  }
  .arena-intel-cards {
    grid-template-columns: 1fr;
  }
  .arena-about-models {
    grid-template-columns: 1fr;
  }
  .arena-post-card-grid {
    grid-template-columns: 1fr;
  }
}
/*# sourceMappingURL=picks.css.map */