/* ================== TOKENS ================== */
:root {
  /* Палитра */
  --light-blue: #0bbbef;
  --blue: #1f72b8;
  --dark-blue: #002b72;
  --green: #64af33;
  --text: #ffffff;

  /* Доп. оттенки/оверлеи */
  --green-dark: #2e8a24;
  --white-20: rgba(255, 255, 255, 0.2);
  --black-20: rgba(0, 0, 0, 0.2);

  /* Типографика */
  --ff-sans: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  --ff-serif: "Playfair Display", Georgia, "Times New Roman", serif;

  /* Размеры */
  --max: 1240px;
  --header-h: 80px;

  --footer-h: 144px;
  --radius: 8px;

  /* Кнопки */
  --btn-h: 42px;
  --btn-max-w: 240px;
  --btn-pad-x: 50px;
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
    --footer-h: 144px;
  }
}

/* ================== FONTS ================== */
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.woff2") format("woff2"),
    url("../fonts/Roboto-Regular.woff") format("woff"),
    url("../fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

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

/* ================== RESET / BASE ================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--ff-sans);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--max);
  padding: 0 20px;
  margin: 0 auto;
}

/* Типографика (из ТЗ) */
h1 {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 74px;
  line-height: 124%;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
}

h2.title {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 64px;
  line-height: 124%;
  letter-spacing: 0.02em;
  margin: 0 0 40px;
}

h3.sub-title {
  font-family: var(--ff-serif);
  font-weight: 800;
  font-size: 36px;
  line-height: 124%;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}

p.sub-text {
  font-family: var(--ff-serif);
  font-weight: 800;
  font-size: 24px;
  line-height: 124%;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}

.text {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  letter-spacing: 0.01em;
  margin: 0;
}

.pdng-bottom {
  padding-bottom: 40px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 40px;
    /* было 74px */
    line-height: 120%;
    letter-spacing: 0.01em;
  }

  h2.title {
    font-size: 32px;
    /* было 64px */
    line-height: 122%;
    letter-spacing: 0.01em;
  }

  h3.sub-title {
    font-size: 22px;
    /* было 36px */
    line-height: 124%;
    letter-spacing: -0.01em;
  }

  p.sub-text {
    font-size: 16px;
    /* было 24px */
    line-height: 124%;
    letter-spacing: -0.01em;
  }

  p.text {
    font-size: 14px;
    /* было 15px */
    line-height: 160%;
    letter-spacing: 0.01em;
  }
}

/* ================== HEADER ================== */
.header {
  background: #011940;
  /* близко к макету, можешь заменить на var(--dark-blue) */
  position: fixed;
  /* фиксируем */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  height: var(--header-h);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.header__logo-img {
  height: 28px;
  width: auto;
}

/* NAV */
.header__nav {
  margin-left: 16px;
}

.header__list {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.header__item {
  position: relative;
}

.header__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
  opacity: 0.95;
}

.header__link:hover {
  opacity: 1;
}

/* caret */
.caret {
  width: 10px;
  height: 10px;
  position: relative;
  display: inline-block;
}

.caret::before {
  content: "";
  border: 2px solid currentColor;
  border-left: 0;
  border-top: 0;
  width: 6px;
  height: 6px;
  display: block;
  transform: rotate(45deg);
  opacity: 0.7;
}

/* dropdown desktop */
.has-sub .sub {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 180px;
  background: #0b244a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 8px;
  list-style: none;
  margin: 0;
  display: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 50;
}

/* открытое меню */

/*.has-sub:hover .sub { display: block; }*/

/* показывать по клику на мобиле */
.has-sub.open .sub {
  display: block;
}

/* курсор и поворот каретки */
.has-sub > .header__link {
  cursor: pointer;
}
.caret::before {
  transition: transform 0.2s ease;
}
.has-sub.open .caret::before {
  transform: rotate(225deg); /* перевёрнутая стрелка */
}

[dir="rtl"] .has-sub .sub {
  right: 0;
  left: auto;
}

.sub a {
  display: block;
  padding: 8px 10px;
  font-size: 14px;
  opacity: 0.9;
  border-radius: 8px;
}

.sub a:hover {
  background: rgba(255, 255, 255, 0.06);
  opacity: 1;
}

/* ACTIONS */
.header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 45%;
  gap: 14px;
}

.header__lang {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 6px;
  font-family: "Roboto", sans-serif;
}

.lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 0;
  color: var(--text);
  opacity: 0.45;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
}

.lang__btn.is-active {
  opacity: 1;
}

.lang__btn:hover {
  opacity: 0.8;
}

.lang__ico {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.lang__sep {
  opacity: 0.5;
}

/* burger */
.burger {
  display: none;
  flex-direction: column;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.burger__line {
  width: 22px;
  height: 2px;
  background: #28a745;
  display: block;
  border-radius: 2px;
}

.burger__line + .burger__line {
  margin-top: 4px;
}

/* ================== BUTTONS (полный набор) ================== */

.header__btn,
.header__btn-mob {
  display: flex;
  gap: 24px;
}

.header__btn .btn {
  width: 120px;
  font-size: 14px;
  max-height: 40px;
  font-weight: 600;
}
.header__btn .btn--green:active:after {
  opacity: 0;
}
.header__btn .btn--green {
  box-shadow: 0px 0px 15px 9px rgba(73, 229, 108, 0.2);
  background: #4caf50;
}

.header__btn .btn--blue {
  box-shadow: initial;
  background: linear-gradient(
    174deg,
    rgba(2, 125, 231, 0.63) 17%,
    rgba(0, 173, 242, 0.63) 50%,
    rgba(3, 135, 219, 0.63) 100%
  );
}

.header__btn-mob {
  display: none;
}

.btn {
  /*height: var(--btn-h);*/
  padding: 15px 0;
  /*max-width: var(--btn-max-w);*/
  width: 50%;
  /*padding: 0 var(--btn-pad-x);*/
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  font: 700 16px/1 var(--ff-sans);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.12s ease, filter 0.12s ease, box-shadow 0.12s ease;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  cursor: pointer;
}

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

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(11, 187, 239, 0.35);
}

/* GREEN */
.btn--green {
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
  box-shadow: 0 6px 22px rgba(100, 175, 51, 0.35);
}

.btn--green::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay, transparent);
  transition: background 0.12s ease;
  pointer-events: none;
}

.btn--green::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background: linear-gradient(
    180deg,
    rgba(233, 233, 233, 0) 0%,
    rgba(233, 233, 233, 0.55) 100%
  );
  opacity: 0;
  transition: opacity 0.12s ease;
  pointer-events: none;
}

.btn--green:hover {
  --overlay: var(--white-20);
  filter: brightness(1.02);
}

.btn--green:active {
  --overlay: var(--black-20);
  transform: translateY(1px);
}

