:root {
  color-scheme: dark;
  --background: #071426;
  --surface: #0d2235;
  --surface-raised: #16354a;
  --surface-soft: #123047;
  --ink: #f4fbff;
  --muted: #9db7c8;
  --line: #24485f;
  --line-strong: #3b7594;
  --lime: #35c9d5;
  --lime-bright: #69e1dc;
  --lime-ink: #032735;
  --blue: #78bdff;
  --orange: #ff9a66;
  --danger: #ff7688;
  --shadow: 0 24px 60px rgba(0, 0, 0, .35);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(ellipse at 4% 0, rgba(24, 134, 169, .24), transparent 38rem),
    radial-gradient(ellipse at 96% 10%, rgba(58, 50, 180, .2), transparent 35rem),
    radial-gradient(ellipse at 55% 95%, rgba(19, 103, 143, .16), transparent 42rem),
    linear-gradient(180deg, #081224 0%, #0a1a31 48%, var(--background) 100%);
  background-attachment: fixed;
  color: var(--ink);
}

button,
select,
input { font: inherit; }

button { color: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(6, 16, 30, .95);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .24);
  backdrop-filter: blur(18px) saturate(135%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: .055em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px 4px 10px 4px;
  background: linear-gradient(145deg, #69e1dc, #168bb7 58%, #2742a3);
  color: var(--lime-ink);
  font-size: 20px;
  box-shadow: 0 8px 24px rgba(45, 193, 210, .24);
}

.header-tagline {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.header-actions,
.account-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-actions { justify-content: flex-end; }

.text-button,
.account-button {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.text-button {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.account-button {
  border: 0;
  background: var(--lime);
  color: var(--lime-ink);
}

.user-name {
  max-width: 120px;
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-menu-wrap { position: relative; }

.account-menu-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: var(--surface);
  cursor: pointer;
}

.account-avatar {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(24, 167, 214, .14);
}

.account-chevron { color: var(--muted); font-size: 17px; line-height: 1; }

.account-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 9px);
  right: 0;
  display: grid;
  width: min(280px, calc(100vw - 28px));
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: var(--surface-raised);
  box-shadow: var(--shadow);
}

.account-menu-identity { display: grid; gap: 3px; min-width: 0; }
.account-menu-identity span { overflow: hidden; color: var(--muted); font-size: 13px; text-overflow: ellipsis; }
.account-menu-access { color: var(--lime-bright); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.account-menu-action {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface);
  text-align: left;
  cursor: pointer;
}

.sports {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.sport {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.sport.is-active {
  background: linear-gradient(135deg, #173b53, #15485c);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(105, 225, 220, .16);
}

.sport:disabled { cursor: not-allowed; opacity: .45; }

.timezone-select {
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
}

.subnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 9px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 26, 42, .96);
  backdrop-filter: blur(14px);
}

.subnav nav {
  display: flex;
  gap: 5px;
  overflow-x: auto;
}

.subnav-title {
  color: var(--muted);
  font-weight: 700;
}

.special-nav-link {
  padding: 8px 13px;
  border: 1px solid rgba(105, 225, 220, .42);
  border-radius: 999px;
  background: rgba(53, 201, 213, .12);
  color: var(--lime-bright);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.special-nav-link:hover { background: rgba(53, 201, 213, .2); }

.subnav-item {
  padding: 7px 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  white-space: nowrap;
  cursor: pointer;
}

.subnav-item.is-active {
  background: var(--surface-raised);
  color: var(--lime-bright);
}

.source-status,
.connection-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  white-space: nowrap;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(24, 167, 214, .14);
}

.source-status.is-error .status-dot { background: var(--danger); box-shadow: 0 0 0 4px rgba(255, 127, 110, .12); }

.page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
  width: min(1380px, 100%);
  margin: 0 auto;
  padding: 28px clamp(18px, 4vw, 56px) 54px;
}

.page-shell.trend-builder-hidden {
  grid-template-columns: minmax(0, 1fr);
}

.page-shell.trend-builder-hidden .sidebar {
  display: block;
}

.feed-column,
.sidebar { min-width: 0; }

.page-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.eyebrow {
  margin: 0 0 7px;
  color: var(--lime-bright);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .075em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.intro {
  max-width: 700px;
  margin: 9px 0 0;
  color: var(--muted);
}

.page-heading-actions {
  display: flex;
  min-width: 290px;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.basketball-special-link {
  min-height: 42px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid #59ccdc;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(65, 195, 214, .2), rgba(91, 131, 232, .18));
  color: #8de7ef;
  font-weight: 800;
}

.basketball-special-link span {
  color: #d7f8fb;
  font-size: 12px;
}

.basketball-special-link:hover {
  background: #59ccdc;
  color: #07182a;
}

.date-picker {
  display: flex;
  width: max-content;
  max-width: 100%;
  align-self: flex-end;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  white-space: nowrap;
}

.date-picker button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.date-picker button:hover { background: var(--surface-raised); }
.date-picker span { min-width: 118px; text-align: center; font-weight: 700; }

.feed-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--muted);
}

.feed-summary > span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface);
}

.feed-summary strong { color: var(--ink); }

.access-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(24, 167, 214, .38);
  border-radius: 13px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
  backdrop-filter: blur(12px);
}

.access-notice[hidden] { display: none; }
.access-notice p { margin: 3px 0 0; color: var(--muted); }
.access-notice button {
  flex: 0 0 auto;
  padding: 9px 12px;
  border: 0;
  border-radius: 9px;
  background: var(--lime);
  color: var(--lime-ink);
  font-weight: 800;
  cursor: pointer;
}
.access-notice button:disabled { cursor: default; opacity: .62; }

.refresh-button {
  margin-left: auto;
  padding: 7px 10px;
  border: 0;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
}

.discovery-menu {
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(14, 38, 59, .96), rgba(8, 25, 45, .96));
  box-shadow: 0 14px 34px rgba(0, 0, 0, .2);
}

.discovery-sections {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 8px;
  scrollbar-width: thin;
}

.discovery-section {
  position: relative;
  min-height: 40px;
  flex: 0 0 auto;
  padding: 8px 13px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font-weight: 750;
  cursor: pointer;
}

.discovery-section:hover { background: rgba(120, 189, 255, .08); color: var(--ink); }
.discovery-section.is-active { background: linear-gradient(135deg, var(--lime), #56bde7); color: var(--lime-ink); box-shadow: 0 8px 18px rgba(53, 201, 213, .18); }
.discovery-section[hidden] { display: none; }

.discovery-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  background: rgba(5, 19, 35, .48);
}

.discovery-options[hidden] { display: none; }

.discovery-option {
  min-height: 34px;
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(13, 34, 53, .9);
  color: var(--ink);
  cursor: pointer;
}

.discovery-option:hover { border-color: var(--blue); }

.discovery-option.is-active {
  border-color: var(--lime);
  background: rgba(53, 201, 213, .18);
  color: #9af8f1;
}

.discovery-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 10px 14px;
  border-top: 1px solid var(--line);
}

.started-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
}

