@font-face {
  font-family: "Parimatch Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    local("Parimatch Sans Regular"),
    url("fonts/parimatch-sans-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Parimatch Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src:
    local("Parimatch Sans Medium"),
    url("fonts/parimatch-sans-medium.woff2") format("woff2");
}

@font-face {
  font-family: "Parimatch Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src:
    local("Parimatch Sans Bold"),
    url("fonts/parimatch-sans-bold.woff2") format("woff2");
}

:root {
  --font-sans: "Parimatch Sans", "Inter", system-ui, -apple-system, sans-serif;
  --pm-yellow: #f8ff13;
  --mono-400: #949093;
  --pm-black: #000000;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--pm-black);
  color: var(--mono-400);
  -webkit-font-smoothing: antialiased;
}

a {
  -webkit-tap-highlight-color: transparent;
  color: inherit;
}

.page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(16px, 4vw, 32px) clamp(16px, 5vw, 48px) clamp(24px, 4vh, 40px);
}

@media (max-width: 380px) {
  .page .header {
    order: 1;
  }

  .page .hero {
    order: 2;
  }

  .page .panel {
    order: 3;
  }
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 472px;
}

.header__logo {
  display: block;
  width: min(100%, 471px);
  height: auto;
}

.header__tags {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 11px;
  width: 100%;
}

.header__tag {
  display: block;
  height: auto;
  max-width: 45%;
}

.header__tag--l {
  width: 132px;
}

.header__tag--r {
  width: 160px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 0 16px;
  margin-bottom: -32px;
  position: relative;
  z-index: -1;
}

.hero__duck img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
}

@media (min-width: 1024px) {
  .hero__duck img {
    width: auto;
    max-width: 260px;
    max-height: 376px;
    object-fit: contain;
  }
}

.panel {
  width: 100%;
  max-width: 990px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.kicker {
  margin: 0;
  font-family: "Parimatch Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: var(--mono-400);
}

.title {
  margin: 0;
  font-family: "Parimatch Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  line-height: 103%;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  color: var(--mono-400);
  text-wrap: wrap;
  max-width: min(720px, 100%);
}

html:lang(en) .title {
  text-wrap: nowrap;
  max-width: none;
}

.title__br {
  display: none;
}

.vacation {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 24px;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  color: var(--mono-400);
}

.vpn-hint {
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 57px;
  padding: 14px 40px;
  border-radius: 14.6px;
  background: linear-gradient(180deg, #f8ff13 60%, #f1d818 90%);
  box-shadow:
    0 2.014px 6.445px rgba(255, 223, 66, 0.25),
    inset 0 0.726px 2.256px rgba(255, 255, 255, 0.87);
  pointer-events: none;
  user-select: none;
}

.vpn-hint__text {
  margin: 0;
  font-family: "Parimatch Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: #000;
}

.support-text {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 24px;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  color: var(--mono-400);
}

.support-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.support-link {
  display: inline-flex;
  text-decoration: none;
  border-radius: 8px;
  transition: opacity 0.2s;
}

.support-link:hover,
.support-link:focus-visible {
  opacity: 0.85;
}

.support-link:focus-visible {
  outline: 2px solid var(--pm-yellow);
  outline-offset: 2px;
}

.support-link img {
  display: block;
  width: 39px;
  height: auto;
}

.follow {
  margin: 0 0 8px;
  font-family: var(--font-sans);
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.12;
  text-align: center;
  color: var(--mono-400);
}

.social {
  display: flex;
  gap: 14.6px;
  justify-content: center;
}

.glass-tile {
  display: block;
  line-height: 0;
  border-radius: 11.432px;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.2s;
}

.glass-tile:hover,
.glass-tile:focus-visible {
  opacity: 0.9;
}

.glass-tile:focus-visible {
  outline: 2px solid var(--pm-yellow);
  outline-offset: 2px;
}

.glass-tile img {
  display: block;
  width: 56px;
  height: 56px;
}

.stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 100%;
}

.panel__upper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.panel__lower {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.support-text--split {
  display: none;
}

@media (max-width: 1100px) {
  html:lang(en) .title {
    text-wrap: wrap;
  }
}

@media (max-width: 1023px) {
  .title__br {
    display: block;
  }

  .hero__duck {
    width: min(240px, 55vw);
    max-height: min(347px, 42vh);
  }

  .panel__lower {
    gap: 35px;
  }
}

@media (max-width: 600px) {
  .page {
    padding-top: 50px;
  }

  .header__logo {
    width: 252px;
  }

  .header__tags {
    height: 9px;
    margin-top: 6px;
  }

  .header__tag--l {
    width: auto;
  }

  .header__tag--r {
    width: auto;
  }

  .hero {
    margin-bottom: 0px;
  }

  .hero__duck {
    width: 228px;
    height: 331px;
  }

  .kicker {
    font-size: 16px;
  }

  .title {
    font-size: 20px;
    max-width: 280px;
  }

  .vacation,
  .support-text--single {
    font-size: 16px;
  }

  .vpn-hint {
    min-height: 39px;
    padding: 10px 30px 8px;
    border-radius: 10px;
    box-shadow:
      0 1.378px 4.409px rgba(255, 223, 66, 0.25),
      inset 0 0.497px 1.543px rgba(255, 255, 255, 0.87);
  }

  .vpn-hint__text {
    font-size: 21px;
  }

  .follow {
    font-size: 14px;
  }

  .glass-tile {
    border-radius: 7.83px;
  }

  .glass-tile img {
    width: 38.36px;
    height: 38.36px;
  }

  .support-link img {
    width: 24.77px;
  }

  .social {
    gap: 10px;
  }

  .panel__lower {
    gap: 25px;
  }

  .support-text--single {
    display: none;
  }

  .support-text--split {
    display: block;
    font-size: 16px;
    line-height: 1;
    text-align: center;
  }
}

html:lang(zh-Hans) {
  --font-sans: "Parimatch Sans", "Inter", system-ui, -apple-system, sans-serif;
}

html:lang(zh-Hans) .kicker,
html:lang(zh-Hans) .title,
html:lang(zh-Hans) .vpn-hint__text {
  font-family: "Parimatch Sans", "Inter", system-ui, -apple-system, sans-serif;
}

html:lang(zh-Hans) .title {
  line-height: 110%;
}

html:lang(ar) {
  --font-sans: "Parimatch Sans", "Inter", system-ui, -apple-system, sans-serif;
}

html:lang(ar) .kicker,
html:lang(ar) .title,
html:lang(ar) .vpn-hint__text {
  font-family: "Parimatch Sans", "Inter", system-ui, -apple-system, sans-serif;
}

:lang(zh) .title,
:lang(zh) .vpn-hint__text,
:lang(ar) .title,
:lang(ar) .vpn-hint__text,
:lang(tr) .title,
:lang(tr) .vpn-hint__text {
  text-transform: none;
}

html:lang(ar) .social {
  direction: ltr;
}