.btn--green:active::after {
  opacity: 1;
}

.btn--blue {
  background: linear-gradient(180deg, #4aa0df 0%, var(--blue) 100%);
  box-shadow: 0 6px 22px rgba(31, 114, 184, 0.35);
}

.btn--blue::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay, transparent);
  transition: background 0.12s ease;
}

.btn--blue:hover {
  --overlay: var(--white-20);
  filter: brightness(1.02);
}

.btn--blue:active {
  --overlay: var(--black-20);
  transform: translateY(1px);
}

@media (max-width: 1066px) {
  .btn {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .header__inner {
    justify-content: space-between;
  }

  .header__nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: #071c3a;
    transform: translateY(-120%);
    transition: 0.3s ease;
    padding: 16px;
    margin-left: 0;
  }

  .header__btn {
    display: none;
  }

  .header__btn-mob {
    display: flex;
    width: 100%;
    padding-top: 10px;
  }

  .header__actions {
    margin-left: 0;
    width: 80%;
    justify-content: flex-end;
  }

  .header__nav.is-open {
    transform: translateY(0);
  }

  .header__list {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .has-sub:hover .sub {
    display: none;
  }

  /* отключаем ховер */
  .has-sub .sub {
    position: static;
    display: none;
    border: none;
    background: transparent;
    box-shadow: none;
    padding: 6px 0;
  }

  .has-sub.open .sub {
    display: block;
  }

  .burger {
    display: flex;
  }
}

/* Демо-поля ниже шапки */
main {
  padding-top: var(--header-h);
}

/* ===== Hero Egypt ===== */
.eg-hero {
  position: relative;
  overflow: hidden;
  z-index: 100;
  height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  background: var(--dark-blue);
}

.eg-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  height: calc(100vh - var(--header-h));
  /* общий фон секции */
  background-image: url("../images/hero-eg/bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.3;
  pointer-events: none;
}

.eg-gift-bg {
  height: calc(100vh - var(--header-h));
  width: 100%;
  background-image: url("../images/hero-eg/img.png");
  background-size: 45%;
  background-repeat: no-repeat;
  background-position: right center;
}

.eg-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  height: calc(100vh - var(--header-h));
  align-items: center;
  gap: 32px;
}

.eg-hero__content {
  width: 80%;
}

.eg-hero__content-ar {
  width: 60%;
}

/* left */
.eg-hero__title {
  margin: 0 0 18px;
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 74px;
  line-height: 124%;
  letter-spacing: 0.02em;
  color: var(--text);
  text-wrap: balance;
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.35);
}

/* bonus card */
.bonus {
  width: 100%;
  max-width: 560px;
  margin: 0 0 20px;
  padding: 30px 18px 32px;
  border-radius: 4px;
  position: relative;
  color: var(--text);
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background-color: rgb(14, 45, 87);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 0px 30px rgba(2, 112, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.bonus-ar {
  width: 100%;
  max-width: none;
}

.bonus::before {
  /* декоративный паттерн внутри карточки (необязательно) */
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/hero-eg/bonus-bg.png") center/cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
  border-radius: inherit;
  z-index: -1;
}

.bonus__title {
  position: relative;
  z-index: 1;
  font: 700 18px/1.3 var(--ff-sans);
  opacity: 0.95;
  margin-bottom: 14px;
}

.bonus__row {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.bonus__percent {
  height: 56px;
  border: 2px dashed rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 800 28px/1 var(--ff-sans);
  letter-spacing: 0.02em;
}

.bonus__icon {
  height: 56px;
  width: 56px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--green);
  cursor: pointer;
  transition: transform 0.12s ease, filter 0.12s ease;
}

.bonus__icon img {
  filter: drop-shadow(0 0 8px var(--green))
    drop-shadow(0 0 18px rgba(100, 175, 51, 0.8));
  will-change: filter;
}

.bonus__icon:hover {
  filter: brightness(1.07);
}

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

.bonus__icon img {
  width: 24px;
  height: 24px;
}

.bonus__btn {
  width: 100%;
  max-width: 320px;
}

/* text body under card */
.eg-hero__text .text {
  color: rgba(233, 233, 233, 0.92);
  margin-top: 10px;
}

/* right art */
.eg-hero__art {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.eg-hero__art-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 56px rgba(0, 0, 0, 0.45));
  /* если нужен фон вместо <img>, можно удалить <img> и раскомментить:
       width:100%; height:520px; background:url(...) right bottom/contain no-repeat;
    */
}

/* ===== Download ===== */
.download p {
  margin: 0;
}
.download h2 {
  font-size: 64px;
  margin: 0;
  line-height: 124%;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
.background-x {
  background-image: url("../images/download/bg.png");
  background-color: #e6e6e6;
  background-position: center;
}
/* .download-hero__first-background {
  background-image: url("../images/hero-eg/bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
} */
.download-hero__first-background {
  position: relative;
}
.download-hero {
  background-color: #01255b;
}
.download-hero__first-background::before {
  position: absolute;
  content: "";
  opacity: 0.15;
  height: 100%;
  width: 100%;
  background-image: url("../images/hero-eg/bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.download-hero__second-background {
  background-image: url("../images/download/download-hero.png");
  background-repeat: no-repeat;
  background-position: right;
  position: relative;
}
.download-hero__content {
  max-width: 836px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 44px 0;
  position: relative;
  z-index: 1;
}
html[dir="rtl"] .download-hero__content {
  max-width: 735px;
}
.download-hero .bonus-ar {
  max-width: 486px;
  margin: initial;
  padding: 20px 44px;
  background-color: #011940;
}
.download-hero .bonus__title {
  font-size: 24px;
  line-height: 150%;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 173, 242, 0.8));
}
.download-hero .bonus::before {
  opacity: 0.2;
}
.bonus__copy-text-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.download-hero .bonus__row {
  margin-bottom: initial;
  gap: 10px;
  align-items: initial;
}
.download-hero .bonus__btn {
  max-width: 240px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 20px;
  filter: drop-shadow(0 0 24px rgba(76, 175, 80, 1));
  background: rgb(76 175 80 / 60%);
  backdrop-filter: blur(30px);
  height: 42px;
}
.download-hero .btn--green:active::after {
  opacity: 0;
}
.download-hero .bonus__percent {
  width: 100%;
  flex: 1;
  height: 61px;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 500;
  filter: drop-shadow(0 4px 8px rgba(0, 173, 242, 0.8))
    drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
  border: 3px dashed white;
}
.download-hero .bonus__icon {
  width: 72px;
  height: 61px;
  box-shadow: initial;
  filter: drop-shadow(0 0 24px rgba(76, 175, 80, 1));
  background: rgba(76, 175, 80, 0.3);
  border: 2px solid rgba(255, 255, 255, 1);
}
.download-hero .bonus__icon img {
  width: 20px;
  height: 23px;
}
.bonus__copy-text-container p {
  text-align: right;
  line-height: 150%;
  font-size: 11px;
  margin-bottom: 13px;
}

.bonus__copied-text {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(0 127 48 / 95%);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 100;
}

.bonus__copied-text::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid rgb(0 127 48 / 95%);
}

