@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-sans: "Rubik", "Segoe UI", sans-serif;
  --font-display: "Rubik", "Segoe UI", sans-serif;
  --surface-page: #f8fafc;
  --surface-card: #ffffff;
  --surface-soft: #f6f7fb;
  --surface-muted: rgba(255, 255, 255, 0.12);
  --text-main: #0f172a;
  --text-soft: #475569;
  --text-muted: #94a3b8;
  --main-blue: #4F6EF9;
  --main-blue-rgb: 79, 110, 249;
  --main-blue-dark: #3F5EEA;
  --main-blue-dark-rgb: 63, 94, 234;
  --secondary: #B8EEC0;
  --secondary-rgb: 184, 238, 192;
  --accent: #95E1D7;
  --accent-rgb: 149, 225, 215;
  --brand-red: var(--main-blue);
  --brand-red-dark: var(--main-blue-dark);
  --brand-ink: #111827;
  --success: #047857;
  --warning: #b45309;
  --danger: #be123c;
  --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 22px 50px rgba(15, 23, 42, 0.09);
  --shadow-strong: 0 28px 70px rgba(15, 23, 42, 0.14);
  --brand-gradient: linear-gradient(180deg, var(--main-blue) 0%, var(--accent) 52%, var(--secondary) 100%);
  --brand-gradient-horizontal: linear-gradient(90deg, var(--main-blue) 0%, var(--accent) 56%, var(--secondary) 100%);
  --brand-gradient-hero: linear-gradient(180deg, rgba(15, 23, 42, 0.14), rgba(15, 23, 42, 0.14)), var(--brand-gradient);
  --brand-avatar-gradient: radial-gradient(circle at top, var(--main-blue) 0%, var(--accent) 55%, var(--secondary) 100%);
}
.main-container{
  padding: 0;
  margin-inline: auto;
  width: 100%;
}

@media (min-width: 64rem) {
  .main-container {
    width: clamp(
      61rem,
      calc(61rem + (100vw - 64rem) * 0.8076923077),
      82rem
    );
  }
}

@media (min-width: 90rem) {
  .main-container {
    width: clamp(
      82rem,
      calc(82rem + (100vw - 90rem)),
      100rem
    );
  }
}
.header-bg-color {
  background: var(--main-blue-dark);
  box-shadow: 0 14px 32px rgba(var(--main-blue-rgb), 0.18);
}

.max-w-7xl {
  max-width: 101rem !important;
}

.site-main {
  min-width: 0;
  padding: 0;
}

.site-breadcrumbs {
  max-width: 101rem;
  margin: 0 auto;
  padding: 1rem 1rem 0;
}

.site-breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: var(--text-soft);
  font-size: 0.84rem;
  line-height: 1.4;
}

.site-breadcrumbs__item + .site-breadcrumbs__item::before {
  content: "/";
  margin-right: 0.5rem;
  color: rgba(100, 116, 139, 0.55);
}

.site-breadcrumbs__link,
.site-breadcrumbs__current {
  display: inline-block;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-breadcrumbs__link {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease;
}

.site-breadcrumbs__link:hover {
  color: var(--brand-red-dark);
}

.site-breadcrumbs__current {
  color: var(--text-main);
  font-weight: 700;
}

.hero-index-bg,
.docs-header {
  background: var(--brand-gradient-hero);
}

.home-hero.hero-index-bg {
  position: relative;
  border-radius: 0 0 1rem 1rem;
  background-color: #07101d;
  background-image:
    linear-gradient(90deg, rgba(7, 16, 29, 0.78) 0%, rgba(7, 16, 29, 0.62) 38%, rgba(7, 16, 29, 0.24) 100%),
    var(--hero-bg-image, none);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 34px 80px rgba(7, 16, 29, 0.28);
  min-height: 50rem;
  position: relative;
}

.home-hero.hero-index-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.home-hero .home-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 5rem 0;
}

.home-hero__copy,
.home-hero__visual,
.home-hero__panel {
  position: relative;
  z-index: 1;
}
.league-name{
  font-weight: 800;
}

.doc-title{
  font-family: var(--font-display);
  font-weight: 800;
  color: transparent;
  background: linear-gradient(180deg, #4f6ef9 0%, #95e1d7 54%, #b8eec0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home-hero .home-hero__title {
  margin-top: 1.2rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: transparent;
  background: linear-gradient(180deg, #4f6ef9 0%, #95e1d7 54%, #b8eec0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 60px;
}

.home-hero .home-hero__lead {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.home-hero__cta-wrap {
  margin-top: 1.65rem;
  max-width: 20rem;
}

.home-hero__cta {
  justify-self: end;
  width: 422px;
  height: 67px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #95e1d7 0%, #75b9ef 40%, #4f6ef9 100%);
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-black);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transform: skewX(-14deg);
  border-radius: 12px;
  box-shadow: 0 16px 32px rgba(79, 110, 249, 0.18);
  gap: 20px;
}

.home-hero__cta:hover {
  transform: translateY(-2px);
  background: #0e84c5;
  box-shadow: 0 22px 40px rgba(18, 145, 215, 0.34);
}

.home-hero__cta:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(18, 145, 215, 0.2),
    0 18px 36px rgba(18, 145, 215, 0.28);
}


.home-hero__cta-label {
  min-width: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.home-hero__panel {
  max-width: 24rem;
  width: 100%;
  margin-left: auto;
}

.home-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 10rem;
}

.home-hero__lottie {
  position: relative;
  display: block;
  width: min(100%, 14rem);
  height: 14rem;
  filter: drop-shadow(0 20px 36px rgba(15, 23, 42, 0.16));
}

.home-hero__panel-shell {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 1.15rem;
  border-radius: 1.5rem;
  background:var(--surface-muted);
  backdrop-filter: blur(18px);
}


.home-hero__panel-head,
.home-hero__panel-footer {
  position: relative;
  z-index: 1;
}

.home-hero__panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.home-hero__panel-title {
  margin-top: 0.7rem;
  max-width: 15ch;
  font-size: 1.32rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.home-hero__panel-status {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.9rem;
  padding: 0.48rem 0.78rem 0.48rem 1.45rem;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.2);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.home-hero__panel-status::before {
  content: "";
  position: absolute;
  left: 0.72rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #34d399;
  box-shadow: 0 0 0 0.22rem rgba(52, 211, 153, 0.16);
}

.home-hero__panel-note {
  position: relative;
  z-index: 1;
  margin-top: 0.8rem;
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  line-height: 1.55;
}

.home-hero__metrics {
  position: relative;
  z-index: 1;
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.home-hero__metric {
  padding: 0.85rem 0.9rem;
  border-radius: 1.05rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.07);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 12px 24px rgba(15, 23, 42, 0.1);
}

.home-hero__metric-value {
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1;
}

.home-hero__metric-label {
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-hero__panel-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.home-hero__panel-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.75rem;
  padding: 0.38rem 0.68rem;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.24);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.68rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.home-sports {
  padding-top: 0.6rem;
}

.home-sports__head {
  gap: 1rem;
}

.home-sports__eyebrow {
  color: var(--brand-red);
}

.home-sports__lead {
  max-width: 42rem;
  margin-top: 0.55rem;
  color: var(--text-soft);
  font-size: 0.97rem;
  line-height: 1.75;
}

.home-sport-card {
  --sport-accent: var(--brand-red);
  --sport-soft: rgba(var(--main-blue-rgb), 0.08);
  --sport-ring: rgba(var(--main-blue-rgb), 0.2);
  position: relative;
  overflow: hidden;
  padding: 1.1rem;
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(var(--accent-rgb), 0.14)),
    #fff;
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow:
    0 18px 34px rgba(15, 23, 42, 0.05),
    0 8px 18px rgba(var(--main-blue-rgb), 0.04);
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}


.home-sport-card::after {
  content: "";
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 0;
  height: 0.28rem;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-red-dark));
  opacity: 0.8;
  transform: scaleX(0.62);
  transform-origin: left center;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.home-sport-card:hover {
  transform: translateY(-6px);
  border-color: var(--sport-ring);
  box-shadow:
    0 30px 54px rgba(15, 23, 42, 0.08),
    0 16px 28px rgba(var(--main-blue-rgb), 0.12);
}

.home-sport-card:hover::before {
  transform: scale(1.08);
  opacity: 1;
}

.home-sport-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.home-sport-card__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 1.85rem;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: rgba(var(--main-blue-rgb), 0.08);
  color: var(--sport-accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(var(--main-blue-rgb), 0.08);
}

.home-sport-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--brand-ink), #1f2937);
  color: #fff;
  font-size: 0.82rem;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.16);
  transition: transform 0.22s ease, background-color 0.22s ease;
}

.home-sport-card:hover .home-sport-card__arrow {
  transform: translateX(2px);
  background: var(--sport-accent);
}

