*,
*: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: none;
  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: 13px;
  }
}

body {
  color: #ffffff;
  line-height: 1.5;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a1a, #1a1a3a);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: "Orbitron", sans-serif;
  font-weight: 400;
}

img {
  display: block;
  max-width: 100%;
}

.neon-header {
  background: linear-gradient(90deg, #ff007a, #00ddeb);
  padding: 0.75rem 0;
  text-align: center;
  box-shadow: 0 0 15px rgba(255, 0, 122, 0.7);
  animation: neon-pulse 2s infinite;
}

@keyframes neon-pulse {
  0% {
    box-shadow: 0 0 10px rgba(255, 0, 122, 0.7), 0 0 20px rgba(0, 221, 235, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 0, 122, 1), 0 0 30px rgba(0, 221, 235, 0.8);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 0, 122, 0.7), 0 0 20px rgba(0, 221, 235, 0.5);
  }
}

.neon-header__wrap {
  max-width: 80rem;
  width: 100%;
  padding: 0 1.5rem;
  margin: 0 auto;
}

.neon-header__text {
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  text-shadow: 0 0 10px rgba(255, 0, 122, 0.8);
}

.hero-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, #0a0a1a, rgba(0, 221, 235, 0.5)),
    url(../img/bg.webp) no-repeat center / cover;
  animation: bg-glow 10s infinite alternate;
}

@keyframes bg-glow {
  0% {
    filter: brightness(1);
  }
  100% {
    filter: brightness(1.2);
  }
}

.hero-section__wrap,
.game-catalog__wrap,
.info-block__wrap,
.site-base__wrap {
  max-width: 80rem;
  width: 100%;
  padding: 0 1.5rem;
  margin: 0 auto;
}

.hero-section__title {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 3rem;
  font-weight: 900;
  color: #00ddeb;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .hero-section__title {
    font-size: 3rem;
  }
}
@media (max-width: 767.98px) {
  .hero-section {
    padding: 1rem 0;
  }
  .hero-section__title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}

.hero-section__subtitle {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 0, 122, 0.6);
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .hero-section__subtitle {
    font-size: 1.2rem;
  }
}
@media (max-width: 767.98px) {
  .hero-section__subtitle {
    font-size: 1rem;
  }
}

.feature-badges {
  margin: 2.5rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-items: center;
}
@media (max-width: 767.98px) {
  .feature-badges {
    margin: 0.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-around;
  }
}

.feature-badge {
  max-width: 200px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #1a1a3a;
  border-radius: 16px;
  border: 2px solid #ff00ff;
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .feature-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.8);
  }
}
@media (max-width: 767.98px) {
  .feature-badge {
    width: 50px;
    padding: 0.5rem;
    border-radius: 50%;
    height: 50px;
    justify-content: center;
  }
}

.feature-badge__icon {
  width: 2.5rem;
  height: 2.5rem;
}
@media (max-width: 767.98px) {
  .feature-badge__icon {
    width: 1.8rem;
    height: 1.8rem;
  }
}

.feature-badge span {
  font-weight: 600;
  color: #00ffcc;
}
@media (max-width: 767.98px) {
  .feature-badge span {
    display: none;
  }
}

.glow-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 250px;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 1rem;
  background: linear-gradient(90deg, #ff007a, #00ddeb);
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 0, 122, 0.7);
  transition: all 0.3s ease;
  animation: neon-glow 1.8s infinite;
  margin: 2rem auto;
}

@media (max-width: 767.98px) {
  .glow-btn {
    margin: 1rem auto;
  }
}
@media (hover: hover) {
  .glow-btn:hover {
    box-shadow: 0 0 30px rgba(255, 0, 122, 1);
    transform: scale(1.05);
  }
}

@keyframes neon-glow {
  0% {
    box-shadow: 0 0 10px rgba(255, 0, 122, 0.7), 0 0 20px rgba(0, 221, 235, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 0, 122, 1), 0 0 30px rgba(0, 221, 235, 0.8);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 0, 122, 0.7), 0 0 20px rgba(0, 221, 235, 0.5);
  }
}

.game-catalog {
  padding: 3rem 0;
  background: #0a0a1a;
}
@media (max-width: 767.98px) {
  .game-catalog {
    padding: 1rem 0;
  }
}
.game-catalog__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.game-catalog__item {
  width: 100%;
  padding: 1.5rem;
  background: #1a1a3a;
  border-radius: 16px;
  border: 2px solid #00ffcc;
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
  gap: 1rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .game-catalog__item:hover {
    box-shadow: 0 0 30px rgba(0, 255, 204, 0.8);
    transform: scale(1.03);
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .game-catalog__item {
    flex-wrap: wrap;
  }
}
@media (max-width: 767.98px) {
  .game-catalog__item {
    flex-wrap: wrap;
    padding: 1rem;
    gap: 0.5rem;
  }
}

.game-catalog__rank {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #ff007a;
  box-shadow: 0 0 15px rgba(255, 0, 122, 0.7);
}
@media (max-width: 767.98px) {
  .game-catalog__rank {
    display: none;
  }
}

.game-catalog__brand {
  max-width: 220px;
  width: 100%;
  padding: 1rem;
  background: #0a0a1a;
  border: 2px solid #ff00ff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}
@media (max-width: 767.98px) {
  .game-catalog__brand {
    border: none;
    position: relative;
    max-width: 100%;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: none;
  }
}

.game-catalog__logo {
  width: 140px;
  height: 50px;
}

.game-catalog__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.7));
}