.started-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.toggle-track {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface-raised);
  transition: background .18s ease, border-color .18s ease;
}

.toggle-track span {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--muted);
  transition: transform .18s ease, background .18s ease;
}

.started-toggle input:checked + .toggle-track {
  border-color: var(--lime);
  background: var(--lime);
}

.started-toggle input:checked + .toggle-track span {
  background: var(--lime-ink);
  transform: translateX(16px);
}

.started-toggle:focus-within .toggle-track {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.feed-message {
  padding: 24px;
  border: 1px dashed var(--line-strong);
  border-radius: 14px;
  color: var(--muted);
  text-align: center;
}

.feed-message[hidden] { display: none; }

.fixture-feed { display: grid; gap: 11px; }

.fixture-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .25);
  backdrop-filter: blur(14px);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.fixture-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .34);
  transform: translateY(-1px);
}

.fixture-header {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
}

.fixture-time { color: var(--muted); font-weight: 700; }

.teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
}

.team { font-weight: 700; }
.versus { color: var(--muted); }

.league {
  padding: 5px 8px;
  border-radius: 8px;
  background: var(--surface-raised);
  color: var(--muted);
  white-space: nowrap;
}

.fixture-data {
  padding: 0 14px 11px 86px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.fixture-data[hidden] { display: none; }

.streak-list {
  display: grid;
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.streak-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 9px 14px;
  background: var(--surface);
}

.streak-number { color: var(--orange); }
.streak-copy { display: flex; align-items: center; gap: 8px; min-width: 0; }
.streak-text { min-width: 0; }

.streak-basis {
  flex: 0 0 auto;
  padding: 3px 7px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.streak-basis.is-team-form {
  border-color: rgba(24, 167, 214, .36);
  background: rgba(24, 167, 214, .09);
  color: var(--lime-bright);
}

.streak-odds { color: var(--orange); font-weight: 700; text-align: right; }

.sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
}

.trend-builder,
.source-panel,
.method-note {
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(130%);
}

.trend-builder {
  padding: 20px;
}

.source-panel,
.method-note { padding: 17px; }

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.panel-heading h2 { margin: 0; font-size: 22px; }
.sliders-icon { color: var(--muted); font-size: 23px; transform: rotate(90deg); }

.builder-field { margin-bottom: 20px; }

.builder-field label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--muted);
}

.builder-field label strong { color: var(--ink); }

input[type="range"] {
  width: 100%;
  accent-color: var(--lime-bright);
  cursor: pointer;
}

.dual-range {
  display: grid;
  gap: 7px;
}

.matches-found {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
  padding: 14px;
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--muted);
}

.projected-odds {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 9px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
}

.projected-odds strong { color: var(--lime-bright); }

.matches-found strong { color: var(--ink); }

.apply-builder {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 13px;
  padding: 13px 15px;
  border: 0;
  border-radius: 13px;
  background: var(--lime);
  color: var(--lime-ink);
  font-weight: 800;
  cursor: pointer;
}

.apply-builder:hover { background: var(--lime-bright); }
.apply-builder.is-applied { box-shadow: inset 0 0 0 2px rgba(5, 75, 105, .18); }
.apply-builder:disabled { cursor: not-allowed; opacity: .45; }

.source-panel .panel-heading { margin-bottom: 10px; }
.source-panel .panel-heading h2 { font-size: 18px; }
.connection-badge { color: var(--lime-bright); }

.source-panel dl { margin: 0; }

.source-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.source-panel dt { color: var(--muted); }
.source-panel dd { margin: 0; font-weight: 700; text-align: right; }
.last-refreshed { margin: 12px 0 0; color: var(--muted); font-size: 13px; }

.method-note strong { display: block; margin-bottom: 6px; }
.method-note p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }

.modal {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(7, 50, 72, .52); backdrop-filter: blur(9px); }
.modal-open { overflow: hidden; }

.auth-card {
  position: relative;
  z-index: 1;
  width: min(430px, 100%);
  padding: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.special-invite-card {
  position: relative;
  z-index: 1;
  width: min(510px, 100%);
  padding: clamp(25px, 5vw, 38px);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(53, 201, 213, .2), transparent 18rem),
    linear-gradient(145deg, #102b45, #0b1d33 72%);
  box-shadow: var(--shadow);
}

.special-invite-kicker {
  margin: 0 0 9px;
  color: var(--lime-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.special-invite-card h2 { margin: 0; font-size: clamp(29px, 6vw, 42px); line-height: 1.05; }
.special-invite-card > p:not(.special-invite-kicker) { margin: 17px 0 25px; color: var(--muted); line-height: 1.65; }
.special-invite-card small { display: block; margin-top: 16px; color: #7899ad; }
.special-invite-actions { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.special-invite-primary,
.special-invite-secondary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 12px;
  font-weight: 900;
  cursor: pointer;
}
.special-invite-primary { background: var(--lime); color: var(--lime-ink); text-decoration: none; }
.special-invite-secondary { border: 1px solid var(--line-strong); background: transparent; color: var(--ink); }

.daily-slip-showcase {
  width: min(1320px, calc(100% - 40px));
  margin: 34px auto 70px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(16, 43, 66, .96), rgba(7, 20, 38, .98));
  box-shadow: var(--shadow);
}

.smart-slips-banner {
  position: relative;
  overflow: hidden;
  width: min(1540px, calc(100% - 48px));
  margin: 22px auto 0;
  min-height: clamp(430px, 34vw, 560px);
  border: 1px solid rgba(96, 202, 220, .3);
  border-radius: 28px;
  background: #071629;
  box-shadow: 0 28px 80px rgba(0, 7, 22, .42);
  isolation: isolate;
}

.smart-slips-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 1px solid rgba(126, 228, 232, .14);
  border-radius: inherit;
  pointer-events: none;
}

.smart-slips-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.smart-slips-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 68% 44%, rgba(31, 151, 222, .08), transparent 34%),
    linear-gradient(90deg, rgba(4, 16, 33, .98) 0%, rgba(4, 16, 33, .94) 31%, rgba(4, 16, 33, .63) 52%, rgba(4, 16, 33, .12) 76%),
    linear-gradient(0deg, rgba(2, 11, 24, .6), transparent 45%);
}

.smart-slips-copy {
  position: relative;
  z-index: 2;
  width: min(680px, 58%);
  padding: clamp(38px, 5vw, 76px);
}

.smart-slips-copy .eyebrow {
  margin-bottom: 14px;
  color: #6ee5e7;
  letter-spacing: .16em;
}

.smart-slips-copy h2 {
  margin: 0 0 20px;
  color: #f5fbff;
  font: 850 clamp(2.35rem, 4.6vw, 4.65rem)/.98 Manrope, sans-serif;
  letter-spacing: -.045em;
}

.smart-slips-copy h2 em {
  color: #7fc9ff;
  font-style: normal;
}

.smart-slips-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 0 0 22px;
  color: #b7c9da;
  font-size: clamp(.98rem, 1.35vw, 1.12rem);
  line-height: 1.6;
}

