:root {
  --ff-display: "Benzin", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --ff-body: "Coolvetica", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --bg-main-red: rgba(217, 2, 0, 1);
  --bg-main-black: rgba(0, 0, 0, 1);
  --bg-0: #050505;
  --bg-1: #1b0505;
  --card: rgba(18, 18, 18, 0.92);
  --card-2: rgba(40, 40, 40, 0.85);
  --stroke: rgba(255, 255, 255, 0.12);
  --stroke-2: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.70);
  --gold-0: rgba(255, 152, 0, 1);
  --gold-1: rgba(255, 152, 0, 1);
  --gold-2: rgba(255, 0, 0, 1);
  --accent-0: rgba(244, 4, 5, 1);
  --accent-1: rgba(255, 232, 93, 1);
  --shadow-0: 0 18px 55px rgba(0, 0, 0, 0.55);
  --radius-lg: 22px;
  --radius-md: 16px;
  --img-gold-filter-soft: sepia(0.9) saturate(3.3) hue-rotate(350deg) brightness(1.06) contrast(1.02);
}

@font-face {
  font-family: "Benzin";
  src: url("../fonts/Benzin/benzin-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Benzin";
  src: url("../fonts/Benzin/benzin-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Benzin";
  src: url("../fonts/Benzin/benzin-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Benzin-Bold";
  src: url("../fonts/Benzin/benzin-bold.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Benzin";
  src: url("../fonts/Benzin/benzin-extrabold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

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

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

* {
  box-sizing: border-box;
}

html {
  background: var(--bg-main-black);
  color: var(--text);
  font-family: var(--ff-body);
  line-height: 1.35;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-main-black);
  color: var(--text);
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

img {
  --img-rotate: 0deg;
  --img-scale-x: 1;
  --img-scale-y: 1;
  --img-translate-x: 0px;
  --img-translate-y: 0px;
  filter: var(--img-filter);
  transform: translate(var(--img-translate-x), var(--img-translate-y)) rotate(var(--img-rotate)) scale(var(--img-scale-x), var(--img-scale-y));
  transform-origin: center;
  transition: transform 180ms ease, filter 180ms ease;
}

a {
  color: inherit;
  text-underline-offset: 0.16em;
}

p,
h1,
h2,
h3,
ul {
  margin: 0;
}

button,
input,
select {
  font: inherit;
}

::selection {
  background: rgba(255, 177, 58, 0.35);
}

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

.skip-link {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.86);
  border: 1px solid var(--stroke);
  color: var(--text);
  transform: translateY(-120%);
  transition: transform 180ms ease;
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.page {
  position: relative;
  isolation: isolate;
  background: linear-gradient(
    180deg,
    var(--bg-main-black) 0%,
    rgba(217, 2, 0, 0.14) 38%,
    rgba(217, 2, 0, 0.14) 62%,
    var(--bg-main-black) 100%
  );
}

.grad-text {
  background: linear-gradient(180deg, var(--gold-0) 41.83%, var(--gold-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__title,
.section-title,
.hero-badge__big,
.hero-badge__small,
.bonus-card__title,
.why-card__title,
.modal__title {
  font-family: var(--ff-display);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  font-family: var(--ff-body);
  font-weight: 400;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition: transform 120ms ease, filter 120ms ease, opacity 120ms ease;
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn:focus-visible {
  outline: 3px solid rgba(255, 177, 58, 0.35);
  outline-offset: 3px;
}

.btn--primary {
  font-family: "Coolvetica", var(--ff-body), sans-serif;
  font-weight: 700;
  background: linear-gradient(107.98deg, var(--accent-0) 0.71%, var(--accent-1) 100%);
  color: #fff;
  box-shadow: 0 18px 35px rgba(255, 94, 42, 0.20);
}

.btn--primary:hover {
  filter: brightness(1.05) saturate(1.05);
}

.cta-btn {
  justify-content: center;
  min-height: 52px;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 20px;
  font-weight: 700;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid var(--stroke-2);
  color: rgba(255, 255, 255, 0.88);
}

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

.btn--sm {
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0;
}

.link {
  color: rgba(255, 177, 58, 0.95);
}

.link:hover {
  color: rgba(255, 177, 58, 1);
}

.section-title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(32px, 4.2vw, 56px);
  text-align: center;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 26px 0 32px;
  --turk-top: 28px;
  --turk-right: 10px;
  --turk-layer-w: 620px;
  --turk-layer-h: calc(100% - var(--turk-top));
  --turk-width: 600px;
  --turk-shift-x: 0px;
  --turk-shift-y: 74px;
  --turk-rotate: 6deg;
  --turk-scale: 1;
  --turk-crop-top: 0px;
  --turk-crop-right: 0px;
  --turk-crop-bottom: 0px;
  --turk-crop-left: 0px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(980px 560px at 50% 40%, rgba(217, 2, 0, 0.24), rgba(0, 0, 0, 0) 72%),
  linear-gradient(180deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.76)),
  url("../img/background.png") center -80px / cover no-repeat;
  filter: saturate(1.04) contrast(1.04) brightness(1.10);
  transform: scale(1.02);
  z-index: 0;
}

.hero::after {
  display: none;
}

.hero__turk-layer {
  position: absolute;
  top: var(--turk-top);
  right: var(--turk-right);
  width: var(--turk-layer-w);
  height: var(--turk-layer-h);
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero__turk {
  --img-filter: none;
  width: var(--turk-width);
  max-width: none;
  transform: translate(var(--turk-shift-x), var(--turk-shift-y)) rotate(var(--turk-rotate)) scale(var(--turk-scale));
  transform-origin: top right;
  clip-path: inset(var(--turk-crop-top) var(--turk-crop-right) var(--turk-crop-bottom) var(--turk-crop-left));
  opacity: 0.98;
}

.hero__glitter-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero__glitter {
  position: absolute;
  width: 520px;
  max-width: none;
  opacity: 0.58;
  mix-blend-mode: screen;
  filter: saturate(1.06) brightness(1.08);
}

.hero__glitter--left {
  top: -78px;
  left: -180px;
  transform: rotate(-10deg) scale(1.02);
}

.hero__glitter--top {
  top: -530px;
  left: 50%;
  width: 620px;
  opacity: 0.42;
  transform: translateX(-50%) rotate(156deg) scale(1.08);
}

.hero__glitter--right {
  top: -64px;
  right: -92px;
  transform: scaleX(-1) rotate(-8deg) scale(1.02);
}

.hero__container {
  position: relative;
  z-index: 1;
}

.hero__header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(520px, 100%);
}

.hero__logo {
  --img-filter: var(--img-gold-filter-soft);
  width: 108px;
  height: auto;
  opacity: 0.98;
}

.hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 820px) 1fr;
  gap: 36px;
  align-items: start;
  min-height: auto;
  margin-top: 22px;
}

.hero__left {
  width: 100%;
  max-width: 820px;
}

.hero__reg {
  container-name: heroReg;
  container-type: inline-size;
  display: grid;
  grid-template-columns: minmax(0, 520px) var(--badge-w, 320px);
  grid-template-areas: "form badges";
  align-items: start;
  gap: 0;
  justify-content: start;
  --reg-pad-top: 12px;
  --reg-field-h: 44px;
  --reg-gap: 8px;
  --reg-action-w: 156px;
  --badge-w: 252px;
  --reg-side-icon-size: 20px;
}

.hero__title {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  margin-bottom: 22px;
  width: 100%;
  max-width: 520px;
  justify-items: start;
  text-align: center;
}

.hero__title-main {
  font-family: "Benzin-Bold", var(--ff-display), serif;
  font-weight: 400;
  font-size: clamp(64px, 8.4vw, 104px);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
  width: max-content;
  max-width: 100%;
  justify-self: start;
}

.hero__title-sub {
  font-family: "Coolvetica", var(--ff-body), sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 3vw, 32px);
  line-height: clamp(18px, 2.8vw, 30px);
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.90);
  width: max-content;
  max-width: 100%;
  justify-self: start;
}

.hero__title-accent {
  font-family: "Benzin-Bold", var(--ff-display), serif;
  font-weight: 400;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: clamp(28px, 4vw, 44px);
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  width: max-content;
  max-width: 100%;
  justify-self: start;
}

.hero__title-accent.grad-text {
  background: linear-gradient(180deg, var(--gold-0) 41.83%, var(--gold-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.reg-card {
  grid-area: form;
  width: min(520px, 100%);
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadow-0);
  padding: var(--reg-pad-top, 18px) 16px 16px;
  display: grid;
  gap: var(--reg-gap, 12px);
}

.reg-card__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}

.reg-card__row--phone,
.reg-card__row--code {
  grid-template-columns: 1fr;
  gap: 0;
}

.reg-card__row--country-phone {
  position: relative;
}

.reg-card__row--code-group {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8px;
}

.reg-card__row--code-group .reg-field__action {
  width: 120px;
  min-width: 120px;
}

.reg-card__row--bonus {
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.reg-card__row--double {
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.reg-card__hint {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 177, 58, 0.95);
  margin-top: -2px;
}

.reg-card__hint--error {
  color: rgba(255, 79, 44, 0.92);
  margin-top: -6px;
}

.reg-card__hint--form {
  margin-top: 0;
}

.reg-field {
  height: var(--reg-field-h, 44px);
  border-radius: 12px;
  padding: 10px 10px;
  background: #3a3a3a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.90);
}

.reg-field--with-action {
  padding: 0;
  gap: 0;
  overflow: hidden;
}

.reg-field--with-action .reg-field__input {
  height: 100%;
  padding: 0 10px;
}

.reg-field__action {
  font-family: "Coolvetica", var(--ff-body), serif;
  height: 100%;
  width: var(--reg-action-w, 156px);
  min-width: var(--reg-action-w, 156px);
  border: 0;
  padding: 0 8px;
  background: #6b6b6b;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0;
  cursor: pointer;
  border-left: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 0 12px 12px 0;
  transition: filter 140ms ease, background 140ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reg-field__action:hover {
  filter: brightness(1.05);
}

.reg-field__action:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  filter: none;
}

.reg-card__row--country-phone .reg-field__action {
  width: 120px;
  min-width: 120px;
  flex: 0 0 120px;
}

.reg-field.is-invalid {
  border-color: rgba(255, 79, 44, 0.72);
  box-shadow: 0 0 0 2px rgba(255, 79, 44, 0.25);
}

.reg-field--wide {
  width: 100%;
}

.reg-field--half {
  width: 100%;
}

.reg-field__icon {
  width: var(--reg-field-h, 44px);
  height: 100%;
  flex: 0 0 auto;
  opacity: 0.98;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5a5a5a;
  border-right: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px 0 0 12px;
}

.reg-field__icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  --img-filter: var(--img-gold-filter-soft);
}

.reg-field--country-phone {
  gap: 0;
}

.reg-field__country-toggle {
  height: 100%;
  width: auto;
  min-width: 64px;
  flex: 0 0 64px;
  border: 0;
  margin: 0;
  padding: 0 8px;
  background: #5a5a5a;
  border-right: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}

.reg-field__country-toggle:hover {
  filter: brightness(1.05);
}

.reg-field__country-flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
}

.reg-field__country-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  --img-filter: none;
}

.reg-field__country-name {
  display: none;
}

.reg-field__country-arrow {
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(255, 255, 255, 0.92);
  border-bottom: 2px solid rgba(255, 255, 255, 0.92);
  transform: rotate(45deg);
  margin-left: auto;
  flex: 0 0 auto;
  transition: transform 140ms ease;
}

.reg-field__country-toggle[aria-expanded="true"] .reg-field__country-arrow {
  transform: rotate(225deg);
}

.reg-field__phone-prefix {
  height: 100%;
  padding: 0 6px 0 8px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.88);
  flex: 0 0 auto;
}

.reg-field__input--phone {
  flex: 1 1 auto;
  min-width: 0;
  padding-left: 4px;
  letter-spacing: 0.02em;
}

.reg-country-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  max-height: 260px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 12px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.45);
  z-index: 90;
  padding: 6px;
}