.home-sport-card__media {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.1rem;
  height: 4.1rem;
  margin-top: 1rem;
  border-radius: 1.3rem;
  background: linear-gradient(145deg, var(--brand-red), var(--brand-red-dark));
  color: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 14px 26px rgba(var(--main-blue-rgb), 0.18);
}

.home-sport-card__media::before {
  content: "";
  position: absolute;
  inset: 0.3rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent);
  pointer-events: none;
}

.home-sport-card__media svg {
  width: 2.2rem;
  height: 2.2rem;
  display: block;
  flex: 0 0 auto;
}

.home-sport-card__title {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  color: var(--text-main);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.home-sport-card__text {
  position: relative;
  z-index: 1;
  margin-top: 0.55rem;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}

.home-sport-card__tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.home-sport-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(var(--main-blue-rgb), 0.07);
  color: var(--brand-ink);
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(var(--main-blue-rgb), 0.08);
}

.home-sport-card--football {
  --sport-accent: var(--brand-red);
  --sport-soft: rgba(var(--main-blue-rgb), 0.08);
  --sport-ring: rgba(var(--main-blue-rgb), 0.2);
}

.home-sport-card--hockey {
  --sport-accent: var(--brand-ink);
  --sport-soft: rgba(17, 24, 39, 0.06);
  --sport-ring: rgba(var(--main-blue-dark-rgb), 0.22);
}

.home-sport-card--basketball {
  --sport-accent: var(--brand-red-dark);
  --sport-soft: rgba(var(--main-blue-dark-rgb), 0.08);
  --sport-ring: rgba(var(--main-blue-rgb), 0.22);
}

.home-sport-card--tennis {
  --sport-accent: var(--brand-red);
  --sport-soft: rgba(var(--main-blue-rgb), 0.06);
  --sport-ring: rgba(var(--main-blue-rgb), 0.18);
}

.home-sport-card--mma {
  --sport-accent: var(--brand-ink);
  --sport-soft: rgba(17, 24, 39, 0.08);
  --sport-ring: rgba(var(--main-blue-rgb), 0.24);
}

.home-sport-card--volleyball {
  --sport-accent: var(--brand-red-dark);
  --sport-soft: rgba(17, 24, 39, 0.06);
  --sport-ring: rgba(var(--main-blue-rgb), 0.22);
}

.login-hero {
  box-shadow: 0 34px 80px rgba(var(--main-blue-dark-rgb), 0.14);
}

.login-card-shell {
  position: relative;
  box-shadow: 0 28px 54px rgba(var(--main-blue-rgb), 0.14);
}

.login-card-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.login-card {
  position: relative;
  box-shadow:
    0 22px 48px rgba(var(--main-blue-dark-rgb), 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.login-docs-button {
  border-color: rgba(17, 24, 39, 0.08) !important;
  background: var(--brand-ink);
  color: #fff !important;
  box-shadow: 0 16px 30px rgba(17, 24, 39, 0.14);
}

.login-docs-button:hover {
  border-color: rgba(17, 24, 39, 0.08) !important;
  background: #0b1220;
  color: #fff !important;
  box-shadow: 0 20px 36px rgba(17, 24, 39, 0.18);
}

.login-docs-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(17, 24, 39, 0.12), 0 18px 34px rgba(17, 24, 39, 0.16);
}

.login-submit-button {
  width: 100%;
}


.login-submit-button:focus-visible {
  box-shadow:
    0 0 0 4px rgba(17, 24, 39, 0.12),
    0 18px 28px rgba(var(--main-blue-rgb), 0.16),
    0 12px 24px rgba(17, 24, 39, 0.18);
}

.login-support {
  background: rgba(240, 248, 255, 0.94);
  box-shadow:
    inset 0 0 0 1px rgba(191, 219, 254, 0.78),
    0 14px 26px rgba(56, 189, 248, 0.08);
}

.login-lottie-section {
  max-width: 28rem;
}



.login-telegram-link {
  background: var(--brand-ink);
  box-shadow:
    0 18px 34px rgba(17, 24, 39, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.login-telegram-link:hover {
  background: #0b1220;
  box-shadow:
    0 22px 40px rgba(17, 24, 39, 0.24),
    0 10px 24px rgba(56, 189, 248, 0.08);
  transform: translateY(-1px);
}

.login-telegram-link:focus-visible {
  box-shadow:
    0 0 0 4px rgba(17, 24, 39, 0.12),
    0 18px 34px rgba(17, 24, 39, 0.2);
}

.login-telegram-link__icon {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.login-telegram-link:hover .login-telegram-link__icon {
  background: rgba(255, 255, 255, 0.08);
}

.login-telegram-link__action {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.header-link svg {
  width: 20px;
  height: 20px;
}

@keyframes serve-blink {
  0%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.2;
    transform: translateY(-2px);
  }
}

.serve-icon-blink {
  animation: serve-blink 1s ease-in-out infinite;
}


.site-topbar__inner {
  margin: 0 auto;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-topbar__brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  color: white;
  text-decoration: none;
}
.hero-brand-accent {
    color: #4f6ef9;
    font: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    text-transform: uppercase;
}

.site-topbar__logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border-radius: 1.35rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.site-topbar__brand:hover .site-topbar__logo-wrap {
  transform: translateY(-1px);
}
.site-topbar__logo-wrap img{
  width: 80px;
}
.site-topbar__copy {
  display: block;
  min-width: 0;
}

.site-topbar__kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.62);
}

.site-topbar__title {
  margin-top: 0.28rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.92);
}

.site-topbar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
}

.site-topbar__mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  background: rgba(15, 23, 42, 0.06);
  color: var(--text-main);
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.site-topbar__mobile-toggle:hover {
  transform: translateY(-1px);
  background: rgba(15, 23, 42, 0.09);
}

.site-topbar__mobile-toggle-line {
  display: block;
  width: 1.05rem;
  height: 0.12rem;
  border-radius: 999px;
  background: white;
}

.site-mobile-nav__backdrop,
.site-mobile-nav {
  display: none;
}

.site-topbar__guest-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
}

.site-footer {
  margin-top: 4rem;
  background: #111827;
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__inner {
  max-width: 100rem;
  margin: 0 auto;
  padding: 4.5rem 1.25rem 2rem;
}
.doc-btn{
    justify-self: end;
    width: 250px;
    padding: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #95e1d7 0%, #75b9ef 40%, #4f6ef9 100%);
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-black);
    font-weight: 700;
    font-size: 19px;
    letter-spacing: -0.02em;
    white-space: nowrap;
    border-radius: 12px;
    box-shadow: 0 16px 32px rgba(79, 110, 249, 0.18);
    gap: 20px;
    color: white;
}
.header_color{
      background-color: #07101d;
    background-image: linear-gradient(90deg, rgba(7, 16, 29, 0.78) 0%, rgba(7, 16, 29, 0.62) 38%, rgba(7, 16, 29, 0.24) 100%), var(--hero-bg-image, none);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.account-hero-bg{
  background-color: #07101d;
  background-image: linear-gradient(90deg, rgba(7, 16, 29, 0.78) 0%, rgba(7, 16, 29, 0.62) 38%, rgba(7, 16, 29, 0.24) 100%), url('../img/hero_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.register-hero-bg{
  background-color: #07101d;
  background-image: linear-gradient(90deg, rgba(7, 16, 29, 0.78) 0%, rgba(7, 16, 29, 0.62) 38%, rgba(7, 16, 29, 0.24) 100%), url('../img/register_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.popular-leagues-surface{
  margin-bottom: 20px;
}
.doc-container{
      background: #111827;
}
.doc-content{
      font-weight: 600;
    color: var(--text-muted);
}
.doc-title{
      color: white;
    font-size: 29px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}

.site-footer__brand {
  max-width: 24rem;
}

.site-footer__logo-link {
  display: inline-flex;
  align-items: center;
}

.site-footer__logo {
  width: 140px;
  height: auto;
  display: block;
}

.site-footer__lead {
  margin: 1.5rem 0 0;
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.98rem;
  line-height: 1.8;
}

.site-footer__contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.site-footer__contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #f8fafc;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.site-footer__contact-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--accent-rgb), 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.site-footer__title {
  margin: 0 0 1.2rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.site-footer__link,
.site-footer__bottom-link {
  color: rgba(226, 232, 240, 0.72);
  text-decoration: none;
  transition: color 0.18s ease;
}

.site-footer__link:hover,
.site-footer__bottom-link:hover {
  color: #fff;
}

.site-footer__meta {
  margin-top: 0.25rem;
  color: rgba(148, 163, 184, 0.92);
  font-size: 0.9rem;
  line-height: 1.6;
}

.site-footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.site-footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
}

.site-footer__copyright {
  color: #fff;
  font-weight: 600;
}

.site-footer__socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.site-footer__social:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--accent-rgb), 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.site-footer__note {
  max-width: 52rem;
  margin: 1.5rem 0 0;
  color: rgba(148, 163, 184, 0.88);
  font-size: 0.93rem;
  line-height: 1.8;
}
.site-topbar__cta{
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-black);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.02em;
    white-space: nowrap;
    transform: skewX(-14deg);
    border-radius: 12px;
    box-shadow: 0 16px 32px rgba(79, 110, 249, 0.18);
    gap: 20px;
    padding: 13px;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.gradient-title{
      margin-top: 1.2rem;
    font-family: var(--font-display);
    font-weight: 800;
    color: transparent;
    background: linear-gradient(180deg, #4f6ef9 0%, #95e1d7 54%, #b8eec0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 60px;
}
.site-topbar__cta--ghost{
    background: var(--brand-red-dark);

}
.site-topbar__cta--primary{
    background: linear-gradient(90deg, #95e1d7 0%, #75b9ef 40%, #4f6ef9 100%);
}
.site-user-menu {
  position: relative;
  padding-bottom: 0.7rem;
  margin-bottom: -0.7rem;
}

.site-user-menu::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  width: 18rem;
  height: 0.8rem;
}

.site-user-menu__trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  padding: 0;
  text-decoration: none;
  border-radius: 999px;
  background: transparent;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.site-user-menu__trigger:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.12);
}

