@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Orbitron-Regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Orbitron-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/Orbitron-SemiBold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Orbitron-Bold.woff2") format("woff2");
}
:root {
  --color-light: #ffffff;
  --color-dark: #000000;
  --color-primary: #ff3399;
  --color-accent: #ff4d6a;
  --color-blue: #00d4ff;
  --glow-pink: 0 0 20px #ff339980, 0 0 40px #ff33994d;
  --glow-red: 0 0 20px #ff4d6a80, 0 0 40px #ff4d6a4d;
  --glow-cyan: 0 0 20px #00d4ff80, 0 0 40px #00d4ff4d;
  --color-text: #c2a3b3;
  --color-btn: #26408B;
  --color-warning: #ec4b4b;
  --color-border: rgba(146, 52, 234, 0.2);
  --gradient-card: linear-gradient(135deg, #16161dcc 0%, #24085499 100%);
  --gradient-accent: linear-gradient(135deg, #f59f0a 0%, #f7b23b 100%);
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

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

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

ul,
ol,
li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  background: linear-gradient(180deg, #07000a, #100317);
  color: var(--color-light);
}

body.lock {
  overflow: hidden;
}

a {
  color: var(--color-accent);
  transition: color 0.3s ease;
}
a:hover {
  color: var(--color-primary);
}

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

.wrapper {
  background: url(../img/intro.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  position: relative;
  z-index: 2;
  text-align: center;
}
.wrapper::before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.85);
  inset: 0;
  z-index: -1;
}

.main__btn {
  padding: 16px 0;
  position: relative;
  overflow: hidden;
  background: var(--color-btn);
  color: var(--color-light);
  border: var(--color-btn);
}
.main__btn::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 100px;
  background-color: rgba(181, 181, 250, 0.5);
  transform: translateX(-200%) skewX(-45deg);
  transition: all 2s ease;
}
.main__btn:hover::before {
  transform: translateX(200%) skewX(-45deg);
}

.section__title {
  font-family: "Orbitron";
  font-size: 3rem;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--color-title);
}
@media screen and (max-width: 1200.98px) {
  .section__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768.98px) {
  .section__title {
    font-size: 1.5rem;
  }
}
.section__title span {
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  background-image: var(--gradient-primary);
}
.section__subtitle {
  font-size: 20px;
  color: var(--color-text);
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.75rem;
  max-width: 48rem;
  width: 100%;
  margin: 0 auto 3rem;
}
@media screen and (max-width: 768.98px) {
  .section__subtitle {
    font-size: 1.125rem;
  }
}

/*  COMPONENTS  */
.btn {
  display: flex;
  align-items: center;
  border-radius: 32px;
  font-weight: 700;
  border: 1px solid var(--color-dark);
  border: 0px;
}

.main__btn {
  padding: 12px 16px;
  position: relative;
  overflow: hidden;
  background-color: #29335C;
  font-weight: bold;
  color: var(--color-light);
  z-index: 2;
  transition: all 0.3s ease;
}
.main__btn::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.3);
  filter: blur(24px);
  z-index: -1;
  transform: translateX(-350%) skewX(-45deg);
  transition: all 1s ease;
}
.main__btn:hover {
  color: var(--color-light);
}
.main__btn:hover::before {
  transform: translateX(350%) skewX(-45deg);
}

/*  COMPONENTS  */
/*  STRUCTURE  */
.header {
  display: none;
}

