@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap');

@font-face {
  font-family: "Robit Trial";
  src: url("/fonts/robittrial-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Robit Trial";
  src: url("/fonts/robittrial-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Robit Trial";
  src: url("/fonts/robittrial-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Robit Trial";
  src: url("/fonts/robittrial-light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Steelfish";
  src: url("/fonts/steelfish-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

:root {
  --robit-trial: "Robit Trial", "Play", sans-serif;
  --steelfish: "Steelfish", "Play", sans-serif;
}

@import url('theme.css');

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #070b12;
  color: #fff;
  font-family: 'Play', sans-serif;
  overflow-x: hidden;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.container {
  max-width: 1718px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
.header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 73px;
  padding-top: 24px;
  z-index: 1;
}

.header__logo {
  width: 202px;
}

.header__content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.burger {
  display: none;
}

.header__nav {
  padding-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 38px;
}

.header__nav-link {
  font-size: 30px;
  font-weight: bold;
  border-bottom: 1px solid transparent;
  transition: border 0.2s ease-in-out;
}

.header__nav-link:hover {
  border-bottom: 1px solid #fff;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 73px;
}

.header__lang {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__lang p {
  font-size: 24px;
}

.header__btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(90deg, #00e5a0, #0ea5e9);
  border-radius: 16px;
  padding: 13px 44px;
  font-size: 24px;
  font-weight: bold;
}

@media (max-width: 1500px) {
  .header {
    gap: 40px;
  }

  .header__nav {
    gap: 24px;
  }

  .header__nav-link {
    font-size: 24px;
  }

  .header__right {
    gap: 40px;
  }

  .header__lang {
    gap: 12px;
  }

  .header__lang p {
    font-size: 24px;
  }
}

@media (max-width: 1280px) {
  .header {
    gap: 24px;
    padding-top: 16px;
  }

  .header__nav {
    gap: 16px;
  }

  .header__nav-link {
    font-size: 18px;
  }

  .header__right {
    gap: 24px;
  }

  .header__lang {
    gap: 12px;
  }

  .header__lang p {
    font-size: 18px;
  }

  .header__btn {
    gap: 12px;
    padding: 8px 32px;
    font-size: 18px;
  }
}

@media (max-width: 1000px) {
  .header__content {
    display: none;
  }

  .burger {
    display: block;
  }
}

@media (max-width: 640px) {
  .burger img {
    width: 40px;
  }

  .header__logo {
    width: 120px;
  }
}

.burger__menu {
  position: fixed;
  z-index: 10;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  background-color: #0c1a24;
  padding: 24px;
  transform: translateX(100%);
  transition: transform .3s ease-in-out;
}

.burger__menu.open {
  transform: translateX(0);
}

.burger__menu-header {
  display: flex;
  justify-content: end;
}

.burger__menu-header img {
  width: 40px;
}

.burger__menu-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
}

.burger__menu-nav a {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #0f2430;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
}

.burger__menu-nav-item {
  position: relative;
  width: 100%;
  padding: 2px;
  border-radius: 30px;
}

.burger__menu-nav-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(5deg, rgba(255, 255, 255, 0.5) 0%, rgba(0, 0, 0, 0) 60%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.burger__menu-logo {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
}

.burger__menu-bg-img {
  opacity: .18;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  filter: drop-shadow(0 0 40px rgba(0, 229, 160, 0.25));
}

/* FOOTER */
.footer {
  position: relative;
  padding: 48px 0 40px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(0, 229, 160, 0.08) 0%, transparent 60%),
    #070b12;
  border-top: 1px solid rgba(0, 229, 160, 0.12);
}

.footer__medias {
  display: flex;
  align-items: center;
}

.divider {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 160, 0.35), transparent);
}

.divider.left {
  background: linear-gradient(90deg, transparent 0%, rgba(0, 229, 160, 0.35) 100%);
}

.divider.right {
  background: linear-gradient(90deg, rgba(76, 201, 255, 0.35) 0%, transparent 100%);
}

.footer__medias-list {
  display: flex;
  gap: 40px;
  padding: 0 28px;
}

.footer__medias-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 229, 160, 0.15);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.footer__medias-link:hover {
  border-color: rgba(0, 229, 160, 0.4);
  background: rgba(0, 229, 160, 0.08);
}

.footer__medias-link img {
  display: block;
  height: 24px;
  width: 24px;
  object-fit: contain;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 48px;
}

.footer__logo {
  width: 190px;
}

.footer__text-subscribe {
  margin-top: 20px;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.7);
}

.footer__subscribe {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__subscribe input {
  padding: 14px 20px;
  min-width: 280px;
  border-radius: 14px;
  border: 1px solid rgba(0, 229, 160, 0.2);
  background: rgba(10, 18, 28, 0.8);
  color: #fff;
  font-size: 16px;
  outline: none;
}

.footer__subscribe input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.footer__subscribe input:focus {
  border-color: rgba(0, 229, 160, 0.45);
  box-shadow: 0 0 0 3px rgba(0, 229, 160, 0.1);
}

.footer__btn {
  padding: 14px 32px;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  color: #070b12;
  background: linear-gradient(135deg, #00e5a0, #0ea5e9);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 229, 160, 0.25);
}

.footer__copyright {
  margin-top: 28px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 860px) {
  .footer__medias-list {
    gap: 20px;
    padding: 0 16px;
  }

  .footer__medias-link {
    width: 44px;
    height: 44px;
  }

  .footer__medias-link img {
    height: 20px;
    width: 20px;
  }

  .footer__inner {
    margin-top: 36px;
  }

  .footer__logo {
    width: 160px;
  }

  .footer__text-subscribe {
    font-size: 18px;
  }

  .footer__subscribe input {
    min-width: 220px;
  }
}

@media (max-width: 640px) {
  .footer {
    padding: 40px 0 32px;
  }

  .footer__medias-list {
    gap: 14px;
    padding: 0 12px;
  }

  .footer__medias-link {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .footer__medias-link img {
    height: 18px;
    width: 18px;
  }

  .footer__logo {
    width: 130px;
  }

  .footer__text-subscribe {
    font-size: 16px;
  }

  .footer__subscribe {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .footer__subscribe input {
    width: 100%;
    min-width: unset;
  }

  .footer__btn {
    width: 100%;
  }

  .footer__copyright {
    font-size: 12px;
  }
}


.star {
  position: absolute;
  top: 0;
  left: 0;
  top: -20px;
  width: 4.8px;
  height: 5.6px;
  background: #A7B0FF;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
}