.bonus__copy-text-container.is-copied .bonus__copied-text {
  opacity: 1;
  visibility: visible;
  top: -40px;
}

.bonus__icon {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.bonus__icon:hover {
  transform: scale(1.05);
}

.bonus__icon:active {
  transform: scale(0.95);
}
.download-hero__text {
  font-size: 20px;
  line-height: 160%;
  max-width: 795px;
}
.legal {
  padding: 80px 0 40px 0;
  color: #002b72;
}
.legal__container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.legal__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-weight: 400;
  line-height: 160%;
  font-size: 20px;
}

.download-benefits__container {
  background-image: url("../images/download/bg1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;
  padding: 80px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1200px;
}
.download-benefits__item-icon svg {
  width: 18px;
  height: 14px;
  color: rgba(0, 173, 242, 0.8);
}
.download-benefits__item-icon {
  display: flex;
  gap: 16px;
  align-items: center;
}
.download-benefits__title {
  line-height: 160%;
  font-size: 20px;
  font-weight: 800;
}
.download-benefits__list p {
  font-size: 20px;
  line-height: 160%;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.download-benefits__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.download-benefits__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.download-apk__container {
  color: #002b72;
  margin: 40px auto;
}
.download-apk__content-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
}
.download-apk__container h2 {
  margin-bottom: 30px;
}
.download-apk__content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
  font-size: 20px;
  line-height: 160%;
  font-weight: 400;
  letter-spacing: 0.2px;
}
.download-apk__img {
  margin-bottom: 40px;
}
.download-apk__content-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0;
  margin: 0;
}
.download-apk__content-item {
  display: flex;
  gap: 16px;
  align-items: center;
}
.download-apk__btn-container {
  display: flex;
  justify-content: center;
}
.header__lang-mobile {
  position: relative;
  align-items: center;
  gap: 5px;
}

.header__lang-mobile-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: inherit;
}

.header__lang-mobile-btn svg {
  transition: transform 0.3s ease-in-out;
}

.header__lang-mobile_active .header__lang-mobile-btn svg {
  transform: rotate(180deg);
}

.header__lang-mobile-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header__lang-mobile_active .header__lang-mobile-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  color: var(--text);
  text-decoration: none;
  transition: background-color 0.2s ease;
  opacity: 0.6;
}

.lang-dropdown__item:hover {
  background-color: rgba(255, 255, 255, 0.05);
  opacity: 1;
}

.lang-dropdown__item.is-active {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.08);
}

.lang-dropdown__item .lang__ico {
  width: 20px;
  height: 20px;
}
/* ===== адаптив ===== */
@media (max-width: 1200px) {
  .eg-hero__title {
    font-size: 64px;
  }
}

@media (max-width: 992px) {
  .eg-hero {
    height: fit-content;
  }
  .header__list {
    gap: 10px;
  }
  .header__btn {
    gap: 10px;
  }
  .header__btn .btn {
    width: 95px;
  }
  .header__inner {
    gap: 7px;
  }

  .eg-hero__inner {
    grid-template-columns: 1fr;
    gap: 22px;
    width: 100%;
    height: fit-content;
  }

  .eg-hero::before {
    height: 100%;
  }

  .eg-gift-bg {
    height: fit-content;
  }

  .eg-hero__content {
    width: 100%;
  }

  .eg-hero__art {
    justify-content: center;
  }

  .eg-hero__art-img {
    max-width: 520px;
  }
}

@media (max-width: 768px) {
  .eg-hero {
    padding-top: 56px;
  }

  .eg-hero__title {
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0.01em;
  }

  .bonus {
    padding: 14px;
    border-radius: 4px;
  }

  .bonus__row {
    grid-template-columns: 1fr 52px;
    gap: 10px;
  }

  .bonus__percent {
    height: 52px;
    font-size: 24px;
  }

  .bonus__icon {
    height: 52px;
    width: 52px;
  }

  .bonus__btn {
    max-width: 100%;
  }

  .eg-hero__art-img {
    max-width: 420px;
  }

  .eg-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    height: calc(100vh - var(--header-h));
    /* общий фон секции */
    background-image: url("../images/hero-eg/bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.55;
    pointer-events: none;
  }
}

@media (max-width: 420px) {
  .eg-hero__title {
    font-size: 34px;
  }

  .eg-hero__art-img {
    max-width: 360px;
  }
}

.info {
  background-image: url("../images/info/bg.png");
  background-size: 20%;
  background-color: #f2f2f2;
}

.info__inner {
  padding-top: var(--header-h);
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
}

/* Цвет текстов в секции */
.info,
.info .title,
.info .sub-title,
.info p.text,
.info__list li {
  color: #002b72;
  /* = var(--dark-blue) */
}

.info__choose {
  display: flex;
  gap: 5px;
  padding-bottom: 40px;
}

.info__choose-text {
}

@media (max-width: 768px) {
  .info__choose {
    flex-direction: column;
  }

  .info__choose-img {
    height: 40%;
  }
}

.info-text {
  padding-bottom: 40px;
}

.list-arrows {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-bottom: 40px;
}

.list-arrows li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
}

/* Иконка-стрелка с мягким свечением */
.li-ico {
  position: relative;
  width: 18px;
  height: 18px;
  color: var(--light-blue, #0bbbef);
  /* цвет стрелки */
  flex: 0 0 18px;
  margin-top: 2px;
  /* опустить чуть вниз, как на макете */
}

.li-ico svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* чуть ярче при hover строки (опционально) */
.list-arrows li:hover .li-ico {
  filter: drop-shadow(0 0 8px rgba(11, 187, 239, 0.55));
}

/* мобильная типографика (если нужно) */
@media (max-width: 768px) {
  .list-arrows {
    font-size: 14px;
    line-height: 1.6;
  }

  .li-ico {
    width: 16px;
    height: 16px;
  }
}

/* Нумерованный список с голубыми бейджами */
.list-num {
  counter-reset: num;
  list-style: none;
  margin: 0;
  padding: 0;
  padding-top: 35px;
  color: #002b72;
}

.list-num li {
  position: relative;
  padding-left: 34px;
  padding-right: 30px;
  /* место под кружок */
  margin: 8px 0;
}

/* Кружок-номер + свечение */
.list-num li::before {
  counter-increment: num;
  content: counter(num);
  position: absolute;
  right: 0;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  font-size: 16px;
  color: #0bbbef;
  border: 2px solid #0bbbef;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(11, 187, 239, 0.18),
    rgba(11, 187, 239, 0) 60%
  );
}