.hero {
  padding: 3rem 0;
}
@media screen and (max-width: 1200.98px) {
  .hero {
    padding: 1.875rem 0;
  }
}
.hero__title {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 4.5rem;
  line-height: 1;
  font-family: "Orbitron";
  color: var(--color-primary);
  text-shadow: var(--glow-red);
}
@media screen and (max-width: 992.98px) {
  .hero__title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768.98px) {
  .hero__title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
.hero__title span {
  display: block;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  background-image: var(--gradient-primary);
}
.hero__subtitle {
  font-family: "Orbitron";
  color: var(--color-blue);
  text-shadow: var(--glow-cyan);
  font-size: 1.5rem;
  line-height: 2rem;
  max-width: 48rem;
  margin: 0 auto 3rem;
  text-align: center;
}
@media screen and (max-width: 768.98px) {
  .hero__subtitle {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
.hero__text {
  max-width: 48rem;
  margin: 0 auto;
  color: rgba(255, 245, 250, 0.8);
}

.grad {
  height: 8rem;
  z-index: 10;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(to top, #07000a, transparent);
}

.companies {
  padding: 3rem 0;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 992.98px) {
  .companies {
    padding: 1.875rem 0;
  }
}

.company {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 1.5rem;
  background: #170c1d;
  color: var(--color-light);
  padding: 1.5rem;
  position: relative;
  border: 1px solid #293132;
  transition: all 0.5s ease;
}
.company--vip {
  border-color: var(--color-primary);
  box-shadow: 0 0 10px var(--color-primary);
}
.company:hover {
  box-shadow: 0 0 30px rgba(255, 51, 153, 0.6), 0 0 60px rgba(255, 51, 153, 0.4);
}
@media screen and (max-width: 992.98px) {
  .company {
    flex-direction: column;
    align-items: flex-start;
    max-width: 480px;
    margin: 0 auto;
    padding: 1rem;
  }
}
.company__label {
  position: absolute;
  color: var(--color-dark);
  font-weight: 700;
  font-size: 0.875rem;
  top: -13px;
  left: 20px;
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  background: var(--gradient-accent);
}
.company__heading {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 360px) {
  .company__heading {
    flex-direction: column;
  }
}
.company__heading img {
  max-width: 120px;
}
@media screen and (max-width: 360px) {
  .company__heading img {
    max-width: 200px;
  }
}
@media screen and (max-width: 360px) {
  .company__heading-info {
    align-self: flex-start;
  }
}
.company__heading-rating {
  display: flex;
  align-items: center;
}
.company__heading-rating svg {
  width: 1rem;
  height: 1rem;
  color: #facc15;
}
.company__heading-score {
  font-weight: 700;
  color: var(--color-green);
  margin-left: 0.75rem;
}
.company__heading-vote {
  color: var(--color-text);
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.company__bonus {
  max-width: 350px;
  background: rgba(235, 64, 247, 0.1019607843);
  border-radius: 0.75rem;
  padding: 0.75rem;
  border: 1px solid rgba(64, 195, 247, 0.3019607843);
  margin-bottom: 0.75rem;
}
.company__bonus-title {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
.company__bonus-title svg {
  width: 1.25rem;
  height: 1.25rem;
}
.company__bonus-text {
  font-weight: 700;
  color: var(--color-blue);
}
.company__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.company__item span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 100%;
}
.company__item--pink {
  background: var(--color-primary);
}
.company__item--blue {
  background: var(--color-blue);
}
.company__item--red {
  background: var(--color-accent);
}
.company__item p {
  font-size: 1.125rem;
}
@media screen and (max-width: 480.98px) {
  .company__item p {
    font-size: 0.75rem;
  }
}
.company__btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  flex-shrink: 0;
  border-radius: 0.75rem;
  background: var(--gradient-primary);
  color: var(--color-light);
  padding: 0.75rem 1rem;
  box-shadow: 0 0 40px rgba(124, 59, 237, 0.4);
}
@media screen and (max-width: 768.98px) {
  .company__btn {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

.how {
  padding: 3rem 0;
}
@media screen and (max-width: 992.98px) {
  .how {
    padding: 1.5rem 0;
  }
}
.how__title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  text-shadow: var(--glow-red);
  color: var(--color-accent);
}
.how__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media screen and (max-width: 768.98px) {
  .how__list {
    grid-template-columns: 1fr;
  }
}
.how__item {
  padding: 1.5rem;
  background: #170c1d;
  border: 1px solid rgba(255, 51, 153, 0.3019607843);
  border-radius: 0.75rem;
  display: flex;
  gap: 1rem;
}
.how__media svg {
  color: var(--color-blue);
}
.how__content h3 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-family: "Orbitron", sans-serif;
  margin-bottom: 0.5rem;
}
.how__content p {
  color: var(--color-text);
}

.payment {
  padding: 3rem 0;
}
@media screen and (max-width: 992.98px) {
  .payment {
    padding: 1.5rem 0;
  }
}
.payment__title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  text-shadow: var(--glow-cyan);
  color: var(--color-blue);
}
.payment__inner {
  max-width: 56rem;
  margin: 0 auto;
  border-radius: 0.75rem;
  padding: 2rem;
  background: #170c1d;
  border: 1px solid rgba(255, 51, 153, 0.3019607843);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 992.98px) {
  .payment__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768.98px) {
  .payment__inner {
    grid-template-columns: 1fr;
  }
}
.payment__item {
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 51, 153, 0.3019607843);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.popular {
  padding: 3rem 0;
}
@media screen and (max-width: 992.98px) {
  .popular {
    padding: 1.5rem 0;
  }
}
.popular__title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  text-shadow: var(--glow-pink);
  color: var(--color-primary);
}
.popular__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media screen and (max-width: 992.98px) {
  .popular__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768.98px) {
  .popular__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.popular__item {
  background: #170c1d;
  border: 1px solid rgba(255, 51, 153, 0.3019607843);
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.75rem;
}
.popular__item span {
  font-size: 2.25rem;
  line-height: 2.5rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}
.popular__item p {
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
}

.why {
  padding: 3rem 0;
}
@media screen and (max-width: 992.98px) {
  .why {
    padding: 1.5rem 0;
  }
}
.why__title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  text-shadow: var(--glow-red);
  color: var(--color-accent);
}
.why__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 992.98px) {
  .why__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768.98px) {
  .why__list {
    grid-template-columns: 1fr;
  }
}
.why__item {
  background: #170c1d;
  border: 1px solid rgba(255, 51, 153, 0.3019607843);
  text-align: center;
  padding: 1.5rem 0;
  border-radius: 0.75rem;
}
.why__item svg {
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.75rem;
  color: var(--color-blue);
}
.why__item-title {
  font-family: "Orbitron", sans-serif;
  margin-bottom: 0.5rem;
}
.why__item-text {
  color: var(--color-text);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.guide {
  padding: 3rem 0;
}
@media screen and (max-width: 992.98px) {
  .guide {
    padding: 1.5rem 0;
  }
}
.guide__title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  text-shadow: var(--glow-ping);
  color: var(--color-primary);
}
.guide__item {
  max-width: 56rem;
  margin: 0 auto;
  padding: 1.5rem;
  background: #170c1d;
  border: 1px solid rgba(255, 51, 153, 0.3019607843);
  border-radius: 0.75rem;
}
.guide__item + .guide__item {
  margin-top: 1rem;
}
.guide__item-title {
  color: var(--color-blue);
  text-shadow: var(--glow-cyan);
  font-family: "Orbitron", sans-serif;
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 0.5rem;
}
.guide__item-text {
  color: var(--color-text);
}

.footer {
  background: rgba(23, 12, 29, 0.3019607843);
  border-top: 1px solid rgba(255, 51, 153, 0.3019607843);
  color: var(--color-text);
  padding: 3rem 0;
}
@media screen and (max-width: 992.98px) {
  .footer {
    padding: 1.5rem 0;
  }
}
.footer__list {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 992.98px) {
  .footer__list {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768.98px) {
  .footer__list {
    flex-direction: column;
  }
}
.footer a {
  color: var(--color-primary);
}
.footer a:hover {
  color: var(--color-blue);
}
.footer__help {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 992.98px) {
  .footer__help {
    flex-wrap: wrap;
  }
}
.footer__help-link {
  padding: 0.625rem;
  max-width: 150px;
}
.footer__help-img {
  max-height: 50px;
}
.footer__description {
  border: 1px solid rgba(239, 67, 67, 0.3019607843);
  border-radius: 0.75rem;
  background: rgba(239, 67, 67, 0.1019607843);
  padding: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  gap: 0.75rem;
}
.footer__description svg {
  flex-shrink: 0;
  color: #ef4343;
}
.footer__description h3 {
  color: #ef4343;
  margin-bottom: 0.5rem;
}
.footer__description p + p {
  margin-top: 0.5rem;
}
.footer__description a {
  color: var(--color-accent);
}
.footer__copy {
  margin-top: 1rem;
  padding-top: 2rem;
  text-align: center;
  border-top: 1px solid #2f2f37;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__copy svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-accent);
}
@media screen and (max-width: 768.98px) {
  .footer__copy svg {
    display: none;
  }
}
.footer__copy p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.footer__copy p:nth-child(1) {
  font-weight: 700;
  color: var(--color-light);
  margin-bottom: 0.5rem;
}

/*  STRUCTURE  */
/*  COMPONENTS  */
.cookies-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #020817;
  color: var(--color-light);
  padding: 1.5rem 1rem;
  text-align: center;
  z-index: 1000;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.cookies-banner__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 200px;
  width: 100%;
  gap: 1rem;
}
@media screen and (max-width: 768.98px) {
  .cookies-banner__btns {
    flex-direction: column;
    align-items: center;
  }
}
.cookies-banner button {
  margin: 0 5px;
  padding: 0.5rem 1rem;
  border: none;
  cursor: pointer;
  border-radius: 0.375rem;
  max-width: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#accept-cookies {
  background-color: #1dd494;
  color: var(--color-dark);
  font-weight: 700;
  transition: transform 0.5s ease;
}

#accept-cookies:hover {
  transform: scale(1.1);
}

