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

:root {
  --hero-bg: #150712;
  --main-bg: #05050c;
  --bg: #05050c;
  --header: #080612;
  --footer: #080612;
  --block: #10102d;
  --block-2: #18153a;
  --line: #4a3a63;
  --text: #fff;
  --muted: #d9d1e8;
  --accent: #ff2885;
  --accent-hover: #e91f76;
  --secondary: #3c297b;
  --secondary-hover: #4d37a0;
  --secondary-text: #fff;
  --radius-large: 16px;
  --radius-medium: 8px;
  --radius-small: 6px;
  --section: 60px;
  --section-mobile: 30px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--main-bg);
  color: var(--text);
  font-family: "Exo 2", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.3;
}

body.no-scroll {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0 0 20px;
  color: var(--muted);
}

.text-side ol,
.block-section ol {
  margin: 0 0 20px;
  padding-left: 24px;
  list-style: decimal;
  color: var(--muted);
}

.text-side li,
.block-section li {
  margin-bottom: 6px;
}

.number-list,
.check-list {
  display: grid;
  gap: 14px;
  margin: 0 0 24px;
  padding: 0;
  color: var(--text);
  list-style: none;
}

.number-list {
  counter-reset: item;
}

.number-list li,
.check-list li {
  position: relative;
  display: grid;
  min-height: 34px;
  align-items: center;
  padding-left: 52px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.35;
}

.number-list li {
  counter-increment: item;
}

.number-list li::before {
  position: absolute;
  top: 50%;
  left: 8px;
  color: #ffc247;
  content: counter(item);
  font-family: "Oxanium", "Exo 2", Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 14px rgba(255, 194, 71, .22);
  transform: translateY(-50%);
}

.check-list li::before {
  position: absolute;
  top: 50%;
  left: 6px;
  width: 22px;
  height: 13px;
  border-bottom: 5px solid #ffc247;
  border-left: 5px solid #ffc247;
  content: "";
  filter: drop-shadow(0 0 10px rgba(255, 194, 71, .2));
  transform: translateY(-62%) rotate(-45deg);
}

.number-list strong {
  color: var(--text);
  font-weight: 900;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 20px;
  color: var(--text);
  font-weight: 900;
  font-family: "Oxanium", "Exo 2", Arial, sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: 38px;
  text-align: center;
  text-transform: uppercase;
}

h2 {
  width: 100%;
  border-bottom: 4px solid var(--accent);
  padding-bottom: 10px;
  font-size: 30px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 19px;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 42px;
  border-radius: var(--radius-medium);
  padding: 12px 24px;
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
  font-family: "Oxanium", "Exo 2", Arial, sans-serif;
  line-height: 18px;
  text-align: center;
  text-transform: uppercase;
  transition: background-color .2s ease, transform .2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.icon-btn {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 176px;
  min-height: 52px;
  padding: 8px 16px;
  text-transform: none;
}

.icon-btn img {
  width: 28px;
  height: 28px;
  justify-self: center;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, .28));
}

.icon-btn span {
  display: block;
  min-width: 0;
  text-align: center;
  line-height: 1.05;
}

.accent-btn {
  background: var(--secondary);
  color: var(--secondary-text);
}

.accent-btn:hover,
.accent-btn:focus-visible {
  background: var(--secondary-hover);
}

.secondary-btn {
  background: var(--accent);
  color: var(--text);
}

.secondary-btn:hover,
.secondary-btn:focus-visible {
  background: var(--accent-hover);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding: 14px;
  background: rgba(5, 4, 14, .92);
  color: var(--text);
  isolation: isolate;
  backdrop-filter: blur(16px);
}

.header::before {
  position: absolute;
  inset: -10px;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(5, 4, 14, .62), rgba(5, 4, 14, .9)),
    url("../images/nv-header-footer-bg.webp") center center / cover no-repeat;
  content: "";
  filter: blur(2px) saturate(1.08);
  opacity: .74;
}

.header::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 40, 133, .1), transparent 26%, transparent 74%, rgba(255, 170, 54, .09)),
    linear-gradient(180deg, rgba(255, 255, 255, .045), transparent 24%, rgba(255, 255, 255, .025));
  content: "";
}

.header.shadow {
  box-shadow: 0 8px 20px rgba(0, 0, 0, .28);
}