[lang="en"] .list-num li::before {
  right: initial;
  left: 0;
}

/* подпись под списком */
.list-note {
  margin: 10px 0 0;
  padding-top: 20px;
}

/* мобильная типографика */
@media (max-width: 768px) {
  .list-num {
    font-size: 14px;
  }

  .list-num li {
    padding-left: 30px;
    padding-right: 25px;
  }

  .list-num li::before {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }

  .list-note {
    font-size: 14px;
  }
}

/* заголовок блока */
.overview__title {
  color: var(--dark-blue);
  margin: 40px 0 12px;
}

/* контейнер-таблица на div'ах */
.ov-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 40px;
  padding-bottom: 40px;
  /*border: 2px solid rgba(46, 184, 240, 0.8);*/
  overflow: hidden;
  color: var(--dark-blue);
  font: 400 15px/1.5 Inter, system-ui, Arial, sans-serif;
}

/* строка = грид из двух колонок */
.ov__row {
  position: relative;
  width: 100%;
  display: flex;
  gap: 5px;
}

/* ячейки */
.ov__td,
.ov__th {
  width: 65%;
  padding: 10px 12px;
  border: 2px solid rgba(46, 184, 240, 0.8);
  text-align: center;
}

.ov__row > :first-child {
  width: 35%;
}

/* шапка */
.ov__row--head .ov__th {
  font-weight: 700;

  background: rgba(11, 187, 239, 0.1);
}

/* ===== hover строки (как на макете) ===== */
.ov__row:not(.ov__row--head):hover .ov__td {
  background: linear-gradient(
    180deg,
    rgba(11, 187, 239, 0.14) 0%,
    rgba(11, 187, 239, 0.06) 100%
  );
  border: 2px solid rgba(46, 184, 240, 0.8);
}

.ov__row:not(.ov__row--head):hover .ov__td:last-child {
  border-right-color: rgba(11, 187, 239, 0.9);
}

.ov__row:not(.ov__row--head):hover .ov__td:first-child {
  border-left-color: rgba(11, 187, 239, 0.9);
  box-shadow: inset 3px 0 0 var(--light-blue);
}

/* светлая «линия» сверху/снизу */
.ov__row:not(.ov__row--head):hover .ov__td {
  box-shadow: inset 0 1px 0 rgba(11, 187, 239, 0.55),
    inset 0 -1px 0 rgba(11, 187, 239, 0.55);
}

/* лёгкая зебра */
.ov__row:nth-child(even):not(.ov__row--head) .ov__td {
  background: rgba(0, 43, 114, 0.03);
}

/* ===== адаптив ===== */
@media (max-width: 768px) {
  .ov-box {
    font-size: 14px;
  }

  .ov__row {
    grid-template-columns: 1fr;
  }

  .ov__row--head {
  }

  .ov__td,
  .ov__th {
    padding: 8px 10px;
  }

  /* мобильный «карточный» вид строки */
  .ov__row:not(.ov__row--head) .ov__td:first-child {
    font-weight: 700;
    background: rgba(11, 187, 239, 0.06);
    border-right-color: rgba(0, 43, 114, 0.18);
  }

  .ov__row:not(.ov__row--head):hover .ov__td:first-child {
    background: rgba(11, 187, 239, 0.12);
  }
}

.overview__text,
.last-img {
  padding-bottom: 40px;
}

.info__inner:last-child {
  display: flex;
  flex-direction: column;
}

.info__btn {
  align-self: center;
}

/* ===== Why Casino section ===== */
.why-casino {
  position: relative;
  padding: 56px 0 64px;
  color: #fff;
  background-color: #02050b;
  background-image: url("../images/why/bg-blur.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}
.why-casino::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0b244a;
  opacity: 0.89;
  pointer-events: none;
}
.why-casino__inner {
  position: relative;
  z-index: 1;
}

.why-casino__title {
  margin: 0 0 14px;
  font-family: var(--ff-serif, "Playfair Display", serif);
  font-weight: 700;
  font-size: 48px; /* адапт ниже */
  line-height: 1.24;
  letter-spacing: 0.02em;
}
.why-casino__lead {
  max-width: 900px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.92);
}

/* список пунктов */
.why-casino__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
  max-width: 980px;
}

/* заголовок пункта: иконка + плашка */
.why-head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
}
.why-head strong {
  font: 700 16px/1.25 Inter, system-ui, Arial, sans-serif;
}

/* описание под заголовком */
.why-desc {
  margin: 8px 0 0;
  color: rgba(233, 233, 233, 0.92);
  font: 400 16px/1.6 Inter, system-ui, Arial, sans-serif;
}

/* стрелка с мягким свечением */
.li-ico {
  width: 18px;
  height: 18px;
  color: #0bbbef;
  flex: 0 0 18px;
  position: relative;
}
.li-ico svg {
  width: 100%;
  height: 100%;
  display: block;
}
.li-ico::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(11, 187, 239, 0.18),
    rgba(11, 187, 239, 0)
  );
}
/*.why-item:hover .li-ico{*/
/*    filter: drop-shadow(0 0 8px rgba(11,187,239,.55));*/
/*}*/
/*.why-item:hover .why-head{*/
/*    background: rgba(255,255,255,.14);*/
/*}*/

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .why-casino__title {
    font-size: 44px;
  }
}
@media (max-width: 992px) {
  .why-casino__title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .why-casino {
    padding: 40px 0 48px;
  }
  .why-casino__title {
    font-size: 32px;
  }
  .why-head strong {
    font-size: 15px;
  }
  .why-desc {
    font-size: 14px;
  }
}

.register-how,
.register-how .title,
.register-how .sub-title,
.register-how p.text,
.info__list li {
  color: #002b72;
}

.register-how {
  padding: 56px 0 64px;
  background-image: url(../images/info/bg.png);
  background-size: 20%;
  background-color: #f2f2f2;
}

.register-how__inner {
  display: flex;
  flex-direction: column;
}

/* список шагов */
.reg-steps {
  list-style: none;
  margin: 0;
  padding: 20px 0;
  display: grid;
  gap: 18px;
  max-width: 980px;
}
.reg-step {
  padding: 2px 0;
}

.reg-step__head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
}
.reg-step__title {
  color: var(--dark-blue);
  padding-bottom: 2px;
}

/* голубой нумерованный бейдж со свечением */
.reg-badge {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  font: 700 18px/1 Inter, system-ui, Arial, sans-serif;
  color: var(--light-blue);
  border: 2px solid var(--light-blue);
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(11, 187, 239, 0.18),
    rgba(11, 187, 239, 0) 60%
  );
  box-shadow: 0 0 0 3px rgba(11, 187, 239, 0.1),
    0 0 12px rgba(11, 187, 239, 0.35);
}

