@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --font-base: "Manrope", "Segoe UI", sans-serif;
  --font-display: "Bebas Neue", "Segoe UI", sans-serif;
  --bg-0: #f3f5f6;
  --bg-1: #eaf0f3;
  --ink-900: #101a20;
  --ink-700: #273741;
  --ink-500: #4d606c;
  --ink-400: #677d89;
  --line: #ccdae1;
  --line-strong: #b5c7d1;
  --panel: rgba(255, 255, 255, 0.84);
  --panel-soft: rgba(248, 252, 255, 0.78);
  --brand: #0f3f57;
  --brand-2: #1c698c;
  --accent: #fd5c2f;
  --accent-soft: #ff8d53;
  --mint: #0d9f9f;
  --gold: #efaf30;
  --danger: #d9252d;
  --success: #1f9150;
  --shadow: 0 24px 50px rgba(17, 38, 50, 0.14);
  --shadow-hard: 0 22px 44px rgba(9, 24, 34, 0.26);
  --ring: 0 0 0 1px rgba(16, 65, 87, 0.15), 0 0 0 8px rgba(16, 65, 87, 0.05);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-width: 320px;
}

html {
  scroll-behavior: smooth;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes pulse-live {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(253, 92, 47, 0.36);
  }

  55% {
    box-shadow: 0 0 0 14px rgba(253, 92, 47, 0);
  }
}

@keyframes float-bg {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

body {
  color: var(--ink-900);
  font-family: var(--font-base);
  background:
    radial-gradient(circle at 18% 0%, rgba(13, 159, 159, 0.2), transparent 34%),
    radial-gradient(circle at 84% 8%, rgba(253, 92, 47, 0.16), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(239, 175, 48, 0.14), transparent 24%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1));
}

a {
  color: inherit;
}

.site {
  min-height: 100vh;
  position: relative;
  overflow-x: clip;
}

.site::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.26) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 92%);
  opacity: 0.4;
}

.site::after {
  content: "";
  position: fixed;
  right: -140px;
  top: 70px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(17, 132, 178, 0.2), rgba(17, 132, 178, 0));
  filter: blur(14px);
  animation: float-bg 9s ease-in-out infinite;
}

.site__topbar,
.site__nav,
.site__content,
.voucher-page,
.payment-page {
  width: min(1320px, calc(100vw - 32px));
  margin: 0 auto;
}

.site__top {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(90deg, #0e2d3d, #14455e 46%, #0f3448);
  border-bottom: 1px solid rgba(140, 191, 214, 0.24);
  box-shadow: 0 10px 28px rgba(5, 17, 23, 0.24);
}

.site__top::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
}

