:root {
  --user-bg: #1475d3;
  --cover-bg: #ffffff;
  --cover-text: #111111;
  --line: #dbe3ef;
  --user-muted: #5f708a;
  --user-focus: #1475d3;
  --user-panel-bg: #f7f9fc;
  --user-panel-border: #e2e8f3;
  --user-primary: #0d5cab;
  --user-radius: 10px;
  --user-radius-panel: 12px;
  --miniapp-vh: 100vh;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body.user-body {
  background: var(--user-bg);
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--cover-text);
  overflow-x: hidden;
}

html.home-overlay-open,
body.user-body.home-overlay-open {
  overflow: hidden;
  overscroll-behavior: none;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--user-focus);
  outline-offset: 2px;
}

.user-stage {
  min-height: var(--miniapp-vh);
  overflow-x: hidden;
}

.user-cover {
  width: 100%;
  max-width: 393px;
  min-height: var(--miniapp-vh);
  margin: 0 auto;
  background: var(--cover-bg);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  overflow-x: hidden;
}

@media (max-width: 393px) {
  .user-cover {
    border-left: none;
    border-right: none;
  }
}

.user-cover:has(.registration-screen),
.user-cover:has(.reg-buy-screen) {
  border-left: none;
  border-right: none;
}

.user-cover:has(.registration-screen),
.user-cover:has(.reg-buy-screen) {
  max-width: 420px;
}

/* ── Registration buy (sad) screen ── */

.reg-buy-screen {
  position: relative;
  min-height: var(--miniapp-vh);
  background: #8e8e8e;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.reg-buy-screen__hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.reg-buy-screen__hero-image {
  position: absolute;
  bottom: 0;
  width: 393px;
  max-width: none;
  height: auto;
  display: block;
}

.reg-buy-screen__spark {
  position: absolute;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0.9;
}

.reg-buy-screen__spark--1 { top: 18%; left: 8%; font-size: 1.4rem; }
.reg-buy-screen__spark--2 { top: 6%;  right: 8%; font-size: 0.9rem; }
.reg-buy-screen__spark--3 { top: 38%; right: 6%; font-size: 1.2rem; }
.reg-buy-screen__spark--4 { top: 52%; left: 6%; font-size: 0.8rem; }

.reg-buy-screen__content {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 0 2rem 5rem;
  display: grid;
  gap: 1.25rem;
}

.reg-buy-screen__copy {
  display: grid;
  gap: 0.75rem;
}

.reg-buy-screen__title {
  margin: 0;
  font-family: "Russo One", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.375rem;
}

.reg-buy-screen__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25rem;
}

.reg-buy-screen__actions {
  display: grid;
  gap: 0.5rem;
}

.reg-buy-btn--light {
  border-color: rgba(12, 36, 60, 0.25);
  background: #fff;
  color: #8e8e8e;
  text-decoration: none;
  justify-content: space-between;
}

.reg-buy-btn__icon {
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
}

.reg-buy-btn--outline {
  border-color: #fff;
  background: transparent;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.user-nav {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.user-nav-logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.user-nav-link {
  text-decoration: none;
  color: #3a4a61;
  font-size: 0.92rem;
}

.user-main {
  padding: 1rem;
  overflow-x: hidden;
}

.user-main-full {
  padding: 0;
}

.user-auth-center {
  min-height: calc(100vh - 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

.user-auth-header {
  margin-bottom: 0.2rem;
}

.user-title {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
}

.user-auth-lead {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--user-muted);
}

.user-auth-tabs-wrap:not([data-tabs-init]) .user-auth-tabs {
  display: none;
}

.user-auth-tabs-wrap:not([data-tabs-init]) .user-auth-tabpanel--register {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.user-auth-tabs-wrap[data-tabs-init] .user-auth-tabs {
  display: flex;
}

.user-panel {
  border: 1px solid var(--user-panel-border);
  border-radius: var(--user-radius-panel);
  background: var(--user-panel-bg);
  padding: 1rem;
}

.user-auth-tabs-card.user-panel {
  padding-top: 0.85rem;
}

.user-auth-tabs {
  gap: 0;
  margin: 0 0 0.9rem;
  padding: 4px;
  border-radius: var(--user-radius);
  background: #e4ebf5;
  border: 1px solid #d0dae8;
}

.user-auth-tab {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.58rem 0.6rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--user-muted);
  border-radius: 8px;
  cursor: pointer;
}

.user-auth-tab[aria-selected="true"] {
  background: #fff;
  color: var(--cover-text);
  font-weight: 700;
  box-shadow: 0 1px 4px rgba(15, 55, 100, 0.14);
}

.user-panel__head {
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--line);
}

.user-panel__desc {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--user-muted);
}

.user-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #2a3545;
}

.user-field-hint {
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--user-muted);
  line-height: 1.35;
}

.stack {
  display: grid;
  gap: 0.75rem;
}

input,
button {
  width: 100%;
  border: 1px solid #c8d3e1;
  border-radius: 10px;
  padding: 0.62rem 0.7rem;
  font: inherit;
  color: #111;
  background: #fff;
}

button {
  cursor: pointer;
  font-weight: 700;
}

.user-btn-primary {
  border-color: var(--user-primary);
  background: var(--user-primary);
  color: #fff;
}

.user-btn-primary:hover {
  filter: brightness(1.06);
}

.flash {
  margin: 0.2rem 0 0.6rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid;
}

.flash-success {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #065f46;
}

.flash-error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

.user-auth-center--compact {
  justify-content: center;
}

.user-waiting-card {
  text-align: left;
  gap: 1rem;
}

.user-waiting-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e9f2fe;
  border: 1px solid #c9defa;
  font-size: 1.4rem;
}

.user-waiting-meta {
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  display: grid;
  gap: 0.35rem;
}

.user-waiting-meta p {
  margin: 0;
  font-size: 0.9rem;
}

.user-waiting-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #2a3545;
  display: grid;
  gap: 0.5rem;
  font-size: 0.88rem;
  line-height: 1.45;
}