.reg-country-option {
  width: 100%;
  border: 0;
  background: transparent;
  color: #1f1f1f;
  border-radius: 8px;
  padding: 8px;
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-align: left;
}

.reg-country-option:hover {
  background: rgba(0, 0, 0, 0.06);
}

.reg-country-option.is-selected {
  background: rgba(255, 177, 58, 0.25);
}

.reg-country-option__flag {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
}

.reg-country-option__flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  --img-filter: none;
}

.reg-country-option__name {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reg-field__input {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  outline: none;
}

.reg-field__input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.reg-date {
  position: relative;
}

.reg-field--date {
  position: relative;
}

.reg-field--date .reg-field__input {
  padding-right: calc(var(--reg-side-icon-size, 20px) + 14px);
}

.reg-field__calendar {
  position: absolute;
  right: 12px;
  top: 50%;
  width: var(--reg-side-icon-size, 20px);
  height: var(--reg-side-icon-size, 20px);
  transform: translateY(-50%);
  pointer-events: none;
}

.reg-field__calendar svg {
  width: 100%;
  height: 100%;
}

.reg-field__calendar svg path {
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.date-popover {
  position: fixed;
  left: 12px;
  top: 12px;
  width: min(360px, calc(100vw - 24px));
  max-width: calc(100vw - 24px);
  border-radius: 16px;
  padding: 12px 12px 10px;
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.15);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  z-index: 60;
  overflow-y: auto;
}

.date-popover__head {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 8px;
}

.date-popover__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.date-popover__pick-btn {
  border: 0;
  background: transparent;
  border-radius: 10px;
  padding: 6px 8px;
  color: #2a2a2a;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
}

.date-popover__pick-btn:hover {
  background: rgba(0, 0, 0, 0.06);
}

.date-popover__nav {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: rgba(0, 0, 0, 0.04);
  cursor: pointer;
  position: relative;
}

.date-popover__nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.date-popover__nav::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border: solid rgba(0, 0, 0, 0.8);
  border-width: 0 2px 2px 0;
  transform: translate(-45%, -50%) rotate(135deg);
}

