@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
}

* {
  scroll-behavior: smooth;
  line-height: 1.3;
}

body {
  background-color: #0d0d0d;
  color: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.wrapper {
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 15, 15, 0.95);
  border-bottom: 1px solid #222;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
}

/* ---------- Logo ---------- */
.header__logo {
  font-size: 1.7rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.header__logo span {
  color: #00bfff;
}

.header__logo:hover {
  color: #00bfff;
}

/* ---------- Navigation ---------- */
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  list-style: none;
}

.header__link {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.header__link:hover {
  color: #00bfff;
}

/* ---------- Buy Button ---------- */
.header__buy-btn {
  background-color: #00bfff;
  color: #000;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.header__buy-btn:hover {
  background-color: #33ccff;
}

/* ---------- Mobile Menu Toggle ---------- */
.header__mobile-toggle {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
}

.header__mobile-toggle span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* ---------- Overlay (фон при открытии меню) ---------- */
.header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.header__overlay.active {
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    background: #111;
    z-index: 1000;
    text-align: center;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: -webkit-transform 0.35s ease-in-out;
    transition: -webkit-transform 0.35s ease-in-out;
    transition: transform 0.35s ease-in-out;
    transition: transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
  }
  .header__nav.active {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    padding: 30px 0;
  }
  .header__mobile-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  /* Анимация бургера → крестик */
  .header__mobile-toggle.active span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(5px, 5px);
            transform: rotate(45deg) translate(5px, 5px);
  }
  .header__mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .header__mobile-toggle.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(5px, -5px);
            transform: rotate(-45deg) translate(5px, -5px);
  }
}
/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url("..//img/bg.jpg") center/cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, rgba(0, 0, 0, 0.6)), to(#0d0d0d));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 30%, #0d0d0d 100%);
  z-index: 0;
}

.hero__container {
  position: relative;
  z-index: 1;
  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;
  padding-top: 100px;
  padding-bottom: 100px;
}

.hero__content {
  -webkit-animation: fadeInUp 1s ease forwards;
          animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.hero__title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
}