.head-container {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  max-width: 1300px;
  flex-direction: column;
  gap: 14px;
}

.line-1,
.first-block,
.first-block > div,
.buttons {
  display: flex;
  gap: 20px;
}

.line-1 {
  justify-content: space-between;
}

.first-block {
  width: 100%;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  max-width: 175px;
  min-width: 175px;
}

.logo img {
  max-height: 50px;
  object-fit: contain;
}

.nav-block {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.nav > ul {
  display: flex;
  gap: 24px;
}

.nav li {
  position: relative;
}

.nav > ul > li > a {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0;
  color: var(--muted);
  font-family: "Oxanium", "Exo 2", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 18px;
  text-transform: uppercase;
  transition: color .2s ease, transform .2s ease;
}

.nav > ul > li > a:hover,
.nav > ul > li > a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.first-block > .menu-block {
  display: none;
}

.menu-mobile-icon {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius-medium);
  background: var(--accent);
}

.menu-mobile-icon span {
  position: absolute;
  width: 18px;
  height: 3px;
  border-radius: 3px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-mobile-icon span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-mobile-icon span:nth-child(3) {
  transform: translateY(7px);
}

.menu-mobile-icon.is-open span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-mobile-icon.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-mobile-icon.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  display: flex;
  width: 100%;
  max-width: none;
  flex-direction: column;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 40px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 40, 133, .18), transparent 42%),
    linear-gradient(180deg, #1a0714 0%, #0b060d 100%);
  text-align: center;
}

.title-line {
  width: 100px;
  height: 4px;
  margin: 0 auto 20px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .34), var(--accent), rgba(255, 255, 255, .34));
  box-shadow: 0 0 18px rgba(255, 40, 133, .42);
}

.lead {
  max-width: 1000px;
  font-size: 18px;
  color: var(--text);
}

.hero-cta {
  margin-bottom: 20px;
}

.hero-media {
  width: min(880px, 100%);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-large);
  background: var(--block);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .48), 0 0 0 1px rgba(219, 226, 235, .34) inset;
}

.hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1280 / 900;
  object-fit: cover;
}

.category-strip {
  padding: 40px 0 30px;
  background: var(--main-bg);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.category-grid a {
  display: grid;
  min-height: 160px;
  place-items: center;
  border-radius: var(--radius-large);
  padding: 20px;
  background: linear-gradient(180deg, rgba(60, 41, 123, .94), rgba(16, 16, 45, .96));
  text-align: center;
  box-shadow: 0 16px 42px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 255, 255, .06);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.category-grid a:hover,
.category-grid a:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(76, 55, 155, .98), rgba(22, 22, 60, .98));
  box-shadow: 0 20px 54px rgba(0, 0, 0, .42), 0 0 0 1px rgba(255, 255, 255, .08) inset;
}

.category-grid img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  object-position: top;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, .38));
}

.category-grid strong {
  display: block;
  font-size: 18px;
  text-transform: uppercase;
}

.category-grid span {
  font-size: 14px;
}

.content-flow {
  padding-top: 30px;
}

.toc {
  margin: 0 0 var(--section);
  border-radius: var(--radius-large);
  background: var(--block);
  padding: 14px 18px 18px;
}

.toc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}

.toc-head b {
  font-size: 18px;
}

.toc-toggle {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: var(--radius-small);
  background: var(--block-2);
}

.toc-toggle::before {
  display: block;
  width: 9px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.toc-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 28px;
  row-gap: 4px;
}

.toc-items.is-hidden {
  display: none;
}

.toc-items button {
  color: #fff;
  text-align: left;
  line-height: 1.45;
}

.toc-items button:hover,
.toc-items button:focus-visible {
  color: var(--accent);
}

.toc-items span {
  margin-right: 4px;
  color: var(--accent);
  font-weight: 900;
  text-shadow: 0 0 12px rgba(255, 40, 133, .32);
}

.media-block,
.slider-block,
.block-section,
.wide-table,
.faq-section {
  margin-bottom: var(--section);
}

.media-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 636px);
  gap: 28px;
  align-items: center;
}

.media-block.image-left {
  grid-template-columns: minmax(0, 636px) minmax(0, 1fr);
}

.media-side {
  margin: 0;
}