.date-popover__nav[data-date-next]::before {
  transform: translate(-55%, -50%) rotate(-45deg);
}

.date-popover__week {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  margin-top: 10px;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.45);
  letter-spacing: 0.04em;
  text-align: center;
}

.date-popover__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  margin-top: 8px;
}

.date-popover__day {
  width: 100%;
  min-width: 0;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: #f4f4f4;
  color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
  font-family: var(--ff-body);
  font-weight: 400;
}

.date-popover__day.is-outside {
  opacity: 0.55;
}

.date-popover__day:hover:not(:disabled) {
  filter: brightness(1.08);
}

.date-popover__day:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.date-popover__day.is-selected {
  background: linear-gradient(90deg, var(--accent-0), var(--accent-1));
  border-color: rgba(0, 0, 0, 0.10);
  color: #fff;
}

.date-popover__menu {
  margin-top: 8px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  padding: 8px;
  max-height: 220px;
  overflow-y: auto;
}

.date-popover__menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.date-popover__menu-item {
  border: 0;
  border-radius: 9px;
  background: #f4f4f4;
  color: #222;
  padding: 8px 6px;
  font-size: 13px;
  cursor: pointer;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.date-popover__menu-item:hover {
  filter: brightness(0.97);
}

.date-popover__menu-item.is-active {
  background: linear-gradient(90deg, var(--accent-0), var(--accent-1));
  color: #fff;
}

.reg-field--password {
  /*padding-right: 6px;*/
}

.reg-field__toggle {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  width: var(--reg-side-icon-size, 20px);
  height: var(--reg-side-icon-size, 20px);
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.reg-field__toggle:hover {
  opacity: 0.86;
}

.reg-field__toggle svg {
  width: 100%;
  height: 100%;
}

.reg-field__toggle svg path {
  fill: currentColor;
}

.reg-field__toggle svg .reg-field__toggle-outline {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  opacity: 0.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reg-field__toggle.is-active {
  opacity: 1;
}

.reg-field--select {
  padding: 0;
  background: #7a7a7a;
  position: relative;
  overflow: hidden;
}

.reg-field--select::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.92);
  border-bottom: 2px solid rgba(255, 255, 255, 0.92);
  transform: translateY(-55%) rotate(45deg);
  pointer-events: none;
}

.reg-field__select {
  width: 100%;
  height: var(--reg-field-h, 44px);
  padding: 0 38px 0 12px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  outline: none;
  appearance: none;
}

.reg-field__select.is-highlight {
  outline: 3px solid rgba(255, 177, 58, 0.35);
  outline-offset: 3px;
  border-radius: 12px;
}

.reg-field__select option {
  color: #1f1f1f;
  background: #fff;
}

.reg-field--currency .reg-field__select {
  font-size: 14px;
  padding-right: 32px;
}

.reg-card__agree {
  position: relative;
  display: block;
  padding: 0;
  font-size: clamp(10px, 2vw, 13px);
  color: rgba(255, 255, 255, 0.80);
}

.reg-card__checkbox {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
}

.reg-card__agree-text {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 4px;
  min-height: 18px;
  padding-left: 28px;
  line-height: 1.25;
}

.reg-card__agree-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
}