.hero__subtitle {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero__btn {
  display: inline-block;
  background-color: #00bfff;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hero__btn:hover {
  background-color: #33ccff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

/* ---------- Animations ---------- */
@-webkit-keyframes fadeInUp {
  from {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .hero__title {
    font-size: 2rem;
  }
  .hero__subtitle {
    font-size: 1.1rem;
  }
  .hero {
    background-attachment: scroll;
  }
}
/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translate(-50%, 40px);
          transform: translate(-50%, 40px); /* стартовая позиция для анимации */
  background-color: rgba(25, 25, 25, 0.97);
  border: 1px solid #222;
  padding: 20px 28px;
  border-radius: 12px;
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  max-width: 600px;
  width: 95%;
  z-index: 2000;
  font-size: 1rem;
  color: #e0e0e0;
  opacity: 0;
  pointer-events: none; /* по умолчанию клики блокируются */
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.cookie-banner.active {
  opacity: 1;
  pointer-events: all; /* клики разрешены */
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0); /* плавное появление */
}

.cookie-banner.hide {
  opacity: 0;
  -webkit-transform: translate(-50%, 40px);
          transform: translate(-50%, 40px); /* плавное исчезновение */
  pointer-events: none;
}

.cookie-banner__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 10px;
}

.cookie-banner__link {
  color: #00bfff;
  text-decoration: underline;
  font-weight: 500;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.cookie-banner__link:hover {
  color: #33ccff;
  text-shadow: 0 0 6px rgba(0, 191, 255, 0.5);
}

/* ---------- Button ---------- */
.cookie-banner__btn {
  background-color: #00bfff;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
          box-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
}

.cookie-banner__btn:hover {
  background-color: #33ccff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 0 25px rgba(0, 191, 255, 0.6);
          box-shadow: 0 0 25px rgba(0, 191, 255, 0.6);
}

/* ---------- Animation ---------- */
@-webkit-keyframes fadeInUpBanner {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, 40px);
            transform: translate(-50%, 40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
@keyframes fadeInUpBanner {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, 40px);
            transform: translate(-50%, 40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
/* ---------- Responsive ---------- */
@media (max-width: 480px) {
  .cookie-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    font-size: 0.95rem;
  }
  .cookie-banner__btn {
    width: 100%;
    text-align: center;
  }
}
/* ---------- Featured Games ---------- */
.featured-games {
  padding: 100px 0;
  background-color: #0d0d0d;
  color: #fff;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: -webkit-gradient(linear, left top, right top, from(#00bfff), to(#0077ff));
  background: linear-gradient(90deg, #00bfff, #0077ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 50px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* ---------- Card ---------- */
.game-card {
  background-color: #111;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}

.game-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 30px rgba(0, 191, 255, 0.4);
          box-shadow: 0 8px 30px rgba(0, 191, 255, 0.4);
}

.game-card__img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
}

.game-card__content {
  padding: 16px;
}

.game-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.game-card__desc {
  font-size: 0.95rem;
  color: #aaa;
  margin-bottom: 16px;
  line-height: 1.4;
}

.game-card__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.game-card__price {
  font-weight: 700;
  color: #00bfff;
}

.game-card__buy-btn {
  background-color: #00bfff;
  color: #000;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
          box-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
}

.game-card__buy-btn:hover {
  background-color: #33ccff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 0 25px rgba(0, 191, 255, 0.6);
          box-shadow: 0 0 25px rgba(0, 191, 255, 0.6);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .game-card__img {
    height: 140px;
  }
}
/* ---------- Modal Overlay ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 3000;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
  padding: 0 10px;
}

/* ---------- Modal Content ---------- */
.modal-content {
  background-color: #111;
  padding: 30px 28px;
  border-radius: 12px;
  width: 100%;
  max-width: 450px;
  -webkit-box-shadow: 0 8px 30px rgba(0, 191, 255, 0.4);
          box-shadow: 0 8px 30px rgba(0, 191, 255, 0.4);
  position: relative;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ---------- Close Button ---------- */
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #ccc;
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.modal-close:hover {
  color: #00bfff;
}

/* ---------- Title & Subtitle ---------- */
.modal-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  background: -webkit-gradient(linear, left top, right top, from(#00bfff), to(#0077ff));
  background: linear-gradient(90deg, #00bfff, #0077ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-subtitle {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 20px;
}

/* ---------- Form ---------- */
.modal-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}

.modal-form label {
  font-size: 0.9rem;
  color: #aaa;
}

.modal-form input,
.modal-form select {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #222;
  background-color: #1a1a1a;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
}

.privacy-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 16px;
}

.privacy-checkbox input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: #00bfff;
  cursor: pointer;
}

.privacy-checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  cursor: pointer;
}

.privacy-checkbox a {
  color: #00bfff;
  text-decoration: underline;
  margin-left: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.privacy-checkbox a:hover {
  color: #33ccff;
  text-shadow: 0 0 6px rgba(0, 191, 255, 0.5);
}

.modal-form input:focus,
.modal-form select:focus {
  border-color: #00bfff;
  -webkit-box-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
          box-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
}

/* ---------- Submit Button ---------- */
.modal-submit {
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  background-color: #00bfff;
  color: #000;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
          box-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
}

.modal-submit:hover {
  background-color: #33ccff;
  -webkit-box-shadow: 0 0 25px rgba(0, 191, 255, 0.6);
          box-shadow: 0 0 25px rgba(0, 191, 255, 0.6);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.why-us {
  padding: 100px 0;
  background-color: #0d0d0d;
  color: #fff;
  text-align: center;
}

.why-us .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: -webkit-gradient(linear, left top, right top, from(#00bfff), to(#0077ff));
  background: linear-gradient(90deg, #00bfff, #0077ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-us .section-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 60px;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 30px;
}

.why-us-card {
  background-color: #111;
  padding: 30px 20px;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 191, 255, 0.2);
          box-shadow: 0 4px 20px rgba(0, 191, 255, 0.2);
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}

.why-us-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 30px rgba(0, 191, 255, 0.4);
          box-shadow: 0 8px 30px rgba(0, 191, 255, 0.4);
}

.why-us-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.why-us-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-us-desc {
  font-size: 1.2rem;
  color: #aaa;
  line-height: 1.5;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .why-us .section-title {
    font-size: 2rem;
  }
  .why-us .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }
  .why-us-card {
    padding: 20px 16px;
  }
}
.testimonials {
  padding: 100px 0;
  background-color: #0a0a0a;
  color: #fff;
  text-align: center;
}

.testimonials .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: -webkit-gradient(linear, left top, right top, from(#00bfff), to(#0077ff));
  background: linear-gradient(90deg, #00bfff, #0077ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonials .section-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: #111;
  padding: 30px 20px;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 191, 255, 0.2);
          box-shadow: 0 4px 20px rgba(0, 191, 255, 0.2);
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}

.testimonial-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 30px rgba(0, 191, 255, 0.4);
          box-shadow: 0 8px 30px rgba(0, 191, 255, 0.4);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.testimonial-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.testimonial-stars {
  color: #ffd700;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.5;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .testimonials .section-title {
    font-size: 2rem;
  }
  .testimonials .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }
  .testimonial-card {
    padding: 20px 16px;
  }
}
.footer {
  background-color: #0d0d0d;
  color: #ccc;
  padding: 30px 0;
  font-size: 1rem;
}

.footer__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer__logo {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.footer__desc {
  margin-top: 10px;
  line-height: 1.6;
  color: #aaa;
}

.footer__links h4,
.footer__contact h4,
.footer__payments h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 12px;
}

.footer__links ul {
  list-style: none;
  padding: 0;
}

.footer__links ul li {
  margin-bottom: 8px;
}

.footer__links ul li a {
  color: #ccc;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.footer__links ul li a:hover {
  color: #00bfff;
}

.footer__contact p a {
  color: #00bfff;
  text-decoration: none;
}

.footer__socials a {
  font-size: 1.4rem;
  margin-right: 10px;
  color: #ccc;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.footer__socials a:hover {
  color: #00bfff;
}

.footer__payments-logos img {
  margin-right: 12px;
  width: auto;
  height: 40px;
  margin-top: 8px;
}

.footer__bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #222;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 480px) {
  .footer__container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* ---------- Highlight Games Section ---------- */
.highlight-games {
  padding: 80px 0;
  background-color: #0d0d0d;
  color: #fff;
}

.highlight-games .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}

.highlight-games .section-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  text-align: center;
  margin-bottom: 50px;
}

.highlight-game {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.highlight-game.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.highlight-game__img {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 400px;
          flex: 1 1 400px;
}

.highlight-game__img img {
  width: 100%;
  border-radius: 12px;
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.highlight-game__img img:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
  -webkit-box-shadow: 0 12px 35px rgba(0, 191, 255, 0.5);
          box-shadow: 0 12px 35px rgba(0, 191, 255, 0.5);
}

.highlight-game__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 500px;
          flex: 1 1 500px;
  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;
}

.highlight-game__content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00bfff;
}

