@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Poppins-Regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Poppins-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
}
:root {
  --color-light: #ffffff;
  --color-dark: #000000;
  --color-primary: #f8c630;
  --color-accent: #7c3bed;
  --color-blue: #40c3f7;
  --color-green: #15dc47;
  --color-pink: #fe68c4;
  --color-title: #f5f5f5;
  --color-text: #a1a1aa;
  --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, #7c3bed 0%, #40c3f7 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: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  background: #0f0f15;
  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;
}

.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 {
  max-width: 600px;
  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 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px 0;
  height: 70px;
  z-index: 20;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  max-width: 70px;
  width: 100%;
  display: block;
}
.header__location {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--color-dark);
  font-weight: 700;
  background: var(--gradient);
  border-radius: 100px;
}

.hero {
  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;
}
.hero::before {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, #0f0f15 0%, #240854 50%, #0f0f15 100%);
  inset: 0;
  z-index: -1;
  opacity: 0.95;
}
@media screen and (max-width: 1200.98px) {
  .hero {
    padding: calc(1.875rem + 70px) 0 1.875rem;
  }
}
@media screen and (min-width: 1200.98px) {
  .hero {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.hero__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  border: 1px solid rgba(124, 59, 237, 0.5019607843);
  background: rgba(124, 59, 237, 0.2);
  box-shadow: 0 0 40px rgba(124, 59, 237, 0.4);
  margin-bottom: 2rem;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}
.hero__label svg {
  color: var(--color-primary);
  width: 1rem;
  height: 1rem;
}
.hero__title {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 4.5rem;
  line-height: 1;
}
@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 {
  color: var(--color-text);
  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__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 0 auto 2rem;
}
@media screen and (max-width: 768.98px) {
  .hero__list {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.hero__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__item span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 100%;
}
.hero__item--orange {
  background: var(--color-primary);
}
.hero__item--blue {
  background: var(--color-blue);
}
.hero__item--purple {
  background: var(--color-accent);
}
.hero__item p {
  font-size: 1.125rem;
}
@media screen and (max-width: 480.98px) {
  .hero__item p {
    font-size: 0.75rem;
  }
}

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

.companies {
  padding: 3rem 0;
}
@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: linear-gradient(135deg, rgba(22, 22, 29, 0.8) 0%, rgba(36, 8, 84, 0.6) 100%);
  color: var(--color-light);
  padding: 1.5rem;
  position: relative;
  border: 1px solid #293132;
}
.company--vip {
  border-color: var(--color-primary);
  box-shadow: 0 0 40px rgba(248, 198, 48, 0.3019607843);
}
@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: var(--color-primary);
}
.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 {
  background: rgba(64, 195, 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__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--color-text);
  padding-left: 20px;
}
.company__item {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.company__item svg {
  width: 1.25rem;
  height: 1.25rem;
}
.company__item:nth-child(1) svg {
  color: var(--color-accent);
}
.company__item:nth-child(2) svg {
  color: var(--color-blue);
}
.company__item:nth-child(3) svg {
  color: var(--color-primary);
}
.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;
  }
}

.license {
  padding: 3rem 0;
}
.license__inner {
  max-width: 68rem;
  margin: 0 auto;
  border-radius: 1.5rem;
  border: 1px solid #2f2f37;
  background: var(--gradient-card);
  padding: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media screen and (max-width: 768.98px) {
  .license__inner {
    padding: 1.5rem;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.license__label {
  padding: 0.5rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(124, 59, 237, 0.2);
  border: 1px solid rgba(124, 59, 237, 0.5019607843);
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.license__label svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-accent);
}
.license__label span {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}
.license__title {
  font-size: 2.25rem;
  line-height: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}
@media screen and (max-width: 992.98px) {
  .license__title {
    font-size: 1.875rem;
    line-height: 2.125rem;
  }
}
.license__text {
  color: var(--color-text);
  font-size: 1.125rem;
  line-height: 1.625;
}
.license__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.license__item {
  display: flex;
  gap: 1rem;
}
.license__media {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 59, 237, 0.1019607843);
  border: 1px solid rgba(124, 59, 237, 0.2);
  flex-shrink: 0;
}
.license__media svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-accent);
}
.license__item-text h3 {
  margin-bottom: 0.25rem;
}
.license__item-text p {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--color-text);
}

.rating {
  padding: 3rem 0;
  text-align: center;
}
.rating__label {
  background: rgba(64, 195, 247, 0.2);
  border: 1px solid rgba(64, 195, 247, 0.5019607843);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}