.reg-card__checkbox:focus-visible + .reg-card__agree-text::before {
  outline: 3px solid rgba(255, 177, 58, 0.35);
  outline-offset: 3px;
}

.reg-card__checkbox:checked + .reg-card__agree-text::before {
  background: linear-gradient(180deg, var(--accent-0), var(--accent-1));
  border-color: rgba(255, 255, 255, 0.18);
}

.reg-card__checkbox:checked + .reg-card__agree-text::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  width: 6px;
  height: 10px;
  border: solid rgba(0, 0, 0, 0.78);
  border-width: 0 2px 2px 0;
  transform: translateY(-60%) rotate(45deg);
}

.reg-card__cta {
  margin-top: 6px;
  width: 100%;
}

.reg-card__login {
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.80);
}

.hero__right {
  position: relative;
  min-height: 720px;
  pointer-events: none;
}

.hero__player {
  position: absolute;
  right: -92px;
  bottom: -70px;
  width: 600px;
  max-width: none;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.65));
}

.hero__ticket {
  position: absolute;
  left: -42px;
  top: 116px;
  width: 160px;
  transform: rotate(-12deg);
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.55));
  opacity: 0.98;
}

.hero-badges {
  grid-area: badges;
  display: grid;
  gap: 24px;
  align-self: start;
  margin-top: calc(var(--reg-pad-top, 18px) + var(--reg-field-h, 44px));
}

