:root {
  --primary-bg: #0c1626; /* Глибокий чорний із синюватим відтінком для розкішного фону */
  --secondary-bg: #1c252f; /* Темний синьо-сірий для карток і футера */
  --primary-text: #f8f9fa; /* Сріблясто-білий для читабельного тексту */
  --accent-pink: #8b5cf6; /* Неоновий фіолетовий для акцентів і кнопок */
  --accent-cyan: #00aaff; /* Електричний синій для бордерів і акцентів */
  --accent-yellow: #39ff14; /* Неоновий зелений для енергійних виділень */
  --gradient-accent: linear-gradient(
    90deg,
    #8b5cf6 0%,
    #00aaff 100%
  ); /* Градієнт для кнопок: фіолетовий до синього */
  --gradient-highlight: linear-gradient(
    260.52deg,
    #8b5cf6 -4.98%,
    #00aaff 48.42%,
    #39ff14 96.9%
  ); /* Градієнт для виділень: фіолетовий, синій, зелений */
  --shadow-pink: rgba(139, 92, 246, 0.7); /* Тінь для неонового фіолетового */
  --shadow-pink-hover: rgba(
    139,
    92,
    246,
    0.9
  ); /* Тінь для фіолетового при ховері */
  --shadow-cyan: rgba(0, 170, 255, 0.6); /* Тінь для електричного синього */
  --shadow-cyan-fade: rgba(0, 170, 255, 0); /* Прозорий синій для градієнтів */
  --shadow-yellow: rgba(57, 255, 20, 0.4); /* Тінь для неонового зеленого */
  --shadow-yellow-hover: rgba(
    57,
    255,
    20,
    0.6
  ); /* Тінь для зеленого при ховері */
  --border-text: #d1d5db; /* Сріблясто-сірий для бордерів і тексту */
}
*,
*: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: radiant-glow 1.5s infinite;
}
@media (hover: hover) {
  .btn:hover {
    box-shadow: 0 0 18px var(--shadow-pink-hover);
    transform: scale(1.02);
  }
}

@keyframes radiant-glow {
  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);
  }
}

.welcome-banner {
  padding: 3rem 0;
  background: linear-gradient(
      180deg,
      rgba(0, 170, 255, 0) 0%,
      rgba(45, 52, 62, 0.8) 100%
    ),
    url(../img/bg-new.jpg) no-repeat center / cover;
}
@media (max-width: 767.98px) {
  .welcome-banner {
    padding: 1rem 0;
  }
}
.welcome-banner__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) {
  .welcome-banner__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 767.98px) {
  .welcome-banner__title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
}
.welcome-banner__title span {
  color: var(--accent-yellow);
}
.welcome-banner__subtitle {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary-text);
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .welcome-banner__subtitle {
    font-size: 1.125rem;
  }
}
@media (max-width: 767.98px) {
  .welcome-banner__subtitle {
    font-size: 1rem;
  }
}