.media-side img {
  display: block;
  width: 100%;
  border-radius: var(--radius-large);
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .42), 0 0 0 1px rgba(219, 226, 235, .34);
}

.media-side img {
  aspect-ratio: 636 / 447;
}

.content-image {
  margin: 6px 0 24px;
}

.content-image img {
  display: block;
  width: 100%;
  aspect-ratio: 636 / 447;
  border-radius: var(--radius-large);
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .42), 0 0 0 1px rgba(219, 226, 235, .34);
}

.full-width-content {
  grid-column: 1 / -1;
}

.full-width-content h3,
.full-width-content h4 {
  margin-top: 28px;
}

.full-width-content h3:first-child,
.full-width-content h4:first-child {
  margin-top: 0;
}

.text-side > .btn,
.full-width-content > .btn {
  margin-top: 8px;
  margin-bottom: 28px;
}

.full-width-content > .btn:last-child {
  margin-bottom: 0;
}

.section-cta {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 8px;
  margin-bottom: 8px;
}

table {
  width: 100%;
  margin: 0 0 20px;
  border-collapse: separate;
  border-spacing: 0 6px;
}

th,
td {
  padding: 10px 12px;
  background: var(--block-2);
  color: var(--text);
  vertical-align: top;
}

th {
  background: var(--accent);
  text-align: left;
}

td:first-child,
th:first-child {
  border-top-left-radius: var(--radius-medium);
  border-bottom-left-radius: var(--radius-medium);
}

td:last-child,
th:last-child {
  border-top-right-radius: var(--radius-medium);
  border-bottom-right-radius: var(--radius-medium);
}

.slider-block {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 4px 0 var(--section);
}

.slider-copy {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto 18px;
  padding: 0 14px;
}

.slider-card {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  padding: 0 64px 44px;
  background: transparent;
}

.slider-window {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-large);
  background: rgba(5, 4, 14, .9);
  isolation: isolate;
}

.slider-window::before {
  position: absolute;
  inset: -10px;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(5, 4, 14, .58), rgba(5, 4, 14, .88)),
    url("../images/nv-header-footer-bg.webp") center center / cover no-repeat;
  content: "";
  filter: blur(2px) saturate(1.08);
  opacity: .74;
}

.slider-window::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 40, 133, .16), transparent 34%),
    radial-gradient(circle at 82% 50%, rgba(255, 170, 54, .1), transparent 28%),
    linear-gradient(90deg, rgba(255, 40, 133, .08), transparent 30%, transparent 72%, rgba(60, 41, 123, .18)),
    linear-gradient(180deg, rgba(255, 255, 255, .04), transparent 24%, rgba(255, 255, 255, .02));
  content: "";
}

.slider-track {
  position: relative;
  z-index: 1;
  display: flex;
  transition: transform .3s ease;
}

.slider-track li {
  position: relative;
  display: grid;
  flex: 0 0 100%;
  min-height: 590px;
  place-items: center;
}

.slider-track img {
  display: block;
  width: auto;
  max-width: min(82vw, 390px);
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, .46));
}

.slider-track span {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  width: min(430px, calc(100% - 28px));
  margin: 0 auto;
  border-radius: var(--radius-medium);
  padding: 12px 16px;
  background: rgba(16, 16, 45, .92);
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: var(--radius-medium);
  background: var(--secondary);
  color: var(--secondary-text);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .36);
  transform: translateY(-50%);
}

.slider-prev {
  left: max(14px, calc((100vw - 1300px) / 2 + 14px));
}

.slider-next {
  right: max(14px, calc((100vw - 1300px) / 2 + 14px));
}

.slider-arrow::before {
  display: block;
  width: 13px;
  height: 13px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  content: "";
}

.slider-prev::before {
  transform: translateX(2px) rotate(45deg);
}

.slider-next::before {
  transform: translateX(-2px) rotate(-135deg);
}

.slider-dots {
  position: absolute;
  right: 0;
  bottom: 14px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
}

.slider-dots button.active {
  background: var(--accent);
}

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

.logo-grid span {
  display: grid;
  min-height: 78px;
  place-items: center;
  border-radius: var(--radius-medium);
  background: var(--block-2);
}