.hero-badge {
  font-family: "Benzin-Bold", var(--ff-display), serif;
  font-weight: 600;
  letter-spacing: 0;
  width: var(--badge-w, 320px);
  border-radius: 0 18px 18px 0;
  padding: 8px 10px;
  background: linear-gradient(82.65deg, #FF9800 3.56%, #FFB74D 97.21%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.50);
  overflow: hidden;
  color: #fff;
  text-align: center;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.hero-badge__big {
  display: block;
  font-size: 44px;
  line-height: 0.92;
  white-space: nowrap;
}

.hero-badge__small {
  display: block;
  font-size: 22px;
  line-height: 0.95;
  margin-top: 4px;
  white-space: nowrap;
}

.bonuses {
  position: relative;
  padding: 24px 0 24px;
  background: transparent;
  isolation: isolate;
}

.bonuses::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1400px 620px at 50% 46%, rgba(217, 2, 0, 0.10), rgba(0, 0, 0, 0) 84%),
  linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(217, 2, 0, 0.08) 30%, rgba(217, 2, 0, 0.08) 72%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 0;
}

.bonuses .container {
  position: relative;
  z-index: 1;
}

.bonuses .section-title {
  font-size: clamp(52px, 5.6vw, 108px);
  letter-spacing: 0;
  line-height: 0.95;
}