.highlight-game__content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
}

.highlight-game__price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #00bfff;
  margin-top: 10px;
}

.highlight-game__buy-btn {
  background-color: #00bfff;
  color: #000;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.highlight-game__buy-btn:hover {
  background-color: #33ccff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 0 25px rgba(0, 191, 255, 0.6);
          box-shadow: 0 0 25px rgba(0, 191, 255, 0.6);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .highlight-game {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .highlight-game.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .highlight-game__img,
  .highlight-game__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  .highlight-game__content h3 {
    font-size: 1.5rem;
  }
}
/* ---------- News Section ---------- */
.news-section {
  padding: 80px 0;
  background-color: #0d0d0d;
  color: #fff;
}

.news-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #00bfff;
  margin-bottom: 15px;
}

.news-section .section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: #ccc;
  margin-bottom: 60px;
  line-height: 1.6;
}

/* ---------- News Cards ---------- */
.news-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.news-card.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.news-card__img {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 400px;
          flex: 1 1 400px;
}

.news-card__img img {
  width: 100%;
  border-radius: 12px;
  -webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
          box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.news-card__img img:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
  -webkit-box-shadow: 0 16px 40px rgba(0, 191, 255, 0.5);
          box-shadow: 0 16px 40px rgba(0, 191, 255, 0.5);
}