.logo-grid img {
  max-width: 75%;
  max-height: 42px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.provider-section .logo-grid {
  margin-bottom: 20px;
}

.faq-section ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-section li {
  border-radius: var(--radius-large);
  padding: 20px;
  background: var(--block-2);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.faq-question h3 {
  margin: 0;
  font-size: 18px;
}

.faq-question button {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: var(--radius-small);
  background: var(--line);
}

.faq-question button::before {
  display: block;
  width: 9px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.faq-section li.active .faq-question h3 {
  color: #fff;
  text-shadow: 0 0 14px rgba(255, 40, 133, .34);
}

.faq-section li.active .faq-question button {
  background: var(--accent);
}

.faq-section li.active .faq-question button::before {
  transform: translateY(2px) rotate(-135deg);
}

.faq-answer {
  display: none;
  margin-top: 16px;
  margin-bottom: 0;
}

.faq-section li.active .faq-answer {
  display: block;
}

.footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 28px 0 24px;
  background: rgba(5, 4, 14, .94);
  isolation: isolate;
}

.footer::before {
  position: absolute;
  inset: -10px;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(5, 4, 14, .68), rgba(5, 4, 14, .9)),
    url("../images/nv-header-footer-bg.webp") center center / cover no-repeat;
  content: "";
  filter: blur(2px) saturate(1.08);
  opacity: .76;
}

.footer::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 40, 133, .14), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(255, 170, 54, .1), transparent 28%),
    linear-gradient(90deg, rgba(255, 40, 133, .1), transparent 30%, transparent 72%, rgba(60, 41, 123, .18)),
    linear-gradient(180deg, rgba(255, 255, 255, .045), transparent 22%, rgba(255, 255, 255, .025));
  content: "";
}

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

.footer-links,
.footer-mid,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-links nav ul,
.socials,
.payment,
.trust-icons,
.download-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 20px;
}

.footer-links nav a {
  color: var(--text);
  font-size: 14px;
}

.socials a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--radius-medium);
  background: var(--block-2);
  font-weight: 900;
}

.socials img {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.divider {
  height: 2px;
  background: var(--line);
}

.payment img {
  height: 20px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-bottom p {
  max-width: 980px;
  min-width: 50%;
  margin: 0;
  color: #a899bd;
  font-size: 12px;
}

.trust-icons img {
  height: 35px;
  max-width: none;
}

.copyright {
  margin: 0;
  color: #a899bd;
  font-size: 12px;
}

.arrow-up {
  position: fixed;
  right: 14px;
  bottom: 18px;
  z-index: 900;
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-medium);
  background: var(--accent);
}

.arrow-up.active {
  display: grid;
  place-items: center;
}

.arrow-up::before {
  display: block;
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  content: "";
  transform: translateY(3px) rotate(45deg);
}

.mobile-panel {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 900;
  display: none;
  align-items: center;
  gap: 12px;
  min-height: 86px;
  padding: 14px;
  overflow: hidden;
  background: rgba(5, 4, 14, .94);
  box-shadow: 0 -18px 44px rgba(0, 0, 0, .42);
  transform: translateY(105%);
  transition: transform .25s ease;
  isolation: isolate;
}

.mobile-panel::before {
  position: absolute;
  inset: -8px;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(5, 4, 14, .62), rgba(5, 4, 14, .92)),
    url("../images/nv-header-footer-bg.webp") center center / cover no-repeat;
  content: "";
  filter: blur(2px) saturate(1.08);
  opacity: .78;
}

.mobile-panel::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 40, 133, .38) 22%, rgba(219, 226, 235, .34) 50%, rgba(255, 170, 54, .28) 78%, transparent);
  box-shadow: 0 -1px 0 rgba(255, 255, 255, .08), 0 6px 18px rgba(255, 40, 133, .14);
  content: "";
}

.mobile-panel.active {
  transform: translateY(0);
}

.gift {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: var(--radius-medium);
  background: var(--secondary);
  font-size: 42px;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .36);
}

.mobile-panel strong {
  display: block;
  font-family: "Oxanium", "Exo 2", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.08;
  text-transform: uppercase;
  white-space: nowrap;
}

.mobile-panel span {
  display: block;
  font-size: 11px;
  color: var(--muted);
}

.mobile-panel .btn {
  margin-left: auto;
  min-width: 150px;
}

.mobile-panel > div:not(.gift) {
  min-width: 0;
  flex: 1 1 auto;
}