.site-user-menu__trigger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(var(--main-blue-rgb), 0.12), 0 20px 42px rgba(15, 23, 42, 0.12);
}

.site-user-menu__avatar {
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 999px;
  object-fit: cover;
  display: block;
  background: #e2e8f0;
}

.site-user-menu__avatar--fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-avatar-gradient);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-user-menu__chevron {
  position: absolute;
  right: -0.15rem;
  bottom: -0.15rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--text-soft);
  font-size: 0.65rem;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
  transition: transform 0.18s ease, color 0.18s ease;
}

.site-user-menu.is-menu-open .site-user-menu__chevron,
.site-user-menu:focus-within .site-user-menu__chevron {
  transform: rotate(180deg);
  color: var(--brand-red);
}

.site-user-menu__panel {
  position: absolute;
  top: calc(100% + 0.3rem);
  right: 0;
  z-index: 30;
  width: min(18rem, calc(100vw - 1.5rem));
  padding: 0.68rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.18);
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.site-user-menu.is-menu-open .site-user-menu__panel,
.site-user-menu:focus-within .site-user-menu__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.site-user-menu__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.2rem 0.2rem 0.75rem;
}

.site-user-menu__panel-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  object-fit: cover;
  background: #e2e8f0;
  flex-shrink: 0;
}

.site-user-menu__panel-avatar--fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-avatar-gradient);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-user-menu__identity {
  min-width: 0;
}

.site-user-menu__name {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-user-menu__email {
  margin-top: 0.24rem;
  font-size: 0.84rem;
  color: var(--text-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-user-menu__links {
  display: grid;
  gap: 0.45rem;
}

.site-user-menu__link,
.site-user-menu__logout {
  appearance: none;
  width: 100%;
  border: 0;
  display: flex;
  align-items: center;
  gap: 0.72rem;
  padding: 0.28rem 0.82rem;
  border-radius: 0.95rem;
  background: #f8fafc;
  color: var(--text-main);
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.12);
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.site-user-menu__link:hover,
.site-user-menu__logout:hover,
.site-user-menu__link.is-active {
  transform: translateY(-1px);
  background: rgba(var(--accent-rgb), 0.18);
  color: var(--brand-red-dark);
  box-shadow:
    0 14px 28px rgba(var(--main-blue-rgb), 0.12),
    inset 0 0 0 1px rgba(var(--main-blue-rgb), 0.08);
}

.site-user-menu__logout {
  margin-top: 0.55rem;
  cursor: pointer;
  text-align: left;
}

.site-user-menu__logout:hover {
  background: var(--brand-ink);
  color: #fff;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
}

.site-user-menu__link-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.82rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  color: currentColor;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.site-user-menu__link:hover .site-user-menu__link-icon,
.site-user-menu__link.is-active .site-user-menu__link-icon {
  background: rgba(var(--main-blue-rgb), 0.12);
  color: var(--brand-red-dark);
}

.site-user-menu__logout:hover .site-user-menu__link-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.site-user-menu__link-text {
  min-width: 0;
  display: grid;
  gap: 0.14rem;
}

.site-user-menu__link-title {
  font-size: 0.9rem;
  font-weight: 800;
}

.site-user-menu__link-note {
  font-size: 0.75rem;
  color: var(--text-soft);
}

.site-user-menu__link:hover .site-user-menu__link-note,
.site-user-menu__link.is-active .site-user-menu__link-note {
  color: rgba(var(--main-blue-dark-rgb), 0.8);
}

.site-user-menu__logout:hover .site-user-menu__link-note {
  color: rgba(255, 255, 255, 0.7);
}

.site-sportsbar {
  box-shadow: 0 14px 32px rgba(var(--main-blue-rgb), 0.14);
}

.site-sportsbar__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.site-sportsbar__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.site-sportsbar__list::-webkit-scrollbar {
  display: none;
}

.site-sportsbar__item {
  position: relative;
  list-style: none;
}

.site-sportsbar__item--dropdown {
  padding-bottom: 0.9rem;
  margin-bottom: -0.9rem;
}

.site-sportsbar__item--dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 1rem;
}

.site-sportsbar__menu-link {
  appearance: none;
  border: 0;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  min-height: auto;
  padding: 0.2rem 0;
  background: transparent;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.site-sportsbar__menu-link:hover,
.site-sportsbar__menu-link:focus-visible,
.site-sportsbar__menu-link.is-active {
  color: #fff;
  opacity: 1;
}

.site-sportsbar__menu-link:focus-visible {
  outline: none;
}

.site-sportsbar__menu-link--accent {
  color: #95e1d7;
}

.site-sportsbar__menu-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  flex: 0 0 auto;
  color: currentColor;
}
.swagger-ui .scheme-container{
  z-index: 0!important;
}
.site-sportsbar__menu-icon i {
  font-size: 0.92rem;
}

.site-sportsbar__menu-icon svg {
  width: 0.95rem;
  height: 0.95rem;
}

.site-sportsbar__menu-caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.66rem;
  transition: transform 0.18s ease;
}

.site-sportsbar__item--dropdown:hover .site-sportsbar__menu-caret,
.site-sportsbar__item--dropdown:focus-within .site-sportsbar__menu-caret {
  transform: rotate(180deg);
}

.site-sportsbar__dropdown {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 50%;
  z-index: 40;
  width: min(14rem, calc(100vw - 2rem));
  padding: 0.65rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -10px) scale(0.98);
  transform-origin: top center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-sportsbar__item--dropdown:hover .site-sportsbar__dropdown,
.site-sportsbar__item--dropdown:focus-within .site-sportsbar__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.site-sportsbar__dropdown-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.25rem;
}
.site-sportsbar__sport-link svg path{
  fill: var(--text-main);
}
.site-sportsbar__sport-link .site-sportsbar__sport-icon_1_path{
  stroke: var(--text-main)  ;
}

.site-sportsbar__sport-link {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  padding: 0.32rem 0.72rem;
  border-radius: 0.82rem;
  background: transparent;
  box-shadow: none;
  color: var(--text-main);
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.site-sportsbar__sport-link:hover,
.site-sportsbar__sport-link:focus-visible,
.site-sportsbar__sport-link.is-active {
  background: rgba(var(--accent-rgb), 0.14);
  color: var(--brand-red-dark);
}

.site-sportsbar__sport-link:focus-visible {
  outline: none;
}

.site-sportsbar__sport-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 1.5rem;
  color: var(--brand-ink);
}

.site-sportsbar__sport-icon svg {
  width: 1rem;
  height: 1rem;
}

.site-sportsbar__sport-title {
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
}

.account-page {
  max-width: 101rem;
  margin: 0 auto;
  padding: 0.5rem 0.5rem 1.6rem;
}

.account-layout {
  display: grid;
  gap: 1rem;
}

.account-sidebar {
  min-width: 0;
  align-self: start;
}

.account-sidebar__inner {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(226, 232, 240, 0.92);
}

.account-sidebar__profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.25rem;
}

.account-sidebar__avatar {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.account-sidebar__avatar--fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-avatar-gradient);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.account-sidebar__identity {
  min-width: 0;
}

.account-sidebar__name {
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.account-sidebar__login {
  margin-top: 0.28rem;
  color: var(--text-soft);
  font-size: 0.84rem;
}

.account-sidebar__nav {
  display: grid;
  gap: 0.55rem;
}

.account-sidebar__form {
  margin-top: 0.2rem;
}

.account-sidebar__link {
  display: grid;
  grid-template-columns: 2.7rem minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  padding: 0.8rem 0.85rem;
  border-radius: 1.25rem;
  text-decoration: none;
  color: inherit;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(226, 232, 240, 0.86);
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.account-sidebar__link:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--main-blue-rgb), 0.22);
}

