@charset "UTF-8";
/* SportsID shared theme styles */
:root {
  --brand:#e11d2e; /* red */
  --ink:#0b1220; /* near-black */
  --muted:#64748b;
  --bg:#f6f7fb;
  --card:#ffffff;
  --line:rgba(15,23,42,.10);
  --shadow:0 16px 40px rgba(16,24,40,.08);
  --shadow2:0 10px 24px rgba(16,24,40,.08);
  --radius:18px;
}

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.container {
  max-width: 1140px;
}

.muted {
  color: var(--muted);
}

/* Better anchor offsets with sticky navbar */
section[id] {
  scroll-margin-top: 90px;
}

/* NAV */
.nav-glass {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brandmark {
  font-weight: 900;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.brandmark .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(225, 29, 46, 0.12);
}

.nav-link {
  font-weight: 700;
  color: #334155 !important;
}

.nav-link:hover {
  color: var(--ink) !important;
}

/* Buttons */
.btn-brand {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  font-weight: 850;
  border-radius: 999px;
  padding: 0.6rem 1rem;
  box-shadow: 0 14px 30px rgba(225, 29, 46, 0.18);
}

.btn-brand:hover {
  filter: brightness(1.06);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(225, 29, 46, 0.28);
}

.btn-brand:active {
  transform: translateY(0);
}

.btn-brand:focus {
  box-shadow: 0 0 0 0.25rem rgba(225, 29, 46, 0.22);
}

.btn-ghost {
  border: 1px solid rgba(15, 23, 42, 0.14);
  color: #0f172a;
  border-radius: 999px;
  font-weight: 850;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.7);
}

.btn-ghost:hover {
  background: #fff;
  color: #0f172a;
  transform: translateY(-1px);
}

.btn-darkpill {
  background: #0b1220;
  border-color: #0b1220;
  color: #fff;
  font-weight: 850;
  border-radius: 999px;
  padding: 0.6rem 1rem;
}

.btn-darkpill:hover {
  filter: brightness(1.05);
  color: #fff;
}

.btn-pill {
  border-radius: 999px;
  font-weight: 800;
  padding: 0.55rem 1rem;
}

/* Sections & layout */
.section {
  padding: 72px 0;
}

.section--white {
  background: #fff;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.section--tint {
  background: radial-gradient(900px 360px at 20% 10%, rgba(225, 29, 46, 0.11), transparent 65%), radial-gradient(900px 360px at 85% 30%, rgba(2, 132, 199, 0.09), transparent 65%), var(--bg);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 950;
  letter-spacing: -0.2px;
  color: var(--ink);
  font-size: 1.05rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(225, 29, 46, 0.1);
  flex: 0 0 auto;
}

.section-title {
  font-weight: 950;
  letter-spacing: -0.3px;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-sub {
  color: var(--muted);
  max-width: 70ch;
}

/* Card primitives */
.cardx {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--line);
  padding: 0.34rem 0.65rem;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #334155;
  background: rgba(255, 255, 255, 0.85);
}

.hr-soft {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 14px 0;
}

/* Pills / tags */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.03);
  color: #334155;
  font-weight: 900;
  font-size: 0.86rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.pill.active {
  background: rgba(225, 29, 46, 0.1);
  border-color: rgba(225, 29, 46, 0.22);
  color: #991b1b;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.8);
  font-weight: 900;
  font-size: 0.8rem;
  color: #334155;
  white-space: nowrap;
}

/* List cards (CMS preview) */
.list-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 22px;
  box-shadow: var(--shadow2);
  overflow: hidden;
}

.list-title {
  padding: 16px 16px 10px;
  font-weight: 950;
  letter-spacing: -0.2px;
}

.list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: transparent;
}

.list-item:hover {
  background: rgba(15, 23, 42, 0.02);
}

/* Info card (right side CMS preview) */
.info-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 22px;
  box-shadow: var(--shadow2);
  padding: 18px;
}

.info-title {
  font-weight: 950;
  letter-spacing: -0.2px;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.info-row {
  display: flex;
  gap: 12px;
  padding: 12px 10px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(15, 23, 42, 0.02);
  margin-top: 10px;
}

.info-ico {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(225, 29, 46, 0.08);
  border: 1px solid rgba(225, 29, 46, 0.18);
  color: #991b1b;
  flex: 0 0 auto;
}

/* Stakeholder cards */
.stake-card {
  background: var(--card);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 22px;
  box-shadow: var(--shadow2);
  padding: 18px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.stake-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.12);
  border-color: rgba(225, 29, 46, 0.18);
}

.stake-ico {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(225, 29, 46, 0.08);
  border: 1px solid rgba(225, 29, 46, 0.18);
  color: #991b1b;
  margin-bottom: 10px;
}

.stake-title {
  font-weight: 950;
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}

.stake-list {
  margin: 0;
  padding-left: 1.15rem;
  color: #475569;
}

.stake-list li {
  margin: 0.25rem 0;
}

/* Partners */
.partners-wrap {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.partner {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 18px;
  padding: 14px 12px;
  text-align: center;
  font-weight: 900;
  color: #334155;
  box-shadow: var(--shadow2);
  opacity: 0.92;
  transition: opacity 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.partner:hover {
  opacity: 1;
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.12);
  border-color: rgba(225, 29, 46, 0.18);
}

@media (max-width: 991px) {
  .partners-wrap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .partners-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* Testimonials */
.quote-card {
  background: var(--card);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 22px;
  box-shadow: var(--shadow2);
  padding: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.quote-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.12);
  border-color: rgba(225, 29, 46, 0.18);
}

.quote-mark {
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 950;
  color: rgba(225, 29, 46, 0.35);
}

.quote-text {
  color: #334155;
  line-height: 1.6;
}

.quote-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 950;
  color: #991b1b;
  background: rgba(225, 29, 46, 0.1);
  border: 1px solid rgba(225, 29, 46, 0.18);
}