@media (max-width: 1199px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .header {
    padding: 14px;
  }

  .line-1 {
    flex-direction: column;
  }

  .line-1,
  .first-block,
  .first-block > div,
  .buttons {
    gap: 10px;
  }

  .first-block > .nav-block {
    display: none;
  }

  .first-block > .menu-block {
    display: flex;
  }

  .first-block {
    align-items: center;
  }

  .buttons {
    width: 100%;
    gap: 10px;
  }

  .buttons .btn {
    flex: 1;
  }

  .header.menu-open {
    height: calc(var(--vh, 1vh) * 100);
    min-height: 100vh;
    align-items: stretch;
  }

  .header.menu-open .head-container {
    height: 100%;
  }

  .mobile-menu.is-open {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
  }

  .mobile-menu .nav > ul {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 6px;
  }

  .mobile-menu .nav li {
    width: 100%;
  }

  .mobile-menu .nav a {
    display: flex;
    min-height: 42px;
    align-items: center;
    border-radius: 10px;
    padding: 10px 4px;
    color: var(--muted);
    font-family: "Oxanium", "Exo 2", Arial, sans-serif;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    transition: color .2s ease, background .2s ease, padding-left .2s ease;
  }

  .mobile-menu .nav a:hover,
  .mobile-menu .nav a:focus-visible {
    padding-left: 12px;
    background: rgba(60, 41, 123, .5);
    color: var(--text);
  }

  .mobile-menu .download-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .icon-btn {
    min-width: 0;
    min-height: 50px;
    padding: 8px 12px;
  }

  .hero {
    padding-top: 40px;
    padding-bottom: 14px;
  }

  .category-strip {
    padding-top: 14px;
  }

  .lead {
    font-size: 16px;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .category-grid a {
    min-height: 118px;
    padding: 14px 10px;
  }

  .toc,
  .media-block,
  .slider-block,
  .block-section,
  .wide-table,
  .faq-section {
    margin-bottom: var(--section-mobile);
  }

  .slider-block {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .toc-items {
    grid-template-columns: 1fr;
  }

  .media-block,
  .media-block.image-left {
    grid-template-columns: 1fr;
  }

  .media-side {
    order: -1;
    text-align: center;
  }

  .media-side img {
    width: 100%;
    max-height: none;
  }

  .slider-card {
    padding: 0 44px 40px;
  }

  .slider-track li {
    min-height: 520px;
  }

  .slider-track img {
    max-width: min(78vw, 330px);
    max-height: 490px;
  }

  .slider-track span {
    font-size: 16px;
  }

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

  .footer-links,
  .footer-mid,
  .footer-bottom {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom p {
    min-width: 0;
    text-align: center;
  }

  .footer-links nav ul,
  .socials,
  .payment,
  .trust-icons,
  .download-buttons {
    width: 100%;
    justify-content: center;
  }

  .copyright {
    text-align: center;
  }

  .mobile-panel {
    display: flex;
  }

  .arrow-up.panel-visible {
    bottom: 110px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-right: 14px;
    padding-left: 14px;
  }

  .logo {
    max-width: 176px;
    min-width: 176px;
  }

  .hero {
    padding-top: 40px;
    padding-bottom: 10px;
  }

  .category-strip {
    padding-top: 10px;
  }

  .hero-media {
    width: 100%;
  }

  .hero-media img {
    aspect-ratio: 1 / .95;
  }

  .slider-card {
    padding-right: 38px;
    padding-left: 38px;
  }

  .slider-track li {
    min-height: 470px;
  }

  .slider-track img {
    max-width: min(76vw, 292px);
    max-height: 430px;
  }

  .mobile-panel .btn {
    min-width: 120px;
    padding: 10px 12px;
    font-size: 12px;
    line-height: 14px;
  }
}

@media (max-width: 380px) {
  .mobile-panel {
    gap: 8px;
    min-height: 72px;
    padding: 10px;
  }

  .gift {
    width: 46px;
    height: 46px;
    font-size: 32px;
  }

  .mobile-panel strong {
    font-size: 11px;
    line-height: 1.05;
  }

  .mobile-panel span {
    font-size: 10px;
    line-height: 1.15;
  }

  .mobile-panel .btn {
    min-width: 104px;
    min-height: 38px;
    padding: 8px 9px;
    font-size: 11px;
    line-height: 13px;
  }
}