.account-sidebar__link.is-active {
  background: rgba(var(--main-blue-rgb), 0.05);
  border-color: rgba(var(--main-blue-rgb), 0.24);
  box-shadow: inset 0 0 0 1px rgba(var(--accent-rgb), 0.24);
}

.account-sidebar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.06);
  color: var(--brand-ink);
  font-size: 1rem;
}

.account-sidebar__link.is-active .account-sidebar__icon {
  background: rgba(var(--accent-rgb), 0.24);
  color: var(--brand-red-dark);
}

.account-sidebar__copy {
  min-width: 0;
  display: grid;
  gap: 0.16rem;
}

.account-sidebar__title {
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
}

.account-sidebar__note {
  color: var(--text-soft);
  font-size: 0.8rem;
  line-height: 1.35;
}

.account-sidebar__logout {
  width: 100%;
  appearance: none;
  border: 1px solid rgba(226, 232, 240, 0.86);
  display: grid;
  grid-template-columns: 2.7rem minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  padding: 0.8rem 0.85rem;
  border-radius: 1.25rem;
  cursor: pointer;
  text-align: left;
  background: rgba(15, 23, 42, 0.98);
  color: #fff;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.account-sidebar__logout:hover {
  transform: translateY(-1px);
  border-color: rgba(239, 68, 68, 0.26);
  background: #1e293b;
}

.account-sidebar__logout .account-sidebar__icon {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.account-sidebar__logout .account-sidebar__title,
.account-sidebar__logout .account-sidebar__note {
  color: inherit;
}

.account-sidebar__logout .account-sidebar__note {
  color: rgba(255, 255, 255, 0.68);
}

.account-shell {
  min-width: 0;
  overflow: hidden;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.95);
}

.account-hero {
  position: relative;
  overflow: hidden;
  padding: 1.55rem;
  color: #fff;
}

.account-hero__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(48px);
  pointer-events: none;
}

.account-hero__orb--one {
  top: -2.5rem;
  right: -2.8rem;
  width: 14rem;
  height: 14rem;
  background: rgba(255, 255, 255, 0.1);
}

.account-hero__orb--two {
  bottom: -2rem;
  left: 28%;
  width: 10rem;
  height: 10rem;
  background: rgba(var(--secondary-rgb), 0.22);
}