.news-card__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 500px;
          flex: 1 1 500px;
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.news-card__content h3 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #00bfff;
  margin-bottom: 10px;
}

.news-card__date {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 20px;
}

.news-card__content p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.7;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .news-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .news-card.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .news-card__img,
  .news-card__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .news-section {
    padding: 50px 0px;
  }
  .news-card__content h3 {
    font-size: 1.5rem;
  }
  .news-card__content p {
    font-size: 0.95rem;
  }
  .news-section .section-title {
    font-size: 2rem;
  }
  .news-section .section-subtitle {
    font-size: 1rem;
  }
}
/* ---------- Contact Section ---------- */
.contact-section {
  padding: 80px 0;
  background-color: #0d0d0d;
  color: #fff;
}

.contact-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #00bfff;
  margin-bottom: 15px;
}

.contact-section p,
.contact-section .contact-subtitle {
  font-size: 1rem;
  text-align: center;
  color: #ccc;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* ---------- Form Wrapper ---------- */
.contact-section__form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background-color: rgba(15, 15, 15, 0.95);
  padding: 40px 30px;
  border-radius: 12px;
  -webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
          box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

/* ---------- Form Fields ---------- */
.contact-form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 20px;
}

.contact-form__group label {
  margin-bottom: 8px;
  font-weight: 500;
  color: #ccc;
}

.contact-form__group input,
.contact-form__group textarea {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 12px 15px;
  color: #fff;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact-form__group input:focus,
.contact-form__group textarea:focus {
  border-color: #00bfff;
  outline: none;
  -webkit-box-shadow: 0 0 10px rgba(0, 191, 255, 0.4);
          box-shadow: 0 0 10px rgba(0, 191, 255, 0.4);
}

.contact-form__group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ---------- Checkbox ---------- */
.contact-form__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
  font-size: 0.95rem;
  color: #ccc;
}

.contact-form__checkbox input[type=checkbox] {
  margin-right: 10px;
  width: 18px;
  height: 18px;
  accent-color: #00bfff;
}

/* ---------- Submit Button ---------- */
.contact-form__submit {
  width: 100%;
  background-color: #00bfff;
  color: #000;
  border: none;
  padding: 15px 0;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
          box-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
}