.game-catalog__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.game-catalog__rating-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 767.98px) {
  .game-catalog__rating-wrap {
    flex-direction: column;
  }
}

.game-catalog__rating-value {
  font-weight: 700;
  font-size: 1.2rem;
  color: #ff007a;
  text-shadow: 0 0 5px rgba(255, 0, 122, 0.7);
}

.game-catalog__rating-stars {
  width: 70px;
  height: 12px;
  filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.7));
}

.game-catalog__divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 0, 122, 0),
    #ff007a,
    rgba(255, 0, 122, 0)
  );
}

@media (max-width: 767.98px) {
  .game-catalog__divider {
    position: absolute;
    bottom: 5px;
    width: 100%;
  }
}

.game-catalog__promo {
  flex: 1;
  display: flex;
  align-items: center;
}

.game-catalog__promo span {
  min-width: 180px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #00ffcc;
  text-shadow: 0 0 5px rgba(0, 255, 204, 0.7);
}
@media (max-width: 767.98px) {
  .game-catalog__promo span {
    font-size: 0.9rem;
    min-width: auto;
  }
}

.game-catalog__details {
  position: relative;
  max-width: 250px;
  padding: 0 1rem;
}
@media (max-width: 767.98px) {
  .game-catalog__details {
    max-width: 50%;
    padding: 0.5rem;
  }
}

.game-catalog__details li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.game-catalog__details img {
  width: 1.2rem;
  height: 1.2rem;
}

.game-catalog__details::before,
.game-catalog__details::after {
  content: "";
  position: absolute;
  top: 0;
  width: 2px;
  height: 150px;
  background: linear-gradient(
    180deg,
    rgba(0, 255, 204, 0),
    #00ffcc,
    rgba(0, 255, 204, 0)
  );
}
.game-catalog__details::before {
  left: 0;
}
.game-catalog__details::after {
  right: 0;
}
@media (max-width: 767.98px) {
  .game-catalog__details::before {
    top: 0;
    height: 100%;
  }
  .game-catalog__details::after {
    display: none;
  }
}

.game-catalog__action {
  max-width: 300px;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .game-catalog__action {
    max-width: 100%;
    padding: 0;
  }
}

.game-catalog__payment-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0.5rem;
}

.info-block {
  padding: 3rem 0;
  background: #0a0a1a;
}

.info-block__title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: #ff00ff;
  text-shadow: 0 0 15px rgba(255, 0, 255, 0.8);
}
@media (max-width: 767.98px) {
  .info-block__title {
    font-size: 1.5rem;
  }
}

.info-block__subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #00ddeb;
  text-shadow: 0 0 10px rgba(0, 221, 235, 0.7);
}
@media (max-width: 767.98px) {
  .info-block__subtitle {
    font-size: 1.2rem;
  }
}

.info-block__text {
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.info-block__list {
  margin-bottom: 1.5rem;
  list-style: disc;
  padding-left: 20px;
}

.info-block__list li {
  margin-bottom: 0.75rem;
  color: #00ffcc;
  text-shadow: 0 0 5px rgba(0, 255, 204, 0.5);
}

.info-block__list li::marker {
  color: #ff007a;
}

.site-base {
  padding: 3rem 0;
  border-top: 5px solid #ff00ff;
  background: #0a0a1a;
}

.site-base__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.site-base__nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-base__nav-item {
  color: #00ddeb;
  font-weight: 600;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .site-base__nav-item:hover {
    color: #ff007a;
    text-shadow: 0 0 10px rgba(255, 0, 122, 0.7);
  }
}

.site-base__disclaimer {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  color: #ffffff;
}

.site-base__badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-base__badge {
  padding: 0.75rem;
  border-radius: 16px;
}

.site-base__badge:nth-child(1) {
  width: 120px;
  height: 120px;
}
.site-base__badge:nth-child(2),
.site-base__badge:nth-child(3),
.site-base__badge:nth-child(4),
.site-base__badge:nth-child(5) {
  width: 160px;
  height: 80px;
  border: 2px solid #00ffcc;
  background: #00ddeb;
}
.site-base__badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cookie-notice {
  background: linear-gradient(90deg, #ff007a, #00ddeb);
  padding: 1rem;
  box-shadow: 0 0 15px rgba(255, 0, 122, 0.7);
}

.cookie-notice__wrap {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-notice__text {
  color: #fff;
  font-weight: 600;
}

.cookie-notice__link {
  color: #00ffcc;
  font-weight: 700;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .cookie-notice__link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.7);
  }
}

.cookie-notice__buttons {
  display: flex;
  gap: 1rem;
}

.cookie-notice__button {
  padding: 0.75rem 1.5rem;
  background: #1a1a3a;
  color: #00ffcc;
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid #ff00ff;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .cookie-notice__button:hover {
    background: #ff007a;
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 0, 122, 0.7);
  }
}