.account-hero__main {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.account-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.account-avatar {
  width: 5.25rem;
  height: 5.25rem;
  min-width: 5.25rem;
  min-height: 5.25rem;
  flex: 0 0 5.25rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.account-avatar--empty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.account-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.account-title {
  margin: 0.55rem 0 0;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.05;
}

.account-meta {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.82);
}

.account-meta__text {
  font-size: 0.92rem;
}

.account-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.account-chip--link:hover {
  background: rgba(255, 255, 255, 0.18);
}

.account-hero-stats {
  display: grid;
  gap: 0.8rem;
}

.account-hero-stat {
  padding: 1rem 1.1rem;
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.account-hero-stat__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.account-hero-stat__value {
  margin-top: 0.55rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.account-hero-stat__inline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 500;
}

.account-hero-stat__note {
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.account-progress {
  margin-top: 0.9rem;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.account-progress__bar {
  height: 100%;
  border-radius: inherit;
  background: #fbbf24;
}

.account-content {
  display: grid;
  gap: 1.5rem;
  padding: 1.15rem;
}

.account-flashes {
  display: grid;
  gap: 0.7rem;
}

.account-flash {
  padding: 0.95rem 1rem;
  border-radius: 1.1rem;
  font-size: 0.92rem;
  font-weight: 500;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.account-flash--success {
  background: #ecfdf5;
  color: #065f46;
  border-color: rgba(16, 185, 129, 0.18);
}

.account-flash--error {
  background: #fff1f2;
  color: #9f1239;
  border-color: rgba(225, 29, 72, 0.18);
}

.account-flash--default {
  background: #f8fafc;
  color: #334155;
}

.account-grid {
  display: grid;
  gap: 1.5rem;
}

.account-card {
  padding: 1.35rem;
  border-radius: 1.75rem;
  background: var(--surface-card);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.account-card--dark {
  background: #0f172a;
  color: #e2e8f0;
  border-color: rgba(51, 65, 85, 0.92);
}

.account-card--token {
  padding: 1.55rem;
  min-height: 100%;
}

.account-card__head {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.account-card__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.account-card__title {
  margin: 0.45rem 0 0;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-main);
}

.account-card__lead {
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.65;
}

.account-card--dark .account-card__eyebrow,
.account-card--dark .account-card__lead {
  color: rgba(226, 232, 240, 0.72);
}

.account-card--dark .account-card__title {
  color: #fff;
}

.account-card code {
  padding: 0.14rem 0.38rem;
  border-radius: 0.55rem;
  background: rgba(15, 23, 42, 0.06);
  color: inherit;
}

.account-card--dark code {
  background: rgba(255, 255, 255, 0.08);
}

.account-stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: var(--brand-red);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.account-subgrid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.account-mini-card {
  padding: 1rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.88);
  margin-top: 20px;
  border: 1px solid #e4e4e4;

}

.account-mini-card__label {
  font-size: 0.92rem;
  color: var(--text-soft);
}

.account-mini-card__value {
  margin-top: 0.5rem;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--text-main);
}

.account-mini-card__text {
  margin-top: 0.65rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.account-stat-list {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.65rem;
}

.account-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.account-stat-row strong {
  color: var(--text-main);
}

.account-sports {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.account-sport-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

.account-token-box {
  margin-top: 1.25rem;
  padding: 1.2rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.account-token-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.56);
}

.account-token-value {
  margin-top: 0.8rem;
  padding: 1rem 1.05rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.88rem;
  color: #fff;
  word-break: break-all;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.account-token-value.is-copied {
  animation: token-copied-flash 0.7s ease;
}

.account-token-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.account-meta-list {
  margin-top: 1.15rem;
  display: grid;
  gap: 0.8rem;
}

.account-usage-list {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.85rem;
}

.account-usage-row {
  display: grid;
  gap: 0.45rem;
}

.account-usage-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.account-usage-meta strong {
  color: var(--text-main);
}

.account-bar {
  height: 0.45rem;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.account-bar__fill {
  height: 100%;
  border-radius: inherit;
  background: #10b981;
}

.account-bar__fill.is-warning {
  background: #f59e0b;
}

.account-bar__fill.is-danger {
  background: #e11d48;
}

.account-bar__fill.is-muted {
  background: #94a3b8;
}

.account-form {
  margin-top: 1.2rem;
  display: grid;
  gap: 1.15rem;
}

.account-form-grid {
  display: grid;
  gap: 1rem;
}

.account-field {
  display: grid;
  gap: 0.5rem;
}

.account-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-soft);
}

.account-error {
  font-size: 0.85rem;
  color: var(--danger);
}

.account-info-box {
  padding: 0.9rem 1rem;
  border-radius: 1.25rem;
  background: #f8fafc;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.5;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.12);
}

.account-checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.account-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.account-button {
  appearance: none;
  border: 1px solid rgba(226, 232, 240, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  border-radius: 1rem;
  text-decoration: none;
  cursor: pointer;
  background: #fff;
  color: var(--text-main);
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.account-button:hover {
  transform: translateY(-1px);
  border-color: rgba(190, 18, 60, 0.2);
}

.account-button--primary {
  background: var(--brand-red);
  color: #fff;
  border-color: rgba(var(--main-blue-rgb), 0.3);
}

.account-button--primary:hover {
  background: var(--brand-red-dark);
}

.account-button--dark {
  background: var(--brand-ink);
  color: #fff;
  border-color: rgba(51, 65, 85, 0.92);
}

.account-button--dark:hover {
  background: #1f2937;
}

.account-button--light {
  background: rgba(255, 255, 255, 0.98);
  color: var(--brand-ink);
}

.account-button.is-copying {
  opacity: 0.85;
  transform: scale(0.985);
}

.account-button.is-copied {
  background: #dcfce7;
  color: #166534;
  animation: copy-success-pop 0.38s ease;
}

.account-button.is-copy-error {
  background: #ffe4e6;
  color: #9f1239;
  animation: copy-success-pop 0.38s ease;
}

.account-mini-card--muted {
  margin-top: 1rem;
  background: #f8fafc;
}


@keyframes copy-success-pop {
  0% {
    transform: scale(0.96);
  }
  65% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes token-copied-flash {
  0% {
    background: rgba(255, 255, 255, 0.06);
  }
  50% {
    background: rgba(187, 247, 208, 0.18);
  }
  100% {
    background: rgba(255, 255, 255, 0.06);
  }
}

.account-section {
  display: grid;
  gap: 1.25rem;
}

.account-users-card {
  gap: 1.4rem;
}

.account-users-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.8rem;
}

.account-users-toolbar__item {
  display: grid;
  gap: 0.4rem;
  min-width: 10rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.account-users-select {
  min-height: 2.85rem;
  padding: 0.7rem 0.9rem;
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.94);
  background: #fff;
  color: var(--text-main);
  font-size: 0.86rem;
  font-weight: 600;
}

.account-users-table-wrap {
  overflow-x: auto;
  border-radius: 1.4rem;
  border: 1px solid rgba(226, 232, 240, 0.82);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94));
}

.account-users-table {
  width: 100%;
  min-width: 64rem;
  border-collapse: separate;
  border-spacing: 0;
}

.account-users-table th,
.account-users-table td {
  padding: 1rem 1.05rem;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid rgba(226, 232, 240, 0.82);
}

.account-users-table th {
  background: rgba(248, 250, 252, 0.96);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.account-users-table th a {
  color: inherit;
  text-decoration: none;
}

.account-users-table tbody tr {
  transition: background-color 0.18s ease;
}

.account-users-table tbody tr:hover {
  background: #f8fafc;
}

.account-users-table tbody tr:last-child td {
  border-bottom: 0;
}

.account-users-cell {
  display: grid;
  gap: 0.24rem;
}

.account-users-cell strong {
  color: var(--text-main);
  font-size: 0.89rem;
}

.account-users-cell span {
  color: var(--text-soft);
  font-size: 0.78rem;
}

.account-users-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.8rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-users-badge--active {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
}

.account-users-badge--inactive {
  background: rgba(148, 163, 184, 0.14);
  color: #475569;
}

.account-users-badge--trial {
  width: fit-content;
  background: rgba(var(--main-blue-rgb), 0.1);
  color: var(--brand-red);
}

.account-users-empty {
  text-align: center;
  color: var(--text-soft);
}

.account-users-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.account-users-pagination__pages {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.account-users-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0.45rem 0.75rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #fff;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.84rem;
}

.account-users-page-link.is-active {
  background: var(--brand-red);
  border-color: rgba(var(--main-blue-rgb), 0.35);
  color: #fff;
}

.tester-workspace {
  display: grid;
  gap: 1.5rem;
}

.tester-panel {
  padding: 1.35rem;
  border-radius: 1.75rem;
  background: var(--surface-card);
  border: 1px solid rgba(226, 232, 240, 0.92);
}

.tester-panel--controls {
  background: #fffdfb;
}

.tester-panel--response {
  background: #f4f7ff;
}

.tester-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.tester-panel__head--response {
  align-items: center;
}

.tester-panel__title {
  margin: 0.4rem 0 0;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
}

.tester-form {
  margin-top: 1.35rem;
  display: grid;
  gap: 1rem;
}

.tester-field {
  display: grid;
  gap: 0.45rem;
}

.tester-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.tester-input {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.82rem 1rem;
  border: 0;
  border-radius: 1.15rem;
  background: #f8fafc;
  color: var(--text-main);
  font-size: 0.96rem;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.12);
  outline: none;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.tester-input:focus {
  box-shadow: inset 0 0 0 1px rgba(var(--main-blue-rgb), 0.35), 0 0 0 4px rgba(var(--main-blue-rgb), 0.08);
}

.tester-input[readonly],
.tester-input:disabled {
  color: #475569;
}

.tester-input--mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.9rem;
}

.tester-token-row {
  display: grid;
  gap: 0.8rem;
}

.tester-copy-button {
  min-width: 7rem;
}

.tester-endpoint-meta {
  display: grid;
  gap: 0.8rem;
  padding: 0.2rem 0 0.2rem;
}

.tester-endpoint-description {
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.7;
}

.tester-auto-params {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tester-auto-param {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.tester-params {
  display: grid;
  gap: 0.9rem;
  padding-top: 0.4rem;
}

.tester-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding-top: 0.35rem;
}

.tester-submit.is-loading {
  opacity: 0.8;
  pointer-events: none;
}

.tester-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.tester-status--muted {
  background: rgba(15, 23, 42, 0.06);
  color: var(--text-soft);
}

.tester-status--success {
  background: rgba(22, 163, 74, 0.12);
  color: #166534;
}

.tester-status--error {
  background: rgba(225, 29, 72, 0.12);
  color: #9f1239;
}

.tester-response-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.tester-request-preview {
  margin-top: 1.3rem;
  padding: 1rem 1.15rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.75);
  color: #64748b;
  font-size: 0.96rem;
  line-height: 1.6;
  word-break: break-all;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.12);
}

.tester-response-body {
  margin-top: 1rem;
  min-height: 38rem;
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: inset 0 0 0 1px rgba(191, 219, 254, 0.32);
  overflow: hidden;
}

.tester-response-code {
  margin: 0;
  height: 100%;
  min-height: 38rem;
  padding: 1.3rem 1.4rem;
  overflow: auto;
  color: #0f172a;
  font-size: 1rem;
  line-height: 1.7;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.tester-json-placeholder {
  color: #64748b;
  font-style: normal;
}

.tester-json-key {
  color: #0284c7;
}

.tester-json-string {
  color: #f59e0b;
}

.tester-json-number {
  color: #16a34a;
}

.tester-json-boolean {
  color: #7c3aed;
}

.tester-json-null {
  color: #94a3b8;
}

.tester-empty {
  padding: 1.1rem 1.15rem;
  border-radius: 1.2rem;
  background: #f8fafc;
  color: var(--text-soft);
  line-height: 1.7;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.12);
}

.account-section__head {
  display: grid;
  gap: 0.6rem;
}

.account-section__title {
  margin: 0.4rem 0 0;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
}

.account-section__text {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

.account-analytics-grid {
  display: grid;
  gap: 1.5rem;
}

.account-chart-card {
  padding-bottom: 1.1rem;
}

.account-chart-card__head {
  display: grid;
  gap: 0.9rem;
}

.account-chart-card__title {
  margin: 0.35rem 0 0;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
}

.account-inline-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.account-inline-metric {
  display: grid;
  gap: 0.12rem;
  min-width: 5.6rem;
  padding: 0.7rem 0.8rem;
  border-radius: 1.1rem;
  background: #f8fafc;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.1);
}

.account-inline-metric strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-main);
}

.account-inline-metric span {
  font-size: 0.78rem;
  color: var(--text-soft);
}

.account-chart-shell {
  position: relative;
  min-height: 21rem;
  margin-top: 1.25rem;
  padding: 1rem 0.25rem 0 0;
}

.account-chart-shell--compact {
  min-height: 19rem;
}

.account-chart-shell canvas {
  width: 100% !important;
  height: 100% !important;
}

.account-chart-empty {
  position: absolute;
  inset: 4.5rem 0.75rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.2rem;
  border-radius: 1.4rem;
  background: rgba(248, 250, 252, 0.92);
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.65;
  text-align: center;
}

.account-chart-empty--static {
  position: static;
  min-height: 13rem;
  inset: auto;
}

.account-activity-card__head {
  gap: 1rem;
}

.account-activity-summary {
  display: grid;
  gap: 0.7rem;
}

.account-activity-summary__item {
  display: grid;
  gap: 0.18rem;
  padding: 0.85rem 0.95rem;
  border-radius: 1.15rem;
  background: #f8fafc;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.1);
}

.account-activity-summary__item span {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.account-activity-summary__item strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-main);
}

.account-activity-timeline {
  margin-top: 1.3rem;
  display: grid;
  gap: 0.85rem;
}

.activity-event {
  display: grid;
  grid-template-columns: 4.4rem 1.1rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: flex-start;
}

.activity-event__time {
  padding-top: 0.3rem;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}

.activity-event__rail {
  position: relative;
  min-height: 100%;
}

.activity-event__rail::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -1rem;
  left: 50%;
  width: 0.28rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #eef2ff;
}

.activity-event:last-child .activity-event__rail::before {
  bottom: 0.45rem;
}

.activity-event__dot {
  position: relative;
  z-index: 1;
  display: block;
  width: 1.05rem;
  height: 1.05rem;
  margin: 0.42rem auto 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 4px #0f172a, 0 0 0 6px #fff;
}

.activity-event__body {
  padding: 0.95rem 1rem;
  border-radius: 1.3rem;
  background: #f8fafc;
  border: 1px solid rgba(226, 232, 240, 0.88);
}

.activity-event__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
}

.activity-event__endpoint {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text-main);
  word-break: break-word;
}

.activity-event__sport {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.78rem;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.12);
  color: #0f766e;
  font-size: 0.86rem;
  font-weight: 800;
}