.rating__label svg {
  color: var(--color-blue);
  width: 1rem;
  height: 1rem;
}
.rating__label span {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}
.rating__title {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1rem;
  max-width: 100%;
}
@media screen and (max-width: 992.98px) {
  .rating__title {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
@media screen and (max-width: 768.98px) {
  .rating__title {
    font-size: 1.875rem;
    line-height: 2.125rem;
  }
}
.rating__subtitle {
  color: var(--color-text);
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 4rem;
}
.rating__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 68rem;
  margin: 0 auto 3rem;
}
@media screen and (max-width: 992.98px) {
  .rating__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768.98px) {
  .rating__list {
    grid-template-columns: 1fr;
  }
}
.rating__item {
  background: var(--gradient-card);
  border: 1px solid #2f2f37;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: left;
}
.rating__media {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: rgba(124, 59, 237, 0.1019607843);
  border: 1px solid rgba(124, 59, 237, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.rating__media svg {
  color: var(--color-accent);
}
.rating__item-title {
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 0.75rem;
}
.rating__item-text {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--color-text);
}
.rating__diclaimer {
  max-width: 68rem;
  margin: 0 auto;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(64, 195, 247, 0.3019607843);
  background: rgba(64, 195, 247, 0.1019607843);
  color: var(--color-text);
}
.rating__diclaimer span {
  font-weight: 700;
  color: var(--color-blue);
}

.games {
  padding: 3rem 0;
  background: linear-gradient(to bottom, #0f0f15, rgba(47, 47, 55, 0.2));
}
.games__title {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1rem;
}
@media screen and (max-width: 992.98px) {
  .games__title {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
@media screen and (max-width: 768.98px) {
  .games__title {
    font-size: 1.875rem;
    line-height: 2.125rem;
  }
}
.games__subtitle {
  color: var(--color-text);
  font-size: 1.25rem;
  line-height: 1.75rem;
  text-align: center;
  margin-bottom: 4rem;
}
.games__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 992.98px) {
  .games__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768.98px) {
  .games__list {
    grid-template-columns: 1fr;
  }
}
.games__item {
  padding: 1.5rem;
  background: #16161d;
  border: 1px solid #2f2f37;
  border-radius: 1rem;
  display: flex;
  gap: 1rem;
}
.games__item:nth-child(1) svg {
  color: #ef4444;
}
.games__item:nth-child(3) svg {
  color: #f8c630;
}
.games__item:nth-child(4) svg {
  color: var(--color-blue);
}
.games__item:nth-child(5) svg {
  color: var(--color-accent);
}
.games__item:nth-child(6) svg {
  color: #f97316;
}
.games__media {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background: var(--gradient-card);
  border: 1px solid rgba(124, 59, 237, 0.5019607843);
  display: flex;
  align-items: center;
  justify-content: center;
}
.games__media svg {
  width: 2rem;
  height: 2rem;
}
.games__item-content h3 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 0.5rem;
}
.games__item-content p {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--color-text);
}
.games__disclaimer {
  color: var(--color-text);
  text-align: center;
}

.trust-us {
  padding: 3rem 0;
  background-color: #071022;
  color: var(--color-text);
}
.trust-us__title {
  font-size: 1.875rem;
  line-height: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--color-title);
}
@media screen and (max-width: 768.98px) {
  .trust-us__title {
    font-size: 1.5rem;
  }
}
.trust-us__subtitle {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
  text-align: center;
}
.trust-us__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768.98px) {
  .trust-us__list {
    grid-template-columns: 1fr;
  }
}
.trust-us__item {
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #2e1943, #532240);
  border: 1px solid rgba(146, 52, 234, 0.2);
  text-align: center;
  padding: 1.5rem;
}
.trust-us__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.1019607843);
  margin: 0 auto 1rem;
}
.trust-us__media svg {
  width: 2rem;
  height: 2rem;
  color: var(--color-primary);
}
.trust-us__item-title {
  color: var(--color-title);
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
}
.trust-us__percent {
  color: var(--color-text);
  font-size: 0.875rem;
}
.trust-us__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 992.98px) {
  .trust-us__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768.98px) {
  .trust-us__cards {
    grid-template-columns: 1fr;
  }
}
.trust-us__card {
  padding: 1.5rem;
  background: linear-gradient(135deg, #1a1a23, #262131);
  border-radius: 0.75rem;
  border: 1px solid #293132;
}
.trust-us__card:nth-child(1) svg, .trust-us__card:nth-child(1) h4 {
  color: var(--color-primary);
}
.trust-us__card:nth-child(2) svg, .trust-us__card:nth-child(2) h4 {
  color: var(--color-accent);
}
.trust-us__card:nth-child(3) svg, .trust-us__card:nth-child(3) h4 {
  color: var(--color-green);
}
.trust-us__card:nth-child(4) svg, .trust-us__card:nth-child(4) h4 {
  color: var(--color-pink);
}
.trust-us__card:nth-child(5) svg, .trust-us__card:nth-child(5) h4 {
  color: var(--color-green);
}
.trust-us__card:nth-child(6) svg, .trust-us__card:nth-child(6) h4 {
  color: var(--color-primary);
}
.trust-us__card-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-us__card-title {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.trust-us__disclaimer {
  border: 1px solid #29293d;
  padding: 2rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #2e1943, #532240);
  max-width: 56rem;
  margin: 0 auto;
}
@media screen and (max-width: 768.98px) {
  .trust-us__disclaimer {
    padding: 1rem;
  }
}
.trust-us__disclaimer-title {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  line-height: 2rem;
  color: var(--color-title);
}
.trust-us__disclaimer-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 768.98px) {
  .trust-us__disclaimer-content {
    grid-template-columns: 1fr;
  }
}
.trust-us__disclaimer-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.trust-us__disclaimer-item:not(:last-child) {
  margin-bottom: 0.5rem;
}
.trust-us__disclaimer-item--purple {
  color: var(--color-primary);
}
.trust-us__disclaimer-item--pink {
  color: var(--color-green);
}
.trust-us__disclaimer-item:nth-child(1) {
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 1rem;
}
.trust-us__disclaimer-item svg {
  color: var(--color-primary);
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.trust-us__disclaimer-item span {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.footer {
  background: #16161d;
  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: calc(70px + 3rem) 0 3rem;
  color: var(--color-text);
  background: linear-gradient(to bottom, #0f0f15, rgba(47, 47, 55, 0.2));
}
.legal-page h1 {
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  background-image: var(--gradient-primary);
}
.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: var(--gradient-card);
  border: 1px solid var(--color-border);
}
.legal-page__text {
  margin-bottom: 1rem;
}
.legal-page__list {
  padding-left: 18px;
  margin-bottom: 1rem;
}

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