@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: #33bbff;
  --color-accent: #fbd051;
  --color-success: #33ff77;
  --color-btn: #26408B;
  --color-warning: #f15353;
  --color-text: #94a6b8;
  --gradient-primary: linear-gradient(135deg, hsl(200 100% 60%), hsl(200 100% 75%));
  --gradient-secondary: linear-gradient(135deg, hsl(45 95% 65%), hsl(45 95% 80%));
}

*,
*::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;
  color: var(--color-light);
  background: #111116;
}

body.lock {
  overflow: hidden;
}

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

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

.main__wrapper {
  padding: 2rem 0;
  background: url(../img/main-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 2;
  position: relative;
}
.main__wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 480.98px) {
  .main__wrapper {
    background-position: bottom center;
  }
}
.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 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.25rem;
  line-height: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (max-width: 992.98px) {
  .section__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768.98px) {
  .section__title {
    font-size: 1.5rem;
  }
}
.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;
  }
}
.section__label {
  max-width: 270px;
  width: 100%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.5rem 1rem;
  font-weight: 600;
  border-radius: 100px;
  background: rgba(19, 236, 146, 0.1019607843);
}
.section__label svg {
  width: 1rem;
  height: 1rem;
}

/*  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;
}

.intro {
  color: #fff;
  text-align: center;
}
.intro__label {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  line-height: 1.25rem;
  border: 1px solid var(--color-primary);
  padding: 0.125rem 0.625rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--color-primary);
  background: rgba(51, 187, 255, 0.2);
}
.intro__title {
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 3rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media screen and (max-width: 992.98px) {
  .intro__title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768.98px) {
  .intro__title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
.intro__subtitle {
  text-align: center;
  font-size: 1.25rem;
  max-width: 58rem;
  color: var(--color-text);
  width: 100%;
  margin: 0 auto 2rem;
}
@media screen and (max-width: 480.98px) {
  .intro__subtitle {
    display: none;
  }
}
.intro__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 0 auto;
  max-width: 64rem;
}
@media screen and (max-width: 768.98px) {
  .intro__list {
    display: none;
  }
}
.intro__item {
  text-align: center;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(22, 22, 29, 0.7019607843);
}
.intro__item h4 {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.intro__item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.bet-cards__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.bet-card {
  position: relative;
  max-width: 42rem;
  gap: 1rem;
  width: 100%;
  margin: 0 auto;
  border-radius: 1.5rem;
  color: var(--color-dark);
  background: rgba(22, 22, 29, 0.5);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border: 1px solid var(--color-primary);
  transition: all 0.5s ease-in-out;
}
.bet-card:hover {
  box-shadow: 0 0 30px rgba(51, 187, 255, 0.5);
}
@media screen and (max-width: 992.98px) {
  .bet-card {
    max-width: 480px;
    margin: 0 auto;
  }
}
.bet-card__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
}
@media screen and (max-width: 768.98px) {
  .bet-card__inner {
    padding: 1rem;
    gap: 1rem;
  }
}
.bet-card__media {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bet-card__media img {
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 0.25rem;
}
.bet-card__rating {
  display: flex;
  align-items: center;
}
.bet-card__rating svg {
  width: 1rem;
  height: 1rem;
  color: #facc15;
}
.bet-card__rating-text {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--color-text);
  margin-left: 0.5rem;
}
.bet-card__rating-score {
  font-size: 1.125rem;
  font-weight: 700;
  margin-left: auto;
  display: inline-block;
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  background: var(--gradient-primary);
  color: var(--color-dark);
}
.bet-card__bonus {
  border-radius: 0.75rem;
  background: rgba(51, 187, 255, 0.2);
  text-align: center;
  border: 1px solid var(--color-primary);
}
.bet-card__bonus-text {
  color: #f8fafc;
  padding: 1rem;
  font-size: 0.875rem;
}
.bet-card__bonus-text span {
  display: block;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-top: 0.25rem;
}
.bet-card__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.bet-card__item {
  padding: 0.75rem;
  border-radius: 0.75rem;
  text-align: center;
  border: 1px solid rgba(51, 187, 255, 0.2);
}
.bet-card__item:nth-child(1) svg {
  color: var(--color-primary);
}
.bet-card__item:nth-child(1) p {
  color: var(--color-primary);
}
.bet-card__item:nth-child(2) {
  border-color: rgba(251, 208, 81, 0.2);
}
.bet-card__item:nth-child(2) p {
  color: var(--color-accent);
}
.bet-card__item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}
.bet-card__item-text {
  font-size: 1rem;
  font-weight: 600;
}
.bet-card__item-text span {
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--color-text);
  font-weight: 400;
  margin-bottom: 0.25rem;
}
.bet-card__pay-list {
  display: flex;
  gap: 0.5rem;
}
.bet-card__pay-item {
  font-size: 0.75rem;
  line-height: 1rem;
  padding: 0.125rem 0.625rem;
  font-weight: 700;
  background: #f0f2f4;
  border-radius: 100px;
}
.bet-card__btn {
  flex-shrink: 0;
  margin-left: auto;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--gradient-secondary);
  color: var(--color-dark);
  max-width: 100%;
  width: 100%;
  text-align: center;
}
.bet-card__btn:hover {
  color: var(--color-dark);
}
.bet-card__info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 768.98px) {
  .bet-card__info {
    display: none;
  }
}
.bet-card__info-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--color-text);
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.bet-card__info-item svg {
  width: 1rem;
  height: 1rem;
}

.stats {
  padding: 3rem 0;
  background: #14141A;
  color: var(--color-light);
}
.stats__label {
  color: var(--color-accent);
}
.stats__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 992.98px) {
  .stats__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768.98px) {
  .stats__list {
    grid-template-columns: 1fr;
  }
}
.stats__item {
  background: #16161D;
  border-radius: 1rem;
  box-shadow: 0 15px 40px -8px hsla(240, 15%, 3%, 0.5);
  padding: 2rem;
  border: 1px solid #292932;
  transition: all 0.3s ease;
}
.stats__item:hover {
  box-shadow: 0 5px 30px -15px rgba(19, 236, 146, 0.4);
}
.stats__item:nth-child(2) .stats__item-num {
  color: var(--color-primary);
}
.stats__item:nth-child(3) .stats__item-num {
  color: var(--color-blue);
}
.stats__item:nth-child(4) .stats__item-num {
  color: var(--color-success);
}
.stats__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.stats__heading span {
  padding: 0.25rem 0.5rem;
  color: var(--color-success);
  border-radius: 100px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  background: rgba(19, 236, 19, 0.1019607843);
}
.stats__item-num {
  font-size: 1.875rem;
  line-height: 2.25rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  color: var(--color-accent);
  font-weight: 700;
}
.stats__item-title {
  margin-bottom: 0.5rem;
  color: #f4f4f6;
}
.stats__item-text {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--color-text);
}

.guide {
  padding: 3rem 0;
  background: #14171F;
  text-align: center;
}
@media screen and (max-width: 992.98px) {
  .guide {
    padding: 1.875rem 0;
  }
}
.guide__title {
  background-image: var(--gradient-secondary);
}
.guide__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 992.98px) {
  .guide__list {
    grid-template-columns: 1fr;
  }
}
.guide__item {
  border: 1px solid #272b35;
  background: #181C25;
  border-radius: 1rem;
  box-shadow: 0 15px 40px -8px hsla(240, 15%, 3%, 0.5);
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  gap: 2rem;
}
.guide__item:hover {
  box-shadow: 0 0 30px rgba(51, 187, 255, 0.5019607843);
}
.guide__item:hover .guide__item-title {
  color: var(--color-accent);
}
.guide__item svg {
  flex-shrink: 0;
}
@media screen and (max-width: 480.98px) {
  .guide__item svg {
    display: none;
  }
}
.guide__item-title {
  transition: color 0.3s ease;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 480.98px) {
  .guide__item-title {
    font-size: 1rem;
  }
}
.guide__item-title span {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1rem;
  padding: 0.25rem 0.5rem;
  background: rgba(18, 88, 226, 0.1);
  border-radius: 100px;
}
.guide__item-text {
  color: var(--color-text);
  margin-bottom: 1rem;
  text-align: left;
}
.guide__description {
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(40, 40, 51, 0.5019607843);
}
.guide__description-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-bottom: 0.5rem;
}
.guide__description-title svg {
  color: var(--color-accent);
  width: 1rem;
  height: 1rem;
}
.guide__description-text {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-style: italic;
  color: var(--color-text);
}
.guide__info {
  background: #0D0D12;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 42rem;
  width: 100%;
  margin: 0 auto;
  border: 1px solid rgba(19, 236, 146, 0.2);
  box-shadow: 0 15px 80px -20px hsla(270, 85%, 65%, 0.4);
}
.guide__info svg {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  display: block;
  color: var(--color-primary);
}
.guide__info-title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
}
.guide__info-text {
  color: var(--color-text);
  text-align: center;
  line-height: 1.625;
}

.how {
  padding: 3rem 0;
  background: #0F1219;
}
@media screen and (max-width: 992.98px) {
  .how {
    padding: 1.875rem 0;
  }
}
.how__subtitle {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.how__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 992.98px) {
  .how__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768.98px) {
  .how__list {
    grid-template-columns: 1fr;
  }
}
.how__item {
  background: #181C25;
  border: 1px solid #272b35;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px -10px hsla(222, 25%, 4%, 0.5);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.how__item:hover {
  box-shadow: 0 0 30px rgba(51, 187, 255, 0.5019607843);
}
.how__media {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 100%;
  background-color: rgba(51, 187, 255, 0.1019607843);
}
.how__media svg {
  color: var(--color-primary);
  width: 2rem;
  height: 2rem;
  margin: 0 auto;
}
.how__item-title {
  font-size: 1.125rem;
  line-height: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.how__text {
  color: var(--color-text);
  line-height: 1.625;
  font-size: 0.875rem;
}
.how__label {
  padding: 0.25em 0.75rem;
  display: inline-flex;
  color: var(--color-accent);
  align-items: center;
  border-radius: 100px;
  gap: 0.5rem;
  background: rgba(22, 162, 73, 0.1);
}
.how__label svg {
  width: 1rem;
  height: 1rem;
}
.how__label span {
  font-size: 0.75rem;
  line-height: 1.25rem;
  font-weight: 700;
}

.license {
  padding: 3rem 0;
  background: #0F1219;
}
@media screen and (max-width: 992.98px) {
  .license {
    padding: 1.875rem 0;
  }
}
.license__inner {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #272b35;
  background: #181C25;
  max-width: 56rem;
  margin: 0 auto;
}
@media screen and (max-width: 768.98px) {
  .license__inner {
    padding: 1.25rem;
  }
}
.license__img {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  display: block;
  color: var(--color-primary);
}
.license__title {
  margin-bottom: 2rem;
  font-size: 1.875rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768.98px) {
  .license__title {
    font-size: 1.5rem;
  }
}
.license__text {
  font-size: 1.125rem;
  line-height: 1.625;
  max-width: 100%;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}
.license__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 768.98px) {
  .license__list {
    grid-template-columns: 1fr;
  }
}
.license__item {
  border-radius: 0.75rem;
  text-align: center;
}
.license__item:nth-child(1) svg {
  color: var(--color-success);
}
.license__item:nth-child(2) svg {
  color: var(--color-primary);
}
.license__item:nth-child(3) svg {
  color: var(--color-accent);
}
.license__item svg {
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.5rem;
}
.license__item-title {
  margin-bottom: 0.25rem;
}
.license__item-text {
  color: var(--color-text);
  font-size: 0.875rem;
  line-height: 1.625;
}
.license__info {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 650px;
  margin: 0 auto;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  color: var(--color-success);
  background: rgba(19, 236, 19, 0.1);
  font-weight: 700;
}
@media screen and (max-width: 768.98px) {
  .license__info {
    font-size: 0.875rem;
  }
}
.license__info svg {
  flex-shrink: 0;
}

.footer {
  background: #16161D;
  color: var(--color-light);
}
@media screen and (max-width: 992.98px) {
  .footer {
    padding-top: 1.5rem;
  }
}
.footer__disclaimer {
  padding: 1.5rem 1.25rem;
  background: rgba(240, 81, 66, 0.1019607843);
  border-bottom: 1px solid rgba(240, 81, 66, 0.2);
  color: #f05142;
  gap: 1rem;
}
.footer__list {
  padding: 3rem 0;
  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);
  position: relative;
}
.footer a:before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  bottom: 0;
  background-color: var(--color-primary);
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}
.footer a:hover::before {
  width: 100%;
}
.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;
    justify-content: center;
  }
}
.footer__help a::before {
  content: none;
}
.footer__media {
  max-width: 140px;
  width: 100%;
  padding: 0.625rem;
  height: 100px;
}
.footer__media img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
.footer__media--invert {
  background-color: var(--color-light);
  border-radius: 0.75rem;
}
.footer__info {
  border-top: 1px solid #292932;
  background: #1E1E27;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media screen and (max-width: 768.98px) {
  .footer__info {
    flex-direction: column;
    gap: 1rem;
  }
}
.footer__info-inner {
  background: #16161D;
  border: 1px solid #292932;
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.footer__info-inner svg {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 1rem;
  display: block;
  color: #f05142;
}
.footer__info-title {
  text-align: center;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.footer__info-text {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--color-text);
  text-align: center;
}
.footer__info-text + p {
  margin-top: 1rem;
}
.footer__copy {
  border-top: 1px solid #292932;
  padding: 1.5rem 0;
}
.footer__copy-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 2rem;
}
.footer__copy-list {
  display: flex;
  gap: 2rem;
  color: var(--color-success);
}
@media screen and (max-width: 768.98px) {
  .footer__copy-list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.footer__copy-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__copy-list svg {
  width: 1rem;
  height: 1rem;
}
.footer__copy-list p {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.footer__copy-text {
  text-align: center;
  color: var(--color-text);
}

/*  STRUCTURE  */
/*  COMPONENTS  */
.cookies-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: var(--color-dark);
  color: var(--color-light);
  padding: 1.5rem 1rem;
  z-index: 1000;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.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: 5px 10px;
  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);
}

.service-page {
  padding: 3rem 0;
  color: var(--color-light);
  background: url(../img/main-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.service-page h2 {
  margin-bottom: 0.625rem;
}
.service-page p {
  margin-bottom: 1rem;
}
.service-page p.service-page__subtitle {
  margin-bottom: 2.5rem;
}
.service-page ul {
  margin-bottom: 1rem;
  padding-left: 18px;
}
.service-page li {
  list-style-type: disc;
}
.service-page li + li {
  margin-top: 0.25rem;
}
.service-page a {
  color: var(--color-primary);
}
.service-page a:hover {
  color: var(--color-accent);
}
.service-page__title {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  line-height: 1.625;
  text-align: center;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.service-page__subtitle {
  text-align: center;
}
.service-page__content {
  padding: 2rem;
  background: rgba(22, 22, 29, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid var(--color-primary);
  border-radius: 1.25rem;
}
.service-page__text {
  margin-bottom: 1rem;
}
.service-page__list {
  padding-left: 18px;
  margin-bottom: 1rem;
}

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