.activity-event__query {
  margin-top: 0.55rem;
  color: #94a3b8;
  font-size: 0.96rem;
  font-weight: 700;
  word-break: break-word;
}

.activity-event__meta {
  margin-top: 0.6rem;
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 600;
}

.account-tickets-head {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.account-note {
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.6;
}

.account-ticket-list {
  margin-top: 1.25rem;
  display: grid;
  gap: 1rem;
}

.account-ticket {
  padding: 1rem;
  border-radius: 1.45rem;
  background: #f8fafc;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.12);
}

.account-ticket__top {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.account-ticket__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.account-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.account-pill--kind {
  background: #fff;
  color: var(--text-soft);
  border: 1px solid rgba(226, 232, 240, 0.88);
}

.account-pill--new {
  background: #e0f2fe;
  color: #0369a1;
}

.account-pill--progress {
  background: #fef3c7;
  color: #b45309;
}

.account-pill--resolved {
  background: #dcfce7;
  color: #15803d;
}

.account-pill--closed {
  background: #e2e8f0;
  color: #475569;
}

.account-ticket__title {
  margin: 0.8rem 0 0;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text-main);
}

.account-ticket__message {
  margin-top: 0.65rem;
  white-space: pre-line;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.65;
}

.account-ticket__date {
  color: var(--text-muted);
  font-size: 0.88rem;
  white-space: nowrap;
}

.account-ticket-reply {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 1.15rem;
  background: #ecfdf5;
  color: #065f46;
  box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.12);
}

.account-ticket-reply__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #047857;
}

.account-ticket-reply__body {
  margin-top: 0.55rem;
  white-space: pre-line;
  font-size: 0.92rem;
  line-height: 1.65;
}

.account-empty {
  padding: 2.2rem 1.25rem;
  border-radius: 1.45rem;
  background: #f8fafc;
  color: var(--text-soft);
  text-align: center;
  font-size: 0.94rem;
  line-height: 1.6;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.12);
}

.cabinet-input,
.cabinet-file-input,
.cabinet-select,
.cabinet-textarea {
  appearance: none;
  width: 100%;
  border: 0;
  outline: none;
  border-radius: 1rem;
  background: #fff;
  color: var(--text-main);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.2), 0 10px 22px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.cabinet-input,
.cabinet-select {
  min-height: 3rem;
  padding: 0.8rem 1rem;
}

.cabinet-textarea {
  min-height: 9rem;
  padding: 0.9rem 1rem;
  resize: vertical;
}

.cabinet-file-input {
  padding: 0.8rem 1rem;
  background: #f8fafc;
}

.cabinet-file-input::file-selector-button {
  margin-right: 0.9rem;
  border: 0;
  border-radius: 0.85rem;
  padding: 0.65rem 0.95rem;
  background: var(--brand-red);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
}

.cabinet-input:focus,
.cabinet-file-input:focus,
.cabinet-select:focus,
.cabinet-textarea:focus {
  box-shadow: inset 0 0 0 1px rgba(var(--main-blue-rgb), 0.35), 0 0 0 4px rgba(var(--main-blue-rgb), 0.1);
}

.cabinet-checkbox {
  width: 1rem;
  height: 1rem;
  accent-color: var(--brand-red);
}

.support-hero {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
  color: #fff;
}


.support-hero__main {
  position: relative;
  display: grid;
  gap: 1.35rem;
}

.support-hero__profile {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.support-hero__avatar {
  width: 5.2rem;
  height: 5.2rem;
  min-width: 5.2rem;
  min-height: 5.2rem;
  flex: 0 0 5.2rem;
  border-radius: 999px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.support-hero__avatar--fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-avatar-gradient);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
}

.support-hero__title {
  margin: 0.55rem 0 0;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.05;
}

.support-hero__lead {
  margin-top: 0.9rem;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.97rem;
  line-height: 1.7;
}

.support-hero__chips {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.support-hero__stats {
  display: grid;
  gap: 0.8rem;
}

.support-hero__stat {
  padding: 1rem 1.1rem;
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.support-hero__stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.support-hero__stat-value {
  margin-top: 0.55rem;
  font-size: 1.2rem;
  font-weight: 800;
}

.support-hero__stat-note {
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  line-height: 1.6;
}

.support-layout {
  display: grid;
  gap: 1.5rem;
}

.support-panel {
  padding: 1.35rem;
  border-radius: 1.75rem;
  background: var(--surface-card);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.support-panel--form {
  background: #fffaf8;
}

.support-panel__head {
  display: grid;
  gap: 0.75rem;
}

.support-type-grid {
  display: grid;
  gap: 0.8rem;
}

.support-type-card {
  padding: 1rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(226, 232, 240, 0.86);
}

.support-type-card__icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--main-blue-rgb), 0.12);
  color: var(--brand-red);
  font-size: 1rem;
}

.support-type-card__title {
  margin-top: 0.8rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-main);
}

.support-type-card__text {
  margin-top: 0.45rem;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.support-tips {
  display: grid;
  gap: 0.7rem;
}

.support-tip {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  border-radius: 1.15rem;
  background: #fff;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
  border: 1px solid rgba(226, 232, 240, 0.88);
}

.support-tip i {
  color: var(--success);
  margin-top: 0.12rem;
}

.support-side-card {
  padding: 1.15rem;
  border-radius: 1.45rem;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.88);
}

.support-side-card + .support-side-card {
  margin-top: 1rem;
}

.support-side-card--dark {
  background: #0f172a;
  color: #fff;
}

.support-side-card--dark .account-card__eyebrow {
  color: rgba(226, 232, 240, 0.56);
}

.support-side-card__title {
  margin: 0.45rem 0 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
}

.support-side-card--dark .support-side-card__title {
  color: #fff;
}

.support-metric-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

.support-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.support-metric__value {
  color: var(--text-main);
  font-size: 0.95rem;
}

.support-checklist {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.7rem;
  color: rgba(226, 232, 240, 0.8);
  font-size: 0.92rem;
  line-height: 1.65;
}

.support-shortcuts {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.support-shortcut {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  border-radius: 1.1rem;
  text-decoration: none;
  background: #f8fafc;
  color: var(--text-main);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.12);
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.support-shortcut:hover {
  transform: translateY(-1px);
  background: #fff4f4;
  color: var(--danger);
  border-color: rgba(239, 68, 68, 0.2);
}

.support-history {
  padding: 1.35rem;
  border-radius: 1.75rem;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.support-history__head {
  display: grid;
  gap: 0.7rem;
}

.support-ticket-list {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
}

.support-ticket {
  padding: 1rem;
  border-radius: 1.4rem;
  background: #f8fafc;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.12);
}

.faq-shell {
  display: grid;
  gap: 1.5rem;
}

.faq-hero {
  position: relative;
  overflow: hidden;
  padding: 2rem 2rem 1.75rem;
  color: #fff;
}

.faq-hero::before,
.faq-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.18;
}

.faq-hero::before {
  width: 20rem;
  height: 20rem;
  top: -10rem;
  right: -3rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.62), transparent 62%);
}

.faq-hero::after {
  width: 15rem;
  height: 15rem;
  bottom: -7rem;
  left: -2rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34), transparent 60%);
}

.faq-hero__top,
.faq-hero__search-row,
.faq-hero__chips {
  position: relative;
  z-index: 1;
}

.faq-hero__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}

.faq-hero__copy {
  min-width: 0;
}

