@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Poppins-Regular.woff2") format("woff2");
}
:root {
  --color-light: #ffffff;
  --color-dark: #2d1e2f;
  --color-primary: #0099c5;
  --color-accent: #00bbbf;
  --color-btn: #1b2684;
  --color-warning: #f87171;
}

*,
*::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%;
  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-color: #0D0221;
  background-image: url(../img/body-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 2;
}
body:after {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: -1;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

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

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

.main__btn {
  width: 210px;
  padding: 16px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
  border: var(--color-btn);
  background: linear-gradient(120deg, #1b2684 30%, #2c39a6 38%, #2c39a6 40%, #1b2684 48%);
  background-size: 200% 100%;
  transition: transform 0.3s ease;
  animation: shimmer 1.5s infinite;
}
.main__btn:hover {
  color: var(--color-light);
  transform: scale(1.07);
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.section__title {
  max-width: 600px;
  font-size: 3rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}
@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;
  }
}

/*  STRUCTURE  */
.header {
  padding: 10px 0;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 10;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header__logo {
  max-width: 80px;
  width: 100%;
}
@media screen and (max-width: 768.98px) {
  .header__logo {
    max-width: 60px;
  }
}

.hero {
  padding: calc(1.25rem + 80px) 0 2rem;
}
@media screen and (max-width: 768.98px) {
  .hero {
    padding-bottom: 0;
  }
}
.hero__title {
  font-size: 2rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 1.5rem;
}
@media screen and (max-width: 480.98px) {
  .hero__title {
    font-size: 1.25rem;
  }
}
.hero__subtitle {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 768.98px) {
  .hero__subtitle {
    display: none;
  }
}
.hero__about {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 1200.98px) {
  .hero__about {
    flex-direction: column;
  }
}
.hero__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.text-green {
  color: green;
}

.text-yellow {
  color: yellow;
}

.text-purple {
  color: purple;
}

.platform {
  padding: 2rem 0 4rem;
}
@media screen and (max-width: 768.98px) {
  .platform {
    padding-top: 0;
    padding-bottom: 2rem;
  }
}
.platform__title {
  margin-bottom: 1.25rem;
}
.platform__subtitle {
  max-width: 900px;
  margin: 0 auto 2rem;
  text-align: center;
}
.platform__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (max-width: 480.98px) {
  .platform__list {
    gap: 1.25rem;
  }
}
.platform__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 100%;
  width: 100%;
  padding: 1rem;
  border-radius: 1rem;
  background-color: #10102b;
}
@media screen and (max-width: 992.98px) {
  .platform__item {
    flex-direction: column;
    max-width: 460px;
    margin: 0 auto;
  }
}
.platform__media {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
@media screen and (max-width: 768.98px) {
  .platform__media {
    gap: 0.625rem;
  }
}
.platform__media-img {
  max-width: 200px;
}
@media screen and (max-width: 768.98px) {
  .platform__media-img {
    max-width: 110px;
    margin: 0 auto;
  }
}
.platform__media-img--second {
  max-width: 110px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768.98px) {
  .platform__media-img--second {
    max-width: 70px;
  }
}
.platform__media-rating {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768.98px) {
  .platform__media-rating {
    justify-content: center;
  }
}
.platform__media-rating span {
  margin-right: 0.5rem;
  font-size: 700px;
  font-size: 2rem;
}
@media screen and (max-width: 768.98px) {
  .platform__media-rating span {
    font-size: 1.25rem;
  }
}
.platform__media-rating svg {
  color: yellow;
}
@media screen and (max-width: 768.98px) {
  .platform__media-rating svg {
    width: 1rem;
    height: 1rem;
  }
}
.platform__media-votes {
  font-size: 14px;
}
.platform__content {
  text-align: center;
}
.platform__content-text {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  max-width: 480px;
}
@media screen and (max-width: 1200.98px) {
  .platform__content-text {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480.98px) {
  .platform__content-text {
    font-size: 1rem;
  }
}
.platform__content-title {
  font-size: 1.25em;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 1200.98px) {
  .platform__content-title {
    font-size: 1.125rem;
  }
}
.platform__content-payment {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  max-width: 300px;
  margin: 0 auto;
}
.platform__btn {
  padding: 0.625rem 0;
}

.info {
  padding: 4rem 0;
}
@media screen and (max-width: 768.98px) {
  .info {
    padding: 2rem 0;
  }
}
.info__inner {
  padding: 2rem;
  background-color: #10102b;
  border-radius: 1rem;
}
.info__title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 768.98px) {
  .info__title {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768.98px) {
  .info__text {
    font-size: 0.875rem;
  }
}
.info__list {
  margin-bottom: 0.75rem;
}
.info__list li + li {
  margin-top: 0.5rem;
}
.info__list a {
  color: var(--color-accent);
  transition: color 0.3s ease;
}
.info__list a:hover {
  color: var(--color-primary);
}
.info__text:not(:last-child) {
  margin-bottom: 1.25em;
}

.responsible-gaming {
  padding: 4rem 0;
}
@media screen and (max-width: 768.98px) {
  .responsible-gaming {
    padding: 2.5rem 0;
  }
}
.responsible-gaming__content {
  max-width: 900px;
  border-radius: 1rem;
  background-color: rgba(127, 29, 29, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.3019607843);
  padding: 1rem;
  display: flex;
  gap: 1rem;
  margin: 0 auto 2rem;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
.responsible-gaming__content svg {
  flex-shrink: 0;
  color: var(--color-warning);
}
.responsible-gaming__content-title {
  margin-bottom: 1rem;
  color: var(--color-warning);
}
.responsible-gaming__help {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.responsible-gaming__link {
  max-width: 150px;
  width: 100%;
}
.responsible-gaming__link:last-child {
  max-width: 167px;
}

.footer {
  padding: 3rem 0 1rem;
}
.footer__inner {
  display: flex;
  gap: 1.875rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #26408B;
}
@media screen and (max-width: 768.98px) {
  .footer__inner {
    flex-direction: column;
  }
}
.footer__list {
  gap: 1rem;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
@media screen and (max-width: 768.98px) {
  .footer__list {
    text-align: center;
  }
}
.footer__link {
  color: var(--color-accent);
  transition: color 0.3s ease;
}
.footer__link:hover {
  color: var(--color-primary);
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.footer__copy {
  padding-top: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/*  STRUCTURE  */
/*  COMPONENTS  */
.cookies-popup {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #0a0a1b;
  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-popup__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 200px;
  width: 100%;
  gap: 1rem;
}
@media screen and (max-width: 768.98px) {
  .cookies-popup__btns {
    flex-direction: column;
    align-items: center;
  }
}
.cookies-popup 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: #0cbf98;
  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.05);
}

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