.reg-desc {
  margin: 8px 0 0;
  max-width: 920px;
  color: var(--dark-blue);
  font: 400 16px/1.6 Inter, system-ui, Arial, sans-serif;
}

/* === Promo widget inside register-how === */
.promo-widget {
  background-color: #0b244a;
  border-radius: 20px;
  padding: 56px 64px;
  margin-top: 56px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .promo-widget {
    padding: 20px;
  }
}

.promo__bonus {
  margin-top: 35px;
  align-self: center;
}

.promo-widget::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/hero-eg/bonus-bg.png) center / cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
  border-radius: inherit;
  z-index: -1;
}

.promo-widget,
.promo-widget .title,
.promo-widget .sub-title,
.promo-widget p.text,
.info__list li {
  color: #ffffff;
}

.current-promotion {
  position: relative;
  background-color: #02050b;
  background-image: url(../images/why/bg-blur.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  padding: 56px 0 64px;
}

.current-promotion::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0b244a;
  opacity: 0.89;
  pointer-events: none;
}

.promotion__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.promotion-ul {
  padding-top: 40px;
}

.promotion-img {
  margin: 20px 0;
}

.promotions--welcome-txt {
  margin-bottom: 40px;
}

.current-promo-btn {
  align-self: center;
}

.first-bet {
  padding: 56px 0 64px;
  background-image: url(../images/info/bg.png);
  background-size: 20%;
  background-color: #f2f2f2;
  color: #002b72;
}

.first-bet__inner {
  display: flex;
  flex-direction: column;
}

.first-bet__widget {
  padding-bottom: 10px;
  margin-bottom: 40px;
}

.first-bet-btn {
  align-self: center;
}

.casino {
  position: relative;
  background-color: #02050b;
  background-image: url(../images/why/bg-blur.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  padding: 56px 0 64px;
}

.casino::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0b244a;
  opacity: 0.89;
  pointer-events: none;
}

.first-bet__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.downloading {
  padding: 56px 0 64px;
  background-image: url(../images/info/bg.png);
  background-size: 20%;
  background-color: #f2f2f2;
  color: #002b72;
}

.downloading__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

/* Нумерованный список со синими круглыми бейджами */
.steps-list {
  counter-reset: step;
  list-style: none;
  color: var(--dark-blue, #002b72);
}
.steps-list li {
  position: relative;
  padding-left: 36px; /* место под кружок */
  margin: 12px 7px;
  font: 400 20px/1.6 Inter;
}
.steps-list li::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--light-blue, #0bbbef);
  border: 2px solid var(--light-blue, #0bbbef);
  background: radial-gradient(
    circle at 50% 50%,
    rgba(11, 187, 239, 0.18),
    rgba(11, 187, 239, 0) 60%
  );
  font: 700 12px/1 Inter, system-ui, Arial, sans-serif;
  box-shadow: 0 0 0 3px rgba(11, 187, 239, 0.1),
    0 0 12px rgba(11, 187, 239, 0.35);
}

[lang="ar"] .steps-list li::before {
  right: -35px;
  left: initial;
}

.steps-list li:hover::before {
  box-shadow: 0 0 0 3px rgba(11, 187, 239, 0.14),
    0 0 16px rgba(11, 187, 239, 0.5);
}

/* mobile */
@media (max-width: 768px) {
  .steps-list li {
    padding-left: 32px;
    margin: 10px 0;
    font-size: 16px;
  }
  .steps-list li::before {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }
}

.withdraw {
  position: relative;
  background-color: #02050b;
  background-image: url(../images/why/bg-blur.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  padding: 56px 0 64px;
}

.withdraw::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0b244a;
  opacity: 0.89;
  pointer-events: none;
}

.withdraw__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.withdraw__box {
  display: flex;
  position: relative;
}

.withdraw__left {
  width: 70%;
  position: relative;
  z-index: 2;
}

.withdraw__right {
  width: 30%;
  opacity: 0.2;
}

.faq {
  padding: 56px 0 64px;
  background-image: url(../images/info/bg.png);
  background-size: 20%;
  background-color: #f2f2f2;
  color: #002b72;
}

.faq__inner {
}

.faq-title {
  font-size: 46px;
  font-weight: 700;
  color: #002b72;
  margin-bottom: 10px;
}

.faq-item {
  border-radius: 5px;
  margin-bottom: 10px;
}

.faq-question {
  padding: 10px 0 0 0;
  display: flex;
  justify-content: space-between;
  gap: 2%;
  align-items: center;
  cursor: pointer;
  border-bottom: 2px solid #002b72;
}

.faq-question p {
  font-family: Inter;
  font-size: 20px;
  color: #002b72;
  font-weight: 400;
}

.faq-item.active .faq-question p {
  font-weight: 700;
}

.faq-answer {
  display: none;
  font-family: Inter;
  font-size: 20px;
  color: #002b72;
  font-weight: 400;
}

.faq-question svg {
  background-color: #64af33;
  border-radius: 50%;
  color: #ffffff;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .faq-title {
    text-align: center;
    font-size: 36px;
  }

  .faq-question p {
    font-size: 14px;
  }

  .faq-answer {
    font-size: 14px;
  }
}

/* ===== Footer ===== */
.footer {
  background: #011940;
}
.footer__inner {
  margin: 0 auto;
  padding: 64px 16px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  line-height: 40px;
}

/* nav */
.footer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 26px;
  align-items: center;
}
.footer__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  position: relative;
}
.footer__link:hover {
  opacity: 0.9;
}

/* caret */
.footer__caret {
  width: 10px;
  height: 10px;
  display: inline-block;
  position: relative;
}
.footer__caret::before {
  content: "";
  border: 4px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 3px;
  width: 0;
  height: 0;
}

/* copyright */
.footer__copy {
  font-size: 16px;
  color: rgba(233, 233, 233, 0.5);
  text-align: center;
  margin: 0;
  line-height: 24px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer__inner {
    gap: 14px;
    padding: 0;
    height: 100px;
    display: flex;
    justify-content: center;
  }
  .footer__nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    display: none;
  }
  .footer__link {
    font-size: 13px;
  }
  .footer__copy {
    font-size: 14px;
  }
}

.error__page {
  position: relative;
  overflow: hidden;
  z-index: 100;
  height: calc(100vh - var(--header-h) - var(--footer-h));
  display: flex;
  align-items: center;
  background: var(--dark-blue);
}

.error__page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  height: calc(100vh - var(--header-h) - var(--footer-h));
  background-image: url(../images/404/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /*opacity: .3;*/
  pointer-events: none;
}