.faq-hero__eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.faq-hero__title {
  margin: 0.7rem 0 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.faq-hero__lead {
  margin: 1rem 0 0;
  max-width: 47rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.02rem;
  line-height: 1.75;
}

.faq-hero__badge {
  min-width: 15.5rem;
  padding: 1.2rem 1.4rem;
  border-radius: 1.55rem;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.faq-hero__badge small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.faq-hero__badge strong {
  display: block;
  margin-top: 0.8rem;
  font-size: 2.05rem;
  line-height: 1;
  font-weight: 800;
}

.faq-hero__search-row {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.faq-hero__search-box {
  position: relative;
  display: block;
}

.faq-hero__search-icon {
  position: absolute;
  top: 50%;
  left: 1.15rem;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
}

.faq-hero__search-input {
  width: 100%;
  min-height: 3.7rem;
  padding: 0 1.15rem 0 3.2rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.98rem;
  outline: none;
  backdrop-filter: blur(10px);
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-hero__search-input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.faq-hero__search-input:focus {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.faq-hero__actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.faq-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.55rem;
  padding: 0.9rem 1.45rem;
  border-radius: 1.35rem;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 800;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.faq-hero__button:hover {
  transform: translateY(-1px);
}

.faq-hero__button--light {
  background: #fff;
  color: var(--brand-red);
}

.faq-hero__button--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.faq-hero__chips {
  margin-top: 1.1rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.faq-hero__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.72rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 1.5rem;
  align-items: start;
}

.faq-card {
  display: grid;
  gap: 1.2rem;
}

.faq-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  background: rgba(248, 250, 252, 0.92);
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.8);
}

.faq-item[open] {
  background: #fff;
  border-color: rgba(var(--accent-rgb), 0.18);
}

.faq-item__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 1.05rem 1.15rem;
}

.faq-item__summary::-webkit-details-marker {
  display: none;
}

.faq-item__question {
  color: var(--brand-ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.faq-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  color: var(--brand-ink);
  background: rgba(226, 232, 240, 0.7);
  flex: 0 0 auto;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
  background: rgba(239, 68, 68, 0.12);
}

.faq-item__answer {
  padding: 0 1.15rem 1.15rem;
  color: var(--slate-600);
  line-height: 1.8;
}

.faq-empty {
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  color: var(--slate-500);
  background: rgba(248, 250, 252, 0.95);
  box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.85);
}

.faq-empty--compact {
  padding: 0.95rem 1rem;
}

.faq-empty--hidden {
  display: none;
}

.faq-contact__note {
  margin: 0;
  color: var(--slate-600);
  line-height: 1.75;
}

.faq-contact__list {
  display: grid;
  gap: 0.85rem;
}

.faq-contact__item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 1.1rem;
  text-decoration: none;
  color: inherit;
  background: rgba(248, 250, 252, 0.96);
  box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.86);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-contact__item:hover {
  transform: translateY(-1px);
  border-color: rgba(239, 68, 68, 0.18);
}

.faq-contact__item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 1rem;
  color: var(--brand-ink);
  background: rgba(239, 68, 68, 0.1);
  flex: 0 0 auto;
}

.faq-contact__item-copy {
  display: grid;
  gap: 0.2rem;
}

.faq-contact__item-copy strong {
  color: var(--brand-ink);
  font-size: 1rem;
  line-height: 1.4;
}

.faq-contact__item-label {
  color: var(--slate-500);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-contact__footer {
  padding-top: 0.25rem;
}

.odds-row {
  border: 0 !important;
}

.games-sidebar {
  min-width: 0;
}

.frontend-auth-field:focus {
  border-color: rgba(var(--main-blue-rgb), 0.52);
  box-shadow: 0 0 0 4px rgba(var(--main-blue-rgb), 0.15);
}

.frontend-consent-checkbox {
  width: 1rem;
  height: 1rem;
  margin-top: 0.3rem;
  flex: 0 0 1rem;
  accent-color: var(--main-blue);
}

.legal-page-content p + p {
  margin-top: 1rem;
}

.brand-inline-link {
  color: var(--brand-red-dark);
  transition: color 0.18s ease;
}

.brand-inline-link:hover {
  color: var(--brand-red);
}

.brand-live-badge,
.brand-chip {
  background: rgba(var(--main-blue-rgb), 0.1);
  color: var(--brand-red-dark);
}

.brand-soft-panel {
  background: rgba(var(--accent-rgb), 0.14);
  border-color: rgba(var(--main-blue-rgb), 0.16);
}

.brand-soft-panel__label {
  color: var(--brand-red-dark);
}

.brand-soft-panel__value {
  color: var(--brand-ink);
}

.brand-fill-home {
  background: var(--main-blue);
}

.brand-fill-away {
  background: var(--accent);
}

.games-filter-input {
  border: 1px solid rgba(209, 213, 219, 1);
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--text-main);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.games-filter-input::placeholder {
  color: rgba(71, 85, 105, 0.72);
}

.games-filter-input:focus {
  outline: none;
  background: #fff;
  border-color: rgba(var(--main-blue-rgb), 0.52);
  box-shadow: 0 0 0 4px rgba(var(--main-blue-rgb), 0.14);
}

.games-action-button {
  background: var(--brand-ink);
  color: #fff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
  transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.games-action-button:hover {
  background: var(--brand-red-dark);
  box-shadow: 0 18px 34px rgba(var(--main-blue-rgb), 0.2);
}

.games-tabs .tab-btn {
  color: #4b5563;
  border-color: transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.games-tabs .tab-btn:hover {
  color: var(--brand-ink);
}

.games-tabs .tab-btn.is-active {
  color: var(--brand-red-dark);
  border-color: var(--brand-red);
}

.games-pagination__current {
  background: rgba(var(--accent-rgb), 0.14);
  border-color: rgba(var(--main-blue-rgb), 0.3);
  color: var(--brand-red-dark);
  box-shadow: inset 0 0 0 1px rgba(var(--main-blue-rgb), 0.06);
}

.popular-leagues-surface {
  overflow: hidden;
}

.popular-leagues-row {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.popular-leagues-row::-webkit-scrollbar {
  display: none;
}

.popular-league-card {
  min-width: 13rem;
  box-shadow: inset 0 0 0 1px rgba(var(--main-blue-rgb), 0.04);
}

.popular-league-card:hover {
  transform: translateY(-1px);
}

.popular-league-card__logo {
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 2.75rem;
  padding: 0.35rem;
}

.game-detail-back {
  transition: color 0.18s ease;
}

.game-detail-back:hover {
  color: var(--brand-red-dark);
}

.game-tabs {
  box-shadow: inset 0 0 0 1px rgba(var(--main-blue-rgb), 0.08);
}

.game-tabs .g-tab {
  color: #374151;
}

.game-tabs .g-tab:hover {
  background: rgba(var(--accent-rgb), 0.18);
  color: var(--brand-ink);
}

.game-tabs .g-tab.is-active {
  background: #fff;
  color: var(--brand-red-dark);
  box-shadow: 0 10px 20px rgba(var(--main-blue-rgb), 0.14);
}
.main-title{
  font-family: var(--font-display);
  font-weight: 800;
  color: black;
  font-size: 60px;
  line-height: 1.5;
}
.main-color{
  background: #f0f0f0;
}
.site-sportsbar__menu-link {
  font-size: 20px;
  font-weight: 500;
}

.site-sportsbar__sport-link {
  font-size: 0.94rem;
}
.phone_hand_container{
  position: absolute;
  bottom: 0;
  right: 10%;
}
.phone_hand_container img{
 width: 550px;
}
.phone_hand_container_login{
  position: absolute;
  bottom: 0;
  left: 10%;
}
.phone_hand_container_login img{
 width: 350px;
}
.mob-svgs-block{
      display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}
.mob-svgs-block svg{
  width: 200px;
  height: auto;
}

body.has-guest-gate-open {
  overflow: hidden;
}

.match-loading-gate {
  position: fixed;
  inset: 0;
  z-index: 1500;
  pointer-events: none;
}

.match-loading-gate.is-visible {
  pointer-events: auto;
}

.match-loading-gate__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  background:
    linear-gradient(180deg, rgba(7, 16, 29, 0.76), rgba(7, 16, 29, 0.88)),
    rgba(10, 14, 24, 0.72);
  backdrop-filter: blur(7px);
  transition: opacity 0.24s ease;
}

.match-loading-gate.is-visible .match-loading-gate__overlay {
  opacity: 1;
}

.match-loading-gate__panel {
  width: min(26rem, calc(100vw - 1rem));
  padding: 2.2rem 1.6rem 2rem;
  border-radius: 1.9rem;
  background: rgba(34, 34, 36, 0.96);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.34);
  text-align: center;
  color: #fff;
}

.match-loading-gate__spinner {
  position: relative;
  width: 4.75rem;
  height: 4.75rem;
  margin: 0 auto 1.35rem;
}

.match-loading-gate__spinner span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 0.2rem solid transparent;
  border-top-color: #95e1d7;
  border-right-color: rgba(79, 110, 249, 0.9);
  animation: match-loading-spin 1.05s linear infinite;
}

.match-loading-gate__spinner span:nth-child(2) {
  inset: 0.55rem;
  border-top-color: rgba(149, 225, 215, 0.6);
  border-right-color: rgba(79, 110, 249, 0.7);
  animation-duration: 0.85s;
  animation-direction: reverse;
}

.match-loading-gate__spinner span:nth-child(3) {
  inset: 1.1rem;
  border-top-color: rgba(149, 225, 215, 0.95);
  border-right-color: rgba(79, 110, 249, 0.55);
  animation-duration: 0.7s;
}

.match-loading-gate__title {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.02em;
}

.match-loading-gate__text {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
  line-height: 1.5;
}

@keyframes match-loading-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.guest-match-gate {
  position: fixed;
  inset: 0;
  z-index: 1400;
  pointer-events: none;
}

.guest-match-gate.is-visible {
  pointer-events: auto;
}

.guest-match-gate__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.guest-match-gate.is-visible .guest-match-gate__overlay {
  opacity: 1;
}

.guest-match-gate__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 12, 20, 0.62), rgba(8, 12, 20, 0.8)),
    rgba(10, 14, 24, 0.58);
  backdrop-filter: blur(7px);
}