.stars {
  color: rgba(15, 23, 42, 0.65);
  margin-top: 10px;
}

/* Mini CTA strip */
.cta-mini {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: radial-gradient(900px 360px at 20% 10%, rgba(225, 29, 46, 0.08), transparent 65%), rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow2);
}

@media (max-width: 575px) {
  .cta-mini {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* Step cards */
.step-card {
  background: var(--card);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 22px;
  box-shadow: var(--shadow2);
  padding: 18px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.12);
  border-color: rgba(225, 29, 46, 0.18);
}

.step-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.1);
  font-weight: 950;
}

.step-ico {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(225, 29, 46, 0.08);
  border: 1px solid rgba(225, 29, 46, 0.18);
  color: #991b1b;
}

.step-title {
  font-weight: 950;
  margin-top: 10px;
}

.step-text {
  margin-top: 4px;
}

/* Final CTA */
.final-cta {
  border-radius: 26px;
  padding: 44px 40px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: radial-gradient(900px 360px at 20% 10%, rgba(225, 29, 46, 0.08), transparent 65%), radial-gradient(900px 360px at 85% 30%, rgba(2, 132, 199, 0.08), transparent 65%), #fff;
  box-shadow: var(--shadow);
}

/* FAQ (accordion polish) */
.accordion-item {
  border: 1px solid rgba(15, 23, 42, 0.1) !important;
  border-radius: 18px !important;
  overflow: hidden;
  box-shadow: var(--shadow2);
}

.accordion-item + .accordion-item {
  margin-top: 12px;
}

.accordion-button {
  font-weight: 950;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  box-shadow: none;
  width: 100%;
  text-align: left;
}

.accordion-button:not(.collapsed) {
  background: rgba(225, 29, 46, 0.06);
  color: #991b1b;
}

.accordion-body {
  color: var(--muted);
}

/* Footer */
.footer-basic {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
}

/* Navbar polish */
.brandtext {
  letter-spacing: 0.4px;
}

.text-brand {
  color: var(--brand);
}

.nav-nowrap .nav-link {
  white-space: nowrap; /* prevents awkward wrapping */
}

.navbar .nav-link {
  font-weight: 700;
  color: rgba(15, 23, 42, 0.82);
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.navbar .nav-link:hover {
  background: rgba(225, 29, 46, 0.08);
  color: var(--ink);
}

.navbar .nav-link.active {
  background: rgba(225, 29, 46, 0.12);
  color: var(--ink);
  border: 1px solid rgba(225, 29, 46, 0.18);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding-top: 0.75rem;
  }
  .navbar-nav {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    padding: 0.5rem;
    box-shadow: 0 18px 60px rgba(2, 6, 23, 0.1);
  }
  .navbar .nav-link {
    border-radius: 14px;
    padding: 0.7rem 0.9rem;
  }
}
/* ═══════════════════════════════════════════
   MOBILE SWIPE CAROUSELS
   On mobile, .swipe-row becomes a horizontal
   scroll-snap strip. Cards peek to signal more.
   Desktop: zero change.
═══════════════════════════════════════════ */
@media (max-width: 767.98px) {
  /* Turn Bootstrap row into horizontal scroll container */
  .swipe-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 16px;
    gap: 12px;
    padding-bottom: 12px; /* room for scrollbar if any */
    /* Hide scrollbar but keep scroll */
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* Bleed slightly past container edge */
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .swipe-row::-webkit-scrollbar {
    display: none;
  }
  /* Each Bootstrap col becomes a fixed-width card slot */
  .swipe-row > [class*=col-] {
    flex: 0 0 78vw !important;
    max-width: 78vw !important;
    width: 78vw !important;
    scroll-snap-align: start;
  }
  /* Last card: full right padding so last card
     doesn't sit flush against the edge */
  .swipe-row > [class*=col-]:last-child {
    padding-right: 32px;
    flex: 0 0 calc(78vw + 16px) !important;
    max-width: calc(78vw + 16px) !important;
  }
  /* Cards must fill their slot height */
  .swipe-row .adv-card,
  .swipe-row .stake-card,
  .swipe-row .quote-card,
  .swipe-row .step-card,
  .swipe-row .blog-post-card {
    height: 100% !important;
    min-height: 160px;
  }
  /* Subtle scroll hint: fade right edge of section */
  .swipe-row-wrap {
    position: relative;
  }
  .swipe-row-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 12px;
    width: 40px;
    background: linear-gradient(to right, transparent, rgba(246, 247, 251, 0.85));
    pointer-events: none;
    z-index: 2;
  }
  .section--white .swipe-row-wrap::after {
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.85));
  }
  /* Swipe hint label */
  .swipe-hint {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(15, 23, 42, 0.45);
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .swipe-hint i {
    font-size: 0.85rem;
  }
}
/* Hide swipe hint on desktop */
@media (min-width: 768px) {
  .swipe-hint {
    display: none !important;
  }
}
@media (max-width: 767.98px) {
  /* Partners: horizontal scroll row */
  .partners-wrap {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .partners-wrap::-webkit-scrollbar {
    display: none;
  }
  .partners-wrap .partner {
    flex: 0 0 42vw !important;
    scroll-snap-align: start;
  }
}/*# sourceMappingURL=theme.css.map */
