:root {
  --primary-bg: #0f031a; /* Глибокий чорно-фіолетовий для основного фону, що нагадує нічне казино */
  --secondary-bg: #1c0a3d; /* Темний синьо-фіолетовий для карток і вторинних елементів */
  --primary-text: #e8d7ff; /* М’який блідо-лавандовий для тексту, контрастний на темному тлі */
  --accent-pink: #ff1a8c; /* Електричний неоновий рожевий для акцентів */
  --accent-cyan: #00f7ff; /* Яскравий неоновий ціан для кнопок і бордерів */
  --accent-yellow: #ffcc00; /* Сяючий неоновий золотий для виділень */
  --gradient-accent: linear-gradient(
    90deg,
    #ff1a8c 0%,
    #00f7ff 50%,
    #ffcc00 100%
  ); /* Багатокольоровий неоновий градієнт */
  --gradient-highlight: linear-gradient(
    260.52deg,
    #ff1a8c -10%,
    #00f7ff 45%,
    #ffcc00 95%
  ); /* Динамічний градієнт для акцентів із ширшою гамою */
  --shadow-pink: rgba(
    255,
    26,
    140,
    0.7
  ); /* Насичена рожева тінь із неоновим сяйвом */
  --shadow-pink-hover: rgba(
    255,
    26,
    140,
    0.9
  ); /* Яскравіша рожева тінь для ховеру */
  --shadow-cyan: rgba(0, 247, 255, 0.6); /* Сяюча ціанова тінь для ефектів */
  --shadow-cyan-fade: rgba(0, 247, 255, 0); /* Прозорий ціан для градієнтів */
  --shadow-yellow: rgba(
    255,
    204,
    0,
    0.4
  ); /* Золота неонова тінь для елементів */
  --shadow-yellow-hover: rgba(
    255,
    204,
    0,
    0.7
  ); /* Посилена золота тінь для ховеру */
  --border-text: #e8d7ff; /* Лавандовий для бордерів і тексту, що гармонує з основним текстом */
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
html,
body,
div,
span,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
i,
ol,
ul,
li,
form,
label,
main,
footer,
header,
nav,
section {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}
footer,
header,
nav,
section,
main {
  display: block;
}
ol,
ul {
  list-style: none;
}
input {
  -webkit-appearance: none;
  border-radius: 0;
}
input,
textarea,
button,
select {
  font-family: inherit;
}
a {
  text-decoration: none;
}
button {
  border: transparent;
  cursor: pointer;
}
html {
  font-size: 16px;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  html {
    font-size: 14px;
  }
}
body {
  color: var(--primary-text);
  line-height: 1.4;
  min-height: 100vh;
  background-color: var(--primary-bg);
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: column;
  flex-wrap: nowrap;
  font-family: "Sora", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  max-width: 76rem;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
}
main {
  position: relative;
}
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  padding: 14px 0;
  background: var(--gradient-accent);
  border-radius: 8px;
  color: var(--primary-bg);
  box-shadow: 0 0 12px var(--shadow-pink);
  transition: all 0.3s ease-in-out;
  animation: neon-pulse 1.5s infinite;
}
@media (hover: hover) {
  .btn:hover {
    box-shadow: 0 0 18px var(--shadow-pink-hover);
    transform: scale(1.02);
  }
}
@keyframes neon-pulse {
  0% {
    box-shadow: 0 0 5px var(--shadow-pink), 0 0 10px var(--shadow-cyan);
  }
  50% {
    box-shadow: 0 0 10px var(--shadow-pink-hover), 0 0 20px var(--shadow-cyan);
  }
  100% {
    box-shadow: 0 0 5px var(--shadow-pink), 0 0 10px var(--shadow-cyan);
  }
}
.hero-section {
  padding: 3rem 0;
  background: linear-gradient(180deg, #0f031a 0%, rgba(0, 247, 255, 0) 100%),
    url(../img/bg-new.webp) no-repeat center / cover;
}
@media (max-width: 767.98px) {
  .hero-section {
    padding: 1rem 0;
  }
}
.hero-section__title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 3.5rem;
  font-weight: 800;
  text-shadow: 0 0 12px var(--shadow-pink);
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .hero-section__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 767.98px) {
  .hero-section__title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
}
.hero-section__title span {
  color: var(--accent-pink);
}
.hero-section__subtitle {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .hero-section__subtitle {
    font-size: 1.125rem;
  }
}
@media (max-width: 767.98px) {
  .hero-section__subtitle {
    font-size: 1rem;
  }
}
.advantages-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  justify-items: center;
}
@media (max-width: 767.98px) {
  .advantages-grid {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    gap: 0.5rem;
  }
}
.advantage-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--secondary-bg);
  border-radius: 12px;
  border: 1px solid var(--accent-cyan);
  box-shadow: 0 0 10px var(--shadow-cyan);
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .advantage-item:hover {
    animation: neon-pulse 1.5s infinite;
    transform: scale(1.05);
  }
}
@media (max-width: 767.98px) {
  .advantage-item {
    text-align: center;
    width: 30%;
    padding: 0.5rem;
    gap: 0.2rem;
  }
}
.advantage-item__icon {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  filter: brightness(1.3);
}
@media (max-width: 767.98px) {
  .advantage-item__icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.advantage-item span {
  font-weight: 600;
  color: var(--primary-text);
}
@media (max-width: 767.98px) {
  .advantage-item span {
    font-size: 0.7rem;
    display: none;
  }
}
.betting-platforms {
  padding: 2rem 0;
}
.betting-platforms__entries {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 1.5rem;
}
.betting-platforms__entry {
  width: 100%;
  padding: 1rem;
  background: var(--secondary-bg);
  border-radius: 12px;
  border: 1px solid var(--accent-yellow);
  box-shadow: 0 0 8px var(--shadow-yellow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .betting-platforms__entry:hover {
    box-shadow: 0 0 12px var(--shadow-yellow-hover);
    transform: scale(1.02);
  }
}
.betting-platforms__entry:nth-child(even) {
  background: var(--primary-bg);
}
.betting-platforms__entry--top {
  position: relative;
}
.betting-platforms__entry--top::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -23px;
  left: 86px;
  width: 170px;
  height: 40px;
  background: url("../img/best.webp") no-repeat center/contain;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .betting-platforms__entry--top::before {
    left: 65px;
  }
}
@media (max-width: 767.98px) {
  .betting-platforms__entry {
    flex-wrap: wrap;
    padding: 0;
  }
  .betting-platforms__entry--top::before {
    top: -17px;
    left: 10px;
    width: 120px;
    height: 28px;
    z-index: 2;
  }
}
.betting-platforms__rank {
  display: block;
  width: 3rem;
  height: 3rem;
  color: var(--primary-bg);
  font-size: 1.5rem;
  line-height: 120%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--shadow-cyan);
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .betting-platforms__rank {
    width: 2rem;
    height: 2rem;
  }
}
@media (max-width: 767.98px) {
  .betting-platforms__block--rank {
    display: none;
  }
}
.betting-platforms__payment-options {
  margin-top: 1rem;
}
.betting-platforms__payment-options img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.3);
}
@media (max-width: 767.98px) {
  .betting-platforms {
    padding-top: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .betting-platforms__entry--top .betting-platforms__block--brand {
    max-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 1rem;
    justify-content: space-between;
    border-color: transparent;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .betting-platforms__entry--top .betting-platforms__block--brand::after {
    content: "";
    position: absolute;
    left: -1px;
    right: 0;
    bottom: 0;
    width: calc(100% + 2px);
    height: 1px;
    display: block;
    background: var(--gradient-highlight);
  }
}
.betting-platforms__block--brand {
  position: relative;
  max-width: 260px;
  width: 100%;
  padding: 10px;
  background: var(--primary-bg);
  border: 1px solid var(--accent-pink);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.5rem;
  box-shadow: 0 0 8px var(--shadow-pink);
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .betting-platforms__block--brand {
    max-width: 200px;
  }
}
@media (max-width: 767.98px) {
  .betting-platforms__block--brand {
    max-width: 100%;
    margin-left: 0;
    border: 0;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 1rem;
    justify-content: space-between;
    border-color: transparent;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .betting-platforms__block--brand::after {
    content: "";
    position: absolute;
    left: -1px;
    right: 0;
    bottom: 0;
    width: calc(100% + 2px);
    height: 1px;
    display: block;
    background: var(--accent-pink);
  }
}
.betting-platforms__block--details {
  position: relative;
  flex-grow: 1;
  padding: 0 1rem;
  text-align: center;
  color: var(--accent-yellow);
  margin: 0 2rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .betting-platforms__block--details {
    padding: 0.5rem 1rem;
  }
}
.betting-platforms__block--details li {
  font-weight: 500;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .betting-platforms__block--details li span {
    font-size: 1rem;
  }
}
@media (max-width: 767.98px) {
  .betting-platforms__block--details li:not(:last-child) {
    margin-bottom: 0.2rem;
  }
  .betting-platforms__block--details li span {
    font-size: 0.8rem;
  }
}
.betting-platforms__block--details img {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
  filter: brightness(1.3);
}
.betting-platforms__block--details:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 125px;
  background: linear-gradient(
    90deg,
    var(--shadow-cyan-fade) 0%,
    var(--accent-cyan) 50.31%,
    var(--shadow-cyan-fade) 100%
  );
}
.betting-platforms__block--details:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 125px;
  background: linear-gradient(
    90deg,
    var(--shadow-cyan-fade) 0%,
    var(--accent-cyan) 50.31%,
    var(--shadow-cyan-fade) 100%
  );
}
@media (max-width: 767.98px) {
  .betting-platforms__block--details {
    max-width: 100%;
    padding: 0 1rem;
    margin: 0;
  }
  .betting-platforms__block--details:after {
    display: none;
  }
  .betting-platforms__block--details:before {
    display: none;
  }
}
.betting-platforms__block--action {
  position: relative;
  z-index: 1;
  max-width: 270px;
  width: 100%;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .betting-platforms__block--action {
    max-width: 180px;
    padding: 0 0.5rem;
  }
}
@media (max-width: 767.98px) {
  .betting-platforms__block--action {
    max-width: 100%;
    padding: 1rem;
  }
  .betting-platforms__block--action::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
      90deg,
      var(--shadow-cyan-fade) 0%,
      var(--accent-cyan) 50.31%,
      var(--shadow-cyan-fade) 100%
    );
  }
}
.betting-platforms__payment-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.logo {
  width: 132px;
  height: 54px;
}
.logo__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.rating {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.rating__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
@media (max-width: 767.98px) {
  .rating__inner {
    flex-direction: column;
  }
}
.rating__img {
  width: 60px;
  height: 10px;
  object-fit: cover;
  filter: brightness(1.3);
}
.rating__reviews {
  font-weight: 600;
  color: var(--primary-text);
  font-size: 0.8rem;
}
.rating__text {
  font-weight: 600;
  font-size: 1rem;
  color: var(--accent-yellow);
}
@media (max-width: 767.98px) {
  .rating {
    flex-direction: column;
    max-width: 50%;
    text-align: center;
  }
}
.betting-platforms__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--shadow-cyan-fade) 0%,
    var(--accent-cyan) 50.31%,
    var(--shadow-cyan-fade) 100%
  );
}
.content {
  padding: 2rem 0;
}
.content strong {
  color: var(--accent-yellow);
}
.content__title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .content__title {
    font-size: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .content__title {
    font-size: 1.125rem;
  }
}
.content__text {
  margin-bottom: 1rem;
}
.content__list {
  margin-bottom: 1rem;
  list-style: disc;
  padding-left: 1.5rem;
}
.content__list.unstyle {
  list-style: none;
}
.content__list li {
  margin-bottom: 0.5rem;
}
.content__link {
  font-weight: 900;
  color: var(--accent-yellow);
  word-break: break-all;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .content__link:hover {
    color: var(--primary-text);
  }
}
.footer {
  padding: 2rem 0;
  border-top: 5px solid var(--secondary-bg);
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 3rem;
}
.logos {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .logos {
    flex-wrap: wrap;
  }
}
.logos__link {
  padding: 0.5rem;
  border-radius: 8px;
}
.logos__link:nth-child(1) {
  width: 100px;
  height: 100px;
}
.logos__link:nth-child(2) {
  width: 160px;
  height: 80px;
  background-color: var(--accent-yellow);
}
.logos__link:nth-child(3) {
  background-color: var(--accent-yellow);
  width: 160px;
  height: 80px;
}
.logos__link:nth-child(4) {
  background-color: var(--accent-yellow);
  width: 160px;
  height: 80px;
}
.logos__link:nth-child(5) {
  width: 160px;
  height: 80px;
  background-color: var(--accent-yellow);
}
.logos__link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.links {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .links {
    flex-wrap: wrap;
  }
}
.links__link {
  color: var(--accent-yellow);
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .links__link:hover {
    color: var(--primary-text);
  }
}
.disclaimer__text:not(:last-child) {
  margin-bottom: 0.5rem;
}