.bonuses__switch {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.bonuses__switch {
  position: relative;
  width: max-content;
  min-height: 58px;
  padding: 5px;
  margin-inline: auto;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(63, 68, 77, 0.72), rgba(33, 36, 41, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  gap: 4px;
}

.switch-btn {
  border: 0;
  border-radius: 999px;
  min-width: 188px;
  height: 48px;
  padding: 0 22px;
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 20px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(47, 52, 58, 0.72);
  border: 0;
  cursor: pointer;
  transition: filter 120ms ease, transform 120ms ease;
}

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

.switch-btn.is-active {
  background: linear-gradient(90deg, var(--accent-0), var(--accent-1));
  color: #fff;
}

.bonuses__panels {
  margin-top: 22px;
}

.bonuses__note {
  margin: 30px auto 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(15px, 1.2vw, 20px);
  line-height: 1.28;
  width: min(980px, 100%);
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.bonuses-panel {
  animation: fade-in 220ms ease;
}

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

.bonus-slider {
  position: relative;
}

.bonus-card {
  background: radial-gradient(120% 120% at 12% 0%, rgba(65, 65, 73, 0.86), rgba(20, 22, 27, 0.98) 65%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  box-shadow: var(--shadow-0);
  padding: 24px 16px 24px;
  min-height: 364px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
  overflow: hidden;
}

.bonus-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 156px;
}

.bonus-card__icon img {
  max-height: 148px;
  max-width: 92%;
  width: auto;
}

.bonus-card__icon--missing {
  border-radius: 16px;
  background: radial-gradient(180px 120px at 50% 30%, rgba(255, 177, 58, 0.10), rgba(0, 0, 0, 0) 70%);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.bonus-card__title {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: clamp(28px, 2.4vw, 48px);
  color: rgba(255, 152, 0, 1);
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
  margin-top: auto;
}

.bonus-card__desc {
  font-size: clamp(16px, 1.3vw, 28px);
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.15;
  letter-spacing: 0;
  font-family: var(--ff-body);
  text-wrap: pretty;
  font-weight: 400;
}

.bonus-slider__nav {
  display: none;
}

.bonuses__cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.bonuses__cta .btn--primary {
  width: min(440px, 100%);
}

.why {
  position: relative;
  padding: 24px 0 48px;
  background: transparent;
  isolation: isolate;
}

.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1400px 680px at 50% 50%, rgba(217, 2, 0, 0.10), rgba(0, 0, 0, 0) 86%),
  linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(217, 2, 0, 0.08) 30%, rgba(217, 2, 0, 0.08) 72%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 0;
}

.why .container {
  position: relative;
  z-index: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}

.why-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(58, 58, 58, 0.72), rgba(25, 25, 25, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: var(--shadow-0);
  padding: 20px 22px 18px;
  display: flex;
  flex-direction: column;
}

.why-card__icon {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 92px;
  height: auto;
  opacity: 0.98;
}

.why-card:not(.why-card--center) .why-card__icon {
  top: 50%;
  --img-translate-y: -50%;
}

.why-card__icon--xl {
  position: static;
  width: 220px;
  margin: 6px auto 10px;
  /*--img-scale-x: -1;*/
}

.why-card__title {
  font-weight: 900;
  font-size: 20px;
  color: rgba(255, 177, 58, 0.92);
  margin-bottom: 10px;
  max-width: 72%;
}

.why-card__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 72%;
}

.why-card:not(.why-card--center) .why-card__text {
  margin-top: auto;
}

.why-card__list {
  margin-top: 6px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.35;
}

.why-card__list li {
  margin-bottom: 10px;
}

.why-card--left-top {
  grid-column: 1;
  grid-row: 1;
}

.why-card--left-bottom {
  grid-column: 1;
  grid-row: 2;
}

.why-card--right-top {
  grid-column: 3;
  grid-row: 1;
}

.why-card--right-bottom {
  grid-column: 3;
  grid-row: 2;
}

.why-card--center {
  grid-column: 2;
  grid-row: 1 / span 2;
  padding-top: 16px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.why-card--center .why-card__title {
  grid-row: 1;
  max-width: none;
  margin-bottom: 0;
}

.why-card--center .why-card__icon--xl {
  grid-row: 2;
  align-self: center;
}

.why-card--center .why-card__list {
  grid-row: 3;
  margin-top: 0;
  align-self: end;
}

.why__cta {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.why__cta .btn--primary {
  width: min(440px, 100%);
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 2000;
}

.modal.is-open {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(5px);
}

.modal__dialog {
  position: relative;
  width: min(620px, 100%);
  border-radius: 18px;
  background: rgba(20, 20, 20, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.70);
  padding: 28px 28px 24px;
  z-index: 1;
}

.modal__dialog--sm {
  width: min(520px, 100%);
}

.modal__close {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.94);
  cursor: pointer;
}

.modal__close::before,
.modal__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__close:hover {
  opacity: 0.84;
}

.modal__title {
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 18px;
}

.modal__title--center {
  text-align: center;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  margin: 0;
}

.modal__content {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.modal__text {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(12px, 1.3vw, 22px);
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.modal__text--center {
  text-align: center;
}

.modal__actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.modal__cta {
  min-height: 32px;
  min-width: 216px;
  padding: 14px 34px;
  border-radius: 12px;
  color: #111;
  font-size: clamp(18px, 2vw, 32px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .hero__layout {
    grid-template-columns: minmax(0, 780px) 1fr;
    min-height: 660px;
  }

  .hero__player {
    width: 520px;
    right: -76px;
    bottom: -58px;
  }

  .bonus-grid {
    gap: 14px;
  }

  .hero__turk-layer {
    visibility: hidden;
  }

  .hero__glitter--left {
    top: -78px;
    left: -180px;
    transform: rotate(-10deg) scale(1.02);
  }

  .hero__glitter--top {
    top: -520px;
    left: 60%;
    width: 620px;
    opacity: 0.42;
    transform: translateX(-50%) rotate(-172deg) scale(1.08);
  }

  .hero__glitter--right {
    top: -84px;
    right: -202px;
    transform: scaleX(-1) rotate(235deg) scale(1.02);
  }
}

@media (max-width: 940px) {
  .hero__layout {
    grid-template-columns: 1fr;
    min-height: auto;
    justify-items: center;
  }

  .hero__left {
    width: 100%;
    max-width: none;
    display: grid;
    justify-items: center;
  }

  .hero__right {
    min-height: 420px;
  }

  .hero {
    --turk-top: 28px;
    --turk-right: -170px;
    --turk-layer-w: 520px;
    --turk-layer-h: 430px;
    --turk-width: 590px;
    --turk-shift-y: -28px;
  }

  .hero__reg {
    grid-template-columns: 1fr;
    grid-template-areas:
      "badges"
      "form";
    row-gap: 10px;
    margin-top: 10px;
    justify-content: center;
    justify-items: center;
    width: min(520px, 100%);
  }

  .bonuses .container,
  .why .container {
    width: min(520px, 100%);
  }

  .hero-badges {
    margin-top: 0;
    width: min(520px, 100%);
    margin-inline: auto;
    grid-auto-flow: column;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-badge {
    width: 100%;
    border-radius: 18px;
    padding: 8px 8px;
  }

  .hero-badge__big {
    font-size: 30px;
    line-height: 1;
  }

  .hero-badge__small {
    font-size: 16px;
    line-height: 1.05;
  }

  .hero__ticket {
    left: 6px;
    top: 18px;
    width: 130px;
    opacity: 0.92;
  }

  .hero__player {
    width: 460px;
    right: -42px;
    bottom: -44px;
    opacity: 0.95;
  }

  .why-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .why-card:not(.why-card--center) {
    min-height: 196px;
    padding: 18px 16px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 118px;
    grid-template-areas:
      "title icon"
      "text icon";
    column-gap: 12px;
    row-gap: 10px;
    align-items: center;
  }

  .why-card:not(.why-card--center) .why-card__title {
    grid-area: title;
    max-width: none;
    margin: 0;
  }

  .why-card:not(.why-card--center) .why-card__text {
    grid-area: text;
    max-width: none;
    margin-top: 0;
    align-self: end;
  }

  .why-card:not(.why-card--center) .why-card__icon {
    grid-area: icon;
    position: static;
    justify-self: end;
    align-self: center;
    width: 110px;
    --img-translate-y: 0px;
  }

  .why-card--left-top,
  .why-card--center,
  .why-card--right-top,
  .why-card--left-bottom,
  .why-card--right-bottom {
    grid-column: auto;
    grid-row: auto;
  }

  .why-card__title,
  .why-card__text {
    max-width: none;
  }

  .hero__title {
    width: min(520px, 100%);
    max-width: min(520px, 100%);
    text-align: center;
    justify-items: center;
  }

  .hero__title-main,
  .hero__title-sub,
  .hero__title-accent {
    justify-self: center;
  }

  .reg-card {
    width: min(520px, 100%);
    margin: 0 auto;
  }

  .hero__header {
    margin: 0 auto;
  }

  .hero__turk-layer {
    visibility: hidden;
  }

  .hero__glitter {
    width: 340px;
    opacity: 0.50;
  }

  .hero__glitter--left {
    top: -42px;
    left: -96px;
  }

  .hero__glitter--top {
    top: -104px;
    width: 520px;
    opacity: 0.36;
  }

  .hero__glitter--right {
    top: -44px;
    right: -104px;
  }
}

@media (max-width: 840px) {
  .bonus-grid {
    display: flex;
    gap: 12px;
    padding: 6px 2px 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .bonus-card {
    flex: 0 0 86%;
    width: 86%;
    scroll-snap-align: center;
    min-height: 292px;
    border-radius: 18px;
    padding: 14px 14px 12px;
  }

  .bonus-grid::-webkit-scrollbar {
    display: none;
  }

  .bonus-card__icon {
    height: 132px;
  }

  .bonus-card__icon img {
    max-height: 124px;
  }

  .bonus-card__title {
    font-size: clamp(24px, 5.8vw, 30px);
    line-height: 1;
  }

  .bonus-card__desc {
    font-size: clamp(16px, 4.4vw, 20px);
    line-height: 1.12;
  }

  .bonuses__switch {
    width: max-content;
    max-width: 100%;
    justify-content: center;
    margin-inline: auto;
  }

  .switch-btn {
    min-width: 148px;
    flex: 0 0 auto;
    font-size: clamp(15px, 4vw, 20px);
    height: 42px;
    padding: 0 10px;
  }

  .bonuses .section-title {
    font-size: clamp(42px, 13vw, 72px);
  }

  .bonuses__note {
    margin-top: 16px;
    font-size: clamp(14px, 3.8vw, 18px);
    line-height: 1.25;
  }

  .bonuses__cta .btn--primary {
    width: 100%;
    font-size: clamp(18px, 5vw, 20px);
  }

  .why__cta .btn--primary {
    width: 100%;
    font-size: clamp(18px, 5vw, 20px);
  }

  .hero__turk-layer {
    visibility: hidden;
  }
}

@media (max-width: 768px) {
  .bonuses .container,
  .why .container {
    width: min(520px, calc(100% - 52px));
  }

  .bonus-grid {
    padding-inline: 0;
  }

  .bonus-card {
    flex: 0 0 80%;
    width: 80%;
  }
}

@media (max-width: 540px) {
  .container {
    width: calc(100% - 52px);
  }

  .modal {
    padding: 14px;
  }

  .modal__dialog {
    padding: 24px 18px 20px;
  }

  .modal__close {
    right: 12px;
    top: 10px;
    width: 24px;
    height: 24px;
  }

  .modal__close::before,
  .modal__close::after {
    width: 18px;
  }

  .modal__title--center {
    font-size: clamp(16px, 5.8vw, 22px);
    line-height: 1.14;
  }

  .modal__text {
    margin-top: 12px;
    font-size: clamp(15px, 4.8vw, 19px);
  }

  .modal__actions {
    margin-top: 18px;
  }

  .modal__cta {
    min-height: 52px;
    min-width: 180px;
    padding: 12px 24px;
    font-size: clamp(21px, 7vw, 28px);
  }

  .hero__reg {
    --reg-pad-top: 18px;
    --reg-field-h: 44px;
    --reg-action-w: 132px;
    --reg-gap: 6px;
  }

  .hero {
    --turk-top: 36px;
    --turk-right: -196px;
    --turk-layer-w: 470px;
    --turk-layer-h: 350px;
    --turk-width: 530px;
    --turk-shift-y: -18px;
  }

  .hero__glitter {
    width: 260px;
    opacity: 0.44;
  }

  .hero__glitter--left {
    top: -32px;
    left: -102px;
  }

  .hero__glitter--top {
    top: -70px;
    width: 360px;
    opacity: 0.30;
  }

  .hero__glitter--right {
    top: -30px;
    right: -110px;
  }

  .hero__title {
    justify-items: stretch;
    text-align: center;
    gap: 8px;
  }

  .hero__title-main {
    width: max-content;
    max-width: 100%;
    justify-self: start;
    font-size: clamp(58px, 18vw, 78px);
    line-height: 1.02;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .hero__title-sub,
  .hero__title-accent {
    font-size: clamp(18px, 5.8vw, 32px);
    width: max-content;
    max-width: 100%;
    justify-self: start;
    white-space: nowrap;
  }

  .hero__title-accent {
    font-size: clamp(24px, 8vw, 34px);
  }

  .hero-badges {
    grid-auto-flow: column;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 6px;
  }

  .hero-badge {
    border-radius: 10px;
    padding: 5px 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.32);
  }

  .hero-badge__big {
    font-size: 19px;
    line-height: 1;
  }

  .hero-badge__small {
    font-size: 11px;
    line-height: 1.05;
    margin-top: 1px;
  }

  .hero {
    padding-bottom: 24px;
  }

  .hero__right {
    min-height: 360px;
  }

  .hero__player {
    width: 420px;
    right: -64px;
  }

  .reg-field__action {
    font-size: 13px;
  }

  .reg-field__country-toggle {
    min-width: 64px;
    flex: 0 0 64px;
    padding: 0 8px;
    gap: 6px;
  }

  .reg-card__row--country-phone .reg-field__action {
    width: 104px;
    min-width: 104px;
    flex: 0 0 104px;
    padding: 0 4px;
  }

  .reg-field__phone-prefix {
    padding: 0 6px;
    font-size: 13px;
  }

  .reg-card {
    padding: 20px 18px 18px;
  }

  .reg-card__row {
    grid-template-columns: 1fr;
  }

  .reg-card__row--code-group {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .reg-card__row--code-group .reg-field__action {
    width: 104px;
    min-width: 104px;
    padding: 0 6px;
  }

  .reg-card__row--double {
    grid-template-columns: 1fr;
  }

  .reg-card__row--bonus {
    grid-template-columns: 1fr;
  }

  .bonuses__switch {
    min-height: 42px;
    padding: 3px;
    gap: 3px;
  }

  .switch-btn {
    min-width: 122px;
    height: 34px;
    padding: 0 8px;
    font-size: 13px;
  }

  .bonus-grid {
    gap: 10px;
    padding-bottom: 20px;
  }

  .bonus-card {
    flex: 0 0 82%;
    width: 82%;
    aspect-ratio: 1 / 1;
    min-height: 0;
    border-radius: 16px;
    padding: 14px 14px 20px;
    gap: 10px;
  }

  .bonus-card__icon {
    height: 148px;
  }

  .bonus-card__icon img {
    max-height: 146px;
    max-width: 100%;
  }

  .bonus-card__title {
    font-size: clamp(22px, 6.2vw, 28px);
  }

  .bonus-card__desc {
    font-size: clamp(14px, 4.1vw, 17px);
    line-height: 1.2;
  }

  .why-card__text {
    font-size: 13px;
    line-height: 1.28;
  }

  .why-card__list {
    font-size: 14px;
    line-height: 1.35;
  }

  .why-card:not(.why-card--center) {
    min-height: 170px;
    padding: 16px 12px 14px;
    grid-template-columns: minmax(0, 1fr) 92px;
    column-gap: 10px;
    row-gap: 8px;
  }

  .why-card:not(.why-card--center) .why-card__title,
  .why-card:not(.why-card--center) .why-card__text {
    max-width: none;
  }

  .why-card:not(.why-card--center) .why-card__icon {
    position: static;
    right: auto;
    width: 86px;
    justify-self: end;
    align-self: center;
    --img-translate-y: 0px;
  }

  .btn--sm {
    width: 100%;
  }
}


@media (min-width: 1200px) {
  .container {
    width: min(1200px, calc(100% - 160px));
  }
}