.guest-match-gate__panel {
  position: relative;
  z-index: 1;
  display: none;
  opacity: 0;
  transform: translateY(1.5rem) scale(0.965);
  transition: opacity 0.34s ease, transform 0.34s ease;
}

.guest-match-gate__panel.is-active {
  display: block;
}

.guest-match-gate.is-visible .guest-match-gate__panel.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.guest-match-gate__panel--lead {
  width: min(34.75rem, calc(100vw - 1.5rem));
  padding: 2.35rem 3.45rem 2.45rem;
  border-radius: 2rem;
  background: #323131;
  color: #fff;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.42);
}

.guest-match-gate__panel--pricing {
  width: min(112rem, calc(100vw - 1rem));
}

.guest-match-gate__close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.guest-match-gate__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5rem;
  height: 0.125rem;
  border-radius: 999px;
  background: #c7f8d3;
}

.guest-match-gate__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.guest-match-gate__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.guest-match-gate__lead-copy {
  text-align: center;
}

.guest-match-gate__lead-title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 0.98;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.02em;
  color: #fff;
}

.guest-match-gate__lead-title span {
  display: block;
  margin-top: 0.25rem;
  color: #9ee8d7;
}

.guest-match-gate__form {
  margin-top: 2rem;
}

.guest-match-gate__field {
  margin-bottom: 0.7rem;
}

.guest-match-gate__input,
.guest-match-gate__submit,
.guest-match-gate__tariff-price {
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
}

.guest-match-gate__input {
  width: 100%;
  border: 0;
  background: #fbfbfc;
  color: #0f172a;
  height: 3rem;
  padding: 0 1.35rem;
  font-size: 0.96rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.guest-match-gate__input::placeholder {
  color: #8a8a96;
}

.guest-match-gate__input:focus {
  outline: none;
  box-shadow: 0 0 0 0.22rem rgba(149, 225, 215, 0.28);
}

.guest-match-gate__input.is-invalid,
.guest-match-gate__checkbox.is-invalid {
  box-shadow: 0 0 0 0.22rem rgba(255, 123, 123, 0.24);
}

.guest-match-gate__field-error,
.guest-match-gate__status {
  min-height: 1rem;
  padding: 0.35rem 0.1rem 0;
  font-size: 0.78rem;
  line-height: 1.35;
  color: #ffb3b3;
}

.guest-match-gate__status {
  color: #b9f5d2;
}

.guest-match-gate__status.is-error {
  color: #ffb3b3;
}

.guest-match-gate__status:empty,
.guest-match-gate__field-error:empty,
.guest-match-gate__pricing-status:empty {
  display: none;
}

.guest-match-gate__submit {
  width: 100%;
  border: 0;
  margin-top: 0.4rem;
  padding: 0.95rem 1.25rem;
  background: linear-gradient(90deg, #9ee8d7 0%, #5f86ff 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.guest-match-gate__submit:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.guest-match-gate__submit.is-loading {
  opacity: 0.76;
  cursor: wait;
}

.guest-match-gate__consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  margin-top: 0.85rem;
}

.guest-match-gate__checkbox {
  width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
  accent-color: #95e1d7;
}

.guest-match-gate__consent-text {
  font-size: 0.72rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.55);
}

.guest-match-gate__consent-text a {
  color: #7ea0ff;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
}

.guest-match-gate__pricing-shell {
  position: relative;
  overflow: hidden;
  padding: 2rem 2.25rem 2.4rem;
  border-radius: 2.25rem;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(43, 43, 44, 0.98), rgba(30, 30, 31, 0.98));
  color: #fff;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.44);
}

.guest-match-gate__pricing-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(97, 128, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 128, 255, 0.12) 1px, transparent 1px),
    linear-gradient(45deg, rgba(149, 225, 215, 0.07), transparent 32%, rgba(255, 99, 71, 0.06));
  background-size: 6rem 6rem, 6rem 6rem, 100% 100%;
  opacity: 0.55;
  pointer-events: none;
}

.guest-match-gate__pricing-header,
.guest-match-gate__pricing-note,
.guest-match-gate__pricing-grid,
.guest-match-gate__pricing-cta {
  position: relative;
  z-index: 1;
}

.guest-match-gate__pricing-header {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.5rem;
  align-items: center;
}

.guest-match-gate__pricing-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 6rem;
  border-radius: 1.85rem;
  background: #353535;
}

.guest-match-gate__pricing-brand img {
  width: 4rem;
  height: auto;
}

.guest-match-gate__pricing-title {
  margin: 0;
  text-align: center;
  font-size: clamp(2.3rem, 4vw, 4.25rem);
  line-height: 1;
  font-weight: 800;
  font-style: italic;
}

.guest-match-gate__pricing-note {
  max-width: 78rem;
  margin: 2rem auto 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.45;
}

.guest-match-gate__pricing-status {
  margin: 0 0 0.8rem;
  color: #9ee8d7;
  font-weight: 700;
}

.guest-match-gate__pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.guest-match-gate__tariff-card {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  min-height: 33rem;
  padding: 1.75rem 1.6rem 1.55rem;
  border-radius: 2rem;
  background: rgba(48, 48, 49, 0.96);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.guest-match-gate__tariff-card.is-highlighted {
  background: linear-gradient(180deg, #4f6ef9 0%, #93d4ff 100%);
}

.guest-match-gate__tariff-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 3.65rem;
  padding: 0.6rem 1.8rem;
  border-radius: 999px;
  background: rgba(20, 20, 22, 0.92);
  color: #9ee8d7;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.guest-match-gate__tariff-card.is-highlighted .guest-match-gate__tariff-badge {
  background: #fff;
  color: #4f6ef9;
}

.guest-match-gate__tariff-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.guest-match-gate__tariff-row span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
  line-height: 1.25;
}

.guest-match-gate__tariff-row strong {
  max-width: 50%;
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.25;
  text-align: right;
  font-weight: 700;
}

.guest-match-gate__tariff-price {
  margin-top: auto;
  padding: 1rem 1.2rem;
  background: linear-gradient(90deg, #9ee8d7 0%, #4f6ef9 100%);
  color: #fff;
  font-size: 1.55rem;
  font-weight: 800;
  text-align: center;
}

.guest-match-gate__pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 0;
  min-height: 3.4rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.guest-match-gate__pricing-cta:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

@media (max-width: 80rem) {
  .guest-match-gate__pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 64rem) {
  .guest-match-gate__pricing-shell {
    padding: 1.3rem 1rem 1.5rem;
    border-radius: 1.65rem;
  }

  .guest-match-gate__pricing-header {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .guest-match-gate__pricing-brand {
    width: 5.25rem;
    min-height: 5.25rem;
    margin: 0 auto;
  }
}

@media (max-width: 48rem) {
  .guest-match-gate__overlay {
    padding: 0.8rem;
  }

  .guest-match-gate__panel--lead {
    width: min(28rem, calc(100vw - 1rem));
    padding: 2rem 1.1rem 1.65rem;
    border-radius: 1.7rem;
  }

  .guest-match-gate__lead-title {
    font-size: 2.1rem;
  }

  .guest-match-gate__input {
    height: 2.85rem;
    font-size: 0.92rem;
  }

  .guest-match-gate__submit {
    font-size: 0.9rem;
    padding: 0.88rem 1rem;
  }

  .guest-match-gate__pricing-grid {
    grid-template-columns: 1fr;
    margin-top: 1.6rem;
  }

  .guest-match-gate__tariff-card {
    min-height: 0;
  }

  .guest-match-gate__tariff-row strong {
    max-width: 58%;
  }

  .guest-match-gate__pricing-title {
    font-size: 2.35rem;
  }
}


/* ********************************************************** */
 .modal-dialog .container .side {
     display: flex;
     justify-content: space-between;
     position: absolute;
     width: 128px;
     height: 16px;
}
 .modal-dialog .container .side > div {
     height: inherit;
     border-radius: 25px;
     background: linear-gradient(to left, #9021AC 0%, #5C1992 100%);
}
 .modal-dialog .container .side:nth-child(1) {
     transform: rotate(0deg);
}
 .modal-dialog .container .side:nth-child(2) {
     transform: rotate(30deg);
}
 .modal-dialog .container .side:nth-child(3) {
     transform: rotate(60deg);
}
 .modal-dialog .container .side:nth-child(4) {
     transform: rotate(90deg);
}
 .modal-dialog .container .side:nth-child(5) {
     transform: rotate(120deg);
}
 .modal-dialog .container .side:nth-child(6) {
     transform: rotate(150deg);
}
 .modal-dialog .container .side-odd .left {
     width: 20px;
}
 .modal-dialog .container .side-odd .right {
     width: 20px;
}
 .modal-dialog .container .side-even .left {
     width: 40px;
}
 .modal-dialog .container .side-even .right {
     width: 40px;
}