.smart-slips-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.smart-slips-signals span {
  padding: 8px 11px;
  border: 1px solid rgba(115, 214, 222, .22);
  border-radius: 999px;
  background: rgba(9, 33, 57, .58);
  color: #cbe5ee;
  font-size: .76rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.smart-slips-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.smart-slips-actions a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border-radius: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, filter .18s ease;
}

.smart-slips-actions a:hover { transform: translateY(-2px); }
.smart-slips-primary { gap: 10px; background: linear-gradient(135deg, #69dce3, #73aef9); color: #05243a; }
.smart-slips-primary:hover { filter: brightness(1.08); }
.smart-slips-secondary { border: 1px solid rgba(157, 207, 231, .3); background: rgba(7, 25, 45, .64); color: #eef8ff; backdrop-filter: blur(12px); }
.smart-slips-secondary:hover { border-color: rgba(126, 228, 232, .6); }

.smart-slips-copy small {
  display: block;
  color: #829aae;
  font-size: .72rem;
  line-height: 1.45;
}

.smart-slips-fixtures {
  position: absolute;
  top: 50%;
  right: clamp(22px, 3.4vw, 54px);
  z-index: 2;
  width: min(350px, 31%);
  overflow: hidden;
  border: 1px solid rgba(139, 220, 235, .25);
  border-radius: 18px;
  background: rgba(4, 18, 35, .78);
  box-shadow: 0 22px 55px rgba(0, 6, 18, .4);
  backdrop-filter: blur(16px);
  transform: translateY(-50%);
}

.smart-slips-fixtures[hidden] { display: none; }
.smart-slips-fixtures header { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 14px 16px; border-bottom: 1px solid rgba(139, 220, 235, .14); }
.smart-slips-fixtures header span { color: #eefaff; font-size: .78rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.smart-slips-fixtures header small { color: #7f9bb2; font-size: .66rem; }
.smart-slips-fixtures header i { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: #67e0d4; box-shadow: 0 0 0 5px rgba(103, 224, 212, .1); }
.smart-slips-fixtures article { padding: 14px 16px; border-bottom: 1px solid rgba(139, 220, 235, .11); }
.smart-slips-fixtures article:last-child { border-bottom: 0; }
.smart-slips-fixtures article > span { display: block; margin-bottom: 6px; color: #79dce0; font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.smart-slips-fixtures article > strong { display: block; color: #f3f9fd; font-size: .86rem; line-height: 1.35; }
.smart-slips-fixtures article > strong i { color: #6f8ba2; font-size: .66rem; font-style: normal; }
.smart-slips-fixtures article > small { display: flex; justify-content: space-between; gap: 10px; margin-top: 6px; color: #91a9bc; font-size: .68rem; line-height: 1.35; }
.smart-slips-fixtures article > small b { flex: none; color: #f7c46a; font-size: .78rem; }

@media (max-width: 1100px) {
  .smart-slips-copy { width: 62%; }
  .smart-slips-fixtures { right: 22px; width: 34%; }
}

@media (max-width: 720px) {
  .smart-slips-banner { width: calc(100% - 24px); min-height: 620px; margin-top: 12px; padding-bottom: 4px; border-radius: 20px; }
  .smart-slips-art { object-position: 68% center; }
  .smart-slips-shade {
    background:
      linear-gradient(180deg, rgba(4, 16, 33, .98) 0%, rgba(4, 16, 33, .91) 50%, rgba(4, 16, 33, .42) 77%, rgba(4, 16, 33, .76) 100%),
      linear-gradient(90deg, rgba(4, 16, 33, .92), rgba(4, 16, 33, .22));
  }
  .smart-slips-copy { width: 100%; padding: 32px 24px; }
  .smart-slips-copy h2 { font-size: clamp(2.35rem, 12vw, 3.45rem); }
  .smart-slips-copy > p:not(.eyebrow) { max-width: 95%; }
  .smart-slips-actions { align-items: stretch; flex-direction: column; }
  .smart-slips-actions a { width: 100%; }
  .smart-slips-fixtures { position: relative; top: auto; right: auto; width: auto; margin: 0 20px 20px; transform: none; }
}

.daily-slip-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.daily-slip-heading h2 { margin: 5px 0 10px; font-size: clamp(30px, 5vw, 48px); }
.daily-slip-heading > div > p:last-child { max-width: 760px; margin: 0; color: var(--muted); line-height: 1.6; }
.daily-slip-heading-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.daily-slip-picks-link {
  flex: none;
  padding: 13px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}
.daily-slip-picks-link:hover { border-color: var(--lime); background: rgba(53, 201, 213, .12); }
.daily-slip-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(5, 18, 34, .62);
}
.daily-slip-tabs,
.daily-slip-odds { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; }
.daily-slip-odds > span {
  margin-right: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.daily-slip-tab {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(9, 29, 49, .9);
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}
.daily-slip-tab:hover { border-color: var(--lime); color: var(--ink); }
.football-perfect-tab { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }
.daily-slip-tab.is-active {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--lime-ink);
  box-shadow: 0 7px 22px rgba(53, 201, 213, .2);
}
.daily-slip-odds-slider { display: grid; width: min(310px, 42vw); gap: 4px; }
.daily-slip-odds-slider input { width: 100%; margin: 0; accent-color: var(--lime); cursor: pointer; }
.daily-slip-odds-ticks { display: flex; justify-content: space-between; color: var(--muted); font-size: 10px; font-weight: 850; }
.daily-slip-odds > strong {
  min-width: 48px;
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--lime);
  color: var(--lime-ink);
  font-size: 14px;
  text-align: center;
}
.daily-slip-calendar {
  display: grid;
  grid-template-columns: auto minmax(180px, 260px) auto auto 1fr;
  align-items: end;
  gap: 10px;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(5, 18, 34, .78);
}
.daily-slip-calendar label { display: grid; gap: 6px; color: var(--muted); font-size: 11px; font-weight: 850; text-transform: uppercase; }
.daily-slip-calendar input,
.daily-slip-calendar button {
  min-height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgba(9, 29, 49, .95);
  color: var(--ink);
  font: inherit;
  font-weight: 850;
}
.daily-slip-calendar input { padding: 0 12px; color-scheme: dark; }
.daily-slip-calendar button { min-width: 42px; padding: 0 13px; cursor: pointer; }
.daily-slip-calendar button:disabled { cursor: default; opacity: .42; }
.daily-slip-calendar strong { align-self: center; justify-self: end; color: var(--lime-bright); }
.daily-slip-message { margin-top: 24px; padding: 26px; border: 1px dashed var(--line); border-radius: 15px; color: var(--muted); text-align: center; }
.daily-slip-feed { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 17px; margin-top: 25px; }
.daily-slip-group-heading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 -2px;
  color: var(--ink);
  font-size: 22px;
  letter-spacing: -.02em;
}
.daily-slip-group-heading span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 6px rgba(90, 206, 220, .1), 0 0 22px rgba(90, 206, 220, .5);
}
.daily-slip-group-heading.is-live span {
  background: #66efa5;
  box-shadow: 0 0 0 6px rgba(54, 219, 132, .1), 0 0 22px rgba(54, 219, 132, .45);
}

.daily-slip-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8, 25, 44, .92);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .2);
}
.daily-slip-card::after {
  content: "StreakPond.com";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  color: #d9f6ff;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 950;
  letter-spacing: -.035em;
  line-height: 1;
  opacity: .065;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-24deg);
  white-space: nowrap;
}
.daily-slip-card > * { position: relative; z-index: 1; }
.daily-slip-card.is-won { border-color: rgba(54, 219, 132, .58); box-shadow: 0 16px 44px rgba(25, 193, 105, .13); }
.daily-slip-card.is-lost { border-color: rgba(255, 118, 136, .5); }
.daily-slip-card.is-odds-pending { grid-column: 1 / -1; }
.daily-slip-card.is-odds-pending .daily-slip-status { background: rgba(98, 213, 223, .14); color: #86e8ef; }
.daily-slip-card.is-odds-pending .daily-slip-leg { grid-template-columns: minmax(0, 1fr) 150px; }
.daily-slip-card.is-odds-pending .daily-leg-odds-value strong { color: var(--muted); }
.daily-slip-card.is-odds-pending > footer strong { color: var(--muted); font-size: 12px; }
.daily-slip-card > header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 17px; border-bottom: 1px solid var(--line); }
.daily-slip-card h3 { margin: 4px 0 0; font-size: 20px; }
.daily-slip-date { color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.daily-slip-status { padding: 7px 10px; border-radius: 999px; background: rgba(120, 189, 255, .12); color: var(--blue); font-size: 12px; text-transform: uppercase; }
.daily-slip-card.is-won .daily-slip-status { background: rgba(54, 219, 132, .14); color: #66efa5; }
.daily-slip-card.is-lost .daily-slip-status { background: rgba(255, 118, 136, .14); color: #ff8c9b; }
.daily-slip-legs { display: grid; }
.daily-slip-leg { display: grid; grid-template-columns: minmax(0, 1fr) 100px; gap: 13px; padding: 15px 17px; border-bottom: 1px solid var(--line); border-left: 4px solid #55748a; }
.daily-slip-leg.is-won { border-left-color: #36db84; background: linear-gradient(90deg, rgba(54, 219, 132, .08), transparent 45%); }
.daily-slip-leg.is-lost { border-left-color: var(--danger); background: linear-gradient(90deg, rgba(255, 118, 136, .08), transparent 45%); }
.daily-slip-leg.is-void { border-left-color: #c2af7c; }
.daily-slip-leg strong { line-height: 1.35; }
.daily-slip-leg p { margin: 5px 0; color: #d5e7f2; font-size: 13px; line-height: 1.45; }
.daily-slip-leg small { color: var(--muted); line-height: 1.4; }
.daily-leg-result {
  display: grid;
  width: 92px;
  min-width: 92px;
  align-content: center;
  justify-self: end;
  justify-items: center;
  gap: 7px;
  text-align: center;
  transform: translateX(8px);
}
.daily-leg-odds-value { display: grid; justify-items: center; line-height: 1; }
.daily-leg-odds-value span { color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.daily-leg-odds-value strong { margin-top: 4px; color: var(--ink); font-size: 22px; font-weight: 950; }
.daily-leg-outcome { padding: 5px 8px; border-radius: 999px; color: var(--muted); font-size: 10px; font-weight: 950; letter-spacing: .04em; text-transform: uppercase; }
.daily-leg-score { color: var(--ink); font-size: 17px; }
.daily-slip-leg.is-won .daily-leg-outcome { background: #36db84; color: #042c24; box-shadow: 0 5px 16px rgba(54, 219, 132, .22); }
.daily-slip-leg.is-won .daily-leg-score { color: #66efa5; }
.daily-slip-leg.is-lost .daily-leg-outcome { background: var(--danger); color: #26030a; }
.daily-slip-leg.is-lost .daily-leg-score { color: #ff8c9b; }
.daily-slip-card > footer { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 16px 17px; background: rgba(4, 15, 28, .66); }
.daily-slip-card > footer span { overflow-wrap: anywhere; color: var(--muted); font-size: 12px; }
.daily-slip-card > footer strong { white-space: nowrap; }
.daily-slip-card > footer b { margin-left: 8px; color: var(--lime-bright); font-size: 25px; font-weight: 950; }

.featured-winning-slip { margin: 24px 0 28px; padding: clamp(17px, 3vw, 28px); overflow: hidden; border: 1px solid rgba(54, 219, 132, .58); border-radius: 21px; background: radial-gradient(circle at 100% 0, rgba(54, 219, 132, .2), transparent 42%), linear-gradient(145deg, rgba(10, 62, 54, .86), rgba(7, 25, 39, .95)); }
.featured-winners-viewport { width: 100%; margin-top: 18px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent); mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent); }
.featured-winners-track { display: flex; width: max-content; }
.featured-winners-track.is-scrolling { animation: verified-winners-marquee 42s linear infinite; }
.featured-winners-track.is-scrolling:hover { animation-play-state: paused; }
.featured-winners-group { display: flex; align-items: stretch; gap: 18px; padding-right: 18px; }
.featured-winning-slip .daily-slip-card { width: min(760px, calc(100vw - 92px)); max-width: 760px; flex: 0 0 auto; margin: 0; transform: none; }
.featured-winner-heading { display: flex; align-items: center; justify-content: center; gap: 12px; text-align: center; }
.featured-winner-heading span { padding: 7px 11px; border-radius: 999px; background: #36db84; color: #042c24; font-size: 11px; font-weight: 950; letter-spacing: .08em; }
.featured-winner-heading strong { color: #bff8d6; }
@keyframes verified-winners-marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .featured-winners-track.is-scrolling { animation: none; }
  .featured-winners-viewport { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
}
.daily-slip-leg.is-void { opacity: .62; background: rgba(154, 170, 183, .05); }
.daily-slip-leg.is-void .daily-leg-outcome { background: rgba(154, 170, 183, .14); color: #c0ccd5; }

@media (max-width: 1000px) {
  .daily-slip-feed { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .daily-slip-showcase { width: min(100% - 24px, 1320px); margin-top: 24px; padding: 20px 14px; }
  .daily-slip-heading { align-items: flex-start; flex-direction: column; }
  .daily-slip-heading-actions { width: 100%; justify-content: stretch; }
  .daily-slip-heading-actions .daily-slip-picks-link { flex: 1 1 auto; }
  .daily-slip-controls { align-items: stretch; flex-direction: column; }
  .daily-slip-calendar { grid-template-columns: auto minmax(0, 1fr) auto; align-items: end; }
  .daily-slip-calendar .daily-slip-today { grid-column: 1 / 2; }
  .daily-slip-calendar strong { grid-column: 2 / -1; justify-self: start; }
  .daily-slip-tabs, .daily-slip-odds { width: 100%; }
  .daily-slip-tab { flex: 1 1 auto; }
  .daily-slip-odds-slider { width: min(100%, 420px); }
  .daily-slip-feed { grid-template-columns: 1fr; }
  .daily-slip-picks-link { width: 100%; text-align: center; }
  .daily-slip-card > footer { align-items: flex-start; flex-direction: column; }
  .featured-winner-heading { align-items: flex-start; flex-direction: column; }
}

.modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 9px;
  background: var(--surface-raised);
  cursor: pointer;
}

.auth-kicker { margin: 0 0 6px; color: var(--lime-bright); font-size: 12px; font-weight: 800; letter-spacing: .09em; }
.auth-card h2 { margin: 0; font-size: 29px; }
.auth-description { margin: 7px 0 20px; color: var(--muted); }
.auth-form { display: grid; gap: 14px; }
.auth-form[hidden] { display: none; }
.auth-form label { display: grid; gap: 6px; color: var(--muted); font-size: 14px; font-weight: 700; }
.auth-form input:not([type="checkbox"]) {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--background);
  color: var(--ink);
}
.auth-form .check-label { display: flex; grid-template-columns: auto 1fr; align-items: center; }
.auth-submit {
  min-height: 44px;
  border: 0;
  border-radius: 11px;
  background: var(--lime);
  color: var(--lime-ink);
  font-weight: 800;
  cursor: pointer;
}
.auth-submit:disabled { opacity: .55; }
.auth-link { padding: 0; border: 0; background: transparent; color: var(--blue); text-align: left; cursor: pointer; }
.auth-link.inline { display: inline; }
.auth-form p { margin: 0; color: var(--muted); }
.auth-message { margin-top: 15px; padding: 11px; border-radius: 9px; background: rgba(24, 167, 214, .1); color: var(--ink); }
.auth-message[hidden] { display: none; }
.auth-message.is-error { background: rgba(255, 118, 136, .12); color: #ffb3bd; }
.auth-message a { color: var(--blue); }

.content-page,
.managed-home-content { width: min(1380px, 100%); margin: 0 auto; padding: 34px clamp(18px, 4vw, 56px) 58px; }
.content-page { min-height: 56vh; }
.content-page h1 { margin-top: 10px; }
.content-back { display: inline-flex; margin-bottom: 30px; color: var(--muted); text-decoration: none; }
.content-page-body { max-width: 800px; margin-top: 22px; color: var(--muted); font-size: 17px; line-height: 1.8; white-space: pre-wrap; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; max-width: 900px; margin-top: 30px; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.contact-form label { display: grid; gap: 7px; color: var(--muted); font-weight: 700; }
.contact-form input, .contact-form textarea { width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--background); color: var(--ink); }
.contact-form .wide-field, .contact-form .auth-message { grid-column: 1 / -1; }
.contact-form > button { justify-self: start; min-width: 150px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 16px; }
.section-heading h2 { margin: 0; font-size: 28px; }
.whats-new { margin-bottom: 22px; }
.post-feed, .widget-feed, .advertisement-feed { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.content-card, .promotion-card { padding: 18px; border: 1px solid var(--line); border-radius: 15px; background: var(--surface); }
.content-card h3, .promotion-card h3 { margin: 0 0 8px; }
.content-card p, .promotion-card p { margin: 0; color: var(--muted); line-height: 1.55; }
.content-card a, .promotion-card a { display: inline-flex; margin-top: 13px; color: var(--lime-bright); font-weight: 750; text-decoration: none; }
.promotion-feed { display: grid; gap: 10px; margin-bottom: 20px; }
.promotion-card { border-color: rgba(24, 167, 214, .35); background: linear-gradient(110deg, rgba(118, 218, 243, .22), var(--surface)); }
.widget-feed, .advertisement-feed { margin-top: 14px; }
.site-footer { margin-top: 28px; border-top: 1px solid var(--line); background: #040b14; color: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: clamp(30px, 6vw, 90px); width: min(1380px, 100%); margin: 0 auto; padding: 42px clamp(18px, 4vw, 56px); }
.footer-grid section, .footer-grid nav { display: grid; align-content: start; gap: 13px; }
.footer-grid h2 { margin: 0 0 6px; font-size: 15px; letter-spacing: .04em; }
.footer-grid p { max-width: 310px; margin: 0; color: var(--muted); line-height: 1.55; }
.footer-grid a { color: var(--ink); text-decoration: none; }
.footer-grid a:hover { color: var(--lime-bright); }
.footer-copyright { padding: 17px clamp(18px, 4vw, 56px); border-top: 1px solid var(--line); color: #7892a4; font-size: 13px; }

@media (max-width: 1180px) {
  .topbar { grid-template-columns: auto auto; }
  .sports { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; overflow-x: auto; }
  .header-actions { justify-self: end; }
}

@media (max-width: 980px) {
  .page-shell { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trend-builder { position: static; grid-row: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .post-feed, .widget-feed, .advertisement-feed { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .topbar { grid-template-columns: 1fr auto; gap: 10px; }
  .header-tagline { display: none; }
  .sports { grid-column: 1 / -1; justify-content: flex-start; overflow-x: auto; }
  .source-status { display: none; }
  .page-heading { display: grid; align-items: start; }
  .page-heading-actions { width: 100%; min-width: 0; }
  .basketball-special-link { width: 100%; }
  .date-picker {
    width: max-content;
    max-width: 100%;
    align-self: flex-start;
    justify-content: flex-start;
  }
  .fixture-header { grid-template-columns: 52px minmax(0, 1fr); }
  .league { grid-column: 2; justify-self: start; }
  .streak-row { grid-template-columns: 36px minmax(0, 1fr) auto; }
  .streak-odds { grid-column: 2; text-align: left; }
  .sidebar { grid-template-columns: 1fr; }
  .trend-builder { grid-row: auto; }
  .timezone-label { display: none; }
  .user-name { display: none; }
  .access-notice { align-items: flex-start; flex-direction: column; }
  .discovery-tools { align-items: flex-start; flex-direction: column; }
  .contact-form, .post-feed, .widget-feed, .advertisement-feed { grid-template-columns: 1fr; }
  .contact-form .wide-field { grid-column: auto; }
}

@media (max-width: 480px) {
  .subnav { padding-inline: 14px; }
  .page-shell { padding-inline: 14px; }
  .fixture-header { align-items: start; }
  .teams { display: grid; justify-content: start; }
  .versus { display: none; }
  .refresh-button { width: 100%; margin-left: 0; text-align: left; }
  .started-toggle { width: 100%; margin-left: 0; }
  .streak-row { grid-template-columns: 32px minmax(0, 1fr); }
  .streak-copy { align-items: flex-start; flex-direction: column; gap: 5px; }
  .streak-odds { grid-column: 2; justify-self: start; }
  .footer-grid { grid-template-columns: 1fr; }
  .special-invite-actions { grid-template-columns: 1fr; }
}

/* Professional StreakPond template */
html { scroll-behavior: smooth; }
body { font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif; background: #06111f; }
h1, h2, h3, .brand { font-family: "Manrope", ui-sans-serif, system-ui, sans-serif; }
.professional-container { width: min(1240px, calc(100% - 40px)); margin-inline: auto; }

.site-header.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: block;
  min-height: 0;
  padding: 0;
  border-bottom: 1px solid rgba(56, 94, 124, .55);
  background: rgba(6, 17, 31, .94);
  box-shadow: none;
  backdrop-filter: blur(18px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(1380px, calc(100% - 40px));
  min-height: 74px;
  margin-inline: auto;
}
.site-header .brand { flex: 0 0 auto; font-weight: 800; letter-spacing: .07em; }
.site-header .brand-mark, .footer-brand .brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(145deg, #73e5e3, #3c88ec);
  box-shadow: 0 12px 35px rgba(67, 174, 223, .24);
}
.main-navigation { display: flex; align-items: center; gap: 4px; margin-inline: auto; }
.main-nav-link { padding: 10px 13px; color: #96a9bb; border-radius: 9px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.main-nav-link:hover, .main-nav-link.is-active { color: #f4f8fc; background: #10283d; }
.sports-menu { position: relative; }
.sports-menu > .sports {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 45;
  display: grid;
  min-width: 190px;
  padding: 9px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-5px);
  border: 1px solid #23425a;
  border-radius: 13px;
  background: #081827;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .35);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.sports-menu:hover > .sports, .sports-menu:focus-within > .sports { visibility: visible; opacity: 1; transform: none; }
.sports-menu .sport { justify-content: flex-start; min-height: 40px; padding: 0 12px; border: 0; border-radius: 8px; background: transparent; color: #96a9bb; }
.sports-menu .sport:hover, .sports-menu .sport.is-active { color: #f4f8fc; background: #10283d; }
.mobile-menu-button { display: none; min-height: 42px; padding: 0 15px; color: #f4f8fc; border: 1px solid #294a64; border-radius: 10px; background: transparent; font-weight: 800; }
.site-header .header-actions { flex: 0 0 auto; }
.site-header .timezone-select, .site-header .text-button, .site-header .account-button, .site-header .account-menu-button { min-height: 42px; border-radius: 10px; }
.site-header .account-button { color: #05212d; border-color: #62d5df; background: #62d5df; }

.home-hero.daily-slip-showcase {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 68px max(20px, calc((100% - 1240px) / 2)) 72px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, #081a2d 0%, #071625 80%, #06111f 100%);
  box-shadow: none;
}
.home-hero > *:not(.hero-glow) { position: relative; z-index: 2; width: min(1240px, 100%); margin-inline: auto; }
.hero-glow { position: absolute; z-index: 1; display: block; border-radius: 50%; pointer-events: none; }
.hero-glow-one { width: 620px; height: 620px; top: -360px; right: -80px; background: radial-gradient(circle, rgba(61, 117, 225, .34), transparent 68%); }
.hero-glow-two { width: 520px; height: 520px; top: 110px; left: -390px; background: radial-gradient(circle, rgba(64, 207, 216, .2), transparent 70%); }
.home-hero .daily-slip-heading { align-items: flex-end; }
.home-hero .daily-slip-heading h1 { max-width: 860px; margin: 10px 0 15px; font-size: clamp(40px, 5.5vw, 68px); line-height: 1.04; letter-spacing: -.045em; }
.home-hero .daily-slip-heading h1 em { color: #8cbcf9; font-style: normal; }
.home-hero .daily-slip-heading > div > p:last-child { max-width: 750px; color: #96a9bb; font-size: 17px; line-height: 1.65; }
.home-hero .daily-slip-heading-actions { max-width: 250px; }
.home-hero .daily-slip-picks-link { min-height: 44px; padding: 0 16px; align-items: center; justify-content: center; border-color: #2c526d; background: rgba(8, 29, 48, .66); }
.home-hero .daily-slip-controls { justify-content: space-between; margin-top: 34px; padding: 12px; border-color: #23425a; background: rgba(9, 28, 46, .9); box-shadow: 0 22px 70px rgba(0, 0, 0, .2); }
.home-hero .daily-slip-tab { border: 0; border-radius: 10px; background: transparent; }
.home-hero .daily-slip-tab:hover { background: #102b42; }
.home-hero .daily-slip-tab.is-active { background: #62d5df; color: #06222e; box-shadow: none; }
.home-hero .daily-slip-message { margin-top: 25px; }
.home-hero .daily-slip-feed { margin-top: 25px; }
.home-hero .featured-winning-slip { margin-top: 54px; margin-bottom: 0; }

.home-sports-section, .accumulator-guide { padding: 92px 0; }
.home-sports-section { border-block: 1px solid #19364b; background: #081725; }
.professional-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 28px; }
.professional-section-heading h2, .guide-heading h2 { margin: 7px 0 8px; font-size: clamp(31px, 4vw, 46px); letter-spacing: -.035em; }
.professional-section-heading > p { max-width: 560px; margin: 0; color: #96a9bb; line-height: 1.6; }
.home-sport-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.home-sport-grid a { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding: 20px; border: 1px solid #23425a; border-radius: 14px; background: #0b1d30; color: #f4f8fc; text-decoration: none; transition: transform .2s ease, border-color .2s ease; }
.home-sport-grid a:hover { transform: translateY(-2px); border-color: #3d718f; }
.home-sport-grid a > span { display: grid; place-items: center; width: 43px; height: 43px; border-radius: 11px; background: #102c43; font-size: 20px; }
.home-sport-grid strong, .home-sport-grid small { display: block; }
.home-sport-grid small { margin-top: 4px; color: #96a9bb; line-height: 1.4; }
.home-sport-grid b { color: #62d5df; }

.accumulator-guide { background: #06111f; }
.guide-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.guide-heading { position: sticky; top: 108px; }
.guide-heading > p:not(.eyebrow) { max-width: 520px; margin: 0; color: #96a9bb; line-height: 1.65; }
.guide-cta { display: inline-flex; align-items: center; gap: 9px; min-height: 46px; margin-top: 26px; padding: 0 17px; border: 1px solid #2c526d; border-radius: 10px; color: #d6e5f0; font-weight: 800; text-decoration: none; }
.guide-cta:hover { border-color: #62d5df; color: #62d5df; }
.guide-steps { display: grid; }
.guide-steps article { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 25px 0; border-top: 1px solid #23425a; }
.guide-steps article:last-child { border-bottom: 1px solid #23425a; }
.guide-steps article > span { display: grid; place-items: center; width: 45px; height: 45px; color: #62d5df; border: 1px solid #2f637d; border-radius: 12px; background: #0b2234; font-weight: 800; }
.guide-steps h3 { margin: 1px 0 7px; font-size: 19px; }
.guide-steps p { margin: 0; color: #96a9bb; line-height: 1.6; }

.managed-home-content.updates-section { width: 100%; max-width: none; padding: 88px max(20px, calc((100% - 1240px) / 2)); border-top: 1px solid #19364b; background: #081725; }
.updates-section .whats-new { margin-bottom: 36px; }
.updates-section .section-heading { margin-bottom: 8px; }
.updates-section .section-heading h2 { margin-top: 7px; font-size: clamp(32px, 4vw, 48px); letter-spacing: -.035em; }
.updates-intro { max-width: 650px; margin: 0 0 28px; color: #96a9bb; line-height: 1.6; }
.updates-section .post-feed { grid-template-columns: 1.25fr .75fr .75fr; gap: 14px; }
.updates-section .content-card { min-height: 245px; padding: 24px; border-color: #23425a; border-radius: 16px; background: #0b1d30; }
.updates-section .content-card:first-child { background: linear-gradient(145deg, rgba(36, 96, 142, .48), #0b1d30); }
.updates-section .content-card h3 { margin: 13px 0 10px; font-size: 20px; line-height: 1.35; }
.updates-section .content-card p { color: #96a9bb; }
.updates-section .content-card a { margin-top: 25px; color: #83dfe5; }

.site-footer { margin-top: 0; padding: 64px 0 24px; border-top: 1px solid #19364b; background: #040d18; }
.site-footer .footer-grid { grid-template-columns: 1.5fr repeat(3, .7fr); width: min(1240px, calc(100% - 40px)); padding: 0; gap: 50px; }
.site-footer .footer-brand p { max-width: 340px; color: #96a9bb; line-height: 1.6; }
.site-footer .footer-brand > strong { color: #b9cad7; }
.site-footer .footer-grid h2 { margin: 0 0 8px; font-size: 14px; text-transform: none; }
.site-footer .footer-grid nav { gap: 11px; }
.site-footer .footer-grid nav a { color: #96a9bb; }
.site-footer .footer-grid nav a:hover { color: #62d5df; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding: 22px 0 0; border-top: 1px solid #162f43; color: #6f879c; font-size: 12px; }

@media (max-width: 1050px) {
  .header-inner { gap: 12px; }
  .mobile-menu-button { display: block; margin-left: auto; }
  .main-navigation { position: absolute; top: 74px; left: 20px; right: 20px; display: none; padding: 12px; border: 1px solid #23425a; border-radius: 14px; background: #081827; box-shadow: 0 22px 70px rgba(0, 0, 0, .35); }
  .main-navigation.is-open { display: grid; }
  .sports-menu > .sports { position: static; display: none; margin: 4px 0 0 12px; visibility: visible; opacity: 1; transform: none; box-shadow: none; }
  .sports-menu:hover > .sports, .sports-menu:focus-within > .sports { display: grid; }
  .home-sport-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .updates-section .post-feed { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .professional-container, .header-inner { width: min(100% - 24px, 680px); }
  .header-inner { min-height: 66px; }
  .site-header .timezone-label { display: none; }
  .site-header .text-button { display: none; }
  .main-navigation { top: 66px; }
  .home-hero.daily-slip-showcase { padding: 46px 12px 54px; }
  .home-hero .daily-slip-heading { align-items: flex-start; }
  .home-hero .daily-slip-heading h1 { font-size: clamp(38px, 11vw, 56px); }
  .home-hero .daily-slip-heading-actions { max-width: none; }
  .home-hero .daily-slip-controls { align-items: stretch; }
  .home-sports-section, .accumulator-guide { padding: 68px 0; }
  .professional-section-heading { align-items: flex-start; flex-direction: column; }
  .home-sport-grid, .updates-section .post-feed { grid-template-columns: 1fr; }
  .guide-layout { grid-template-columns: 1fr; gap: 28px; }
  .guide-heading { position: static; }
  .managed-home-content.updates-section { padding: 68px 12px; }
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; width: min(100% - 24px, 680px); }
  .site-footer .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .site-header .account-button { display: none; }
  .site-header .brand { font-size: 14px; }
  .site-header .brand-mark { width: 36px; height: 36px; }
  .home-hero .daily-slip-heading h1 { font-size: 38px; }
  .home-hero .daily-slip-heading > div > p:last-child { font-size: 15px; }
  .site-footer .footer-grid { grid-template-columns: 1fr; }
  .site-footer .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

/* Professional homepage actions and verified-results showcase */
.home-hero .daily-slip-heading-actions {
  display: grid;
  width: min(100%, 520px);
  max-width: 520px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.hero-action {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 13px 14px;
  border: 1px solid #2b5570;
  border-radius: 15px;
  color: #f4f9fd;
  text-decoration: none;
  box-shadow: 0 14px 38px rgba(0, 0, 0, .18);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.hero-action-secondary { background: linear-gradient(145deg, rgba(14, 45, 69, .96), rgba(8, 27, 45, .96)); }
.hero-action-primary { border-color: #57cbd6; background: linear-gradient(145deg, #52ccd7, #74aef5); color: #041c2b; }
.hero-action:hover { transform: translateY(-2px); border-color: #74dce4; }
.hero-action-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: rgba(112, 202, 226, .12); color: #78dfe6; font-size: 20px; font-weight: 950; }
.hero-action-primary .hero-action-icon { background: rgba(3, 28, 42, .12); color: #06283a; }
.hero-action span:not(.hero-action-icon) { display: grid; min-width: 0; gap: 3px; }
.hero-action small { color: #89a9bd; font-size: 11px; font-weight: 800; letter-spacing: .03em; }
.hero-action-primary small { color: #16455e; }
.hero-action strong { font-size: 14px; line-height: 1.25; }
.hero-action > b { font-size: 18px; }

.verified-showcase {
  margin: 58px 0 8px;
  padding: clamp(20px, 3vw, 38px);
  border: 1px solid #28506a;
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(10, 31, 52, .98), rgba(6, 22, 38, .98));
  box-shadow: 0 24px 80px rgba(0, 0, 0, .25);
}
.verified-showcase-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.verified-showcase-heading h2 { margin: 6px 0 8px; font-size: clamp(28px, 3.5vw, 42px); letter-spacing: -.035em; }
.verified-showcase-heading p:last-child { max-width: 620px; margin: 0; color: #96a9bb; line-height: 1.6; }
.verified-showcase-actions { display: grid; justify-items: end; gap: 10px; white-space: nowrap; }
.verified-showcase-actions a { display: inline-flex; align-items: center; gap: 9px; min-height: 42px; padding: 0 14px; border: 1px solid #315d78; border-radius: 11px; color: #d8e8f2; font-weight: 850; text-decoration: none; }
.verified-showcase-actions a:hover { border-color: #62d5df; color: #62d5df; }
.verified-count { color: #73e8a7; font-size: 13px; font-weight: 900; }
.verified-filter-bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 28px 0 20px; padding-top: 18px; border-top: 1px solid #23425a; }
.verified-filters { display: flex; flex-wrap: wrap; gap: 7px; }
.verified-filters button, .verified-navigation button { min-height: 40px; border: 1px solid #315d78; border-radius: 999px; background: #0a2136; color: #a9bdcc; font: inherit; font-size: 13px; font-weight: 850; cursor: pointer; }
.verified-filters button { padding: 0 14px; }
.verified-filters button:hover, .verified-filters button.is-active { border-color: #62d5df; background: #62d5df; color: #062331; }
.verified-navigation { display: flex; align-items: center; gap: 10px; }
.verified-navigation button { display: grid; place-items: center; width: 40px; padding: 0; color: #d8e8f2; font-size: 18px; }
.verified-navigation button:hover:not(:disabled) { border-color: #62d5df; color: #62d5df; }
.verified-navigation button:disabled { opacity: .35; cursor: not-allowed; }
.verified-navigation strong { min-width: 54px; color: #a9bdcc; font-size: 12px; text-align: center; }
.verified-stage { display: grid; width: min(850px, 100%); min-height: 260px; margin-inline: auto; outline: none; touch-action: pan-y; }
.verified-results-grid { width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; gap: 18px; }
.verified-results-grid .verified-feature-card { width: 100%; min-width: 0; }
.verified-results-grid .verified-feature-card:first-child { grid-column: 1 / -1; width: min(850px, 100%); justify-self: center; }
.verified-stage:focus-visible { border-radius: 19px; box-shadow: 0 0 0 3px rgba(98, 213, 223, .3); }
.verified-stage .verified-feature-card { width: 100%; margin: 0; border-color: rgba(54, 219, 132, .5); background: #091d31; box-shadow: 0 22px 60px rgba(0, 0, 0, .3); }
.verified-stage .verified-feature-card > header { padding: 20px 22px; }
.verified-stage .verified-feature-card .daily-slip-leg { padding: 18px 22px; }
.verified-stage .verified-feature-card > footer { padding: 18px 22px; }
.verified-empty { align-self: center; margin: 0; padding: 50px 20px; border: 1px dashed #315d78; border-radius: 17px; color: #9eb2c1; text-align: center; }
.verified-thumbnails { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(205px, 1fr); gap: 10px; margin-top: 16px; overflow-x: auto; padding: 2px 2px 10px; scroll-snap-type: x mandatory; scrollbar-color: #315d78 transparent; }
.verified-thumbnail { display: grid; align-content: start; gap: 7px; min-height: 112px; padding: 14px; scroll-snap-align: start; border: 1px solid #274c65; border-radius: 14px; background: #091b2e; color: #eaf3f8; text-align: left; cursor: pointer; }
.verified-thumbnail:hover, .verified-thumbnail.is-active { border-color: #62d5df; background: #0d2941; }
.verified-thumbnail span { color: #62d5df; font-size: 10px; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.verified-thumbnail strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; }
.verified-thumbnail b { color: #73e8a7; font-size: 15px; }

@media (max-width: 760px) {
  .verified-results-grid { grid-template-columns: 1fr; }
  .verified-results-grid .verified-feature-card:first-child { grid-column: auto; }
  .home-hero .daily-slip-heading-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
  .hero-action { grid-template-columns: 34px minmax(0, 1fr); min-height: 72px; padding: 10px; gap: 8px; }
  .hero-action-icon { width: 34px; height: 34px; border-radius: 10px; font-size: 17px; }
  .hero-action > b, .hero-action small { display: none; }
  .hero-action strong { font-size: 12px; }
  .verified-showcase { margin-top: 42px; padding: 20px 12px; border-radius: 19px; }
  .verified-showcase-heading { align-items: flex-start; flex-direction: column; gap: 16px; }
  .verified-showcase-actions { width: 100%; grid-template-columns: 1fr auto; align-items: center; justify-items: start; }
  .verified-showcase-actions a { justify-self: end; }
  .verified-filter-bar { align-items: stretch; flex-direction: column; gap: 13px; }
  .verified-filters { flex-wrap: nowrap; width: 100%; overflow-x: auto; padding-bottom: 5px; }
  .verified-filters button { flex: 0 0 auto; }
  .verified-navigation { justify-content: space-between; }
  .verified-stage { min-height: 220px; }
  .verified-stage .verified-feature-card > header, .verified-stage .verified-feature-card .daily-slip-leg, .verified-stage .verified-feature-card > footer { padding-inline: 14px; }
  .verified-thumbnails { grid-auto-columns: minmax(175px, 72vw); }
}

@media (max-width: 430px) {
  .home-hero .daily-slip-heading-actions { gap: 8px; }
  .hero-action { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .hero-action-icon { display: none; }
  .hero-action strong { font-size: 12px; }
  .verified-showcase-heading h2 { font-size: 28px; }
  .verified-showcase-actions a { padding-inline: 11px; font-size: 12px; }
  .verified-stage .daily-slip-leg { grid-template-columns: minmax(0, 1fr) 82px; gap: 8px; }
  .verified-stage .daily-leg-result { width: 78px; min-width: 78px; }
  .verified-stage .daily-slip-card > footer { align-items: flex-end; flex-direction: column; }
}

.mega-odds { margin: 20px 0; padding: 22px; border: 1px solid var(--line-strong); border-radius: 16px; background: var(--surface); color: var(--ink); }
.mega-odds[hidden] { display: none; }
.mega-odds > header { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mega-odds h2 { margin: 4px 0 10px; font-size: 28px; }
.mega-odds > p { color: var(--muted); font-size: 13px; line-height: 1.6; }
.mega-odds select { margin-left: 8px; padding: 7px; border: 1px solid var(--line-strong); border-radius: 6px; background: var(--surface-raised); color: var(--ink); }
.mega-slips { display: grid; gap: 12px; }
.mega-slip { min-width: 0; border: 1px solid var(--line); background: var(--surface); border-radius: 10px; overflow: hidden; }
.mega-slip summary { padding: 16px; font-weight: 700; cursor: pointer; line-height: 1.5; overflow-wrap: anywhere; }
.mega-leg { display: grid; gap: 5px; padding: 14px 16px; border-top: 1px solid var(--line); }
.mega-leg small { color: var(--muted); }
.mega-leg p { margin: 0; font-size: 13px; }
.mega-leg b { color: var(--lime-bright); font-size: 13px; }
.mega-slip > button { margin: 12px 16px; }

.football-predictions { margin: 20px 0; padding: 22px; border: 1px solid var(--line-strong); border-radius: 16px; background: var(--surface); color: var(--ink); }
.football-predictions > header { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.football-predictions h2 { margin: 4px 0 10px; font-size: 26px; }
.football-predictions p { line-height: 1.6; font-size: 13px; }
.football-predictions > p, .prediction-coverage p, .prediction-leg small { color: var(--muted); }
.prediction-controls { display: flex; flex-wrap: wrap; gap: 12px; margin: 18px 0; }
.prediction-controls label { display: grid; gap: 6px; font-size: 12px; }
.prediction-controls select { max-width: 100%; background: var(--surface-raised); color: var(--ink); border: 1px solid var(--line-strong); border-radius: 8px; padding: 10px; }
.prediction-list { display: grid; gap: 12px; }
.prediction-slip { min-width: 0; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.football-predictions summary { padding: 14px; font-weight: 600; cursor: pointer; overflow-wrap: anywhere; }
.prediction-leg { display: grid; gap: 6px; padding: 14px; border-top: 1px solid var(--line); }
.prediction-leg p { margin: 0; }
.prediction-leg b { color: var(--lime-bright); font-size: 13px; }
.prediction-slip > button { margin: 14px; }
.prediction-analysis, .prediction-coverage { margin-top: 16px; }
@media (max-width: 600px) { .football-predictions { padding: 14px; } .football-predictions > header { align-items: flex-start; } .prediction-controls { flex-direction: column; } }