@media (max-width: 768px) {
  .error__page::before {
    background-position: left;
  }
}

.error__page--inner {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 1;
}

.error__page--content {
  display: flex;
}

.error__page--bg {
  height: calc(100vh - var(--header-h) - var(--footer-h));
  width: 100%;
  /*background-image: url(../images/404/404.png);*/
  /*background-size: 45%;*/
  /*background-repeat: no-repeat;*/
  /*background-position: right center;*/
}

.notfound__email {
  text-decoration: underline;
}

.background-blue {
  position: relative;
  background-color: #01255d;
}
.background-blue::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #01255d;
  background-image: url(../images/download/bg2.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
}

.app-features {
  padding: 120px 0 40px 0;
}

.app-features__container {
  position: relative;
  z-index: 1;
}

.app-features__header h2 {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.24;
  color: #e9e9e9;
  margin-bottom: 30px;
  letter-spacing: 1.28px;
}

.app-features__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.app-features__intro {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #e9e9e9;
  letter-spacing: 0.2px;
}

.app-features__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.app-features__item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.app-features__item-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.app-features__item-header svg {
  flex-shrink: 0;
}

.app-features__item-header h3 {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.6;
  color: #e9e9e9;
  letter-spacing: 0.2px;
  margin: 0;
}

.app-features__item p {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #e9e9e9;
  letter-spacing: 0.2px;
  margin: 0;
}

.app-features__image {
  width: 100%;
  border-radius: 4px;
}

.app-features__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.app-features__btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1px 0 6px;
}

.app-features__btn {
  width: 400px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4caf50;
  box-shadow: 0px 0px 24.4px 0px #4caf50;
  border-radius: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.app-features__btn:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 8px 22px #28a745);
  box-shadow: initial;
  text-decoration: underline;
}
.app-features__btn:active {
  background: #3d8c40;
  filter: drop-shadow(0 8px 22px #136def4d);
  box-shadow: initial;
  text-decoration: none;
}
.app-features__btn:hover::before {
  background: rgba(255, 255, 255, 0.2);
}
.app-features__btn:active::before {
  background: initial;
  box-shadow: initial;
}
.app-features__btn:hover::after {
  opacity: 0;
}
.app-features__btn:active::after {
  opacity: 0;
}

.app-registration {
  background-color: #e6e6e6;
  background-image: url(../images/download/bg.png);
  background-size: 33.5%;
  background-blend-mode: luminosity;
  padding: 80px;
  border-radius: 20px;
  margin: 0;
  position: relative;
}

.app-registration::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 45, 110, 0.05);
  opacity: 0.1;
  mix-blend-mode: luminosity;
  pointer-events: none;
  border-radius: 20px;
}

.app-registration__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.app-registration__container h2 {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.24;
  color: #002b72;
  margin-bottom: 0;
  letter-spacing: 1.28px;
}

.app-registration__intro {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #002b72;
  letter-spacing: 0.2px;
}

.app-registration__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #002b72;
  letter-spacing: 0.2px;
  margin: 0;
}

.app-registration__steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.app-registration__step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.app-registration__step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-registration__step-content h3 {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  color: #002b72;
  letter-spacing: 0.2px;
  margin: 0;
}

.app-registration__step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-registration__step-list li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.app-registration__step-list svg {
  flex-shrink: 0;
}

.app-registration__step-list span {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #002b72;
  letter-spacing: 0.2px;
}

.app-registration__row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.app-registration__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.app-registration__right {
  width: 395px;
  height: 700px;
  flex-shrink: 0;
}

.app-registration__right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.app-registration__outro {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #002b72;
  letter-spacing: 0.2px;
  margin: 0;
}

.mobile {
  display: none;
}

.desktop {
  display: flex;
}

@media (max-width: 1200px) {
  .app-features__header h2,
  .app-registration__container h2 {
    font-size: 46px;
  }

  .app-features__intro,
  .app-features__item p,
  .app-registration__intro,
  .app-registration__subtitle,
  .app-registration__step-content h3,
  .app-registration__step-list span,
  .app-registration__outro {
    font-size: 18px;
  }

  .app-features__btn {
    width: 350px;
    height: 55px;
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .app-features {
    padding: 80px 0;
  }

  .app-features__header h2,
  .app-registration__container h2 {
    font-size: 36px;
  }

  .app-registration__row {
    flex-direction: column;
    gap: 0;
  }

  .app-registration__right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .app-features {
    padding: 45px 0 25px;
  }

  .app-registration {
    padding: 40px 20px;
    background-size: 108%;
  }

  .app-features__header h2 {
    font-size: 32px;
    margin-bottom: 25px;
    letter-spacing: -1px;
  }
  .app-registration__container h2 {
    font-size: 32px;
    letter-spacing: -1px;
  }
  .app-features__content {
    gap: 20px;
  }
  .app-features__item {
    gap: 12px;
  }
  .app-features__item-header {
    gap: 10px;
  }
  .app-registration__step,
  .app-registration__step-content,
  .app-registration__step-list li {
    gap: 10px;
  }
  .app-registration__step-list {
    position: relative;
    left: -26px;
  }
  .app-registration__step-list svg {
    width: 15px;
  }
  .app-registration__step img {
    width: 19px;
    height: initial;
  }

  .app-features__intro,
  .app-features__item p,
  .app-registration__intro,
  .app-registration__subtitle,
  .app-registration__step-content h3,
  .app-registration__step-list span,
  .app-registration__outro {
    font-size: 16px;
  }

  .app-features__item-header h3 {
    font-size: 16px;
    font-weight: 700;
  }
  .app-features__item-header svg {
    width: 15px;
  }

  .app-features__btn {
    width: 100%;
    max-width: 302px;
    height: 45px;
    font-size: 16px;
  }

  .app-registration__right {
    max-height: initial;
    height: initial;
  }
  .mobile {
    display: flex;
  }
  .desktop {
    display: none;
  }
}

.app-bonuses {
  padding: 40px 0 20px;
}

.app-bonuses__container {
  position: relative;
  z-index: 1;
}

.app-bonuses__container h2 {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.24;
  color: #e9e9e9;
  margin-bottom: 30px;
  letter-spacing: 1.28px;
}

.app-bonuses__content {
  display: flex;
  flex-direction: column;
}

.app-bonuses__content p {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #e9e9e9;
  letter-spacing: 0.2px;
  margin: 0;
}

.app-betting {
  padding: 20px 0;
}

.app-betting__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.app-betting__container h2 {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.24;
  color: #e9e9e9;
  margin-bottom: 0;
  letter-spacing: 1.28px;
}

.app-betting__content {
  display: flex;
  flex-direction: column;
}

.app-betting__content p {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #e9e9e9;
  letter-spacing: 0.2px;
  margin: 0;
}

.app-betting__image {
  width: 100%;
  border-radius: 20px;
}

.app-betting__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.app-betting__btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1px 0 6px;
}

