@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Poppins-Regular.woff2") format("woff2");
}

:root {
  --light-color: #fff;
  --dark-color: #000;

  --primary-color: #00f0ff;
  --accent-color: #facc15;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
  list-style: none;
}



body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: var(--dark-color);
  color: var(--light-color);
}

/* ANIMATION PARTICLES */


/* Контейнер частинок на весь екран */
.particle-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
  z-index: -1; /* нижче за інший контент */
}

/* Частинки, анімації (залишаються без змін) */
.particle {
  will-change: transform;
  contain: layout style;
  position: absolute;
  bottom: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #00f0ff;
  box-shadow:
    0 0 5px #00f0ff,
    0 0 10px #00f0ff,
    0 0 20px #00f0ff;
  animation: rise linear infinite, flicker 2s ease-in-out infinite alternate;
}

@keyframes flicker {
  0% { opacity: 0.3; }
  100% { opacity: .7; }
}

@keyframes rise {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: .5;
  }
  90% {
    opacity: .7;
  }
  100% {
    transform: translateY(-120vh) translateX(var(--shift));
    opacity: 0;
  }
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.btn {
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 10px 40px;
  text-align: center;
}
.btn--accent {
  background-color: var(--accent-color);
  color: var(--dark-color);
  box-shadow: 0px 0px 11px 0px var(--accent-color);
  transition: all .5s ease;
}

.btn--accent:hover {
  background-color: var(--primary-color);
  box-shadow: 0px 0px 20px 0px var(--primary-color); ;
}

/* Header */

.header {
  background: var(--accent-color);
  color: var(--dark-color);
  text-align: center;
  font-size: 0.875rem;
  padding: 0.5rem;
  gap: 2rem;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}



.hero {
    padding: 4rem 0 0;
    color: var(--light-color);
    position: relative;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    background-image: url(../img/hero-1.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 200px;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  background-image: linear-gradient(0deg, rgba(0,0,0,1), rgba(0,0,0,0));
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, .7);
  z-index: -2;
}

.hero__main {
  text-align: center;
  position: relative;
}
.hero__main::before {
  position: absolute;
  content: '';
  background-image: url(../img/decor-01.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 200px;
  aspect-ratio: 9 / 16;
  right: 0px;
  bottom: 0;
  z-index: -1;
}

.hero__main::after {
  position: absolute;
  content: '';
  background-image: url(../img/decor-02.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 200px;
  aspect-ratio: 9 / 16;
  width: 200px;
  aspect-ratio: 9 / 16;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.hero__logo {
  margin: 0 auto 1.5rem;
  max-width: 70px;
  display: inline-block;
}

.hero__logo img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: auto;
}

.hero__title {
  font-size: 4rem;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 5;
}

.hero__subtitle {
  font-size: 1.5rem;
  max-width: 66%;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 5;
}

.hero__features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
  position: relative;
  z-index: 5;
}

.hero__feature {
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* start cards */

.top {
  padding: 6rem 0 4rem;
  position: relative;
  z-index: 5;
}

.top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(180deg, rgba(0,0,0,1), rgba(0,0,0,0));
  width: 100%;
  height: 200px;
}

.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px 0;
  color: white;
}

.cards .card {
  border-radius: 10px;
  /* border: 1px solid #facc15; */
  border: 1px solid #00f0ff;
  background-color: rgba(32, 29, 127, 0.2);
  backdrop-filter: blur(6px);
  -webkit-box-shadow: 0px 0px 10px 0px #00f0ff;
  /* -webkit-box-shadow: 0px 0px 10px 0px #facc15; */
  box-shadow: 0px 0px 10px 0px #00f0ff;
  /* box-shadow: 0px 0px 10px 0px #facc15; */
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 237px 171px 241px 241px;
  grid-template-columns: 237px 171px 241px 241px;
  padding: 5px 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
}

.cards .card .card__logo {
  padding: 32px 38px;
}

.cards .card .card__logo a {
  height: 50px;
  display: block;
}

.cards .card .card__logo a img {
  width: 100%;
  height: 100%;
}