#reject-cookies {
  background-color: var(--color-warning);
  color: var(--color-dark);
  font-weight: 700;
  transition: transform 0.5s ease;
}

#reject-cookies:hover {
  transform: scale(1.1);
}

.legal-page {
  padding: 3rem 0;
  color: var(--color-text);
}
.legal-page h1 {
  color: var(--color-blue);
  text-shadow: var(--glow-cyan);
  font-family: "Orbitron", sans-serif;
}
.legal-page h3 {
  color: var(--color-light);
  margin-bottom: 0.75rem;
}
.legal-page p {
  margin-bottom: 1rem;
}
.legal-page p.service-page__subtitle {
  margin-bottom: 2.5rem;
}
.legal-page ul {
  margin-bottom: 1rem;
  padding-left: 20px;
}
.legal-page li {
  list-style-type: disc;
}
.legal-page li::marker {
  color: var(--color-blue);
}
.legal-page li + li {
  margin-top: 0.375rem;
}
.legal-page a {
  color: var(--color-primary);
}
.legal-page a:hover {
  color: var(--color-blue);
}
.legal-page__title {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  line-height: 1.625;
  text-align: center;
  color: var(--color-title);
}
.legal-page__subtitle {
  text-align: center;
}
.legal-page__content {
  padding: 2rem;
  border-radius: 0.75rem;
  background: #170c1d;
  border: 1px solid rgba(255, 51, 153, 0.3019607843);
}
.legal-page__text {
  margin-bottom: 1rem;
}
.legal-page__list {
  padding-left: 18px;
  margin-bottom: 1rem;
}

/*  COMPONENTS  *//*# sourceMappingURL=main.css.map */