.app-betting__btn {
  width: 400px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 175, 80, 0.2);
  box-shadow: 0px 0px 24.4px 0px #4caf50;
  border-radius: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.app-betting__btn:hover {
  background: rgba(76, 175, 80, 0.3);
  transform: translateY(-2px);
}

.app-casino {
  padding: 20px 0;
}

.app-casino__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.app-casino__container h2 {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.24;
  color: #e9e9e9;
  margin-bottom: 0;
  letter-spacing: 1.28px;
}

.app-casino__content {
  display: flex;
  flex-direction: column;
}

.app-casino__content p {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #e9e9e9;
  letter-spacing: 0.2px;
  margin: 0;
}

.app-casino__image {
  width: 100%;
  border-radius: 20px;
}

.app-casino__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.app-casino__btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1px 0 6px;
}

.app-casino__btn {
  width: 400px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 175, 80, 0.2);
  box-shadow: 0px 0px 24.4px 0px #4caf50;
  border-radius: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.app-casino__btn:hover {
  background: rgba(76, 175, 80, 0.3);
  transform: translateY(-2px);
}

.app-deposit {
  padding: 20px 0 120px;
}

.app-deposit__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.app-deposit__container h2 {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.24;
  color: #e9e9e9;
  margin-bottom: 0;
  letter-spacing: 1.28px;
}

.app-deposit__content {
  display: flex;
  flex-direction: column;
}

.app-deposit__content p {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #e9e9e9;
  letter-spacing: 0.2px;
  margin: 0;
}

.app-deposit__image {
  width: 100%;
  border-radius: 20px;
}