.cards .card .card__rating {
  padding: 20px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px 0;
}

.cards .card .card__rating > div {
  border-radius: 10px;
  background: #2f2f69;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.cards .card .card__rating > div .star {
  background-image: url('../img/star.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
}

.cards .card .card__rating > a {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.cards .card .card__rating > .vote {
  font-size: 12px;
}

.card__bonus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px 0;
  padding: 20px 10px;
}

.card__bonus > div > div {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 0 5px;
}

.card__bonus > div > div span {
  background-image: url('../img/users.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  display: block;
}

.card__bonus > a {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.card__bonus > a span {
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
}

.card__link {
  padding: 20px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.card__benefit {
  border-radius: 100px;
  background: var(--accent-color);
  -webkit-box-shadow: 0px 0px 11px 0px var(--accent-color);
  box-shadow: 0px 0px 11px 0px var(--accent-color);
  color: var(--dark-color);
  backdrop-filter: blur(6px);
  padding: 5px 20px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  position: absolute;
  top: -11px;
  left: 10.5px;
}

.card__link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0 10px;
}

.card__link ul li img {
  width: 23px;
  height: 23px;
}

.mob-link {
  display: none;
}

@media (max-width: 991px) {
  .top {
    padding-top: 4.5rem;
    padding-bottom: 0;
  }

  .cards .card {
    -ms-grid-columns: (1fr);
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
    width: 100%;
  }

  .cards .card .card__logo {
    padding: 22px 15px;
  }

  .cards .card .card__rating {
    padding: 5px 10px;
    gap: 10px 0;
  }

  .card__bonus {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    padding: 10px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    gap: 0;
  }

  .card__bonus > div,
  .card__bonus > a {
    width: 50%;
  }

  .card__bonus > a {
    padding-right: 10px;
  }

  .card__bonus > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px 0;
    padding-left: 10px;
  }

  .card__link {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    padding: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr);
    grid-template-columns: repeat(2, 1fr);
  }

  .card__link > a {
    display: none;
  }

  .card__link ul {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }

  .mob-link {
    display: block;
    width: 100%;
    
  }
}

/* end cards */

/* FAQ START */

.faq {
  padding: 60px 0;
  color: #FFF;
}

.faq__title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.faq__item {
  max-width: 900px;
  margin: 0 auto 20px;
  border-radius: 16px;
  border: 1px solid #00f0ff;
  background-color: rgba(32, 29, 127, 0.2);
  backdrop-filter: blur(6px);
  transition: box-shadow 0.3s ease;
}

.faq__question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.1rem;
  padding: 12px;
  cursor: pointer;
  font-weight: 600;
  color: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;

  span {
    font-size: 24px;
    font-weight: normal;
    transition: transform .5s ease;
  }
}

.faq__item:hover {
  -webkit-box-shadow: 0px 0px 11px 0px #00f0ff;
  box-shadow: 0px 0px 11px 0px #00f0ff;
  
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  padding: 0 15px;
}

.faq__item.active .faq__answer {
  max-height: 200px;
  opacity: 1;
  padding: 1rem;
}
.faq__item.active .faq__question span {
  transform: rotate(45deg);
}


/* FAQ END */

/* REVIEWS START */

.reviews {
  padding-top: 50px;
  padding-bottom: 50px;
}