.site__topbar {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 6px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.brand__mark {
  width: 18px;
  height: 26px;
  border-radius: 7px;
  background: linear-gradient(180deg, #ff7445, #f93f17);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.13);
}

.brand__text {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height: 0.95;
}

.top-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-right: auto;
}

.top-links__item {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(179, 219, 237, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #d4e9f4;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.top-links__item.is-active {
  border-color: rgba(255, 179, 147, 0.8);
  background: rgba(255, 116, 69, 0.22);
  color: #fff8f4;
}

.auth-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.auth-actions__btn {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.auth-actions__btn--ghost {
  border: 1px solid rgba(183, 220, 236, 0.42);
  background: rgba(255, 255, 255, 0.1);
  color: #edf8ff;
}

.auth-actions__btn--solid {
  background: linear-gradient(180deg, var(--accent-soft), var(--accent));
  color: #fff;
  box-shadow: 0 10px 18px rgba(249, 63, 23, 0.34);
}

.auth-actions__btn:hover {
  transform: translateY(-1px);
}

.site__nav-wrap {
  background: linear-gradient(90deg, #1a5f80, #2987a6 52%, #1a5f80);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.site__nav {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 6px;
}

.nav-search {
  flex: 0 0 270px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(201, 233, 246, 0.34);
  background: rgba(255, 255, 255, 0.12);
  color: #d9edf7;
  font-size: 13px;
  font-weight: 600;
}

.nav-search__icon,
.panel-title__icon,
.support-btn__icon {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
}

.nav-menu {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
}

.nav-menu::-webkit-scrollbar {
  display: none;
}

.nav-menu__item {
  flex: 0 0 auto;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 10px;
  color: rgba(242, 251, 255, 0.9);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-menu__item:hover,
.nav-menu__item.is-active {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.nav-menu__item.is-voucher {
  border: 1px solid rgba(255, 208, 123, 0.75);
  background: rgba(255, 186, 81, 0.2);
  color: #fff8ed;
}

.nav-menu__item.is-voucher.is-active {
  background: linear-gradient(180deg, #ffd77f, #f3a71f);
  color: #402500;
}

.nav-meta {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-meta__badge {
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(217, 37, 45, 0.9);
  animation: pulse-live 2.8s ease infinite;
}

.nav-meta__status {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #96f5d4;
  box-shadow: 0 0 0 5px rgba(150, 245, 212, 0.24);
}

.site__content {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 270px;
  gap: 14px;
  padding: 20px 0 32px;
}

.left-sidebar,
.right-sidebar,
.main-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.panel {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(181, 199, 209, 0.8);
  background: linear-gradient(180deg, var(--panel), var(--panel-soft));
  backdrop-filter: blur(18px) saturate(1.1);
  box-shadow: var(--shadow);
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  animation: rise 0.45s ease forwards;
}

.left-sidebar .panel:nth-child(1),
.main-column .panel:nth-child(1),
.right-sidebar .panel:nth-child(1) {
  animation-delay: 0.05s;
}

.left-sidebar .panel:nth-child(2),
.main-column .panel:nth-child(2),
.right-sidebar .panel:nth-child(2) {
  animation-delay: 0.12s;
}

.left-sidebar .panel:nth-child(3),
.main-column .panel:nth-child(3),
.right-sidebar .panel:nth-child(3) {
  animation-delay: 0.19s;
}

.panel:hover {
  box-shadow: 0 26px 56px rgba(10, 28, 38, 0.2);
}

.panel::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(28, 105, 140, 0.45), transparent);
}

.panel__title {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  background: linear-gradient(90deg, #174d67, #206d90);
  color: #f6fcff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-list,
.sports-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-list__item,
.sports-list__item {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(209, 223, 231, 0.8);
  color: var(--ink-700);
  font-size: 12px;
  transition: background 0.18s ease;
}

.menu-list__item:hover,
.sports-list__item:hover {
  background: rgba(12, 118, 164, 0.08);
}

.menu-list__label,
.sports-list__label {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-list__dot,
.sports-list__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #33bedf, #1887a9);
}

.menu-list__count,
.sports-list__count {
  color: var(--ink-400);
  font-size: 11px;
  font-weight: 700;
}

.tab-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid var(--line);
}

.tab-strip__item {
  min-height: 42px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #33515f;
  background: rgba(235, 245, 250, 0.82);
}

.tab-strip__item.is-active {
  background: linear-gradient(180deg, #1d698d, #185a79);
  color: #fff;
}

.info-note {
  padding: 16px 14px 18px;
  color: var(--ink-500);
  font-size: 12px;
  line-height: 1.6;
}

.refresh-btn {
  min-height: 50px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(180deg, #fb6b3f, #ef4c1f);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-banner-slot {
  padding: 0;
}

.home-banner-image {
  display: block;
  width: 100%;
  min-height: 260px;
  overflow: hidden;
}

.home-banner-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.hero-banner {
  min-height: 300px;
  position: relative;
  padding: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 8%, rgba(253, 92, 47, 0.32), transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(30, 179, 180, 0.28), transparent 40%),
    linear-gradient(135deg, #0f2530, #143443 50%, #1a4f62);
  color: #fff;
}

.hero-banner.is-night {
  background:
    radial-gradient(circle at 82% 8%, rgba(245, 37, 52, 0.34), transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(76, 116, 139, 0.36), transparent 36%),
    linear-gradient(135deg, #101820, #1b2934 52%, #283746);
}

.hero-banner::before {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -90px;
  width: 280px;
  height: 280px;
  border-radius: 40px;
  transform: rotate(20deg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.03));
}

.hero-banner__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 95%);
}

.hero-banner__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-banner__eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-banner__live-pill {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 192, 172, 0.72);
  background: rgba(253, 92, 47, 0.2);
  color: #ffcfbf;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-banner__meta {
  margin: 0;
  color: rgba(219, 237, 247, 0.86);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-banner__title {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-banner__subtitle {
  margin: 16px 0 0;
  max-width: 700px;
  color: rgba(229, 245, 255, 0.92);
  font-size: 17px;
  line-height: 1.55;
}

.hero-banner__actions {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-banner__cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.hero-banner__cta:hover {
  transform: translateY(-1px);
}

.hero-banner__cta--solid {
  background: linear-gradient(180deg, #ff8456, #fd5c2f);
  color: #fff;
  box-shadow: 0 12px 20px rgba(249, 63, 23, 0.32);
}

.hero-banner__cta--ghost {
  border: 1px solid rgba(194, 225, 241, 0.6);
  background: rgba(255, 255, 255, 0.1);
  color: #f0f9ff;
}

.promo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.promo-mini-card {
  padding: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 146, 98, 0.18), transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(25, 154, 156, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(246, 251, 255, 0.78));
}

.promo-mini-card__label {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(22, 102, 137, 0.12);
  color: #155778;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.promo-mini-card strong {
  display: block;
  margin-top: 14px;
  color: #173544;
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 0.9;
  letter-spacing: 0.01em;
}

.promo-mini-card p {
  margin: 12px 0 0;
  color: #466271;
  font-size: 14px;
  line-height: 1.55;
}
.market-panel {
  padding: 0;
}

.market-panel__top {
  min-height: 52px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: linear-gradient(90deg, #113f56, #1b617f 58%, #113f56);
  color: #fff;
}

.market-panel__label {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.market-panel__controls {
  display: flex;
  gap: 7px;
}

.chip {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 126, 81, 0.2);
  border: 1px solid rgba(255, 179, 150, 0.58);
  color: #ffd8c8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chip.is-muted {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(202, 230, 243, 0.38);
  color: #e8f7ff;
}

.filter-row {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
  overflow-x: auto;
}

.filter-row::-webkit-scrollbar {
  display: none;
}

.filter-row__item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-500);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.filter-row__item.is-active {
  color: var(--ink-900);
}

.filter-row__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.filter-row__item:nth-child(2) .filter-row__dot {
  background: #22b85e;
}

.filter-row__item:nth-child(3) .filter-row__dot {
  background: #2599d8;
}

.filter-row__item:nth-child(4) .filter-row__dot {
  background: #ec9f29;
}

.filter-row__item:nth-child(5) .filter-row__dot {
  background: #d94522;
}

.filter-row__item:nth-child(6) .filter-row__dot {
  background: #199f9f;
}

.market-scroll {
  overflow-x: auto;
}

.market-scroll::-webkit-scrollbar {
  height: 10px;
}

.market-scroll::-webkit-scrollbar-thumb {
  background: rgba(28, 105, 140, 0.32);
  border-radius: 999px;
}

.table-head,
.match-row {
  min-width: 1040px;
  display: grid;
  grid-template-columns: minmax(280px, 1.7fr) 78px repeat(11, minmax(48px, 1fr));
}

.table-head {
  background: linear-gradient(90deg, #174d67, #216f92 54%, #174d67);
  color: #f5fcff;
}

.table-head__cell {
  min-height: 38px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.table-head__cell:first-child {
  justify-items: start;
  padding-left: 14px;
}

.market-list {
  background: rgba(255, 255, 255, 0.74);
}

.match-group {
  border-bottom: 1px solid rgba(188, 208, 219, 0.7);
}

.match-group__league {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 12px;
  background: linear-gradient(90deg, #17614b, #239267 56%, #17614b);
  color: #f0fff5;
  font-size: 12px;
  font-weight: 800;
}

.match-group__toggle {
  font-size: 17px;
  line-height: 1;
}

.match-row {
  min-height: 78px;
}

.match-row__summary {
  display: flex;
  align-items: stretch;
  gap: 12px;
  padding: 10px 14px;
  border-right: 1px solid rgba(188, 208, 219, 0.8);
}

.match-times {
  width: 44px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--ink-500);
  font-size: 11px;
  font-weight: 700;
}

.match-times__star {
  color: var(--accent);
  font-size: 13px;
}

.match-teams {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.match-teams__item {
  color: #203845;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.match-row__score {
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(188, 208, 219, 0.8);
  color: #d9252d;
  font-size: 16px;
  font-weight: 800;
}

.match-row__markets {
  display: grid;
  grid-template-columns: repeat(11, minmax(48px, 1fr));
}

.match-row__market {
  display: grid;
  place-items: center;
  border-left: 1px solid rgba(188, 208, 219, 0.7);
  font-size: 12px;
  font-weight: 700;
  color: #1e4f69;
  background: rgba(244, 250, 255, 0.82);
  transition: background 0.18s ease, color 0.18s ease;
}

.match-row__market:nth-child(odd) {
  background: rgba(236, 246, 252, 0.94);
}

.match-row__market:hover {
  background: rgba(23, 117, 159, 0.16);
  color: #11384b;
}

.cart-empty {
  padding: 16px 14px 20px;
  color: #3a5565;
  font-size: 13px;
  line-height: 1.55;
}

.cart-empty strong {
  display: block;
  margin-bottom: 8px;
  color: #173544;
  font-size: 16px;
}

.promo-box {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 179, 106, 0.32), transparent 40%),
    linear-gradient(135deg, #143346, #1f5d79);
  color: #fff;
}

.promo-box__title {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.promo-box__text {
  margin-top: 8px;
  color: rgba(223, 243, 255, 0.9);
  font-size: 13px;
  line-height: 1.45;
}

.promo-box__badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.support-block {
  padding: 0;
}

.support-block__head {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: linear-gradient(90deg, #124860, #1d6484);
  color: #eaf8ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.support-block__body {
  padding: 16px 14px 18px;
}

.support-actions {
  display: flex;
  gap: 10px;
}

.support-btn {
  flex: 1 1 auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.support-btn--telegram {
  color: #fff;
  background: linear-gradient(180deg, #2aa4d7, #1f89b8);
  box-shadow: 0 12px 20px rgba(27, 115, 157, 0.28);
}
.voucher-page {
  padding: 22px 0 32px;
}

.voucher-hero {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.voucher-hero__head {
  padding: 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 150, 112, 0.22), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(34, 164, 166, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 251, 255, 0.78));
}

.voucher-hero__eyebrow {
  margin: 0;
  color: #1a708f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.voucher-hero__head h1 {
  margin: 10px 0 0;
  color: #173544;
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 82px);
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.voucher-hero__head p {
  margin: 14px 0 0;
  color: #3f5d6d;
  font-size: 16px;
  line-height: 1.6;
}

.voucher-hero__support {
  margin-top: 14px;
  color: #2d4d5d;
  font-weight: 700;
}

.voucher-hero__support a {
  color: #145f80;
  text-decoration: none;
}

.wheel-card {
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 177, 84, 0.26), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(17, 159, 161, 0.22), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(244, 250, 255, 0.78));
}

.case-open {
  width: min(980px, 100%);
  position: relative;
  border-radius: 16px;
  padding: 12px;
  background: linear-gradient(180deg, #112835, #183a4a);
  border: 1px solid rgba(179, 208, 224, 0.36);
  box-shadow: var(--shadow-hard);
}

.case-open__marker {
  position: absolute;
  left: 50%;
  top: -8px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 24px solid #ff6d46;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.32));
  z-index: 3;
}

.case-open__viewport {
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  border: 1px solid rgba(208, 233, 245, 0.28);
  background: linear-gradient(180deg, #132f3d, #183949);
}

.case-open__viewport::before,
.case-open__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70px;
  z-index: 2;
  pointer-events: none;
}

.case-open__viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(18, 45, 60, 0.95), rgba(18, 45, 60, 0));
}

.case-open__viewport::after {
  right: 0;
  background: linear-gradient(270deg, rgba(18, 45, 60, 0.95), rgba(18, 45, 60, 0));
}

.case-open__track {
  display: flex;
  gap: 10px;
  padding: 14px 220px;
  transform: translate3d(0, 0, 0);
}

.case-open__track.is-spinning {
  transition: transform 7.3s cubic-bezier(0.08, 0.86, 0.12, 1);
}

.case-item {
  flex: 0 0 136px;
  min-height: 132px;
  position: relative;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 12px;
  overflow: hidden;
}

.case-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.3), transparent 34%);
  opacity: 0.42;
}

.case-item::after {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 1;
  min-height: 20px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.96);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-item span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.42);
}

.case-item--common {
  background: linear-gradient(150deg, #2d7fa8, #205878);
}

.case-item--common::after {
  content: "Common";
}

.case-item--rare {
  background: linear-gradient(150deg, #2a7f79, #1b5f5a);
}

.case-item--rare::after {
  content: "Rare";
}

.case-item--epic {
  background: linear-gradient(150deg, #d16741, #ad4a28);
}

.case-item--epic::after {
  content: "Epic";
}

.case-item--legend {
  background: linear-gradient(150deg, #f2be45, #d1821d);
  border-color: rgba(255, 232, 171, 0.86);
}

.case-item--legend::after {
  content: "Legend";
  color: #422400;
  background: rgba(255, 235, 188, 0.92);
}

.case-item.is-winning {
  transform: translateY(-3px);
  box-shadow: 0 0 0 2px rgba(255, 225, 143, 0.95), 0 0 28px rgba(255, 194, 81, 0.56);
}

.wheel-card__btn {
  width: min(100%, 320px);
  min-height: 52px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #ff8759, #f75f30);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(236, 86, 39, 0.36);
  transition: transform 0.18s ease;
}

.wheel-card__btn:hover:not(:disabled) {
  transform: translateY(-2px);
}

.wheel-card__btn:disabled {
  opacity: 0.72;
  cursor: default;
}

.drop-rarity {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.drop-rarity__item {
  border-radius: 14px;
  padding: 14px;
  border: 1px solid rgba(190, 209, 221, 0.78);
  background: rgba(250, 253, 255, 0.76);
}

.drop-rarity__item span {
  display: block;
  color: #4b6575;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.drop-rarity__item strong {
  display: block;
  margin-top: 8px;
  color: #14374a;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
}

.drop-rarity__item.is-gold {
  background: linear-gradient(180deg, #ffe9af, #f6c15a);
  border-color: rgba(232, 167, 58, 0.8);
}

.voucher-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  background: rgba(6, 18, 24, 0.72);
  padding: 16px;
}

.voucher-modal[hidden] {
  display: none;
}

.voucher-modal__dialog {
  width: min(620px, 100%);
  border-radius: 18px;
  border: 1px solid rgba(181, 199, 209, 0.92);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 166, 122, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 255, 0.92));
  padding: 24px;
  box-shadow: 0 28px 52px rgba(5, 20, 29, 0.34);
}

.voucher-modal__dialog h2 {
  margin: 0;
  color: #173747;
  font-family: var(--font-display);
  font-size: 46px;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.voucher-modal__dialog p {
  margin: 12px 0 0;
  color: #3b5868;
  font-size: 15px;
  line-height: 1.55;
}

.voucher-modal__dialog ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: #2f4a59;
  line-height: 1.6;
}

.voucher-modal__actions {
  margin-top: 18px;
}

.voucher-modal__cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 10px;
  background: linear-gradient(180deg, #ff7f53, #f35b2d);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.payment-page {
  padding: 22px 0 32px;
}

.payment-layout-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 14px;
}

.payment-card-2 {
  padding: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 173, 118, 0.24), transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(25, 164, 166, 0.2), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 251, 255, 0.82));
}

.payment-card-2__eyebrow {
  margin: 0;
  color: #17698a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.payment-card-2 h1 {
  margin: 8px 0 0;
  color: #173647;
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 70px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.payment-card-2__subtitle {
  margin: 14px 0 0;
  color: #456272;
  font-size: 16px;
  line-height: 1.6;
}

.payment-highlights {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.payment-highlight {
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(180deg, #153547, #1b485f);
  box-shadow: 0 14px 28px rgba(12, 35, 46, 0.24);
}

.payment-highlight span {
  display: block;
  color: rgba(202, 230, 245, 0.86);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-highlight strong {
  display: block;
  margin-top: 8px;
  color: #fff4d6;
  font-size: 22px;
  line-height: 1.1;
}

.payment-flash,
.payment-night {
  margin-top: 12px;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.5;
}

.payment-flash {
  border: 1px solid rgba(219, 97, 107, 0.45);
  background: rgba(253, 235, 236, 0.92);
  color: #88252b;
}

.payment-night {
  border: 1px solid rgba(227, 181, 83, 0.5);
  background: rgba(255, 245, 216, 0.92);
  color: #7f5e1a;
}

.method-switch {
  margin-top: 14px;
  display: flex;
  gap: 8px;
}

.method-switch__btn {
  flex: 1 1 0;
  min-height: 44px;
  border: 1px solid rgba(177, 198, 210, 0.85);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: #355364;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.method-switch__btn.is-active {
  background: linear-gradient(180deg, #1f6f92, #1a5f7f);
  border-color: rgba(24, 91, 122, 0.9);
  color: #f2fbff;
  box-shadow: 0 12px 20px rgba(19, 82, 110, 0.28);
}

.method-switch__btn:hover {
  transform: translateY(-1px);
}

.payment-form {
  margin-top: 12px;
}

.field-block {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field-block span {
  color: #334f60;
  font-size: 13px;
  font-weight: 800;
}

.field-block input {
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(175, 198, 211, 0.9);
  padding: 0 12px;
  color: #1d3a4b;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.88);
}

.field-block input:focus {
  outline: none;
  border-color: rgba(26, 102, 138, 0.82);
  box-shadow: var(--ring);
}

.field-block--file input {
  padding-top: 8px;
  padding-bottom: 8px;
  min-height: 0;
}

.payment-requisites,
.payment-instructions {
  margin-top: 12px;
  border-radius: 14px;
  border: 1px solid rgba(185, 204, 215, 0.85);
  background: rgba(251, 254, 255, 0.78);
  padding: 14px;
}

.payment-requisites h3,
.payment-instructions h3 {
  margin: 0;
  color: #23465b;
  font-size: 16px;
}

.payment-requisites pre {
  margin: 10px 0 0;
  color: #2f4e60;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.55;
}

.payment-instructions ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #355464;
  line-height: 1.62;
}

.payment-submit {
  margin-top: 14px;
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #ff7f53, #f45b2e);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(241, 84, 43, 0.28);
}

.payment-submit:hover {
  transform: translateY(-1px);
}

.payment-submit:disabled {
  opacity: 0.58;
  cursor: default;
  box-shadow: none;
  transform: none;
}

.payment-unlock {
  margin-top: 12px;
  border-radius: 12px;
  border: 1px solid rgba(173, 198, 214, 0.86);
  background: rgba(241, 249, 255, 0.86);
  color: #2f526a;
  font-size: 13px;
  line-height: 1.5;
  padding: 11px 12px;
}

.payment-sidebar {
  padding: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 166, 118, 0.22), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(17, 159, 161, 0.2), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 251, 255, 0.82));
}

.payment-sidebar h3 {
  margin: 0;
  color: #1b3f53;
  font-size: 22px;
}

.payment-sidebar p {
  margin: 10px 0 0;
  color: #486474;
  line-height: 1.58;
}

.payment-sidebar a {
  display: inline-block;
  margin-top: 8px;
  color: #1b6688;
  font-weight: 800;
  text-decoration: none;
}

.payment-sidebar__meta {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(185, 204, 215, 0.82);
}

.payment-sidebar__meta strong {
  display: inline-block;
  margin-top: 6px;
  color: #1f4052;
  font-size: 19px;
}

.payment-sidebar__steps {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #355364;
  line-height: 1.65;
}

@media (max-width: 1160px) {
  .site__content {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .right-sidebar {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .promo-strip,
  .drop-rarity,
  .payment-highlights {
    grid-template-columns: 1fr;
  }

  .payment-layout-2 {
    grid-template-columns: 1fr;
  }

  .payment-sidebar {
    order: -1;
  }
}

@media (max-width: 960px) {
  .site__topbar,
  .site__nav,
  .site__content,
  .voucher-page,
  .payment-page {
    width: min(1320px, calc(100vw - 16px));
  }

  .site__topbar {
    flex-wrap: wrap;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .top-links {
    width: 100%;
    order: 3;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 3px;
  }

  .site__content {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .left-sidebar,
  .right-sidebar,
  .main-column {
    gap: 12px;
  }

  .right-sidebar {
    grid-template-columns: 1fr;
  }

  .hero-banner {
    padding: 24px 18px;
    min-height: 270px;
  }

  .hero-banner__title {
    font-size: clamp(42px, 10vw, 64px);
  }

  .voucher-hero__head,
  .wheel-card,
  .payment-card-2,
  .payment-sidebar {
    padding: 20px 16px;
  }

  .voucher-modal__dialog {
    padding: 20px 16px;
  }

  .voucher-modal__dialog h2 {
    font-size: 38px;
  }
}

@media (max-width: 700px) {
  .auth-actions,
  .nav-meta {
    display: none;
  }

  .site__nav {
    flex-wrap: wrap;
    gap: 8px;
  }

  .nav-search,
  .nav-menu {
    width: 100%;
    flex: 1 1 100%;
  }

  .nav-search {
    min-height: 40px;
    flex-basis: auto;
  }

  .brand__text {
    font-size: 34px;
  }

  .hero-banner__subtitle,
  .voucher-hero__head p,
  .payment-card-2__subtitle {
    font-size: 15px;
  }

  .table-head,
  .match-row {
    min-width: 980px;
  }

  .case-open {
    padding: 10px;
  }

  .case-open__track {
    padding-left: 120px;
    padding-right: 120px;
    gap: 8px;
  }

  .case-item {
    flex-basis: 100px;
    min-height: 102px;
  }

  .case-item span {
    font-size: 14px;
  }

  .case-item::after {
    font-size: 8px;
  }
}

@media (max-width: 540px) {
  .site__topbar,
  .site__nav,
  .site__content,
  .voucher-page,
  .payment-page {
    width: calc(100vw - 10px);
  }

  .site__topbar,
  .site__nav {
    padding-left: 4px;
    padding-right: 4px;
  }

  .brand__text {
    font-size: 30px;
  }

  .top-links__item,
  .nav-menu__item {
    font-size: 10px;
  }

  .hero-banner {
    padding: 20px 14px;
  }

  .hero-banner__title,
  .voucher-hero__head h1,
  .payment-card-2 h1 {
    font-size: 46px;
  }

  .hero-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-banner__cta {
    width: 100%;
  }

  .promo-mini-card {
    padding: 16px 14px;
  }

  .promo-mini-card strong {
    font-size: 32px;
  }

  .voucher-modal__dialog h2 {
    font-size: 32px;
  }

  .method-switch {
    flex-direction: column;
  }

  .case-open__viewport::before,
  .case-open__viewport::after {
    width: 34px;
  }

  .case-open__track {
    padding-left: 92px;
    padding-right: 92px;
  }

  .case-item {
    flex-basis: 84px;
    min-height: 90px;
    padding: 10px 8px;
  }

  .drop-rarity__item strong,
  .payment-highlight strong {
    font-size: 18px;
  }

  .field-block input {
    font-size: 16px;
  }
}
:root {
  --bg-0: #090d15;
  --bg-1: #0d1320;
  --ink-900: #f4f7ff;
  --ink-700: #d6dfef;
  --ink-500: #a6b5cf;
  --ink-400: #8597b6;
  --line: #23324d;
  --line-strong: #32405f;
  --panel: rgba(15, 24, 40, 0.88);
  --panel-soft: rgba(12, 21, 36, 0.82);
  --brand: #58b3ff;
  --brand-2: #6dd9ff;
  --accent: #ff435f;
  --accent-soft: #ff7186;
  --mint: #2ce0bf;
  --gold: #ffbe45;
  --danger: #ff445d;
  --shadow: 0 24px 60px rgba(1, 4, 10, 0.48);
  --shadow-hard: 0 28px 70px rgba(1, 3, 8, 0.65);
  --ring: 0 0 0 1px rgba(110, 185, 255, 0.32), 0 0 0 7px rgba(76, 161, 255, 0.12);
}

body {
  background:
    radial-gradient(circle at 16% 0%, rgba(63, 33, 87, 0.5), transparent 40%),
    radial-gradient(circle at 82% 4%, rgba(145, 26, 53, 0.45), transparent 32%),
    radial-gradient(circle at 50% 100%, rgba(13, 70, 99, 0.48), transparent 32%),
    linear-gradient(180deg, #05070d 0%, #090f19 42%, #0b1220 100%);
  color: var(--ink-900);
}

.site::before {
  opacity: 0.16;
  background:
    linear-gradient(rgba(114, 145, 201, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114, 145, 201, 0.16) 1px, transparent 1px);
}

.site::after {
  background: radial-gradient(circle, rgba(255, 78, 113, 0.28), rgba(255, 78, 113, 0));
}

.site__top {
  background: linear-gradient(90deg, #0d1628, #12213a 50%, #0f1b30);
  border-bottom-color: rgba(101, 132, 187, 0.26);
  box-shadow: 0 12px 28px rgba(1, 3, 11, 0.62);
}

.site__top::after {
  background: linear-gradient(90deg, transparent, rgba(125, 210, 255, 0.44), transparent);
}

.brand__text {
  color: #f7fbff;
  text-shadow: 0 0 26px rgba(91, 191, 255, 0.25);
}

.brand__mark {
  background: linear-gradient(180deg, #ff647f, #ff2f54);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1), 0 0 24px rgba(255, 72, 109, 0.42);
}

.top-links__item {
  border-color: rgba(104, 133, 187, 0.46);
  background: rgba(107, 149, 221, 0.12);
  color: #d8e6ff;
}

.top-links__item.is-active {
  background: rgba(255, 68, 99, 0.24);
  border-color: rgba(255, 119, 145, 0.8);
}

.auth-actions__btn--ghost {
  border-color: rgba(114, 146, 204, 0.45);
  background: rgba(105, 149, 230, 0.11);
}

.auth-actions__btn--solid {
  background: linear-gradient(180deg, #ff6f8a, #ff3658);
}

.site__nav-wrap {
  background: linear-gradient(90deg, #121e35, #1b3050 52%, #121e35);
  border-bottom-color: rgba(95, 125, 179, 0.34);
}

.nav-search {
  border-color: rgba(101, 136, 197, 0.55);
  background: rgba(81, 116, 186, 0.12);
  color: #d7e8ff;
}

.nav-menu__item {
  color: #ccdfff;
}

.nav-menu__item:hover,
.nav-menu__item.is-active {
  background: rgba(88, 124, 196, 0.22);
}

.nav-menu__item.is-voucher {
  background: rgba(255, 182, 67, 0.2);
  border-color: rgba(255, 186, 91, 0.68);
}

.nav-meta__badge {
  background: rgba(255, 68, 93, 0.95);
}

.panel {
  border-color: rgba(56, 73, 106, 0.78);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 77, 115, 0.08), transparent 34%),
    linear-gradient(180deg, var(--panel), var(--panel-soft));
  box-shadow: var(--shadow);
}

.panel::before {
  background: linear-gradient(90deg, transparent, rgba(99, 175, 255, 0.5), transparent);
}

.panel__title {
  background: linear-gradient(90deg, #172746, #1f3f6d);
  color: #e9f4ff;
}

.menu-list__item,
.sports-list__item {
  border-bottom-color: rgba(44, 60, 88, 0.8);
  color: #e7f0ff;
}

.menu-list__item:hover,
.sports-list__item:hover {
  background: rgba(72, 105, 168, 0.16);
}

.menu-list__dot,
.sports-list__dot {
  background: linear-gradient(180deg, #78daff, #4ea8ff);
}

.menu-list__count,
.sports-list__count,
.info-note {
  color: #9bb0d3;
}

.tab-strip {
  border-bottom-color: rgba(44, 60, 88, 0.8);
}

.tab-strip__item {
  background: rgba(57, 78, 112, 0.4);
  color: #d6e4ff;
}

.tab-strip__item.is-active {
  background: linear-gradient(180deg, #244678, #1c3760);
}

.refresh-btn {
  background: linear-gradient(180deg, #ff6480, #ff3557);
  box-shadow: 0 12px 30px rgba(255, 44, 87, 0.26);
}

.hero-banner {
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 75, 108, 0.3), transparent 32%),
    radial-gradient(circle at 0% 100%, rgba(84, 166, 255, 0.26), transparent 38%),
    linear-gradient(135deg, #0e182a 0%, #13233d 48%, #1a2e4f 100%);
}

.hero-banner.is-night {
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 62, 92, 0.32), transparent 32%),
    radial-gradient(circle at 0% 100%, rgba(90, 107, 141, 0.3), transparent 38%),
    linear-gradient(135deg, #0b111d 0%, #111d2d 48%, #1b2738 100%);
}

.hero-banner__live-pill {
  border-color: rgba(255, 132, 157, 0.65);
  background: rgba(255, 62, 95, 0.2);
  color: #ffccda;
}

.hero-banner__subtitle,
.hero-banner__meta {
  color: #c7d7f1;
}

.hero-banner__cta--solid,
.payment-submit,
.voucher-modal__cta,
.wheel-card__btn {
  background: linear-gradient(180deg, #ff6f8a, #ff3658);
  box-shadow: 0 14px 34px rgba(255, 37, 82, 0.3);
}

.hero-banner__cta--ghost {
  border-color: rgba(114, 163, 235, 0.66);
  background: rgba(84, 129, 202, 0.2);
}

.promo-mini-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 77, 109, 0.2), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(90, 172, 255, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(16, 26, 43, 0.86), rgba(12, 22, 38, 0.82));
}

.promo-mini-card__label {
  background: rgba(106, 149, 225, 0.2);
  color: #cde3ff;
}

.promo-mini-card strong {
  color: #f3f7ff;
}

.promo-mini-card p {
  color: #9fb3d1;
}

.market-panel__top {
  background: linear-gradient(90deg, #152646, #1d3e70 52%, #152646);
}

.chip {
  background: rgba(255, 70, 103, 0.18);
  border-color: rgba(255, 116, 144, 0.54);
  color: #ffd3de;
}

.chip.is-muted {
  background: rgba(87, 122, 188, 0.16);
  border-color: rgba(113, 150, 219, 0.34);
  color: #d5e7ff;
}

.filter-row {
  border-color: rgba(44, 60, 88, 0.8);
  background: rgba(10, 18, 33, 0.72);
}

.filter-row__item {
  color: #95abce;
}

.filter-row__item.is-active {
  color: #f2f7ff;
}

.table-head {
  background: linear-gradient(90deg, #192a49, #1f3f70 52%, #192a49);
}

.table-head__cell {
  border-right-color: rgba(122, 155, 213, 0.2);
}

.market-list {
  background: rgba(7, 13, 24, 0.8);
}

.match-group {
  border-bottom-color: rgba(44, 60, 88, 0.82);
}

.match-group__league {
  background: linear-gradient(90deg, #18563e, #1f6f52 54%, #18563e);
}

.match-row__summary,
.match-row__score,
.match-row__market {
  border-color: rgba(44, 60, 88, 0.74);
}

.match-times,
.match-row__market {
  color: #a1b5d6;
}

.match-times__star {
  color: #ff7b96;
}

.match-teams__item {
  color: #e6efff;
}

.match-row__score {
  color: #ff6f8a;
}

.match-row__market,
.match-row__market:nth-child(odd) {
  background: rgba(12, 21, 38, 0.82);
}

.match-row__market:hover {
  background: rgba(82, 121, 194, 0.28);
  color: #f2f8ff;
}

.cart-empty,
.payment-sidebar p,
.payment-card-2__subtitle,
.voucher-hero__head p,
.voucher-modal__dialog p,
.voucher-modal__dialog ul,
.payment-instructions ul,
.payment-requisites pre {
  color: #a8bbd8;
}

.cart-empty strong,
.payment-sidebar h3,
.payment-sidebar__meta strong,
.voucher-hero__head h1,
.payment-card-2 h2,
.voucher-modal__dialog h2 {
  color: #f1f6ff;
}

.promo-box {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 87, 118, 0.28), transparent 36%),
    linear-gradient(135deg, #111f37, #1a3560);
}

.support-block__head {
  background: linear-gradient(90deg, #182b4d, #1f4172);
}

.support-btn--telegram {
  background: linear-gradient(180deg, #3794f6, #2a78d0);
}

.voucher-hero__head,
.wheel-card,
.payment-card-2,
.payment-sidebar,
.voucher-modal__dialog,
.payment-requisites,
.payment-instructions {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 78, 113, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(13, 22, 37, 0.9), rgba(10, 18, 30, 0.86));
  border-color: rgba(54, 71, 103, 0.88);
}

.voucher-hero__eyebrow,
.payment-card-2__eyebrow,
.payment-sidebar a,
.voucher-hero__support a {
  color: #79c4ff;
}

.case-open {
  background: linear-gradient(180deg, #091425, #112038);
  border-color: rgba(74, 95, 136, 0.56);
}

.case-open__viewport {
  border-color: rgba(100, 127, 176, 0.35);
}

.drop-rarity__item {
  background: rgba(11, 21, 36, 0.86);
  border-color: rgba(58, 77, 112, 0.78);
}

.drop-rarity__item span {
  color: #9ab0d5;
}

.drop-rarity__item strong {
  color: #f3f8ff;
}

.payment-page-head {
  width: min(1320px, calc(100vw - 32px));
  margin: 0 auto 14px;
  text-align: center;
}

.payment-page-head h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #f4f8ff;
}

.payment-page-head h1 span {
  color: #ff5a78;
}

.payment-page-head p {
  margin: 8px 0 0;
  color: #96abce;
  font-size: 18px;
}

.payment-card-2__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.payment-card-2 h2 {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.payment-timer {
  min-width: 96px;
  border-radius: 999px;
  border: 1px solid rgba(255, 112, 141, 0.68);
  padding: 10px 14px;
  text-align: center;
  background: rgba(255, 53, 88, 0.12);
}

.payment-timer span {
  display: block;
  color: #ff9bb0;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-timer strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 22px;
}

.payment-highlight {
  background: linear-gradient(180deg, rgba(26, 41, 67, 0.94), rgba(19, 31, 53, 0.9));
  border: 1px solid rgba(63, 83, 120, 0.75);
}

.payment-highlight span {
  color: #a8bddf;
}

.payment-highlight strong {
  color: #fff;
}

.field-block span,
.payment-requisites h3,
.payment-instructions h3 {
  color: #cfddf5;
}

.field-block input,
.method-switch__btn {
  border-color: rgba(63, 83, 120, 0.88);
  background: rgba(13, 23, 40, 0.84);
  color: #eef4ff;
}

.method-switch__btn.is-active {
  background: linear-gradient(180deg, #2b4f85, #213d67);
  border-color: rgba(99, 138, 205, 0.88);
}

.payment-flash {
  border-color: rgba(255, 111, 137, 0.42);
  background: rgba(75, 24, 35, 0.6);
  color: #ffc4d1;
}

.payment-night {
  border-color: rgba(255, 187, 86, 0.5);
  background: rgba(78, 53, 18, 0.54);
  color: #ffd89a;
}

.payment-sidebar__meta {
  border-top-color: rgba(53, 72, 106, 0.8);
}

@media (max-width: 960px) {
  .payment-page-head {
    width: min(1320px, calc(100vw - 16px));
  }

  .payment-page-head p {
    font-size: 14px;
  }
}

@media (max-width: 700px) {
  .payment-card-2__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .payment-timer {
    min-width: 0;
  }}

.wheel-card {
  border: 1px solid rgba(69, 90, 132, 0.8);
  box-shadow: 0 30px 70px rgba(2, 5, 15, 0.6);
}

.case-open {
  padding: 14px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 69, 104, 0.2), transparent 34%),
    linear-gradient(180deg, #081427, #101f3a);
  border-color: rgba(89, 113, 160, 0.62);
}

.case-open::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 12px;
  border: 1px solid rgba(120, 151, 206, 0.18);
  pointer-events: none;
}

.case-open__viewport {
  border-color: rgba(114, 141, 193, 0.52);
  background:
    radial-gradient(circle at 50% -30%, rgba(96, 157, 255, 0.28), transparent 55%),
    linear-gradient(180deg, #0e1c34, #122544);
}

.case-open__viewport::before,
.case-open__viewport::after {
  width: 82px;
}

.case-open__viewport::before {
  background: linear-gradient(90deg, rgba(8, 19, 38, 0.96), rgba(8, 19, 38, 0));
}

.case-open__viewport::after {
  background: linear-gradient(270deg, rgba(8, 19, 38, 0.96), rgba(8, 19, 38, 0));
}

.case-open__track {
  gap: 12px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.case-item {
  border-radius: 14px;
  border: 1px solid rgba(164, 192, 244, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 12px 24px rgba(2, 8, 20, 0.36);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.case-item:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 215, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 16px 30px rgba(3, 10, 24, 0.52);
}

.case-item::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  opacity: 1;
}

.case-item::after {
  top: 10px;
  left: 10px;
  min-height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(240, 247, 255, 0.95);
  letter-spacing: 0.1em;
}

.case-item span {
  font-size: 33px;
  line-height: 0.9;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
}

.case-item--common {
  background:
    radial-gradient(circle at 80% 0%, rgba(122, 218, 255, 0.35), transparent 36%),
    linear-gradient(160deg, #2a7bb8, #214c7f);
}

.case-item--rare {
  background:
    radial-gradient(circle at 82% 0%, rgba(88, 246, 219, 0.3), transparent 36%),
    linear-gradient(160deg, #278175, #1f5b58);
}

.case-item--epic {
  background:
    radial-gradient(circle at 82% 0%, rgba(255, 178, 128, 0.35), transparent 36%),
    linear-gradient(160deg, #d66c44, #ad4828);
}

.case-item--legend {
  background:
    radial-gradient(circle at 82% 0%, rgba(255, 245, 190, 0.5), transparent 38%),
    linear-gradient(160deg, #f0bf4b, #ce7c1c);
  border-color: rgba(255, 225, 132, 0.85);
}

.case-item.is-winning {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 0 0 2px rgba(255, 221, 134, 0.92),
    0 0 36px rgba(255, 173, 58, 0.54),
    0 0 60px rgba(84, 168, 255, 0.28);
}

@media (max-width: 700px) {
  .case-open__viewport::before,
  .case-open__viewport::after {
    width: 48px;
  }

  .case-item span {
    font-size: 26px;
  }
}

@media (max-width: 540px) {
  .case-item span {
    font-size: 22px;
  }

  .case-item::after {
    min-height: 18px;
    font-size: 8px;
  }
}

/* White Theme Override */
:root {
  --bg-0: #f8fbff;
  --bg-1: #eef5ff;
  --ink-900: #16263d;
  --ink-700: #2f4967;
  --ink-500: #5f7897;
  --ink-400: #7c95b2;
  --line: #d5e4f4;
  --line-strong: #bfd6ed;
  --panel: rgba(255, 255, 255, 0.95);
  --panel-soft: rgba(247, 252, 255, 0.92);
  --brand: #2f7fd6;
  --brand-2: #5fb3ff;
  --accent: #3f97f5;
  --accent-soft: #72bdff;
  --mint: #47b3ff;
  --gold: #8bc8ff;
  --danger: #4ba9ff;
}

body {
  color: var(--ink-900);
  background:
    radial-gradient(circle at 14% 0%, rgba(108, 186, 255, 0.22), transparent 38%),
    radial-gradient(circle at 90% 12%, rgba(148, 211, 255, 0.2), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #f2f8ff 52%, #ebf4ff 100%);
}

.site::before {
  opacity: 0.32;
}

.site::after {
  background: radial-gradient(circle, rgba(84, 174, 255, 0.22), rgba(84, 174, 255, 0));
}

.site__top {
  background: linear-gradient(90deg, #f9fcff, #f0f7ff 50%, #f7fbff);
  border-bottom-color: rgba(162, 198, 234, 0.64);
  box-shadow: 0 8px 22px rgba(44, 102, 163, 0.12);
}

.site__top::after {
  background: linear-gradient(90deg, transparent, rgba(121, 177, 232, 0.62), transparent);
}

.brand__text {
  color: #1f3f62;
  text-shadow: none;
}

.brand__mark {
  background: linear-gradient(180deg, #67b6ff, #2f8ef0);
  box-shadow: 0 0 0 3px rgba(77, 157, 235, 0.2);
}

.top-links__item {
  border-color: rgba(145, 186, 228, 0.68);
  background: rgba(106, 170, 238, 0.12);
  color: #2b4f72;
}

.top-links__item.is-active {
  background: rgba(106, 182, 255, 0.22);
  border-color: rgba(103, 174, 241, 0.82);
  color: #194f80;
}

.auth-actions__btn--ghost {
  border-color: rgba(138, 180, 223, 0.76);
  background: rgba(122, 179, 238, 0.14);
  color: #1f4a74;
}

.auth-actions__btn--solid {
  background: linear-gradient(180deg, #77c2ff, #3e99f6);
  color: #fff;
}

.site__nav-wrap {
  background: linear-gradient(90deg, #f0f7ff, #e8f3ff 52%, #f0f7ff);
  border-bottom-color: rgba(171, 204, 236, 0.7);
}

.nav-search {
  border-color: rgba(152, 193, 233, 0.85);
  background: rgba(133, 190, 244, 0.14);
  color: #3c6388;
}

.nav-menu__item {
  color: #436488;
}

.nav-menu__item:hover,
.nav-menu__item.is-active {
  background: rgba(117, 183, 245, 0.18);
  color: #204f7f;
}

.nav-menu__item.is-voucher {
  background: rgba(128, 194, 255, 0.28);
  border-color: rgba(113, 183, 247, 0.82);
  color: #1f5e95;
}

.nav-menu__item.is-voucher.is-active {
  background: linear-gradient(180deg, #8ecbff, #57a9f8);
  color: #ffffff;
}

.nav-meta__badge {
  background: rgba(88, 164, 238, 0.92);
}

.nav-meta__status {
  background: #53b0ff;
  box-shadow: 0 0 0 5px rgba(83, 176, 255, 0.24);
}

.panel {
  border-color: rgba(186, 213, 239, 0.86);
  background:
    radial-gradient(circle at 100% 0%, rgba(139, 202, 255, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 252, 255, 0.92));
  box-shadow: 0 20px 46px rgba(40, 106, 169, 0.14);
}

.panel::before {
  background: linear-gradient(90deg, transparent, rgba(98, 165, 230, 0.5), transparent);
}

.panel__title {
  background: linear-gradient(90deg, #5fb2ff, #3f95f4);
  color: #fff;
}

.menu-list__item,
.sports-list__item {
  border-bottom-color: rgba(203, 224, 244, 0.82);
  color: #2f4e71;
}

.menu-list__item:hover,
.sports-list__item:hover {
  background: rgba(122, 186, 246, 0.14);
}

.menu-list__count,
.sports-list__count,
.info-note {
  color: #6788ab;
}

.tab-strip__item {
  background: rgba(122, 186, 246, 0.14);
  color: #34608a;
}

.tab-strip__item.is-active {
  background: linear-gradient(180deg, #6bb8ff, #4aa1f7);
  color: #ffffff;
}

.refresh-btn {
  background: linear-gradient(180deg, #70beff, #449cf4);
}

.hero-banner,
.hero-banner.is-night {
  background:
    radial-gradient(circle at 90% 0%, rgba(123, 189, 255, 0.28), transparent 32%),
    radial-gradient(circle at 0% 100%, rgba(170, 216, 255, 0.3), transparent 38%),
    linear-gradient(135deg, #f4f9ff 0%, #ebf5ff 48%, #e4f0ff 100%);
  color: #163252;
}

.hero-banner__meta,
.hero-banner__subtitle {
  color: #4f6f93;
}

.hero-banner__live-pill {
  border-color: rgba(120, 186, 247, 0.72);
  background: rgba(113, 183, 247, 0.18);
  color: #2b689f;
}

.hero-banner__cta--solid,
.payment-submit,
.voucher-modal__cta,
.wheel-card__btn {
  background: linear-gradient(180deg, #70beff, #419bf3);
  box-shadow: 0 14px 30px rgba(72, 153, 233, 0.28);
}

.hero-banner__cta--ghost {
  border-color: rgba(123, 186, 244, 0.82);
  background: rgba(133, 195, 250, 0.16);
  color: #2f679d;
}

.promo-mini-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(130, 198, 255, 0.24), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(174, 221, 255, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 251, 255, 0.94));
}

.promo-mini-card__label {
  background: rgba(127, 190, 248, 0.2);
  color: #2f699f;
}

.promo-mini-card strong {
  color: #1f4368;
}

.promo-mini-card p {
  color: #6482a4;
}

.market-panel__top {
  background: linear-gradient(90deg, #6abaff, #429cf5 52%, #6abaff);
}

.chip {
  background: rgba(122, 186, 246, 0.2);
  border-color: rgba(115, 182, 245, 0.64);
  color: #2d669d;
}

.chip.is-muted {
  background: rgba(173, 222, 255, 0.26);
  border-color: rgba(153, 206, 248, 0.58);
  color: #356b9f;
}

.filter-row {
  border-color: rgba(190, 215, 239, 0.86);
  background: rgba(248, 252, 255, 0.96);
}

.filter-row__item {
  color: #7292b4;
}

.filter-row__item.is-active {
  color: #2f618f;
}

.table-head {
  background: linear-gradient(90deg, #6abaff, #429cf5 52%, #6abaff);
}

.table-head__cell {
  border-right-color: rgba(255, 255, 255, 0.26);
}

.market-list {
  background: rgba(255, 255, 255, 0.94);
}

.match-group {
  border-bottom-color: rgba(196, 220, 243, 0.82);
}

.match-group__league {
  background: linear-gradient(90deg, #74c3ff, #4ca8f7 54%, #74c3ff);
}

.match-row__summary,
.match-row__score,
.match-row__market {
  border-color: rgba(200, 222, 244, 0.85);
}

.match-times,
.match-row__market {
  color: #6283a8;
}

.match-times__star,
.match-row__score {
  color: #4ba9ff;
}

.match-teams__item {
  color: #2a4a70;
}

.match-row__market,
.match-row__market:nth-child(odd) {
  background: rgba(243, 249, 255, 0.95);
}

.match-row__market:hover {
  background: rgba(150, 210, 255, 0.34);
  color: #2f6599;
}

.promo-box {
  background:
    radial-gradient(circle at 100% 0%, rgba(145, 206, 255, 0.3), transparent 36%),
    linear-gradient(135deg, #5fb4ff, #3e97f4);
}

.support-block__head {
  background: linear-gradient(90deg, #67b8ff, #419bf4);
}

.support-btn--telegram {
  background: linear-gradient(180deg, #70beff, #459ef5);
}

.voucher-hero__head,
.wheel-card,
.payment-card-2,
.payment-sidebar,
.voucher-modal__dialog,
.payment-requisites,
.payment-instructions {
  background:
    radial-gradient(circle at 100% 0%, rgba(140, 201, 255, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 252, 255, 0.94));
  border-color: rgba(184, 212, 239, 0.9);
}

.cart-empty,
.payment-sidebar p,
.payment-card-2__subtitle,
.voucher-hero__head p,
.voucher-modal__dialog p,
.voucher-modal__dialog ul,
.payment-instructions ul,
.payment-requisites pre {
  color: #6282a5;
}

.cart-empty strong,
.payment-sidebar h3,
.payment-sidebar__meta strong,
.voucher-hero__head h1,
.payment-card-2 h2,
.voucher-modal__dialog h2,
.payment-page-head h1 {
  color: #1f4064;
}

.payment-page-head h1 span,
.voucher-hero__eyebrow,
.payment-card-2__eyebrow,
.payment-sidebar a,
.voucher-hero__support a {
  color: #3b99f5;
}

.payment-page-head p {
  color: #6e8fb2;
}

.payment-highlight {
  background: linear-gradient(180deg, #6abaff, #4aa1f6);
  border: 1px solid rgba(133, 193, 246, 0.85);
}

.payment-highlight span {
  color: rgba(238, 248, 255, 0.9);
}

.payment-highlight strong {
  color: #ffffff;
}

.field-block span,
.payment-requisites h3,
.payment-instructions h3 {
  color: #3d638b;
}

.field-block input,
.method-switch__btn {
  border-color: rgba(170, 205, 238, 0.92);
  background: rgba(255, 255, 255, 0.94);
  color: #2f4f74;
}

.method-switch__btn.is-active {
  background: linear-gradient(180deg, #70beff, #4ba4f7);
  border-color: rgba(112, 189, 255, 0.95);
  color: #ffffff;
}

.payment-timer {
  border-color: rgba(112, 190, 255, 0.74);
  background: rgba(125, 196, 255, 0.18);
}

.payment-timer span {
  color: #4d7cab;
}

.payment-flash {
  border-color: rgba(113, 188, 254, 0.55);
  background: rgba(210, 236, 255, 0.72);
  color: #2f6298;
}

.payment-night {
  border-color: rgba(133, 199, 255, 0.52);
  background: rgba(217, 239, 255, 0.78);
  color: #3b6c9f;
}

.payment-sidebar__meta {
  border-top-color: rgba(191, 216, 241, 0.86);
}

.case-open {
  background:
    radial-gradient(circle at 100% 0%, rgba(136, 200, 255, 0.24), transparent 34%),
    linear-gradient(180deg, #eef6ff, #e5f1ff);
  border-color: rgba(159, 201, 241, 0.85);
}

.case-open__viewport {
  border-color: rgba(151, 194, 236, 0.8);
  background:
    radial-gradient(circle at 50% -30%, rgba(184, 223, 255, 0.44), transparent 56%),
    linear-gradient(180deg, #eaf4ff, #dcecff);
}

.case-open__viewport::before {
  background: linear-gradient(90deg, rgba(229, 242, 255, 0.96), rgba(229, 242, 255, 0));
}

.case-open__viewport::after {
  background: linear-gradient(270deg, rgba(229, 242, 255, 0.96), rgba(229, 242, 255, 0));
}

.case-item {
  border-color: rgba(162, 203, 241, 0.8);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 12px 22px rgba(81, 142, 201, 0.24);
}

.case-item:hover {
  border-color: rgba(134, 190, 240, 0.92);
}

.case-item::after {
  background: rgba(255, 255, 255, 0.44);
  border-color: rgba(170, 207, 241, 0.65);
  color: #3c6d9e;
}

.case-item span {
  color: #ffffff;
}

.brand__text {
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

/* Roulette Cleanup */
.wheel-card,
.case-open,
.case-item,
.case-item:hover,
.case-item.is-winning,
.wheel-card__btn,
.wheel-card__btn:hover:not(:disabled) {
  box-shadow: none !important;
}

.case-open::after {
  display: none !important;
}

.case-item {
  transform: none !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
}

.case-item::after {
  display: none !important;
}

.case-item > span {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif !important;
  font-weight: 700 !important;
  font-size: 22px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  text-shadow: none !important;
  letter-spacing: 0 !important;
}

.case-open__track {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.wheel-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(132, 176, 227, 0.56);
  background:
    linear-gradient(160deg, rgba(238, 247, 255, 0.95), rgba(226, 238, 255, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 20px 44px rgba(59, 121, 183, 0.24);
}

.wheel-circle-wrap {
  position: relative;
  width: min(560px, calc(100vw - 84px));
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  margin: 4px auto 0;
}

.wheel-circle-wrap::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(132, 206, 255, 0.66);
  box-shadow:
    0 0 0 1px rgba(164, 224, 255, 0.46),
    0 0 22px rgba(106, 189, 255, 0.52),
    0 0 46px rgba(124, 170, 255, 0.34);
  pointer-events: none;
  z-index: 1;
}

.wheel-pointer {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 30px solid #8ad0ff;
  z-index: 6;
  filter:
    drop-shadow(0 4px 8px rgba(26, 44, 68, 0.28))
    drop-shadow(0 0 12px rgba(138, 208, 255, 0.52));
}

.wheel-circle {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 46%, #f8fcff 0%, #d6e9ff 58%, #b9d6f6 100%);
  border: 2px solid rgba(129, 187, 245, 0.9);
  box-shadow:
    inset 0 0 0 10px rgba(213, 233, 255, 0.95),
    inset 0 -18px 30px rgba(139, 176, 214, 0.25),
    0 18px 36px rgba(76, 139, 201, 0.3);
  overflow: hidden;
  transform: rotate(0deg);
  z-index: 2;
}

.wheel-circle::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(168, 223, 255, 0.65);
  box-shadow:
    0 0 12px rgba(116, 205, 255, 0.5),
    inset 0 0 10px rgba(124, 193, 255, 0.22);
  pointer-events: none;
  z-index: 2;
}

.wheel-circle::after {
  display: none;
}

.wheel-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

.wheel-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(126px, 24%);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: linear-gradient(180deg, #f6f9ff, #d8e2f3);
  border: 3px solid #95acd0;
  color: #22385c;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(10px, 1.2vw, 13px);
  font-weight: 900;
  display: grid;
  place-items: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  z-index: 4;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 8px 20px rgba(57, 110, 170, 0.26);
}

.wheel-result {
  min-height: 22px;
  color: #2f5c8f;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.wheel-card__btn {
  width: min(100%, 330px);
  min-height: 54px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #6ebeff, #3d94e8);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(226, 245, 255, 0.78),
    0 14px 30px rgba(45, 124, 206, 0.34);
}

.wheel-card__btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(235, 249, 255, 0.9),
    0 18px 34px rgba(45, 124, 206, 0.4);
}

.voucher-modal__win {
  margin: 10px 0 0;
  color: #1f4a76;
  font-size: 24px;
  font-weight: 900;
}

.voucher-modal__dialog--ticket {
  width: min(640px, 100%);
  border-radius: 16px;
  padding: 22px;
}

.voucher-modal__dialog--ticket h2 {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
}

.voucher-ticket {
  position: relative;
  margin-top: 14px;
  border-radius: 14px;
  border: 2px dashed rgba(36, 61, 88, 0.45);
  background: linear-gradient(180deg, #f8fbff, #edf5ff);
  padding: 16px;
}

.voucher-ticket::before,
.voucher-ticket::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f2f8ff;
  border: 1px solid rgba(175, 206, 236, 0.85);
  transform: translateY(-50%);
}

.voucher-ticket::before {
  left: -10px;
}

.voucher-ticket::after {
  right: -10px;
}

.voucher-ticket__label {
  display: block;
  color: #4a6f96;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.voucher-ticket__code {
  display: block;
  margin-top: 8px;
  color: #173b63;
  font-family: "Consolas", "Courier New", monospace;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.voucher-modal__hint {
  margin: 12px 0 0;
  color: #5f81a5;
  font-size: 14px;
}

.voucher-next {
  margin-top: 14px;
  border-radius: 12px;
  border: 1px solid rgba(181, 211, 240, 0.9);
  background: rgba(245, 251, 255, 0.9);
  padding: 12px 14px;
}

.voucher-next h3 {
  margin: 0;
  color: #234b77;
  font-size: 18px;
}

.voucher-next ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #446586;
  font-size: 14px;
  line-height: 1.55;
}

.voucher-phone-form {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.voucher-phone-form input {
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(167, 196, 224, 0.9);
  background: rgba(251, 255, 255, 0.9);
  color: #173d60;
  font-size: 16px;
  padding: 0 12px;
}

.voucher-phone-form input:focus {
  outline: none;
  border-color: rgba(81, 148, 214, 0.95);
  box-shadow: 0 0 0 3px rgba(103, 169, 236, 0.2);
}

.voucher-phone-form__error {
  margin: 0;
  color: #c23e3e;
  font-size: 13px;
  font-weight: 700;
}

/* Home Page Layout Refresh */
.page-home .site__content {
  grid-template-columns: minmax(220px, 252px) minmax(0, 1fr) minmax(220px, 260px);
  gap: 16px;
  align-items: start;
  padding: 16px 0 28px;
}

.page-home .left-sidebar,
.page-home .main-column,
.page-home .right-sidebar {
  gap: 14px;
}

.page-home .panel {
  border-radius: 16px;
}

.page-home .home-banner-image,
.page-home .home-banner-image img {
  min-height: clamp(180px, 26vw, 320px);
}

.page-home .home-banner-image img {
  object-position: center;
}

.page-home .market-panel {
  overflow: visible;
}

.page-home .market-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.page-home .table-head,
.page-home .match-row {
  min-width: 980px;
}

.page-home .support-block__body {
  padding: 14px;
}

.page-home .support-btn {
  min-height: 46px;
}

@media (max-width: 1180px) {
  .page-home .site__content {
    grid-template-columns: 236px minmax(0, 1fr);
  }

  .page-home .right-sidebar {
    grid-column: 1 / -1;
  }
}

@media (max-width: 960px) {
  .page-home .site__content {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 12px;
  }

  .page-home .main-column {
    order: 1;
  }

  .page-home .left-sidebar {
    order: 2;
  }

  .page-home .right-sidebar {
    order: 3;
  }

  .page-home .home-banner-image,
  .page-home .home-banner-image img {
    min-height: 0;
  }

  .page-home .home-banner-image {
    aspect-ratio: 16 / 9;
    background: #0f2a45;
  }

  .page-home .home-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .page-home .market-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 2px;
  }

  .page-home .table-head,
  .page-home .match-row {
    min-width: 860px;
  }

  .page-home .panel__title,
  .page-home .market-panel__top,
  .page-home .support-block__head {
    min-height: 44px;
    font-size: 12px;
    letter-spacing: 0.06em;
    padding: 0 12px;
  }
}

@media (max-width: 560px) {
  .page-home .site__topbar,
  .page-home .site__nav,
  .page-home .site__content {
    width: calc(100vw - 12px);
  }

  .page-home .site__topbar,
  .page-home .site__nav {
    padding-left: 2px;
    padding-right: 2px;
  }

  .page-home .brand__text {
    font-size: 52px;
  }

  .page-home .top-links__item,
  .page-home .nav-menu__item {
    font-size: 11px;
  }

  .page-home .filter-row {
    gap: 10px;
    padding: 0 10px;
  }

  .page-home .home-banner-image {
    aspect-ratio: auto;
    background: transparent;
    min-height: 0;
    height: auto;
    overflow: hidden;
  }

  .page-home .home-banner-image img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: cover;
    object-position: center;
  }

  .page-home .table-head,
  .page-home .match-row {
    min-width: 0;
    grid-template-columns: minmax(170px, 1fr) 62px repeat(3, minmax(40px, 1fr));
  }

  .page-home .match-row__markets {
    grid-template-columns: repeat(3, minmax(40px, 1fr));
  }

  .page-home .table-head__cell:nth-child(n+6) {
    display: none;
  }

  .page-home .match-row__market:nth-child(n+4) {
    display: none;
  }

  .page-home .match-row__summary {
    padding: 8px 10px;
    gap: 8px;
  }

  .page-home .match-teams__item {
    font-size: 12px;
  }
}

.payment-sidebar__contact-btn {
  margin-top: 8px;
  width: 100%;
  min-height: 44px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 800;
  background: linear-gradient(180deg, #64b8ff, #3d93e7) !important;
  border: 1px solid rgba(92, 165, 233, 0.95) !important;
  box-shadow: 0 10px 18px rgba(56, 129, 200, 0.3) !important;
}

.payment-sidebar__contact-btn .support-btn__icon {
  color: #ffffff;
  opacity: 0.95;
}

@media (max-width: 1160px) {
  .payment-layout-2 .payment-card-2 {
    order: 1;
  }

  .payment-layout-2 .payment-sidebar {
    order: 2 !important;
  }
}