.app-deposit__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1200px) {
  .app-bonuses__container h2,
  .app-betting__container h2,
  .app-casino__container h2,
  .app-deposit__container h2 {
    font-size: 46px;
  }

  .app-bonuses__content p,
  .app-betting__content p,
  .app-casino__content p,
  .app-deposit__content p {
    font-size: 18px;
  }

  .app-betting__btn,
  .app-casino__btn {
    width: 350px;
    height: 55px;
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .app-bonuses {
    padding: 36px 0;
  }

  .app-betting {
    padding: 0 0 36px;
  }

  .app-casino {
    padding: 0 0 36px;
  }

  .app-deposit {
    padding: 0 0 45px;
  }

  .app-bonuses__container h2,
  .app-betting__container h2,
  .app-casino__container h2,
  .app-deposit__container h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .app-bonuses {
    padding: 80px 0 0;
  }

  .app-betting {
    padding: 25px 0;
  }

  .app-casino {
    padding: 0;
  }

  .app-deposit {
    padding: 25px 0 40px;
  }
  .app-casino__container {
    gap: 25px;
  }
  .app-deposit__container {
    gap: 23px;
  }
  .app-deposit__content p:last-child {
    margin-bottom: 7px;
  }
  .app-bonuses__container h2,
  .app-betting__container h2,
  .app-casino__container h2,
  .app-deposit__container h2 {
    font-size: 32px;
    letter-spacing: -1px;
  }
  .app-bonuses__container h2 {
    margin-bottom: 20px;
  }
  .app-bonuses__content p,
  .app-betting__content p,
  .app-casino__content p,
  .app-deposit__content p {
    font-size: 16px;
    font-weight: 400;
  }
  .app-betting__container {
    gap: 20px;
  }
  .app-betting__content p:last-child {
    margin-bottom: 10px;
  }
  .app-betting__image {
    margin-bottom: 5px;
  }

  .app-betting__btn,
  .app-casino__btn {
    width: 100%;
    max-width: 350px;
    height: 50px;
    font-size: 16px;
  }
}
.download .faq {
  background-size: 21.7%;
  padding: 80px 0 120px;
}
.download .faq__inner .title {
  font-size: 63px;
  margin-bottom: 30px;
}
.download .faq-item.active svg {
  transform: rotate(180deg);
}
.download .faq-item svg {
  background-color: #64af33;
  border-radius: 50%;
  color: #ffffff;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
.faq-item__question-header {
  display: flex;
  flex: 1;
  gap: 11px;
  align-items: center;
}
.download .faq-question {
  flex: 1;
  padding: 0 0 15px 0;
}
.download .faq-item {
  display: flex;
  cursor: pointer;
  flex-direction: column;
  margin-bottom: 50px;
}
.download .faq-question p {
  font-weight: 500;
  line-height: 1.5;
}
.download .faq-answer {
  line-height: 1.5;
  margin-top: 10px;
}
.download .app-features__btn:hover .btn--green::before {
  background: rgba(255, 255, 255, 0.2);
}

@media (min-width: 2300px) {
  .download-hero__second-background {
    background-image: url("../images/download/download-hero-max.png");
    background-position-x: 70%;
  }
}

@media (min-width: 1700px) {
  .download-hero__second-background {
    background-image: url("../images/download/download-hero-max.png");
    background-position-x: 90%;
  }
}

@media (min-width: 1500px) {
  .background-blue::before {
    background-size: auto;
  }
}

@media (max-width: 1300px) {
  .download-benefits__container {
    margin: 0 20px;
  }
}

@media (max-width: 1250px) {
  .download-hero__second-background {
    background-size: 45%;
  }
}

@media (max-width: 1200px) {
  .download-hero__content {
    max-width: 700px;
    gap: 40px;
  }

  .download-hero__text {
    font-size: 18px;
  }

  .download-benefits__container {
    padding: 60px;
  }

  .download-benefits__title {
    font-size: 18px;
  }

  .download-benefits__list p {
    font-size: 18px;
  }

  .legal__content {
    font-size: 18px;
  }

  .download-apk__content {
    font-size: 18px;
  }

  .download .faq__inner .title {
    font-size: 58px;
  }

  .download .faq-question p {
    font-size: 20px;
  }

  .download .faq-answer {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 63px;
  }

  .download-hero__second-background {
    background-size: 40%;
    background-position: right center;
  }

  .download-hero__content {
    max-width: 600px;
    gap: 30px;
    padding: 40px 0;
  }

  .download-hero__text {
    font-size: 16px;
  }

  .download-hero .bonus__percent {
    font-size: 20px;
    height: 50px;
  }

  .download-hero .bonus__icon {
    width: 60px;
    height: 50px;
  }

  .download-hero .bonus__btn {
    font-size: 18px;
    height: 38px;
  }

  .legal {
    padding: 60px 0 30px 0;
  }

  .legal__container h2 {
    font-size: 36px;
  }

  .legal__content {
    font-size: 16px;
    gap: 20px;
  }

  .download-benefits__container {
    padding: 50px 40px;
  }

  .download-benefits__container h2 {
    font-size: 36px;
  }

  .download-benefits__title {
    font-size: 16px;
  }

  .download-benefits__list p {
    font-size: 16px;
  }

  .download-apk__container h2 {
    font-size: 36px;
  }

  .download-apk__content {
    font-size: 16px;
  }

  .download-apk__content-title {
    font-size: 18px;
  }

  .download .faq {
    padding: 70px 0 100px;
  }

  .download .faq__inner .title {
    font-size: 52px;
    margin-bottom: 28px;
  }

  .download .faq-item {
    margin-bottom: 40px;
  }

  .download .faq-item svg {
    width: 30px;
    height: 30px;
  }

  .download .faq-question p {
    font-size: 18px;
  }

  .download .faq-answer {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .download-hero__second-background {
    background-image: none;
  }
  .download-hero .bonus__row {
    margin-bottom: 20px;
  }

  .download-hero__content {
    max-width: 100%;
    gap: 25px;
    padding: 30px 0;
  }

  .download-hero__content h1 {
    font-size: 52px;
    line-height: 1.3;
  }

  .download-hero .bonus-ar {
    max-width: 100%;
    padding: 20px 30px;
  }

  .download-hero .bonus__title {
    margin-bottom: 20px;
  }

  .download-hero .bonus__percent {
    font-size: 18px;
    height: 45px;
  }

  .download-hero .bonus__icon {
    width: 50px;
    height: 45px;
  }

  .download-hero .bonus__icon img {
    width: 20px;
    height: 23px;
  }

  .download-hero .bonus__btn {
    font-size: 16px;
    height: 36px;
  }
  .download .faq {
    background-size: 104.7%;
    padding: 60px 0 80px;
  }

  .download .faq__inner .title {
    font-size: 42px;
    margin-bottom: 25px;
  }

  .download .faq-item {
    margin-bottom: 30px;
  }

  .download .faq-item svg {
    width: 28px;
    height: 28px;
  }

  .download .faq-question p {
    font-size: 16px;
  }

  .download .faq-answer {
    font-size: 15px;
    margin-top: 8px;
  }

  .download-hero__text {
    font-size: 15px;
  }

  .legal {
    padding: 50px 0 20px 0;
  }

  .legal__container {
    gap: 25px;
  }

  .legal__container h2 {
    font-size: 28px;
  }

  .legal__content {
    font-size: 15px;
    gap: 0px;
  }

  .download-benefits__container {
    padding: 40px 20px;
    gap: 20px;
  }

  .download-benefits__container h2 {
    font-size: 28px;
  }

  .download-benefits__list {
    gap: 20px;
    margin-top: 0px;
  }

  .download-benefits__item {
    gap: 15px;
  }

  .download-benefits__title {
    font-size: 15px;
  }

  .download-benefits__list p {
    font-size: 15px;
  }

  .download-benefits__item-icon svg {
    width: 16px;
    height: 12px;
  }

  .download-benefits__container img {
    width: 100%;
    height: auto;
  }

  .download-apk__container {
    margin: 80px 0 25px;
  }

  .download-apk__container h2 {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .download-apk__content {
    font-size: 15px;
    gap: 15px;
    margin-bottom: 25px;
  }
  .download-apk__content p:nth-child(1) {
    margin-bottom: 5px;
  }
  .download-apk__content p:nth-child(4) {
    margin-bottom: 5px;
  }

  .background-x .download-apk:nth-child(4) .download-apk__container {
    margin: 25px 0 40px;
  }

  .download-apk__content-title {
    font-size: 16px;
    font-family: "Playfair Display", serif;
    font-weight: 700;
  }

  .download-apk__content-items {
    gap: 12px;
  }

  .download-apk__content-item {
    gap: 10px;
    align-items: flex-start;
  }

  .download-apk__content-item img {
    width: 32px;
    height: 32px;
    flex: 0;
  }

  .download-apk__img {
    margin-bottom: 30px;
    width: 100%;
    height: auto;
  }

  .download-apk__btn-container .btn {
    width: 100%;
    max-width: 350px;
    max-width: 302px;
  }
  .app-registration__image {
    width: 100%;
    object-fit: contain;
    max-height: 450px;
  }
}

@media (max-width: 576px) {
  .download p {
    line-height: 1.5;
  }
  .download-hero__content {
    gap: 25px;
    padding: 40px 0 0;
  }
  .mobile-background {
    position: relative;
  }
  .background-blue::before {
    background-image: none;
  }
  .mobile-background::before {
    content: "";
    position: absolute;
    background-image: url(../images/download/bg2-mobile.png);
    background-size: cover;
    inset: 0;
    mix-blend-mode: luminosity;
    pointer-events: none;
  }

  .download-hero__content h1 {
    font-size: 42px;
    line-height: 1.24;
    letter-spacing: -1px;
  }

  .download-hero .bonus-ar {
    padding: 20px 40px 27px;
  }

  .download-hero .bonus__percent {
    font-size: 20px;
    height: 45px;
  }

  .download-hero .bonus__icon {
    width: 54px;
    height: 45px;
  }

  .download-hero .bonus__btn {
    font-size: 16px;
    height: 42px;
    max-width: 240px;
    font-family: "Inter", sans-serif;
  }

  .download-hero__text {
    font-size: 16px;
  }

  .legal {
    padding: 40px 0 20px 0;
  }

  .legal__container h2 {
    font-size: 32px;
  }

  .legal__content {
    font-size: 16px;
  }

  .download-benefits__container {
    padding: 20px;
    border-radius: 20px;
    background-image: url(../images/download/bg1-mobile.png);
  }

  .download-benefits__container h2 {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .download-benefits__title {
    font-size: 16px;
    font-weight: 700;
  }

  .download-benefits__list p {
    font-size: 16px;
    font-weight: 400;
  }

  .download-benefits__item-icon {
    gap: 10px;
  }

  .download-apk__container h2 {
    font-size: 32px;
  }

  .download-apk__content {
    font-size: 16px;
  }

  .download-apk__content-item img {
    width: 19px;
    height: 19px;
  }

  .download .faq {
    padding: 40px 0;
  }

  .download .faq__inner .title {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .download .faq-item {
    margin-bottom: 20px;
  }

  .download .faq-item svg {
    width: 30px;
    height: 30px;
  }

  .download .faq-question {
    padding: 0 0 15px 0;
    border-bottom: none;
  }

  .download .faq-question p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
  }

  .download .faq-answer {
    font-size: 16px;
    margin-top: 10px;
    line-height: 1.5;
  }

  .faq-item__question-header {
    gap: 11px;
    align-items: flex-start;
    border-bottom: 2px solid #002b72;
  }
}
@media (max-width: 480px) {
  .download .faq-question p {
    max-width: 300px;
  }
}