.reviews__title {
  font-family: Poppins;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.reviews__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.reviews__list li {
  border-radius: 10px;
  border: 1px solid #00f0ff;
  background-color: rgba(32, 29, 127, 0.2);
  backdrop-filter: blur(6px);
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px 0;
}

.reviews__list li .rating {
  background-image: url('../img/star.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.reviews__list li .desc {
  font-size: 15px;
  font-weight: 400;
}

.reviews__list li .author {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 991px) {
  .reviews__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

/* REVIEWS END */


/* RESPONSIBLE GAMING START */

.responsible-gaming {
  padding: 4rem 0;
}

.responsible-gaming__title {
  text-align: center;
  margin-bottom: 2rem;
  svg {
    color:var(--accent-color)
  }
}

.responsible-gaming__content {
  background-color: #7f1d1d33;
  border: 1px solid #ef44444d;
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 900px;
  width: 100%;
  margin: 0 auto 3rem;
}

.text-red-400 {
  color: #f87171;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-size: 1.125rem;
}

.responsible-gaming__description {
  font-size: 1rem;
  flex: 0 1 calc(50% - 1rem);
}
@media screen and (max-width: 768px) {
  .responsible-gaming__description {
    flex: 1 0 100%;
  }
}

.responsible-gaming ul {
  margin-bottom: 1rem;
}

.responsible-gaming__help {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* REPONSIBLE GAMING END */


/* Footer */
.footer {
  background: #111827;
  color: #d1d5db;
  padding: 2rem 1rem;
  text-align: center;
}

.footer__logos {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer__logo {
  height: 30px;
}

.footer__nav {
  margin-bottom: 1rem;
}

.footer__link {
  margin: 0 0.5rem;
  color: #93c5fd;
  text-decoration: none;
  font-size: 0.875rem;
}

.footer__link:hover {
  text-decoration: underline;
}
.footer__disclaimer {
  font-size: 12px;
  margin-bottom: 0.5rem;
}

.footer__copy {
  font-size: 0.75rem;
  color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero__title {
        font-size: 2.25rem;
    }
    .hero__subtitle {
        font-size: 1rem;
    }
    .hero__main::before,
    .hero__main::after {
      max-width: 130px;
    }
  .card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .card__rating {
    align-items: center;
  }
  .card__btn {
    width: 100%;
    margin-top: 1rem;
  }
  .mob-link {
    padding-inline: 0;
    max-width: 210px;
  }
  .header__title {
    font-size: 1.5rem;
  }
  .header__subtitle {
    font-size: 0.875rem;
  }
  .criteria {
    padding: 1.25rem 0px;
  }
  .criteria__title {
    font-size: 1.25rem;
  }
  .responsible-gaming__content {
    padding: 1rem;
  }
  .responsible-gaming__link img {
    max-width: 280px;
  }
  .footer__logos {
    flex-direction: column;
    align-items: center;
  }
  .footer__nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer__link {
    margin: 0;
  }
}


/* COOKIES START */

.cookies-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: var(--dark-color);
  color: var(--light-color);
  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: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 768px) {
  .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;
}

#accept-cookies {
  background-color: var(--accent-color); 
  color: var(--dark-color);
  transition: transform 0.5s ease;
}
#accept-cookies:hover {
  transform: scale(1.1);
}

#reject-cookies {
  background-color: #f44336;
  color: var(--dark-color);
  transition: transform 0.5s ease;
}

#reject-cookies:hover {
  transform: scale(1.1);
}

.page-rights {
  .hero {
    padding: 4rem;
  }
}

.page-rights .hero__logo {
    text-align: center;
        display: block;
        margin-bottom: 1.5rem;
}


.page-rights h1 {
    text-align: center;
}


.page {
    padding: 3rem 0;
    position: relative;
}

.page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(180deg, rgba(0,0,0,1), rgba(0,0,0,0));
  width: 100%;
  height: 200px;
  z-index: -1;
}

.page__inner {
  border-radius: 10px;
  border: 1px solid #00f0ff;
  background-color: rgba(32, 29, 127, 0.2);
  backdrop-filter: blur(6px);
  padding: 1rem;
}

.page__title {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.title-center {
  text-align: center;
}

.page__subtitle {
    margin-bottom: 0.625rem;
}

.page__text {
    margin-bottom: 1.25rem;
}

.page__list {
    padding-left: 18px;
    margin-bottom: 1rem;
}

.responsible__title {
    margin-bottom: 2rem;
}

.responsible__help {
  margin-top: 2.5rem;
}

#terms-section ul {
  padding-left: 0;
}

#terms-section ul li:not(:first-child) {
  padding-left: 18px;
  position: relative;
}
#terms-section ul li:not(:first-child)::before {
  content: '';
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  border-radius: 100%;
  background-color: #FFF;
}