.user-screen-center {
  min-height: var(--miniapp-vh);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.user-screen-card {
  width: 100%;
  max-width: 320px;
  padding: 1.2rem 1rem;
  border: 1px solid var(--user-panel-border);
  border-radius: var(--user-radius-panel);
  background: var(--user-panel-bg);
  text-align: center;
}

.user-screen-title {
  margin: 0;
  font-size: 1.35rem;
}

.user-screen-center--loader {
  background: radial-gradient(circle at 50% 20%, #eff5ff 0%, #f7fbff 38%, #ffffff 100%);
}

.user-loader-card {
  max-width: 360px;
  padding: 1.45rem 1.15rem;
  box-shadow: 0 8px 28px rgba(9, 48, 94, 0.08);
  display: grid;
  justify-items: center;
  gap: 0.65rem;
}

.user-loader {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 4px solid #d7e8ff;
  border-top-color: #1475d3;
  animation: user-loader-spin 0.85s linear infinite;
}

.user-loader-title {
  font-size: 1.12rem;
}

.user-loader-lead {
  margin: 0;
  color: var(--user-muted);
  font-size: 0.88rem;
  text-align: center;
  line-height: 1.4;
}

@keyframes user-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Home screen ── */

.home-screen {
  background: #fff;
  min-height: var(--miniapp-vh);
  position: relative;
  overflow-x: hidden;
}

.home-screen__top {
  position: relative;
  background: #1475d3;
  height: 448px;
  padding: 0 28px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  box-shadow: 0 4px 4px rgba(12, 36, 60, 0.15);
  overflow: hidden;
}

.home-screen__curve {
  position: absolute;
  left: -50px;
  top: -45px;
  width: 715px;
  height: 439px;
  object-fit: contain;
  transform: rotate(180deg);
  pointer-events: none;
}

.home-screen__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  top: 28px;
}

.home-screen__profile {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.home-screen__profile-link {
  color: inherit;
  text-decoration: none;
}

.home-screen__avatar-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #fff;
  overflow: hidden;
  flex-shrink: 0;
}

.home-screen__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-screen__avatar--fallback {
  display: grid;
  place-items: center;
  background: #0c243c;
}

.home-screen__avatar--fallback img {
  width: 24px;
  height: 24px;
  display: block;
}

.home-screen__profile-text {
  color: #fff;
  min-width: 0;
}

.home-screen__hello {
  margin: 0;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-screen__rating {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 14px;
}

.home-screen__icons {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
}

.home-screen__header .home-screen__icon-svg {
  stroke: #fff;
}

.home-screen__icon-btn {
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  padding: 0;
  display: grid;
  place-items: center;
  color: inherit;
  text-decoration: none;
}

.home-screen__icons img {
  width: 24px;
  height: 24px;
  display: block;
}

.home-screen__icon-svg {
  width: 24px;
  height: 24px;
  display: block;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.home-screen__icon-btn .home-screen__icon-svg circle,
.home-screen__icon-btn .miniapp-page__icon-svg circle {
  display: none;
}

.home-screen__icon-btn.has-unread .home-screen__icon-svg circle,
.home-screen__icon-btn.has-unread .miniapp-page__icon-svg circle {
  display: block;
  fill: #fc799c;
  stroke: #fc799c;
}

.home-screen__status {
  position: relative;
  z-index: 1;
  margin-top: 100px;
  display: grid;
  gap: 8px;
  width: 100%;
}

.home-screen__status-title {
  margin: 0 0 4px;
  font-family: "Russo One", sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
}

.home-screen__status-card {
  width: 100%;
  min-height: 60px;
  border-radius: 20px;
  border: 1px solid rgba(12, 36, 60, 0.2);
  background: #fff;
  color: #0c243c;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
}

.home-screen__status-card-link {
  text-decoration: none;
}

.home-screen__status-card--pink {
  background: #fc799c;
  color: #fff;
}

.home-screen__status-card--event {
  min-height: 100px;
  border-radius: 12px;
  background: #fef7ed;
  padding: 0 12px 0 0;
  border-color: rgba(12, 36, 60, 0.25);
}

.home-screen__event-thumb {
  width: 86px;
  height: 100px;
  flex-shrink: 0;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  overflow: hidden;
  display: block;
}

.home-screen__event-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-screen__event-text {
  flex: 1;
  color: #1475d3;
}

.home-screen__arrow {
  font-size: 1.35rem;
  line-height: 1;
}

.home-screen__actions-wrap {
  position: relative;
  margin-top: -16px;
  width: 391px;
  max-width: calc(100% - 2px);
  margin-left: auto;
  margin-right: auto;
  min-height: 206px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 -4px 4px rgba(12, 36, 60, 0.15), 0 6px 8px rgba(12, 36, 60, 0.1);
  padding: 36px 32px 24px;
  overflow: visible;
}

.home-screen__actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding-top: 10px;
}

.home-screen__action {
  width: 100%;
  min-height: 60px;
  border-radius: 20px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  text-align: left;
}

.home-screen__action--ready-today {
  position: relative;
  z-index: 2;
  padding-left: 144px;
  padding-right: 20px;
  gap: 12px;
}

.home-screen__ready-mascot {
  position: absolute;
  left: 3px;
  top: -26px;
  width: 130px;
  height: 86px;
  pointer-events: none;
  z-index: 3;
}

.home-screen__ready-mascot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left bottom;
}

.home-screen__action-label {
  flex: 1 1 auto;
  min-width: 0;
}

.home-screen__action-label--body {
  font-size: 16px;
  line-height: 20px;
}

.home-screen__action-label--ready-split {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.home-screen__action-label-line {
  display: block;
  line-height: 20px;
}

.home-screen__action-label--compact {
  font-size: 14px;
  line-height: 18px;
}

.home-screen__action-arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
  /* ассеты Figma — шеврон; поворот на 90° → стрелка вправо как в WORKBOARD */
  transform: rotate(90deg);
}

.home-screen__action--ready-today .home-screen__toggle {
  border: none;
}

.home-screen__action-link {
  text-decoration: none;
  gap: 20px;
}

.home-screen__action--dark {
  background: #1475d3;
  border: none;
  color: #fff;
}

.home-screen__action--outline {
  background: #fff;
  border: 1px solid #1475d3;
  color: #1475d3;
}

.home-screen__main {
  padding: 20px 28px 0;
  display: grid;
  gap: 40px;
}

.home-section-title {
  margin: 0;
  color: #1475d3;
  font-family: "Russo One", sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
}

.home-card {
  border: 1px solid #1475d3;
  border-radius: 12px;
  background: #fff;
}

.home-card-btn {
  width: 100%;
  min-height: 48px;
  border-radius: 20px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
  border: none;
}

.home-card-btn--dark {
  background: #1475d3;
  color: #fff;
}

.home-card-btn--blue {
  background: #1475d3;
  color: #fff;
}

.home-card-btn--outline-dark {
  border: 1px solid #0c243c;
  color: #0c243c;
  background: #fff;
}

.home-empty-card {
  min-height: 100px;
  display: grid;
  place-items: center;
  padding: 20px;
  color: #0c243c;
  font-size: 14px;
  line-height: 18px;
}

.home-challenge {
  display: grid;
  gap: 12px;
}

.home-challenge__card {
  border-radius: 30px;
  padding: 20px;
  display: grid;
  gap: 16px;
}

.home-challenge__image-wrap {
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.home-challenge__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-challenge__content {
  display: grid;
  gap: 12px;
}

.home-challenge__title {
  margin: 0;
  color: #1475d3;
  font-family: "Russo One", sans-serif;
  font-size: 20px;
  line-height: 24px;
}

.home-challenge__meta {
  margin: 0;
  color: #0c243c;
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
}

.home-events {
  display: grid;
  gap: 12px;
}

.home-events__list {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.home-events__item {
  width: 240px;
  flex: 0 0 auto;
  border: 1px solid #b8cee4;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.home-events--column .home-events__list {
  display: grid;
  grid-template-columns: 1fr;
  overflow: visible;
  padding-bottom: 0;
}

.home-events--column .home-events__item {
  width: 100%;
  flex: initial;
}

.home-events__main {
  padding: 16px;
  display: grid;
  gap: 8px;
}

.home-events__head {
  display: flex;
  align-items: center;
  gap: 6px;
}

.home-events__date {
  border-radius: 12px;
  background: #1475d3;
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
  line-height: 14px;
  font-weight: 700;
}

.home-events__time {
  color: #0c243c;
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
}

.home-events__title {
  margin: 0;
  color: #1475d3;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.home-events__line {
  margin: 0;
  color: #0c243c;
  font-size: 12px;
  line-height: 14px;
}

.home-events__organizer {
  min-height: 48px;
  border-top: 1px solid #b8cee4;
  background: #1475d3;
  padding: 10px;
  color: #fff;
  display: flex;
  gap: 6px;
  align-items: center;
}

.home-events__organizer-avatar {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.home-events__organizer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-events__organizer-text {
  display: grid;
  gap: 1px;
  min-width: 0;
  font-size: 12px;
  line-height: 14px;
}

.home-events__organizer-text strong {
  font-size: 12px;
  line-height: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-hanging {
  display: grid;
  gap: 12px;
}

.home-hanging__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.home-hanging__help {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #1475d3;
  background: #fff;
  color: #1475d3;
  font-size: 16px;
  line-height: 1;
}

.home-hanging__card {
  min-height: 116px;
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.home-hanging__summary {
  max-width: 120px;
  position: relative;
  z-index: 2;
}

.home-hanging__count {
  margin: 0;
  color: #1475d3;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
}

.home-hanging__text {
  margin: 6px 0 0;
  color: #0c243c;
  font-size: 16px;
  line-height: 20px;
}

.home-hanging__image {
  position: absolute;
  right: -8px;
  top: -8px;
  width: 230px;
  height: 136px;
  object-fit: contain;
}

.home-hanging__actions {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.home-hanging__action {
  flex: 1 1 0;
  min-width: 0;
  min-height: 60px;
  border-radius: 20px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  box-sizing: border-box;
}

.home-hanging__action--primary {
  background: #1475d3;
}

.home-hanging__action--navy {
  background: #0c243c;
}

.home-hanging__action-label {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

.home-news {
  display: grid;
  gap: 12px;
}

.home-news__list {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.home-news__item {
  width: 180px;
  flex: 0 0 auto;
  text-decoration: none;
  color: #0c243c;
  display: grid;
  gap: 16px;
}

.home-news__cover {
  width: 180px;
  height: 210px;
  border-radius: 16px;
  display: block;
}

.home-news__cover-image {
  width: 180px;
  height: 210px;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

.home-news__cover--pink {
  background: linear-gradient(145deg, #ff8fb2 0%, #fc799c 100%);
}

.home-news__cover--blue {
  background: linear-gradient(145deg, #2c88e4 0%, #1475d3 100%);
}

.home-news__title {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  padding: 0 8px;
}

.home-top-buddies {
  display: grid;
  gap: 12px;
}

.home-top-buddies__list {
  display: grid;
  gap: 4px;
}

.home-top-buddies__item {
  border: 1px solid #1475d3;
  border-radius: 12px;
  background: #fff;
  min-height: 64px;
  padding: 12px 16px 12px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.home-top-buddies__identity {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0c243c;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
}

.home-top-buddies__avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  flex-shrink: 0;
  object-fit: cover;
}

.home-top-buddies__games {
  color: #0c243c;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  white-space: nowrap;
}

.home-knowledge {
  display: grid;
  gap: 12px;
}

.home-knowledge__list {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.home-knowledge__item {
  width: 180px;
  height: 284px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: #1475d3;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.home-knowledge__title {
  padding: 20px 20px 0;
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
}

.home-knowledge__image {
  width: 180px;
  height: 210px;
  object-fit: cover;
  display: block;
}

.home-screen__toggle {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #fff;
  flex-shrink: 0;
  border: 1px solid rgba(12, 36, 60, 0.2);
  position: relative;
}

.home-screen__toggle-wrap {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.home-screen__toggle-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.home-screen__toggle-checkbox:checked + .home-screen__toggle::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 8px;
  width: 10px;
  height: 6px;
  border-left: 2px solid #1475d3;
  border-bottom: 2px solid #1475d3;
  transform: rotate(-45deg);
}

.home-screen__footer {
  margin-top: 24px;
  background: #0c243c;
  color: #fff;
  min-height: 371px;
  padding: 28px;
  display: grid;
  gap: 28px;
  align-content: start;
}

.home-screen__footer p {
  margin: 0;
  font-size: 16px;
}

.home-screen__footer-link {
  margin: 0;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}

.home-screen__footer-menu {
  display: grid;
  gap: 10px;
}

.home-screen__footer-menu-link {
  min-height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  font-size: 15px;
  line-height: 18px;
}

.home-screen__footer-menu-link::after {
  content: "→";
  font-size: 18px;
  line-height: 1;
  opacity: 0.95;
}

.home-screen__brand {
  width: 152px;
  height: 48px;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  display: block;
  justify-self: start;
}

.home-menu {
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 393px;
  height: var(--miniapp-vh);
  min-height: var(--miniapp-vh);
  background: #fc799c;
  transform: translate3d(calc(-50% + 100%), 0, 0);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.32s ease, opacity 0.22s ease, visibility 0.22s linear;
  will-change: transform, opacity;
  z-index: 60;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  pointer-events: none;
  padding: 0 28px 24px;
  display: flex;
  flex-direction: column;
}

.home-menu.is-open,
.home-notifications.is-open {
  transform: translate3d(-50%, 0, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.home-menu__header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 20px;
  background: #fc799c;
  z-index: 3;
}

.home-menu__logo {
  width: 152px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.home-menu__icons {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #0c243c;
}

.home-menu__header .home-screen__icon-svg {
  stroke: #0c243c;
}

.home-menu.is-open .home-menu__icons {
  color: #0c243c !important;
}

.home-menu.is-open .home-menu__icons .home-screen__icon-btn {
  color: #0c243c !important;
}

.home-menu.is-open .home-menu__icons .home-screen__icon-svg,
.home-menu.is-open .home-menu__icons .home-screen__icon-svg * {
  stroke: #0c243c !important;
}

.home-notifications {
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 393px;
  height: var(--miniapp-vh);
  min-height: var(--miniapp-vh);
  background: #fec003;
  transform: translate3d(calc(-50% + 100%), 0, 0);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.32s ease, opacity 0.22s ease, visibility 0.22s linear;
  will-change: transform, opacity;
  z-index: 61;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  pointer-events: none;
  padding: 0 28px 24px;
}

.home-notifications__header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 20px;
  background: #fec003;
  z-index: 3;
}

.home-notifications__logo {
  width: 152px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.home-notifications__icons {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #0c243c;
}

.home-notifications__header .home-screen__icon-svg {
  stroke: #0c243c;
}

.home-notifications__separator {
  margin: 0 -28px 20px;
  height: 1px;
  background: #0c243c;
}

.home-notifications__content {
  display: grid;
  gap: 12px;
}

.home-notifications__title {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #0c243c;
}

.home-notifications__list {
  display: grid;
  gap: 9px;
  padding-bottom: 12px;
}

.home-notifications__item {
  background: #fff;
  border-radius: 20px;
  min-height: 100px;
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 4px;
  padding: 12px 16px 12px 0;
  touch-action: pan-y;
  will-change: transform, opacity;
}

.home-notifications__thumb {
  width: 80px;
  height: 100px;
  object-fit: cover;
  display: block;
}

.home-notifications__item p {
  margin: 0;
  color: #0c243c;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.home-notifications__empty {
  margin: 0;
  color: #0c243c;
  font-size: 16px;
  line-height: 20px;
}

.home-notifications__empty--hidden {
  display: none;
}

.home-menu__group {
  width: 100%;
  display: grid;
  gap: 8px;
}

.home-menu__group--primary {
  margin-top: 17px;
}

.home-menu__group--secondary {
  margin-top: 17px;
}

.home-menu__separator {
  margin: 16px -28px 0;
  height: 1px;
  background: #fff;
  opacity: 0.9;
}

.home-menu__item {
  width: 100%;
  border-radius: 20px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 12px;
}

.home-menu__item-link {
  text-decoration: none;
}

.home-menu__item--light {
  min-height: 60px;
  background: #fff;
  border: 1px solid rgba(12, 36, 60, 0.2);
  color: #0c243c;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
}

.home-menu__item--outline {
  min-height: 48px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.home-menu__arrow {
  font-size: 1.6rem;
  line-height: 1;
}

.home-menu__logout {
  margin-top: auto;
  margin-bottom: 0;
}

.miniapp-page {
  position: relative;
  min-height: var(--miniapp-vh);
  background: #fff;
  overflow-x: hidden;
}

.miniapp-page__top {
  height: 140px;
  background: #1475d3;
  padding: 28px;
}

.miniapp-page__header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.miniapp-page__home-btn {
  width: 24px;
  height: 24px;
  color: #fff;
  display: grid;
  place-items: center;
}

.miniapp-page__back-btn {
  flex: 1;
  min-width: 0;
  margin-right: 0;
  min-height: 48px;
  border-radius: 20px;
  border: 1px solid rgba(12, 36, 60, 0.2);
  background: #fff;
  color: #0c243c;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.miniapp-page__icons {
  position: static;
  transform: none;
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
}

.miniapp-page__icon-svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  display: block;
}

.miniapp-page__surface {
  margin-top: -40px;
  min-height: calc(100vh - 100px);
  background: #fff;
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
  box-shadow: 0 -4px 4px rgba(12, 36, 60, 0.15);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.miniapp-page__content {
  flex: 1;
  padding: 40px 28px 0;
}

.miniapp-page__title {
  margin: 0;
  font-family: "Russo One", sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  color: #1475d3;
}

.miniapp-page__knowledge {
  margin-top: 20px;
}

.miniapp-page__section {
  margin-top: 20px;
}

.miniapp-page__flash {
  margin-top: 16px;
}

.miniapp-page__flash p {
  margin: 0;
}

.miniapp-page__flash--error {
  border: 1px solid rgba(199, 51, 88, 0.35);
  background: #fff2f5;
}

.challenge-page__description,
.challenge-page__long-text {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  color: #0c243c;
}

.challenge-page__participants {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.challenge-page__progress {
  margin-top: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
  color: #0c243c;
  font-size: 14px;
  font-weight: 700;
}

.challenge-page__progress-bars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding-top: 2px;
}

.challenge-page__progress-bars span {
  display: block;
  height: 4px;
  border-radius: 2px;
  background: #1475d3;
}

.challenge-page__avatars {
  display: flex;
  align-items: center;
}

.challenge-page__avatar,
.challenge-page__avatar-more {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid #fff;
  margin-right: -8px;
}

.challenge-page__avatar {
  object-fit: cover;
  background: #d7e4f0;
}

.challenge-page__avatar-more {
  margin-right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1475d3;
  color: #fff;
  font-size: 10px;
}

.challenge-page__participants-text {
  margin: 0;
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  color: #0c243c;
}

.challenge-page__reward {
  margin-top: 16px;
  border-radius: 30px;
  background: #1475d3;
  padding: 12px 16px;
  color: #fff;
}

.challenge-page__reward-label {
  margin: 0;
  font-size: 12px;
  line-height: 14px;
}

.challenge-page__reward-title {
  margin: 4px 0 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

.challenge-page__cover-wrap {
  margin-top: 24px;
  display: grid;
  place-items: center;
}

.challenge-page__cover-image {
  width: 100%;
  max-width: 337px;
  max-height: 240px;
  object-fit: contain;
}

.challenge-page__long-text {
  margin-top: 24px;
}

.challenge-page__actions {
  margin-top: 24px;
  display: grid;
  gap: 8px;
}

.challenge-page__submit-btn {
  width: 100%;
}

.open-game-page__hero {
  background: #0c243c;
  color: #fff;
  border-radius: 20px;
  padding: 16px;
  display: grid;
  gap: 8px;
}

.open-game-page__hero-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.open-game-page__status-pill,
.open-game-page__date-pill {
  border-radius: 999px;
  font-size: 12px;
  line-height: 14px;
  padding: 6px 10px;
  font-weight: 600;
}

.open-game-page__status-pill {
  background: #1475d3;
  color: #fff;
}

.open-game-page__date-pill {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.open-game-page__title {
  margin: 0;
  font-size: 20px;
  line-height: 24px;
  font-family: "Russo One", sans-serif;
  color: #fff;
}

.open-game-page__meta,
.open-game-page__time {
  margin: 0;
  font-size: 14px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.open-game-page__grid {
  display: grid;
  gap: 12px;
}

.open-game-page__actions {
  margin-top: 4px;
}

.game-card-page__card {
  background: #f1f3f5;
  border: 1px solid rgba(12, 36, 60, 0.12);
  border-radius: 34px;
  padding: 16px 14px 14px;
}

.game-card-page__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.game-card-page__date-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 10px;
  background: #1475d3;
  color: #fff;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  padding: 0 8px;
}

.game-card-page__time-pill {
  color: #253041;
  font-size: 18px;
  line-height: 22px;
  font-family: "Russo One", sans-serif;
}

.game-card-page__title {
  margin: 0 0 8px;
  color: #1475d3;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0.01em;
  font-family: "Russo One", sans-serif;
  text-transform: uppercase;
}

.game-card-page__line {
  margin: 0 0 4px;
  color: #2f3a4b;
  font-size: 15px;
  line-height: 22px;
}

.game-card-page__divider {
  height: 1px;
  background: rgba(12, 36, 60, 0.26);
  margin: 10px 0;
}

.game-card-page__facts {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  color: #1d2a3d;
  font-size: 14px;
  line-height: 20px;
}

.game-card-page__facts li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.game-card-page__fact-icon {
  width: 14px;
  text-align: center;
  color: #0c243c;
  font-size: 12px;
  line-height: 1;
  flex-shrink: 0;
}

.game-card-page__actions {
  margin-top: 12px;
  display: grid;
  gap: 12px;
}

.game-card-page__btn {
  width: 100%;
  min-height: 58px;
  border-radius: 20px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  text-decoration: none;
  font-size: 17px;
  line-height: 20px;
  font-weight: 400;
}

.game-card-page__btn--light {
  border: 1px solid #0c243c;
  background: #fff;
  color: #0c243c;
}

.game-card-page__btn--primary {
  border: 1px solid #1475d3;
  background: #1475d3;
  color: #fff;
}

.game-card-page__btn-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0c243c;
  color: #fff;
  font-size: 14px;
  line-height: 1;
}

.game-card-page__back-arrow {
  font-size: 26px;
  line-height: 1;
}

.find-game-form__form {
  display: grid;
  gap: 14px;
}

.find-game-form__block {
  display: grid;
  gap: 10px;
}

.find-game-form__label {
  margin: 0;
  color: #0c243c;
  font-size: 15px;
  line-height: 19px;
  font-weight: 600;
}

.find-game-form__date-input-wrap,
.find-game-form__select-wrap {
  border: 1px solid rgba(12, 36, 60, 0.25);
  border-radius: 14px;
  background: #fff;
  padding: 0 12px;
}

.find-game-form__date-input,
.find-game-form__select,
.find-game-form__cost-input {
  width: 100%;
  min-height: 44px;
  border: none;
  background: transparent;
  color: #0c243c;
  font-size: 14px;
  line-height: 18px;
}

.find-game-form__date-input:focus,
.find-game-form__select:focus,
.find-game-form__cost-input:focus {
  outline: none;
}

.date-calendar-field {
  position: relative;
  display: block;
  width: 100%;
}

.date-calendar-field__input {
  width: 100%;
}

.date-calendar-field__native {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.date-calendar-field__native--active {
  width: 44px;
  height: 44px;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  opacity: 0.01;
  pointer-events: auto;
  z-index: 3;
}

.date-calendar-field__button {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: rgba(12, 36, 60, 0.65);
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
}

.date-calendar-field__button svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.date-calendar-field__button:hover {
  background: rgba(20, 117, 211, 0.1);
  color: #1475d3;
}

.date-calendar-field__button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(20, 117, 211, 0.24);
}

.find-game-form__date-input[data-date-calendar="true"],
.create-game__input[data-date-calendar="true"],
.poll-input[data-date-calendar="true"] {
  padding-right: 48px;
}

.find-game-form__time-scale {
  position: relative;
  height: 16px;
  font-size: 12px;
  color: #0c243c;
  margin-bottom: 4px;
}

.find-game-form__time-mark {
  position: absolute;
  top: 0;
  left: calc((var(--hour) - 7) * 6.25%);
  transform: translateX(-50%);
  line-height: 16px;
  white-space: nowrap;
}

.find-game-form__slider-row {
  --time-slider-thumb-size: 24px;
  --time-slider-track-height: 4px;
  --time-slider-track-color: #a1beda;
  --time-slider-fill-color: #1475d3;
  position: relative;
  height: var(--time-slider-thumb-size);
}

.find-game-form__slider-track,
.find-game-form__slider-range {
  position: absolute;
  top: calc(50% - (var(--time-slider-track-height) / 2));
  left: calc(var(--time-slider-thumb-size) / 2);
  right: calc(var(--time-slider-thumb-size) / 2);
  height: var(--time-slider-track-height);
  border-radius: 999px;
}

.find-game-form__slider-track {
  background: var(--time-slider-track-color);
}

.find-game-form__slider-range {
  left: calc(var(--time-slider-thumb-size) / 2);
  width: calc(100% - var(--time-slider-thumb-size));
  right: auto;
  background: var(--time-slider-fill-color);
}

.find-game-form__slider-thumb {
  position: absolute;
  top: 0;
  width: var(--time-slider-thumb-size);
  height: var(--time-slider-thumb-size);
  border-radius: 50%;
  background: var(--time-slider-fill-color);
  border: 2px solid #ffffff;
  box-sizing: border-box;
  transform: translateX(-50%);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: ew-resize;
  touch-action: none;
}

.find-game-form__slider-thumb--left {
  left: calc(var(--time-slider-thumb-size) / 2);
}

.find-game-form__slider-thumb--right {
  left: calc(100% - (var(--time-slider-thumb-size) / 2));
}

.find-game-form__slider-thumb:hover {
  box-shadow: 0 0 0 4px rgba(20, 117, 211, 0.2);
}

.find-game-form__slider-row.is-keyboard-focus-left .find-game-form__slider-thumb--left,
.find-game-form__slider-row.is-keyboard-focus-right .find-game-form__slider-thumb--right {
  box-shadow: 0 0 0 4px rgba(20, 117, 211, 0.24);
  transform: translateX(-50%) scale(1.03);
}

.find-game-form__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: var(--time-slider-thumb-size);
  margin: 0;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
}

.find-game-form__range--left {
  z-index: 3;
}

.find-game-form__range--right {
  z-index: 4;
}

.find-game-form__range::-webkit-slider-thumb {
  width: var(--time-slider-thumb-size);
  height: var(--time-slider-thumb-size);
  border-radius: 50%;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  cursor: pointer;
  pointer-events: auto;
}

.find-game-form__range::-moz-range-thumb {
  width: var(--time-slider-thumb-size);
  height: var(--time-slider-thumb-size);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  border: none;
  pointer-events: auto;
}

.find-game-form__add-btn {
  min-height: 42px;
  border-radius: 14px;
  border: 1px solid #1475d3;
  background: #1475d3;
  color: #fff;
  font-size: 14px;
  line-height: 18px;
}

.find-game-form__chips {
  display: grid;
  gap: 8px;
}

.find-game-form__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  width: fit-content;
  border-radius: 999px;
  background: #0c243c;
  color: #fff;
  font-size: 12px;
  line-height: 16px;
  padding: 0 10px;
}

.find-game-form__chip-remove {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.find-game-form__grid {
  display: grid;
  gap: 8px;
}

.find-game-form__grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.find-game-form__option {
  min-height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(12, 36, 60, 0.4);
  background: #fff;
  color: #0c243c;
  font-size: 13px;
  line-height: 16px;
  text-align: left;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
}

.find-game-form__option input {
  display: none;
}

.find-game-form__option--active {
  border-color: #1475d3;
  background: #1475d3;
  color: #fff;
}

.find-game-form__option--wide {
  grid-column: 1 / -1;
}

.find-game-form__map-btn {
  min-height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(12, 36, 60, 0.35);
  background: #fff;
  color: #0c243c;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  font-size: 13px;
  line-height: 16px;
}

.find-game-form__map-pin {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: #0c243c;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.find-game-form__chat-check {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #566478;
  font-size: 13px;
  line-height: 16px;
}

.find-game-form__chat-check input {
  display: none;
}

.find-game-form__chat-checkmark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(20, 117, 211, 0.35);
  color: #96b4d4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.find-game-form__submit {
  min-height: 46px;
  border-radius: 14px;
  border: 1px solid #1475d3;
  background: #1475d3;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
}

.find-game-form__reset {
  min-height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(12, 36, 60, 0.35);
  color: #0c243c;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  font-size: 14px;
  line-height: 18px;
}

.find-game-form__results-title {
  margin: 8px 0 0;
  color: #0c243c;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
}

.find-game-form__results {
  margin-top: 6px;
  display: grid;
  gap: 10px;
}

.find-game-form__empty {
  margin-top: 6px;
}

.find-game-results-page {
  display: grid;
  gap: 14px;
}

.find-game-results-page__lead {
  margin: 0;
  color: #0c243c;
  font-size: 12px;
  line-height: 14px;
  font-weight: 600;
}

.find-game-results-page__list {
  display: grid;
  gap: 12px;
}

.find-game-results-page__empty {
  margin: 0;
}

.find-game-results-card {
  border: 1px solid #c6ccd3;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
}

.find-game-results-card__main {
  padding: 12px 12px 8px;
  display: grid;
  gap: 6px;
}

.find-game-results-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.find-game-results-card__date {
  border-radius: 10px;
  background: #1475d3;
  color: #fff;
  padding: 3px 8px;
  font-size: 10px;
  line-height: 12px;
  font-weight: 700;
}

.find-game-results-card__time {
  color: #0c243c;
  font-size: 10px;
  line-height: 12px;
  font-weight: 500;
}

.find-game-results-card__title {
  margin: 0;
  color: #1475d3;
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  font-family: "Russo One", sans-serif;
}

.find-game-results-card__meta,
.find-game-results-card__organizer {
  margin: 0;
  color: #0c243c;
  font-size: 12px;
  line-height: 14px;
}

.find-game-results-card__divider {
  margin-top: 2px;
  border-top: 1px solid #cfd9e3;
}

.find-game-results-card__facts {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 3px;
  font-size: 12px;
  line-height: 14px;
  color: #0c243c;
}

.find-game-results-card__facts li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.find-game-results-card__fact-icon {
  width: 12px;
  text-align: center;
  color: #0c243c;
  font-size: 11px;
  line-height: 12px;
}

.find-game-results-card__actions {
  padding: 0 12px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.find-game-results-card__action-icon {
  width: 30px;
  height: 30px;
  border: 1px solid #0c243c;
  border-radius: 50%;
  color: #0c243c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}

.find-game-results-card__details-btn {
  flex: 1;
  min-height: 34px;
  border-radius: 17px;
  border: 1px solid #0c243c;
  background: #fff;
  color: #0c243c;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  font-size: 14px;
  line-height: 18px;
}

.find-game-results-page__home-btn {
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid #1475d3;
  background: #1475d3;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
}

.find-game-results-page__home-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.static-content-page__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.static-content-page__date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 12px;
  background: #1475d3;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

.static-content-page__time {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: #0c243c;
}

.static-content-page__title {
  margin: 0;
  font-family: "Russo One", sans-serif;
  font-size: 24px;
  line-height: 32px;
  color: #1475d3;
}

.static-content-page__subtitle {
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 20px;
  color: #0c243c;
}

.static-content-page__image-wrap {
  margin-top: 32px;
  width: 100%;
  height: 210px;
  display: grid;
  place-items: center;
}

.static-content-page__image {
  width: 100%;
  max-height: 210px;
  object-fit: contain;
}

.static-content-page__body {
  margin-top: 32px;
}

.static-content-page__body p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 20px;
  color: #0c243c;
}

.static-content-page__body p:last-child {
  margin-bottom: 0;
}

.static-content-page__back-btn {
  margin-top: 32px;
}

.static-content-page__related {
  margin-top: 32px;
}

.static-content-page__related h3 {
  margin: 0;
  font-family: "Russo One", sans-serif;
  font-size: 20px;
  line-height: 24px;
  color: #1475d3;
}

.static-content-page__related-list {
  margin-top: 12px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 180px;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.static-content-page__related-item {
  display: grid;
  gap: 16px;
  text-decoration: none;
  color: #0c243c;
}

.static-content-page__related-item span {
  display: block;
  padding: 0 8px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
}

.static-content-page__related-image,
.static-content-page__related-item .home-news__cover {
  width: 180px;
  height: 210px;
  border-radius: 16px;
  object-fit: cover;
}

.miniapp-page__footer {
  margin-top: 24px;
}

.ready-today {
  display: grid;
  gap: 20px;
}

.ready-today__filters {
  display: flex;
  gap: 12px;
}

.ready-today__filters-main {
  flex: 1;
  min-width: 0;
  min-height: 48px;
  border-radius: 20px;
  border: none;
  background: #1475d3;
  color: #fff;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  text-decoration: none;
  box-sizing: border-box;
}

.ready-today__filters-main-start {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.ready-today__filters-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f5c400;
}

.ready-today__filters-main img,
.ready-today__filters-sort img {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
}

.ready-today__filters-sort {
  width: 48px;
  height: 48px;
  max-width: 48px;
  flex-shrink: 0;
  border-radius: 20px;
  border: none;
  background: #1475d3;
  display: grid;
  place-items: center;
  padding: 0;
  text-decoration: none;
  box-sizing: border-box;
}

.ready-today__list {
  display: grid;
  gap: 12px;
}

.ready-today__card {
  border: 1px solid #a1beda;
  border-radius: 30px;
  padding: 20px;
  display: grid;
  gap: 16px;
}

.ready-today__card--selected {
  border-color: #1475d3;
}

.ready-today__head {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.ready-today__profile {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 8px;
}

.ready-today__avatar {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}

.ready-today__avatar--fallback {
  background: #d9e7f5;
}

.ready-today__meta {
  min-width: 0;
}

.ready-today__name-line {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.ready-today__name-line strong {
  font-size: 16px;
  line-height: 20px;
  color: #0c243c;
}

.ready-today__rating {
  background: #a1beda;
  border-radius: 12px;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  line-height: 14px;
  color: #0c243c;
}

.ready-today__rating img {
  width: 12px;
  height: 12px;
  display: block;
}

.ready-today__meta p {
  margin: 0;
  font-size: 12px;
  line-height: 14px;
  color: #0c243c;
}

.ready-today__pick {
  width: 48px;
  height: 48px;
  border-radius: 20px;
  border: 1px solid #a1beda;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 0;
  flex-shrink: 0;
}

.ready-today__pick--selected {
  border-color: #1475d3;
}

.ready-today__pick img {
  width: 24px;
  height: 24px;
  display: block;
}

.ready-today__details {
  display: grid;
  gap: 4px;
}

.ready-today__details p {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 14px;
  line-height: 20px;
  color: #0c243c;
}

.ready-today__details p img {
  width: 12px;
  height: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

.ready-today__actions {
  display: grid;
  gap: 12px;
}

.ready-today__action {
  min-height: 60px;
  border-radius: 20px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
}

.ready-today__action img {
  width: 24px;
  height: 24px;
  display: block;
}

.ready-today__action--dark {
  border: 2px solid rgba(12, 36, 60, 0.2);
  background: #1475d3;
  color: #fff;
}

.ready-today__action--outline {
  border: 1px solid #0c243c;
  background: #fff;
  color: #0c243c;
}

.ready-today__empty {
  margin: 0;
  padding: 16px;
  border-radius: 20px;
  background: #f5f8fc;
  color: #0c243c;
  font-size: 14px;
  line-height: 20px;
}

.ready-today__empty--hidden {
  display: none;
}

.my-games {
  display: grid;
  gap: 20px;
}

.my-games__filters {
  display: flex;
  gap: 12px;
}

.my-games__filters-main {
  width: auto;
  flex: 1;
  min-width: 0;
  min-height: 48px;
  border-radius: 20px;
  border: none;
  background: #1475d3;
  color: #fff;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.my-games__filters-main-start {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.my-games__filters-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f5c400;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.my-games__filters-main--active .my-games__filters-dot {
  opacity: 1;
  transform: scale(1);
}

.my-games__filters-main img,
.my-games__filters-sort img {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
}

.my-games__filters-sort {
  width: 48px;
  max-width: 48px;
  height: 48px;
  border-radius: 20px;
  border: none;
  background: #1475d3;
  display: grid;
  place-items: center;
  padding: 0;
  flex-shrink: 0;
}

.my-games__list {
  display: grid;
  gap: 12px;
}

.my-games__card {
  border: 1px solid #a1beda;
  border-radius: 30px;
  padding: 20px;
  display: grid;
  gap: 16px;
}

.my-games__body {
  display: grid;
  gap: 12px;
}

.my-games__heading {
  display: grid;
  gap: 6px;
}

.my-games__date-row {
  display: flex;
  gap: 6px;
  align-items: center;
  min-width: 0;
}

.my-games__date-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 4px 8px;
  background: #1475d3;
  color: #fff;
  font-size: 12px;
  line-height: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.my-games__date-time {
  color: #0c243c;
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.my-games__name {
  margin: 0;
  color: #1475d3;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.my-games__meta {
  display: grid;
  gap: 8px;
}

.my-games__meta p {
  margin: 0;
  color: #0c243c;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.my-games__divider {
  height: 1px;
  background: #a1beda;
}

.my-games__details {
  display: grid;
  gap: 8px;
}

.my-games__details p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #0c243c;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.my-games__details p img {
  width: 12px;
  height: 12px;
  display: block;
  flex-shrink: 0;
}

.my-games__actions {
  display: flex;
  gap: 12px;
}

.my-games__quick-action {
  width: 48px;
  height: 48px;
  border-radius: 20px;
  border: 1px solid #0c243c;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 0;
}

.my-games__quick-action img {
  max-width: 28px;
  max-height: 28px;
  display: block;
}

.my-games__details-btn {
  flex: 1;
  min-height: 48px;
  border-radius: 20px;
  border: 1px solid #0c243c;
  background: #fff;
  color: #0c243c;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.my-games__details-btn img {
  width: 24px;
  height: 24px;
  display: block;
}

.my-games__filter-empty {
  margin: 0;
  padding: 20px;
  text-align: center;
  color: #0c243c;
  font-size: 15px;
  line-height: 20px;
  border: 1px dashed #a1beda;
  border-radius: 20px;
}

/* Нижняя панель сортировки (макет WORKBOARD 145:8180) */
.my-games-sort {
  position: fixed;
  inset: 0;
  z-index: 57;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s linear;
}

.my-games-sort--open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}

.my-games-sort__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 36, 60, 0.35);
  cursor: pointer;
}

.my-games-sort__sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 28px calc(16px + env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.my-games-sort__sheet .my-games-sort__panel {
  pointer-events: auto;
}

.my-games-sort__panel {
  width: 100%;
  max-width: 393px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid #1475d3;
  border-radius: 20px;
  background: #fff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.my-games-sort__option {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #dae8f6;
  color: #0c243c;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  box-sizing: border-box;
}

.my-games-sort__option--active {
  background: #1475d3;
  color: #fff;
}

body.my-games-filter-body-lock,
body.my-games-sort-body-lock {
  overflow: hidden;
}

.my-games-filter {
  position: fixed;
  inset: 0;
  z-index: 58;
  background: #fff;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s linear;
}

.my-games-filter--open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}

.my-games-filter__panel {
  width: 100%;
  max-width: 393px;
  margin: 0 auto;
  padding: 32px 28px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 28px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.my-games-filter__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.my-games-filter__title {
  margin: 0;
  font-family: "Russo One", sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  color: #1475d3;
}

.my-games-filter__close {
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.my-games-filter__close-icon {
  width: 24px;
  height: 24px;
  stroke: #1475d3;
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
}

.my-games-filter__rule {
  height: 1px;
  background: #dae8f6;
  margin: 0;
  flex-shrink: 0;
}

.my-games-filter__reset {
  width: 100%;
  min-height: 48px;
  border-radius: 20px;
  border: 1px solid rgba(12, 36, 60, 0.25);
  background: #fff;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: inherit;
  box-sizing: border-box;
}

.my-games-filter__reset-label {
  flex: 1;
  text-align: left;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #000;
}

.my-games-filter__reset-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke: #0c243c;
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
}

.my-games-filter__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0;
  width: 100%;
}

.my-games-filter__section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.my-games-filter__label {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #0c243c;
}

.my-games-filter__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Сетка 4+3 в две строки (макет WORKBOARD); обход глобального button { width: 100% } в одну колонку */
.my-games-filter__chips--ratings {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.my-games-filter__chips--ratings .my-games-filter__chip {
  width: 100%;
  justify-self: stretch;
  text-align: center;
}

.my-games-filter__chips--row {
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 2px;
  -webkit-overflow-scrolling: touch;
}

.my-games-filter__chip {
  width: auto;
  flex: 0 0 auto;
  box-sizing: border-box;
  border-radius: 20px;
  padding: 12px 16px;
  border: 1px solid #0c243c;
  background: #fff;
  color: #0c243c;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
}

.my-games-filter__chip--active {
  background: #1475d3;
  border-color: #1475d3;
  color: #fff;
}

.my-games-filter__court {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.my-games-filter__visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.my-games-filter__select-wrap {
  position: relative;
  display: block;
  width: 100%;
}

.my-games-filter__select {
  width: 100%;
  min-height: 60px;
  border-radius: 20px;
  border: 1px solid rgba(12, 36, 60, 0.5);
  background: #fff;
  line-height: normal;
  padding: 0 52px 0 20px;
  font-size: 16px;
  font-weight: 500;
  font-family: inherit;
  color: #0c243c;
  appearance: none;
  cursor: pointer;
  box-sizing: border-box;
}

.my-games-filter__select option {
  color: #0c243c;
}

.my-games-filter__select.my-games-filter__select--placeholder {
  color: rgba(12, 36, 60, 0.5);
}

.my-games-filter__select-chevron {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  pointer-events: none;
  display: block;
}

.my-games-filter__map-btn {
  flex: 1 0 auto;
  min-height: 60px;
  border-radius: 20px;
  border: 1px solid #0c243c;
  background: #fff;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-decoration: none;
  color: #0c243c;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  box-sizing: border-box;
}

.my-games-filter__map-btn-text {
  flex: 1;
  min-width: 0;
}

.my-games-filter__map-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
  color: #0c243c;
}

.my-games-filter__time-rows {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.my-games-filter__time-row {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.my-games-filter__slider-block {
  flex: 1;
  min-width: 0;
}

/* Тот же блок времени, что и в find-game-form (шкала + слайдер + перетаскивание ползунков) */
.my-games-filter__slider-block .find-game-form__time-scale {
  font-size: 14px;
  margin-bottom: 8px;
}

.my-games-filter__slider-block .find-game-form__time-mark {
  line-height: 20px;
}

.my-games-filter__slider-block .find-game-form__slider-track {
  background: var(--time-slider-track-color);
}

.my-games-filter__time-action {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 16px;
  padding: 0;
  font-family: inherit;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.my-games-filter__time-action--add {
  border: 1px solid #0c243c;
  background: #0c243c;
  color: #fff;
  cursor: pointer;
}

.my-games-filter__time-action--add:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.my-games-filter__time-action--remove {
  border: 1px solid #0c243c;
  background: #0c243c;
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.my-games-filter__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.my-games-filter__apply {
  width: 100%;
  min-height: 60px;
  border-radius: 20px;
  border: none;
  background: #1475d3;
  color: #fff;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  box-sizing: border-box;
}

.my-games-filter__apply span {
  flex: 1;
  text-align: left;
}

.my-games-filter__apply-arrow {
  flex-shrink: 0;
  display: block;
  transform: rotate(90deg);
}

.my-games-filter__dismiss {
  width: 100%;
  min-height: 60px;
  border-radius: 20px;
  border: 1px solid #0c243c;
  background: #fff;
  color: #0c243c;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  box-sizing: border-box;
}

.my-games-filter__dismiss span {
  flex: 1;
  text-align: left;
}

.my-games-filter__dismiss-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke: #0c243c;
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
}

.profile-page {
  display: grid;
  gap: 12px;
}

.profile-page__section {
  display: grid;
  gap: 12px;
}

.profile-page__section-title {
  margin: 0;
  color: #0c243c;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

.profile-page__card,
.profile-page__stat-card,
.profile-page__recent-card,
.profile-page__friend,
.profile-page__questionnaire,
.profile-page__qr-card {
  border: 1px solid #a1beda;
  border-radius: 20px;
  padding: 20px;
  background: #fff;
}

.profile-page__identity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-page__avatar-wrap {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  border: 1px solid #a1beda;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.profile-page__avatar,
.profile-page__avatar-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-page__identity-text {
  display: grid;
  gap: 8px;
}

.profile-page__name {
  margin: 0;
  color: #0c243c;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

.profile-page__id {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  background: #a1beda;
  padding: 6px 12px;
  color: #0c243c;
  font-size: 14px;
  line-height: 18px;
}

.profile-page__rating {
  margin: 16px 0;
  color: #0c243c;
  font-size: 16px;
  line-height: 20px;
}

.profile-page__rating strong {
  font-weight: 700;
}

.profile-page__stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.profile-page__stat-card {
  display: grid;
  gap: 4px;
}

.profile-page__stat-card--half {
  min-height: 110px;
}

.profile-page__stat-label {
  margin: 0;
  color: #0c243c;
  font-size: 14px;
  line-height: 18px;
}

.profile-page__stat-value {
  margin: 0;
  color: #0c243c;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
}

.profile-page__btn {
  width: 100%;
  min-height: 60px;
  border-radius: 20px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
}

.profile-page__btn--dark {
  border: none;
  background: #1475d3;
  color: #fff;
}

.profile-page__btn--outline {
  border: 1px solid #0c243c;
  background: #fff;
  color: #0c243c;
}

.profile-page__btn-link {
  text-decoration: none;
}

.profile-page__recent-card {
  display: grid;
  gap: 12px;
  border-radius: 30px;
}

.profile-page__recent-head {
  display: flex;
  gap: 6px;
  align-items: center;
}

.profile-page__recent-title {
  margin: 0;
  color: #1475d3;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.profile-page__recent-line {
  margin: 0;
  color: #0c243c;
  font-size: 14px;
  line-height: 18px;
}

.profile-page__achievements {
  display: flex;
  gap: 12px;
  overflow-x: auto;
}

.profile-page__achievement {
  min-width: 180px;
  border: 1px solid #a1beda;
  border-radius: 20px;
  padding: 16px;
  text-align: center;
  display: grid;
  gap: 8px;
}

.profile-page__achievement-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

.profile-page__achievement-title {
  margin: 0;
  color: #0c243c;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

.profile-page__achievement-desc {
  margin: 0;
  color: #0c243c;
  font-size: 12px;
  line-height: 14px;
}

.profile-page__achievement-rarity {
  margin: 0;
  padding: 6px 10px;
  border-radius: 20px;
  background: #a1beda;
  color: #0c243c;
  font-size: 12px;
  line-height: 14px;
}

.profile-page__text {
  margin: 0;
  color: #0c243c;
  font-size: 14px;
  line-height: 18px;
}

.profile-page__invite-link {
  min-height: 60px;
  border: 1px solid rgba(12, 36, 60, 0.25);
  border-radius: 20px;
  display: block;
  padding: 16px 20px;
  color: #0c243c;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.profile-page__qr-card {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.profile-page__qr-image {
  width: 241px;
  height: 240px;
  object-fit: contain;
}

.profile-page__friend {
  display: grid;
  gap: 4px;
}

.profile-page__friend-name {
  margin: 0;
  color: #0c243c;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

.profile-page__friend-summary {
  margin: 0;
  color: #0c243c;
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
}

.profile-page__friend-contacts {
  margin: 0;
  color: #0c243c;
  font-size: 12px;
  line-height: 14px;
}

.profile-page__questionnaire {
  display: grid;
  gap: 16px;
}

.profile-page__edit-form {
  display: grid;
  gap: 12px;
}

.profile-page__edit-options {
  display: grid;
  gap: 8px;
}

.profile-page__edit-options--grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile-page__edit-input {
  min-height: 48px;
  border: 1px solid rgba(12, 36, 60, 0.5);
  border-radius: 14px;
  padding: 0 14px;
  font-size: 14px;
}

.profile-page__edit-flash {
  margin: 0;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 14px;
  line-height: 18px;
}

.profile-page__edit-flash--success {
  border-color: #86e0b2;
  background: #ecfdf5;
  color: #065f46;
}

.profile-page__edit-flash--error {
  border-color: #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

.profile-page__field {
  display: grid;
  gap: 6px;
}

.profile-page__fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.profile-page__legend {
  float: left;
  width: 100%;
  margin-bottom: 6px;
}

.profile-page__field-label {
  margin: 0;
  color: #0c243c;
  font-size: 14px;
  line-height: 18px;
}

.profile-page__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.profile-page__chip {
  border-radius: 999px;
  padding: 8px 16px;
  background: #a1beda;
  color: #0c243c;
  font-size: 16px;
  line-height: 20px;
}

@media (max-width: 360px) {
  .miniapp-page__top {
    padding: 24px 16px;
  }

  .miniapp-page__header {
    gap: 12px;
  }

  .miniapp-page__icons {
    gap: 12px;
  }

  .miniapp-page__back-btn {
    padding: 0 14px;
    font-size: 14px;
    line-height: 18px;
  }
}

.create-game {
  display: grid;
  gap: 20px;
}

.create-game__form {
  display: grid;
  gap: 40px;
}

.create-game__section {
  display: grid;
  gap: 12px;
}

.create-game__section[hidden] {
  display: none;
}

.create-game__label {
  margin: 0;
  color: #0c243c;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

.create-game__hint {
  margin: 0;
  color: #0c243c;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}

.create-game__input {
  width: 100%;
  min-height: 60px;
  border-radius: 20px;
  border: 1px solid rgba(12, 36, 60, 0.5);
  background: #fff;
  padding: 0 20px;
  color: #0c243c;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.create-game__input::placeholder {
  color: rgba(12, 36, 60, 0.5);
}

.create-game__input-wrap {
  width: 100%;
  min-height: 60px;
  border-radius: 20px;
  border: 1px solid rgba(12, 36, 60, 0.5);
  background: #fff;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.create-game__input--wrapped {
  min-height: auto;
  border: none;
  padding: 0;
  background: transparent;
}

.create-game__input-icon {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
}

.create-game__input-icon--right {
  margin-left: auto;
}

.create-game__format-grid {
  display: flex;
  gap: 8px;
}

.create-game__radio-card {
  position: relative;
  min-height: 60px;
  border: 1px solid #0c243c;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  color: #0c243c;
  background: #fff;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  cursor: pointer;
  flex: 1;
}

.create-game__radio-card--full {
  width: 100%;
}

.create-game__radio-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.create-game__radio-card.is-active {
  background: #1475d3;
  border-color: #1475d3;
  color: #fff;
}

.create-game__time-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.create-game__time-row .create-game__input {
  flex: 1;
  min-width: 0;
}

.create-game__time-sep {
  width: 12px;
  height: 1px;
  background: #0c243c;
  border-radius: 1px;
}

.create-game__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.create-game__chip {
  min-height: 36px;
  border-radius: 999px;
  border: 1px solid #0c243c;
  background: #fff;
  color: #0c243c;
  padding: 0 14px;
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
}

.create-game__stepper {
  min-height: 60px;
  border-radius: 20px;
  border: 1px solid #0c243c;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 10px;
}

.create-game__stepper-btn {
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #0c243c;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.create-game__stepper-btn[data-stepper="minus"] {
  transform: translateY(-1px);
}

.create-game__stepper-value {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  text-align: center;
  color: #0c243c;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
}

.create-game__stepper-value:focus,
.create-game__input:focus {
  outline: none;
}

.create-game__submit {
  width: 100%;
  min-height: 60px;
  border-radius: 20px;
  border: none;
  background: #1475d3;
  color: #fff;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  margin-top: 0;
}

.create-game__secondary-btn {
  width: 100%;
  min-height: 60px;
  border-radius: 20px;
  border: 1px solid #0c243c;
  background: #fff;
  color: #0c243c;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
}

.create-game__court-actions {
  display: flex;
  gap: 12px;
}

.create-game__club-select {
  margin-top: 12px;
}

.create-game__club-select .poll-club-select__toggle {
  width: 100%;
}

.create-game__city-group + .create-game__city-group {
  border-top: 1px solid rgba(12, 36, 60, 0.16);
}

.create-game__city-group-title {
  margin: 0;
  padding: 12px 20px 8px;
  font-size: 13px;
  line-height: 16px;
  font-weight: 700;
  color: #0c243c;
  background: #eef4fb;
}

.create-game__club-group + .create-game__club-group {
  border-top: 1px solid rgba(12, 36, 60, 0.12);
}

.create-game__club-group-title {
  margin: 0;
  padding: 10px 20px 8px;
  font-size: 12px;
  line-height: 14px;
  font-weight: 600;
  color: #0c243c;
  opacity: 0.72;
  background: #f6f8fb;
}

.create-game__court-btn {
  flex: 1;
  min-height: 60px;
  border-radius: 20px;
  border: 1px solid #0c243c;
  background: #fff;
  color: #0c243c;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  text-align: left;
}

.create-game__court-btn img {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
}

.create-game__rating-scale {
  --create-game-rating-thumb-size: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 calc(var(--create-game-rating-thumb-size) / 2);
  color: #0c243c;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 16px;
}

.create-game__rating-scale span {
  text-align: center;
}

.create-game__rating-slider {
  position: relative;
  --create-game-rating-thumb-size: 24px;
  --create-game-rating-track-height: 4px;
  height: var(--create-game-rating-thumb-size);
  display: flex;
  align-items: center;
  overflow: visible;
}

.create-game__rating-track {
  position: absolute;
  left: calc(var(--create-game-rating-thumb-size) / 2);
  right: calc(var(--create-game-rating-thumb-size) / 2);
  top: calc(50% - (var(--create-game-rating-track-height) / 2));
  height: var(--create-game-rating-track-height);
  border-radius: 999px;
  background: #a1beda;
}

.create-game__rating-range {
  position: absolute;
  top: calc(50% - (var(--create-game-rating-track-height) / 2));
  height: var(--create-game-rating-track-height);
  border-radius: 999px;
  background: #1475d3;
}

.create-game__range {
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--create-game-rating-thumb-size);
  margin: 0;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}

.create-game__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: var(--create-game-rating-thumb-size);
  height: var(--create-game-rating-thumb-size);
  border-radius: 50%;
  border: none;
  background: #1475d3;
  box-shadow: none;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
  pointer-events: auto;
  cursor: pointer;
}

.create-game__range::-moz-range-thumb {
  width: var(--create-game-rating-thumb-size);
  height: var(--create-game-rating-thumb-size);
  border-radius: 50%;
  border: none;
  background: #1475d3;
  box-shadow: none;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
  pointer-events: auto;
  cursor: pointer;
}

.create-game__range:hover::-webkit-slider-thumb {
  box-shadow: 0 0 0 4px rgba(20, 117, 211, 0.2);
}

.create-game__range:hover::-moz-range-thumb {
  box-shadow: 0 0 0 4px rgba(20, 117, 211, 0.2);
}

.create-game__range:focus-visible::-webkit-slider-thumb {
  box-shadow: 0 0 0 4px rgba(20, 117, 211, 0.24);
  transform: scale(1.03);
}

.create-game__range:focus-visible::-moz-range-thumb {
  box-shadow: 0 0 0 4px rgba(20, 117, 211, 0.24);
  transform: scale(1.03);
}

.create-game__range::-moz-range-track {
  background: transparent;
  border: none;
}

.create-game__check-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  cursor: pointer;
}

.create-game__check-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.create-game__check-mark {
  width: 48px;
  height: 48px;
  border: 1px solid #1475d3;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: #1475d3;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

.create-game__check-row input:not(:checked) + .create-game__check-mark {
  color: transparent;
}

.create-game__check-text {
  color: #0c243c;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  padding-top: 6px;
}

.registration-screen {
  position: relative;
  min-height: var(--miniapp-vh);
  background: #1475d3;
  color: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.registration-screen__hero {
  position: absolute;
  top: -11.91px;
  left: -62.19px;
  width: 542.621px;
  height: 479.473px;
  pointer-events: none;
  z-index: 0;
}

.registration-screen__hero-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.registration-screen__content {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 0 2rem 3rem;
  display: grid;
  gap: 1.25rem;
}

.registration-screen__copy {
  display: grid;
  gap: 0.8rem;
}

.registration-screen__title {
  margin: 0;
  display: grid;
  gap: 0.1rem;
  font-family: "Russo One", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.18;
}

.registration-screen__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25rem;
}

.registration-screen__question {
  margin: 0.25rem 0 0;
  font-family: "Russo One", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2rem;
}

.registration-screen__actions {
  display: grid;
  gap: 0.5rem;
}

/* ── Onboarding screen ── */

.onboarding-screen {
  position: relative;
  min-height: var(--miniapp-vh);
  background: #fff;
  overflow: visible;
}

.onboarding-screen__curve {
  position: absolute;
  left: -186px;
  top: -108px;
  width: 760px;
  height: 224px;
  border: 16px solid #1475d3;
  border-left: none;
  border-right: none;
  border-bottom: none;
  border-radius: 999px;
  transform: rotate(-142deg);
  opacity: 0.95;
}

.onboarding-screen__hero {
  position: absolute;
  z-index: 1;
  top: 50px;
  left: -95px;
  width: 539px;
  height: 474px;
  pointer-events: none;
}

.onboarding-screen__hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.onboarding-screen__content {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: clamp(24px, 6vh, 80px);
  z-index: 2;
  display: grid;
  gap: 12px;
}

.onboarding-screen__title {
  margin: 0;
  color: #1475d3;
  font-family: "Russo One", sans-serif;
  font-size: 2rem;
  line-height: 2.375rem;
  font-weight: 400;
}

.onboarding-screen__text {
  margin: 0;
  color: #0c243c;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 400;
}

.onboarding-screen__subtitle {
  margin: 0;
  color: #0c243c;
  font-family: "Russo One", sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
}

.onboarding-screen__btn {
  margin-top: 8px;
  height: 60px;
  border: 1px solid #1475d3;
  border-radius: 20px;
  background: #1475d3;
  color: #fff;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.onboarding-screen__btn:hover {
  filter: brightness(1.08);
}

.onboarding-screen__btn-arrow {
  font-size: 1.6rem;
  line-height: 1;
}

@media (max-width: 393px) {
  .onboarding-screen__content {
    left: 16px;
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom));
  }

  .onboarding-screen__hero {
    left: -100px;
    width: 545px;
  }
}

.registration-btn {
  height: 3.75rem;
  border-radius: 1.25rem;
  border: 1px solid;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.registration-btn--light {
  border-color: rgba(12, 36, 60, 0.25);
  background: #fff;
  color: #1475d3;
}

.registration-btn__arrow {
  font-size: 1.6rem;
  line-height: 1;
  transform: translateY(-1px);
}

.registration-btn--outline {
  border-color: #fff;
  background: transparent;
  color: #fff;
}

/* ── Registration info modal ── */

.reg-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(20, 117, 211, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.reg-modal-overlay--visible {
  opacity: 1;
  pointer-events: auto;
}

.reg-modal-sheet {
  position: relative;
  width: 100%;
  max-width: 337px;
  background: #fff;
  border-radius: 1.75rem;
  padding: 1.75rem 1.75rem 0;
  display: grid;
  gap: 1.25rem;
  overflow: hidden;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.reg-modal-overlay--visible .reg-modal-sheet {
  transform: translateY(0);
}

.reg-modal-header {
  display: grid;
  gap: 0.75rem;
}

.reg-modal-title {
  margin: 0;
  font-family: "Russo One", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #1475d3;
}

.reg-modal-lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25rem;
  color: #0c243c;
}

.reg-modal-lead--medium {
  font-weight: 500;
}

.reg-modal-btn {
  height: 3.75rem;
  border-radius: 1rem;
  border: none;
  background: #1475d3;
  color: #fff;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  text-decoration: none;
}

.reg-modal-btn:hover {
  filter: brightness(1.08);
}

.reg-modal-image {
  margin: 0 -1.75rem;
  height: 17.5rem;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.reg-modal-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Poll (questionnaire) screen ── */

.poll-screen {
  position: relative;
  min-height: var(--miniapp-vh);
  background: #f4f6fa;
  display: flex;
  flex-direction: column;
  padding-bottom: 11.5rem; /* резервируем под фиксированный футер */
}

.poll-screen__tiger {
  position: absolute;
  top: 0;
  right: 0;
  width: 181px;
  height: 185px;
  pointer-events: none;
  z-index: 0;
}

.poll-screen__tiger-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.poll-screen__header {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem 0;
}

.poll-screen__title {
  margin: 0;
  display: grid;
  font-family: "Russo One", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #1475d3;
}

.poll-screen__body {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 2rem 2rem 0;
}

.poll-screen__footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 393px;
  height: 11.5rem;
  z-index: 10;
}

.poll-screen__footer,
.poll-screen__dome {
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.poll-screen__dome {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  pointer-events: none;
  z-index: 0;
}

.poll-screen__footer-content {
  position: absolute;
  bottom: 3rem;
  left: 2rem;
  right: 2rem;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
}

.poll-screen__btn {
  height: 3.75rem;
  border-radius: 1.25rem;
  border: none;
  background: #1475d3;
  color: #fff;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
}

.poll-screen__btn:hover {
  filter: brightness(1.08);
}

.poll-screen__btn-light {
  height: 3.75rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(12, 36, 60, 0.25);
  background: #fff;
  color: #000;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 500;
  width: 100%;
}

.poll-screen__btn-light--hidden {
  display: none;
}

.poll-screen__btn:disabled,
.poll-screen__btn--disabled {
  background: #b3c9df;
  color: #83a0bd;
  cursor: not-allowed;
}

.poll-screen__btn:disabled:hover,
.poll-screen__btn--disabled:hover {
  filter: none;
}

.poll-screen__btn-arrow {
  font-size: 1.4rem;
  line-height: 1;
}

.poll-screen__progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.poll-screen__dot {
  flex: 1;
  height: 8px;
  border-radius: 4px;
  border: 1.5px solid #fff;
  background: transparent;
  transition: background 0.2s;
}

.poll-screen__dot--active {
  background: #fff;
  border-color: #fff;
}

/* ── Onboarding poll (4 steps) ── */

.onboarding-poll-screen {
  background: #f4f6fa;
}

.onboarding-poll-screen__header {
  display: none;
}

.onboarding-poll-screen__body {
  padding-top: 0;
}

.onboarding-poll-screen__text {
  margin: 0;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(12, 36, 60, 0.12);
  background: #fff;
  color: #0c243c;
  font-size: 1rem;
  line-height: 1.4rem;
}

.onboarding-poll-step1 {
  display: grid;
  gap: 0.5rem;
}

.onboarding-poll-step1__hero {
  margin: -0.5rem -2rem 0;
  height: auto;
  overflow: visible;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.onboarding-poll-step1__hero-image {
  width: 393px;
  max-width: 393px;
  height: auto;
  display: block;
}

.onboarding-poll-step1__content {
  display: grid;
  gap: 0.5rem;
  margin-top: -50px;
}

.poll-step[data-step="3"] .onboarding-poll-step1__content {
  margin-top: -150px;
}

.poll-step[data-step="4"] .onboarding-poll-step1__content {
  margin-top: -30px;
}

.onboarding-poll-step1__title {
  margin: 0;
  font-family: "Russo One", sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
  color: #1475d3;
}

.onboarding-poll-step1__lead,
.onboarding-poll-step1__outro {
  margin: 0;
  color: #0c243c;
  font-size: 1rem;
  line-height: 1.25rem;
}

.onboarding-poll-step1__rules {
  display: grid;
  gap: 0.375rem;
}

.onboarding-poll-step1__rule {
  margin: 0;
  min-height: 2.375rem;
  border: 1px solid #fc799c;
  border-radius: 0.75rem;
  padding: 0.625rem 1rem;
  display: flex;
  align-items: center;
  color: #0c243c;
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: 500;
  background: #fff;
}

/* ── Poll steps ── */

.poll-step {
  display: grid;
  gap: 1.5rem;
  animation: poll-enter 0.2s ease both;
}

.poll-step--hidden {
  display: none;
}

.poll-step--enter {
  animation: poll-enter 0.2s ease both;
}

.poll-step--exit {
  animation: poll-exit 0.15s ease both;
}

@keyframes poll-enter {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes poll-exit {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-16px); }
}

/* ── Poll form elements ── */

.poll-field {
  display: grid;
  gap: 0.6rem;
}

.poll-label {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25rem;
  color: #0c243c;
}

.poll-label--regular {
  font-weight: 400;
}

.poll-input {
  width: 100%;
  border: 1px solid rgba(12, 36, 60, 0.5);
  border-radius: 1.25rem;
  padding: 0 1.25rem;
  min-height: 3.75rem;
  font: inherit;
  font-size: 1rem;
  color: #111;
  background: #fff;
  transition: border-color 0.15s, color 0.15s;
}

.poll-input:focus {
  outline: none;
  border-color: #1475d3;
}

.poll-input::placeholder {
  color: rgba(12, 36, 60, 0.5);
}

.poll-input--tall {
  height: 3.75rem;
}

.poll-hidden-file-input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.poll-upload-btn {
  min-height: 3.75rem;
  border-radius: 1.25rem;
  border: 1px solid #1475d3;
  background: #1475d3;
  color: #fff;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 500;
}

.poll-upload-btn__plus {
  font-size: 1.4rem;
  line-height: 1;
}

.poll-upload-btn:hover {
  filter: brightness(1.08);
}

.poll-avatar-preview {
  min-height: 3.75rem;
  border-radius: 1rem;
  border: 1px solid #1475d3;
  background: #1475d3;
  color: #fff;
  padding: 0.2rem 0.75rem 0.2rem 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.poll-avatar-preview--hidden {
  display: none;
}

.poll-avatar-preview__image {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 0.875rem;
  object-fit: cover;
  border: 1px solid #fff;
  flex-shrink: 0;
}

.poll-avatar-preview__label {
  flex: 1;
  font-size: 1rem;
  font-weight: 500;
}

.poll-avatar-preview__remove {
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
}

.poll-city-select {
  position: relative;
}

.poll-city-select__input {
  position: relative;
  z-index: 2;
}

.poll-city-select__dropdown {
  position: absolute;
  z-index: 3;
  top: 3.55rem;
  left: 0;
  right: 0;
  border: 1px solid #0c243c;
  border-radius: 1rem;
  background: #fff;
  overflow: hidden;
}

.poll-city-select__dropdown--hidden {
  display: none;
}

.poll-city-select__option {
  width: 100%;
  text-align: left;
  border: none;
  border-top: 1px solid #0c243c;
  border-radius: 0;
  background: #fff;
  color: #0c243c;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
}

.poll-city-select__option:first-child {
  border-top: none;
}

.poll-city-select__option--add {
  color: #1475d3;
}

.poll-map-btn {
  min-height: 3.75rem;
  border-radius: 1.25rem;
  border: 1px solid #1475d3;
  background: #1475d3;
  color: #fff;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25rem;
  text-decoration: none;
}

.poll-map-btn:hover {
  filter: brightness(1.08);
}

.poll-map-btn__icon {
  font-size: 1.2rem;
  line-height: 1;
}

.poll-club-select {
  position: relative;
}

.poll-club-select__toggle {
  min-height: 3rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(12, 36, 60, 0.25);
  background: #fff;
  color: #000;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25rem;
}

.poll-club-select__arrow {
  font-size: 1.6rem;
  line-height: 1;
}

.poll-club-select__toggle[aria-expanded="true"] .poll-club-select__arrow {
  transform: rotate(180deg);
}

.poll-club-select__dropdown {
  position: absolute;
  z-index: 3;
  top: 3.2rem;
  left: 0;
  right: 0;
  max-height: 26rem;
  overflow: auto;
  border: 1px solid #0c243c;
  border-radius: 0.75rem;
  background: #fff;
}

.poll-club-select__dropdown--hidden {
  display: none;
}

.poll-club-select__option {
  width: 100%;
  border: none;
  border-top: 1px solid rgba(12, 36, 60, 0.2);
  border-radius: 0;
  background: #fff;
  color: #0c243c;
  padding: 0.75rem 1.25rem;
  display: grid;
  gap: 0.25rem;
  text-align: left;
}

.poll-club-select__option:first-child {
  border-top: none;
}

.poll-club-select__option--active {
  background: #1475d3;
  color: #fff;
}

.poll-club-select__option--empty {
  pointer-events: none;
  background: #f6f8fb;
}

.poll-club-select__name {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.125rem;
}

.poll-club-select__clubs {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 0.875rem;
}

.poll-stepper {
  min-height: 3.75rem;
  border: 1px solid #0c243c;
  border-radius: 1.25rem;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  gap: 0.5rem;
}

.poll-stepper__btn {
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 0.5rem;
  background: transparent;
  color: #0c243c;
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 500;
  padding: 0;
}

.poll-stepper__value {
  flex: 1;
  text-align: center;
  border: none;
  background: transparent;
  color: #0c243c;
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: 500;
  padding: 0;
}

/* ── Poll radio cards (step 1) ── */

.poll-radio-cards {
  display: flex;
  gap: 0.5rem;
}

.poll-radio-card {
  flex: 1;
  display: flex;
  cursor: pointer;
}

.poll-radio-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.poll-radio-card span {
  width: 100%;
  min-height: 3.75rem;
  padding: 0 1.25rem;
  border-radius: 1.25rem;
  border: 1px solid #0c243c;
  background: #fff;
  color: #0c243c;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.125rem;
  display: inline-flex;
  align-items: center;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.poll-radio-cards--triple .poll-radio-card span {
  text-align: center;
  justify-content: center;
}

.poll-radio-cards--column {
  flex-direction: column;
}

.poll-radio-card--wide span {
  width: 100%;
}

.poll-radio-card input:checked + span {
  background: #1475d3;
  border-color: #1475d3;
  color: #fff;
}

.poll-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.poll-choice-grid__full {
  grid-column: 1 / -1;
}

.poll-choice-grid--days {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.poll-choice-grid--days .poll-radio-card {
  grid-column: span 3;
}

.poll-choice-grid--days .poll-choice-grid__wide-row {
  grid-column: span 4;
}

.poll-choice-grid--days .poll-radio-card span {
  justify-content: center;
  text-align: center;
}

.poll-time-block {
  display: grid;
  gap: 0.5rem;
}

.poll-time-block--hidden {
  display: none;
}

.poll-time-scale {
  display: flex;
  justify-content: space-between;
  padding: 0 8px;
  color: #0c243c;
  font-size: 0.875rem;
  font-weight: 400;
}

.poll-time-slots {
  display: grid;
  gap: 0.75rem;
}

.poll-time-slot {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.poll-time-slot__main {
  flex: 1;
  display: grid;
  gap: 0.5rem;
}

.poll-time-slider {
  --time-slider-thumb-size: 24px;
  --time-slider-track-height: 4px;
  --time-slider-track-color: #a1beda;
  --time-slider-fill-color: #1475d3;
  position: relative;
  height: var(--time-slider-thumb-size);
}

.poll-time-slider__track {
  position: absolute;
  left: calc(var(--time-slider-thumb-size) / 2);
  right: calc(var(--time-slider-thumb-size) / 2);
  top: calc(50% - (var(--time-slider-track-height) / 2));
  height: var(--time-slider-track-height);
  border-radius: 2px;
  background: var(--time-slider-track-color);
}

.poll-time-slider__fill {
  position: absolute;
  top: calc(50% - (var(--time-slider-track-height) / 2));
  height: var(--time-slider-track-height);
  border-radius: 2px;
  background: var(--time-slider-fill-color);
}

.poll-time-slider__range {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--time-slider-thumb-size);
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  outline: none;
  pointer-events: none;
}

.poll-time-slider__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: var(--time-slider-thumb-size);
  height: var(--time-slider-thumb-size);
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: var(--time-slider-fill-color);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
  cursor: pointer;
  pointer-events: all;
}

.poll-time-slider__range::-moz-range-thumb {
  width: var(--time-slider-thumb-size);
  height: var(--time-slider-thumb-size);
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: var(--time-slider-fill-color);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
  cursor: pointer;
  pointer-events: all;
}

.poll-time-slider__range:hover::-webkit-slider-thumb {
  box-shadow: 0 0 0 4px rgba(20, 117, 211, 0.2);
}

.poll-time-slider__range:hover::-moz-range-thumb {
  box-shadow: 0 0 0 4px rgba(20, 117, 211, 0.2);
}

.poll-time-slider__range:focus-visible::-webkit-slider-thumb {
  box-shadow: 0 0 0 4px rgba(20, 117, 211, 0.24);
  transform: scale(1.03);
}

.poll-time-slider__range:focus-visible::-moz-range-thumb {
  box-shadow: 0 0 0 4px rgba(20, 117, 211, 0.24);
  transform: scale(1.03);
}

.poll-time-slider__range::-webkit-slider-runnable-track,
.poll-time-slider__range::-moz-range-track {
  background: transparent;
  border: none;
  box-shadow: none;
}

.poll-time-slider__range::-moz-range-progress {
  background: transparent;
  border: none;
  box-shadow: none;
}

.poll-time-slider__range::-ms-track {
  background: transparent;
  border-color: transparent;
  color: transparent;
}

.poll-time-slot__side {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.poll-time-slot__spacer {
  width: 48px;
  height: 48px;
}

.poll-time-slot__remove {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid #0c243c;
  background: #fff;
  color: #0c243c;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  padding: 0;
}

.poll-time-slot__remove span {
  display: inline-block;
  transform: translateY(-1px);
}

.poll-time-slot__add {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid #0c243c;
  background: #0c243c;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  padding: 0;
}

.poll-time-slot__add span {
  display: inline-block;
  transform: translateY(-1px);
}

/* ── Poll pills (radio/checkbox) ── */

.poll-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.poll-pills--column {
  flex-direction: column;
}

.poll-pill {
  display: flex;
  cursor: pointer;
}

.poll-pill input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.poll-pill span {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border: 1.5px solid #dbe3ef;
  border-radius: 99px;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  color: #2a3545;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  user-select: none;
}

.poll-pill--wide span {
  border-radius: 12px;
  width: 100%;
}

.poll-pill input:checked + span {
  background: #1475d3;
  border-color: #1475d3;
  color: #fff;
}

/* ── Poll finish step ── */

.poll-finish-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #2a3545;
}

.poll-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.poll-checkbox {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.1rem;
  accent-color: #1475d3;
  cursor: pointer;
}

.poll-checkbox-label {
  font-size: 0.88rem;
  line-height: 1.4;
  color: #2a3545;
}

.poll-finish-heading {
  margin: 0;
  color: #0c243c;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25rem;
}

.poll-rules-btn {
  min-height: 3.75rem;
  border-radius: 1.25rem;
  border: 1px solid #1475d3;
  background: #1475d3;
  color: #fff;
  padding: 0 1.25rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.poll-rules-btn:hover {
  filter: brightness(1.08);
}

.poll-rules-btn__icon {
  font-size: 1.4rem;
  line-height: 1;
}

.poll-rules-confirm {
  min-height: 3.75rem;
  border-radius: 0.75rem;
  border: 1px solid #1475d3;
  background: #1475d3;
  color: #fff;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.poll-rules-confirm input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.poll-rules-confirm__box {
  width: 1.75rem;
  min-width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.375rem;
  background: #fff;
  position: relative;
}

.poll-rules-confirm__box::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0.2rem;
  width: 0.4rem;
  height: 0.8rem;
  border: solid #1475d3;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
}

.poll-rules-confirm input:checked + .poll-rules-confirm__box::after {
  opacity: 1;
}

.poll-rules-confirm__text {
  flex: 1;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25rem;
}

/* ── Poll map screen ── */

.poll-map-screen {
  position: relative;
  min-height: var(--miniapp-vh);
  padding: 1.25rem 1.25rem 6.75rem;
  overflow-y: auto;
  background: #fff;
}

body.user-body.miniapp-keyboard-open .poll-screen {
  padding-bottom: 1rem;
}

body.user-body.miniapp-keyboard-open .poll-screen__body {
  padding-bottom: 1rem;
}

body.user-body.miniapp-keyboard-open .poll-screen__footer {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 100%);
}

body.user-body.miniapp-keyboard-open .poll-screen__dome {
  opacity: 0;
}

body.user-body.miniapp-keyboard-open .poll-map-screen__close {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

.poll-map-screen__bg {
  position: absolute;
  inset: 0;
  background-image: url("/images/miniapp/poll-map-bg.svg");
  background-size: cover;
  background-position: center;
}

.poll-map-screen__fade {
  position: absolute;
  left: 0;
  right: 0;
  height: 200px;
}

.poll-map-screen__fade--top {
  top: 0;
  background: linear-gradient(180deg, #fff 64.904%, rgba(255, 255, 255, 0) 100%);
}

.poll-map-screen__fade--bottom {
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 35.096%);
}

.poll-map-screen__title {
  margin: 1.75rem auto 1rem;
  max-width: 21rem;
  font-family: "Russo One", sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #1475d3;
  text-align: center;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 337px;
}

.poll-map-screen__title--inline {
  position: static;
  transform: none;
  width: auto;
}

.poll-map-screen__map-shell {
  position: relative;
  z-index: 2;
  max-width: 34rem;
  margin: 0 auto;
}

.poll-map-screen__map-canvas {
  width: 100%;
  min-height: 23rem;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(20, 117, 211, 0.22);
  background: #f3f8ff;
}

.poll-map-screen__hint {
  margin: 0.75rem 0 0;
  color: #1f2d3d;
  font-size: 0.95rem;
  line-height: 1.35rem;
}

.poll-map-screen__message {
  margin-top: 0.75rem;
  padding: 0.75rem 0.875rem;
  border-radius: 0.875rem;
  background: #f3f8ff;
  color: #16324f;
  font-size: 0.9rem;
  line-height: 1.3rem;
}

.poll-map-screen__message--error {
  background: #fff4f4;
  color: #9d1c1c;
}

.poll-map-screen__message--hidden {
  display: none;
}

.poll-map-screen__apply {
  margin-top: 0.75rem;
  width: 100%;
  min-height: 2.75rem;
  border: 1px solid #1475d3;
  border-radius: 0.875rem;
  background: #1475d3;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

.poll-map-screen__fallback-list {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.5rem;
}

.poll-map-screen__fallback-item {
  display: block;
  width: 100%;
  text-align: left;
  border-radius: 0.875rem;
  border: 1px solid rgba(20, 117, 211, 0.24);
  background: #fff;
  text-decoration: none;
  padding: 0.75rem 0.875rem;
  cursor: pointer;
}

.poll-map-screen__fallback-item--active {
  border-color: #1475d3;
  box-shadow: 0 0 0 2px rgba(20, 117, 211, 0.14);
}

.poll-map-screen__fallback-title {
  display: block;
  color: #0c243c;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3rem;
}

.poll-map-screen__fallback-subtitle {
  display: block;
  margin-top: 0.15rem;
  color: #51657a;
  font-size: 0.82rem;
  line-height: 1.2rem;
}

.poll-map-pin {
  position: absolute;
  width: 50px;
  height: 50px;
  text-decoration: none;
  color: #fff;
  font-family: "Russo One", sans-serif;
  font-size: 2rem;
  line-height: 2.375rem;
  text-align: center;
  padding-top: 6px;
  background: #1475d3;
  border-radius: 999px;
}

.poll-map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -18px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 20px solid #1475d3;
}

.poll-map-pin--active {
  box-shadow: 0 0 0 3px rgba(12, 36, 60, 0.18);
}

.poll-map-pin--1 { left: 117px; top: 210px; }
.poll-map-pin--2 { left: 270px; top: 265px; }
.poll-map-pin--3 { left: 151px; top: 375px; }
.poll-map-pin--4 { left: 279px; top: 426px; }
.poll-map-pin--5 { left: 32px; top: 310px; }
.poll-map-pin--6 { left: 52px; top: 485px; }
.poll-map-pin--7 { left: 211px; top: 568px; }

.poll-map-screen__close {
  position: fixed;
  z-index: 5;
  left: 32px;
  right: 32px;
  bottom: 24px;
  height: 3.75rem;
  border-radius: 1.25rem;
  border: 1px solid #1475d3;
  background: #1475d3;
  color: #fff;
  padding: 0 1.25rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 500;
}