.contact-form__submit:hover {
  background-color: #33ccff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 0 25px rgba(0, 191, 255, 0.6);
          box-shadow: 0 0 25px rgba(0, 191, 255, 0.6);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .contact-section__form-wrapper {
    padding: 30px 0px;
  }
  .contact-form__submit {
    padding: 12px 0;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .contact-section {
    padding: 50px 15px;
  }
  .contact-section__title {
    font-size: 2rem;
  }
  .contact-form__group input,
  .contact-form__group textarea {
    font-size: 0.95rem;
    padding: 10px 12px;
  }
}
/* ---------- FAQ Section ---------- */
.faq-section {
  padding: 80px 0;
  background-color: #0d0d0d;
  color: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #00bfff;
  text-align: center;
}

.faq-subtitle {
  font-size: 1.2rem;
  margin-bottom: 50px;
  text-align: center;
  color: #ccc;
}

/* ---------- FAQ Items ---------- */
.faq-item {
  background: rgba(15, 15, 15, 0.9);
  border: 1px solid #222;
  border-radius: 12px;
  padding: 25px 30px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.faq-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 12px 35px rgba(0, 191, 255, 0.5);
          box-shadow: 0 12px 35px rgba(0, 191, 255, 0.5);
}

.faq-question {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #00bfff;
}

.faq-answer {
  font-size: 1rem;
  line-height: 1.8;
  color: #e0e0e0;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .faq-title {
    font-size: 2rem;
  }
  .faq-subtitle {
    font-size: 1rem;
  }
  .faq-item {
    padding: 20px;
  }
  .faq-question {
    font-size: 1.2rem;
  }
  .faq-answer {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .faq-title {
    font-size: 1.8rem;
  }
  .faq-subtitle {
    font-size: 0.95rem;
  }
  .faq-item {
    padding: 18px;
  }
  .faq-question {
    font-size: 1.1rem;
  }
  .faq-answer {
    font-size: 0.9rem;
  }
}
.privacy-policy-section,
.terms-section,
.disclaimer-section {
  background-color: #0d0d0d;
  color: #e0e0e0;
  padding: 80px 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.privacy-policy-section h1,
.terms-section h1,
.disclaimer-section h1 {
  font-size: 2rem;
  color: #00bfff;
  margin-bottom: 20px;
  text-align: center;
}

.privacy-policy-section .section-subtitle,
.terms-section .section-subtitle,
.disclaimer-section .section-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  text-align: center;
}

.privacy-content,
.terms-content,
.disclaimer-content {
  max-width: 1000px;
  margin: 0 auto;
}

.privacy-content h3,
.terms-content h3,
.disclaimer-content h3 {
  font-size: 1.4rem;
  color: #00bfff;
  margin-top: 30px;
  margin-bottom: 10px;
}

.privacy-content p,
.terms-content p,
.disclaimer-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 15px;
}

.privacy-content a,
.terms-content a,
.disclaimer-content a {
  color: #00bfff;
  text-decoration: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.privacy-content a:hover,
.terms-content a:hover,
.disclaimer-content a:hover {
  color: #33ccff;
}

@media (max-width: 768px) {
  .privacy-policy-section,
  .terms-section,
  .disclaimer-section {
    padding: 50px 0px;
  }
  .privacy-policy-section h2,
  .terms-section h2,
  .disclaimer-section h2 {
    font-size: 1.7rem;
  }
  .privacy-content h3,
  .terms-content h3,
  .disclaimer-content h3 {
    font-size: 1.2rem;
  }
}
/* ---------- Thanks Section ---------- */
.thanks-section {
  background-color: #0d0d0d;
  color: #fff;
  padding: 80px 0px;
  text-align: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.thanks-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #00bfff;
  -webkit-animation: fadeInUp 0.6s ease forwards;
          animation: fadeInUp 0.6s ease forwards;
}

.thanks-section .section-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.7;
  -webkit-animation: fadeInUp 0.8s ease forwards;
          animation: fadeInUp 0.8s ease forwards;
}

.thanks-section .thanks-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.7;
  color: #e0e0e0;
  font-size: 1rem;
}

.thanks-section .thanks-content p {
  margin-bottom: 20px;
}

.thanks-section .thanks-content a {
  color: #00bfff;
  text-decoration: underline;
  font-weight: 500;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.thanks-section .thanks-content a:hover {
  color: #33ccff;
  text-shadow: 0 0 6px rgba(0, 191, 255, 0.5);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .thanks-section .section-title {
    font-size: 2rem;
  }
  .thanks-section .section-subtitle {
    font-size: 1.1rem;
    padding: 0 10px;
  }
  .thanks-section .thanks-content {
    padding: 0 10px;
  }
}
@media (max-width: 480px) {
  .thanks-section .section-title {
    font-size: 1.7rem;
  }
  .thanks-section .section-subtitle {
    font-size: 1rem;
  }
  .thanks-section .thanks-content {
    font-size: 0.95rem;
  }
}