.benefits-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  justify-items: center;
}
@media (max-width: 767.98px) {
  .benefits-grid {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    gap: 0.5rem;
  }
}
.benefit-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) {
  .benefit-item:hover {
    animation: radiant-glow 1.5s infinite;
    transform: scale(1.05);
  }
}
@media (max-width: 767.98px) {
  .benefit-item {
    text-align: center;
    width: 30%;
    padding: 0.5rem;
    gap: 0.2rem;
  }
}
.benefit-item__icon {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  filter: brightness(1.3);
}
@media (max-width: 767.98px) {
  .benefit-item__icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.benefit-item span {
  font-weight: 600;
  color: var(--primary-text);
}
@media (max-width: 767.98px) {
  .benefit-item span {
    font-size: 0.7rem;
    display: none;
  }
}

.gaming-hub {
  padding: 2rem 0;
}
.gaming-hub__entries {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 1.5rem;
}
.gaming-hub__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) {
  .gaming-hub__entry:hover {
    box-shadow: 0 0 12px var(--shadow-yellow-hover);
    transform: scale(1.02);
  }
}
.gaming-hub__entry:nth-child(even) {
  background: var(--primary-bg);
}
.gaming-hub__entry--highlighted {
  position: relative;
}
.gaming-hub__entry--highlighted::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) {
  .gaming-hub__entry--highlighted::before {
    left: 65px;
  }
}
@media (max-width: 767.98px) {
  .gaming-hub__entry {
    flex-wrap: wrap;
    padding: 0;
  }
  .gaming-hub__entry--highlighted::before {
    top: -17px;
    left: 10px;
    width: 120px;
    height: 28px;
    z-index: 2;
  }
}
.gaming-hub__rank {
  display: block;
  width: 3rem;
  height: 3rem;
  color: var(--primary-text);
  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) {
  .gaming-hub__rank {
    width: 2rem;
    height: 2rem;
  }
}
@media (max-width: 767.98px) {
  .gaming-hub__block--rank {
    display: none;
  }
}
.gaming-hub__payment-options {
  margin-top: 1rem;
}
.gaming-hub__payment-options img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.3);
}
@media (max-width: 767.98px) {
  .gaming-hub {
    padding-top: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .gaming-hub__entry--highlighted .gaming-hub__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;
  }
  .gaming-hub__entry--highlighted .gaming-hub__block--brand::after {
    content: "";
    position: absolute;
    left: -1px;
    right: 0;
    bottom: 0;
    width: calc(100% + 2px);
    height: 1px;
    display: block;
    background: var(--gradient-highlight);
  }
}
.gaming-hub__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) {
  .gaming-hub__block--brand {
    max-width: 200px;
  }
}
@media (max-width: 767.98px) {
  .gaming-hub__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;
  }
  .gaming-hub__block--brand::after {
    content: "";
    position: absolute;
    left: -1px;
    right: 0;
    bottom: 0;
    width: calc(100% + 2px);
    height: 1px;
    display: block;
    background: var(--accent-pink);
  }
}
.gaming-hub__block--offer {
  position: relative;
  max-width: 200px;
  width: 100%;
  flex-shrink: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.gaming-hub__block--offer span:nth-child(2) {
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent-yellow);
  text-shadow: 0 0 8px var(--shadow-yellow);
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .gaming-hub__block--offer span:nth-child(2) {
    font-size: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .gaming-hub__block--offer span:nth-child(2) {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .gaming-hub__block--offer {
    max-width: 130px;
  }
}
@media (max-width: 767.98px) {
  .gaming-hub__block--offer {
    max-width: 50%;
    gap: 0;
  }
}
.gaming-hub__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) {
  .gaming-hub__block--details {
    padding: 0.5rem 1rem;
  }
}
.gaming-hub__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) {
  .gaming-hub__block--details li span {
    font-size: 1rem;
  }
}
@media (max-width: 767.98px) {
  .gaming-hub__block--details li:not(:last-child) {
    margin-bottom: 0.2rem;
  }
  .gaming-hub__block--details li span {
    font-size: 0.8rem;
  }
}
.gaming-hub__block--details img {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
  filter: brightness(1.3);
}
.gaming-hub__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%
  );
}
.gaming-hub__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) {
  .gaming-hub__block--details {
    max-width: 100%;
    padding: 0 1rem;
    margin: 0;
  }
  .gaming-hub__block--details:after {
    display: none;
  }
  .gaming-hub__block--details:before {
    display: none;
  }
}
.gaming-hub__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) {
  .gaming-hub__block--action {
    max-width: 180px;
    padding: 0 0.5rem;
  }
}
@media (max-width: 767.98px) {
  .gaming-hub__block--action {
    max-width: 100%;
    padding: 1rem;
  }
  .gaming-hub__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%
    );
  }
}
.gaming-hub__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;
  }
}
.gaming-hub__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--shadow-cyan-fade) 0%,
    var(--accent-cyan) 50.31%,
    var(--shadow-cyan-fade) 100%
  );
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

th,
td {
  padding: 12px;
  text-align: left;
  border: 1px solid var(--border-text);
}

@media screen and (max-width: 600px) {
  table {
    display: block;
    overflow-x: auto;
  }
  th,
  td {
    font-size: 14px;
    padding: 8px;
  }
  th {
    min-width: 120px;
  }
  td {
    word-wrap: break-word;
  }
}

.content {
  padding: 2rem 0;
}
.content strong {
  color: var(--accent-yellow);
}
.content__main-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .content__main-title {
    font-size: 2.25rem;
  }
}
@media (max-width: 767.98px) {
  .content__main-title {
    font-size: 1.5rem;
  }
}
.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__subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .content__subtitle {
    font-size: 1.125rem;
  }
}
@media (max-width: 767.98px) {
  .content__subtitle {
    font-size: 1rem;
  }
}
.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__table {
  margin-bottom: 1rem;
}
.content__link {
  font-weight: 900;
  color: var(--accent-pink);
  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__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .disclaimer__title {
    font-size: 1.125rem;
  }
}
@media (max-width: 767.98px) {
  .disclaimer__title {
    font-size: 1rem;
  }
}
.disclaimer__text:not(:last-child) {
  margin-bottom: 0.5rem;
}
