@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;
}

:root {
  /* 🎨 Основные цвета */
  --color-bg: #111118; /* главный фон */
  --color-bg-alt: #1c1c26; /* второстепенный фон (карточки, блоки) */
  --color-primary: #00ffc8; /* основной акцент (яркий бирюзовый) */
  --color-accent: #3e9cdc; /* дополнительный акцент (неоновый синий) */
  --color-hover: #00e6b5; /* ховер для кнопок и ссылок */
  --color-border: rgba(255, 255, 255, 0.15); /* чуть ярче для границ */
  --color-shadow: rgba(0, 255, 200, 0.4); /* тень для карточек */
  /* ⚪ Текст */
  --color-text: #f5f5f5;
  --color-text-muted: #c1c1c8;
  --color-link: #00ffc8;
  /* 🌫 Эффекты */
  --blur-bg: rgba(30, 30, 40, 0.85);
  --glass-border: rgba(255, 255, 255, 0.08);
  /* 🧩 Градиенты */
  --gradient-primary: linear-gradient(90deg, #00ffc8 0%, #3e9cdc 100%);
  --gradient-hover: linear-gradient(90deg, #3e9cdc 0%, #00ffc8 100%);
  /* 🔠 Шрифты */
  --font-main: "Poppins", sans-serif;
  --font-title: "Orbitron", sans-serif;
  /* 📏 Размеры и сетка */
  --container-width: 1280px;
  --container-padding: 20px;
  --radius: 10px;
  --transition: all 0.3s ease;
  /* 🧍 Тени и свечения */
  --glow-primary: 0 0 18px rgba(0, 255, 200, 0.8);
  --glow-accent: 0 0 18px rgba(62, 156, 220, 0.8);
  /* ⚙️ z-index */
  --z-header: 1000;
  --z-overlay: 900;
  --z-modal: 1100;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 10px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 15, 20, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  z-index: var(--z-header);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.header__inner {
  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;
  padding: 20px 10px;
}
.header__logo {
  font-family: var(--font-title);
  font-size: 24px;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: 1px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.header__logo span {
  color: var(--color-primary);
}
.header__logo strong {
  color: var(--color-accent);
}
.header__logo:hover {
  text-shadow: var(--glow-primary);
}
@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    height: 100vh;
    background: var(--color-bg-alt);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    padding: 100px 20px;
    z-index: var(--z-overlay);
  }
  .header__nav.is-active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
@media (max-width: 768px) {
  .header__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.header__link {
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.5px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.header__link:hover {
  color: var(--color-accent);
  text-shadow: var(--glow-accent);
}
.header__link--active {
  color: var(--color-primary);
}
.header__burger {
  display: none;
  -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;
  width: 26px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: var(--z-modal);
}
@media (max-width: 768px) {
  .header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__burger-line {
  width: 100%;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header__burger.is-active .header__burger-line:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(6px, 6px);
          transform: rotate(45deg) translate(6px, 6px);
}
.header__burger.is-active .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header__burger.is-active .header__burger-line:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(5px, -5px);
          transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  background-color: var(--color-bg);
  color: var(--color-text);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.hero__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
@media (max-width: 1024px) {
  .hero__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    text-align: center;
    gap: 20px;
  }
}
.hero__content {
  max-width: 550px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media (max-width: 1024px) {
  .hero__content {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .hero__content {
    gap: 20px;
  }
}
.hero__title {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 5vw, 33px);
  line-height: 1.2;
  color: #43abf0;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, right top, from(#43abf0), to(#3e9cdc));
  background: linear-gradient(90deg, #43abf0, #3e9cdc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__subtitle {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 3vw, 18px);
  line-height: 1.4;
  color: #c3c3c3;
}
.hero__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .hero__buttons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.hero__button {
  display: inline-block;
  padding: 12px 40px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 6px;
  border: 2px solid #43abf0;
  background-color: #43abf0;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.hero__button:hover {
  background-color: transparent;
  color: #43abf0;
}
@media (max-width: 478px) {
  .hero__button {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
}
.hero__button.button--white {
  background-color: #fff;
  color: #1a1a1a;
  border: 2px solid #fff;
}
.hero__button.button--white:hover {
  background-color: transparent;
  color: #fff;
}
.hero__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 550px;
  width: 100%;
}
.hero__image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.games-section {
  padding: 60px 0;
  background-color: var(--color-bg-alt);
}
.games-section__title {
  font-family: var(--font-title);
  font-size: clamp(20px, 5vw, 33px);
  color: var(--color-text);
  text-align: center;
  margin-bottom: 12px;
}
.games-section__text {
  font-family: var(--font-main);
  font-size: clamp(14px, 2.5vw, 17px);
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 40px;
}
.games-section__platform-title {
  font-family: var(--font-title);
  font-size: clamp(18px, 3vw, 28px);
  color: var(--color-primary);
  margin: 40px 0 20px;
  text-align: left;
}
.games-section__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.games-section__item {
  background: var(--color-bg);
  border: 2px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-box-shadow: 0 0 15px rgba(62, 156, 220, 0.2);
          box-shadow: 0 0 15px rgba(62, 156, 220, 0.2);
  position: relative;
}
.games-section__item:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -o-border-image: linear-gradient(45deg, #3e9cdc, #00ffc8) 1;
     border-image: linear-gradient(45deg, #3e9cdc, #00ffc8) 1;
  border-style: solid;
  border-width: 2px;
  -webkit-box-shadow: 0 0 25px rgba(62, 156, 220, 0.6);
          box-shadow: 0 0 25px rgba(62, 156, 220, 0.6);
}
.games-section__item img {
  width: 100%;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.games-section__item-info {
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  text-align: center;
  color: var(--color-text);
}
.games-section__item-info-btn {
  display: none;
}
.games-section__item-title {
  font-size: clamp(16px, 3vw, 22px);
  font-weight: 600;
  color: var(--color-primary);
}
.games-section__item-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
  font-size: 12px;
  color: var(--color-text-muted);
}
.games-section__item-rating {
  font-size: 13px;
  color: var(--color-primary);
  margin-top: 4px;
}
@media (max-width: 768px) {
  .games-section {
    padding: 40px 0;
  }
  .games-section__list {
    gap: 16px;
  }
  .games-section__item img {
    height: 120px;
  }
}

.news-section {
  padding: 60px 0;
  background-color: var(--color-bg);
}
.news-section__title {
  font-family: var(--font-title);
  font-size: clamp(20px, 5vw, 33px);
  color: var(--color-text);
  text-align: center;
  margin-bottom: 12px;
}
.news-section__text {
  font-family: var(--font-main);
  font-size: clamp(12px, 2.5vw, 16px);
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 40px;
}
.news-section__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.news-section__item {
  background-color: var(--color-bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-box-shadow: 0 0 15px rgba(62, 156, 220, 0.2);
          box-shadow: 0 0 15px rgba(62, 156, 220, 0.2);
}
.news-section__item:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-box-shadow: 0 0 25px rgba(62, 156, 220, 0.6);
          box-shadow: 0 0 25px rgba(62, 156, 220, 0.6);
}
.news-section__item img {
  width: 100%;
  max-width: 400px;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--color-border);
}
.news-section__item-info {
  width: 100%;
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
.news-section__item-category {
  font-size: 11px;
  color: var(--color-accent);
  text-transform: uppercase;
}
.news-section__item-title {
  font-size: clamp(16px, 3vw, 20px);
  color: var(--color-text);
  font-weight: 600;
}
.news-section__item-text {
  font-size: 14px;
  color: var(--color-text-muted);
}
.news-section__item-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 13px;
  color: var(--color-text-muted);
}
@media (max-width: 768px) {
  .news-section {
    padding: 40px 0;
  }
  .news-section__list {
    gap: 16px;
  }
  .news-section__item img {
    height: 120px;
  }
}

.achievements-section {
  padding: 60px 0;
  background-color: var(--color-bg-alt);
  text-align: center;
}
.achievements-section__title {
  font-family: var(--font-title);
  font-size: clamp(20px, 5vw, 33px);
  color: #00ffc8;
  margin-bottom: 12px;
}
.achievements-section__text {
  font-family: var(--font-main);
  font-size: clamp(12px, 2.5vw, 16px);
  color: #ffffff;
  margin-bottom: 50px;
}
.achievements-section__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.achievements-section__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 180px;
          flex: 1 1 180px;
  background-color: #1c1c26;
  border-radius: var(--radius);
  padding: 30px 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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 0 15px #00ffc8;
          box-shadow: 0 0 15px #00ffc8;
  -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;
}
.achievements-section__item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.achievements-section__icon {
  font-size: 36px;
  margin-bottom: 10px;
  color: #00ffc8;
  text-shadow: 0 0 15px #00ffc8;
}
.achievements-section__number {
  font-family: var(--font-title);
  font-size: clamp(24px, 5vw, 40px);
  color: #ffffff;
  margin-bottom: 6px;
}
.achievements-section__label {
  font-family: var(--font-main);
  font-size: clamp(12px, 2.5vw, 16px);
  color: #f1f1f1;
  margin-bottom: 12px;
}
.achievements-section__bar {
  width: 100%;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}
.achievements-section__progress {
  height: 100%;
  width: 0;
  background: -webkit-gradient(linear, left top, right top, from(#00ffc8), to(#3e9cdc));
  background: linear-gradient(90deg, #00ffc8, #3e9cdc);
  border-radius: 4px;
  -webkit-transition: width 2s ease;
  transition: width 2s ease;
}
@media (max-width: 768px) {
  .achievements-section {
    padding: 40px 0;
  }
  .achievements-section__list {
    gap: 16px;
  }
}

.news-detail-section {
  padding: 60px 0;
  background-color: #22222e;
}
.news-detail-section__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 1024px) {
  .news-detail-section__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.news-detail-section__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.news-detail-section__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  -webkit-box-shadow: var(--glow-primary);
          box-shadow: var(--glow-primary);
}
.news-detail-section__content {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  color: var(--color-text);
}
.news-detail-section__title {
  font-family: var(--font-title);
  font-size: clamp(22px, 4vw, 30px);
  color: var(--color-primary);
}
.news-detail-section__meta {
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}
.news-detail-section__text {
  font-family: var(--font-main);
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 1.6;
  color: var(--color-text);
}
.news-detail-section__rating {
  font-family: var(--font-main);
  font-size: 16px;
  color: var(--color-accent);
  margin-top: 10px;
}
@media (max-width: 768px) {
  .news-detail-section {
    padding: 40px 0;
  }
}

.game-news-section {
  padding: 60px 0;
  background-color: var(--color-bg-alt);
}
.game-news-section__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 768px) {
  .game-news-section__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.game-news-section__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: var(--color-text);
}
.game-news-section__title {
  font-family: var(--font-title);
  font-size: clamp(20px, 4vw, 30px);
  color: var(--color-primary);
  margin-bottom: 12px;
}
.game-news-section__meta {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}
.game-news-section__text {
  font-family: var(--font-main);
  font-size: clamp(12px, 2.5vw, 16px);
  margin-bottom: 16px;
  line-height: 1.6;
}
.game-news-section__rating {
  font-size: 14px;
  color: var(--color-accent);
  margin-top: 10px;
}
.game-news-section__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.game-news-section__image img {
  width: 100%;
  border-radius: var(--radius);
  -webkit-box-shadow: var(--glow-primary);
          box-shadow: var(--glow-primary);
}

.footer {
  background-color: var(--color-bg);
  padding: 40px 0;
  color: var(--color-text);
}
.footer__inner {
  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;
  gap: 80px;
  position: relative;
}
.footer__inner > * {
  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;
  position: relative;
}
.footer__inner > *:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: var(--color-border);
}
@media (max-width: 768px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .footer__inner > *:not(:last-child)::after {
    display: none;
  }
}
.footer__copy {
  font-size: 13px;
  color: var(--color-text-muted);
}
.footer__payments-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__payments-item a {
  font-size: 13px;
  color: var(--color-text);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: var(--radius);
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
}
.footer__payments-item a:hover {
  background-color: var(--color-bg-alt);
  color: var(--color-primary);
}
.footer__social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer__social-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text);
  text-decoration: none;
  padding: 4px 6px;
  border-radius: var(--radius);
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
}
.footer__social-item a img {
  width: 20px;
  height: 20px;
}
.footer__social-item a:hover {
  background-color: var(--color-bg-alt);
  color: var(--color-primary);
}

.featured-games {
  padding: 60px 0;
  background-color: var(--color-bg-alt);
  text-align: center;
}
.featured-games__title {
  font-family: var(--font-title);
  font-size: clamp(20px, 5vw, 33px);
  color: var(--color-primary);
  margin-bottom: 12px;
}
.featured-games__text {
  font-family: var(--font-main);
  font-size: clamp(12px, 2.5vw, 16px);
  color: var(--color-text-muted);
  margin-bottom: 40px;
}
.featured-games__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.featured-games__list .featured-games__item {
  background-color: var(--color-bg);
  border-radius: var(--radius);
  overflow: hidden;
  -webkit-box-shadow: var(--glow-primary);
          box-shadow: var(--glow-primary);
  -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;
  cursor: pointer;
}
.featured-games__list .featured-games__item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: var(--glow-accent);
          box-shadow: var(--glow-accent);
}
.featured-games__list .featured-games__item img {
  width: 100%;
  height: 155px;
  display: block;
  border-bottom: 1px solid var(--color-border);
}
.featured-games__list .featured-games__item .featured-games__info {
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  color: var(--color-text);
}
.featured-games__list .featured-games__item .featured-games__info .featured-games__name {
  font-family: var(--font-title);
  font-size: clamp(16px, 3vw, 22px);
  font-weight: 600;
}
.featured-games__list .featured-games__item .featured-games__info .featured-games__platform,
.featured-games__list .featured-games__item .featured-games__info .featured-games__genre,
.featured-games__list .featured-games__item .featured-games__info .featured-games__date {
  font-size: 14px;
  color: var(--color-text-muted);
}
.featured-games__list .featured-games__item .featured-games__info .featured-games__rating {
  font-size: 13px;
  color: var(--color-primary);
}
@media (max-width: 768px) {
  .featured-games {
    padding: 40px 0;
  }
  .featured-games__list {
    gap: 16px;
  }
}

.game-news {
  padding: 60px 0;
  background-color: #151518; /* второстепенный фон */
  text-align: center;
}

.game-news__title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(20px, 5vw, 33px);
  color: #3e9cdc; /* основной акцент */
  margin-bottom: 12px;
}

.game-news__text {
  font-family: "Poppins", sans-serif;
  font-size: clamp(12px, 2.5vw, 16px);
  color: #a0a0a5; /* приглушенный текст */
  margin-bottom: 40px;
}

.game-news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.game-news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

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

.game-news__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.game-news__image img {
  width: 100%;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 15px rgba(62, 156, 220, 0.6);
          box-shadow: 0 0 15px rgba(62, 156, 220, 0.6);
}

.game-news__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: left;
  color: #f1f1f1;
}

.game-news__headline {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(18px, 3vw, 28px);
  color: #3e9cdc;
  margin-bottom: 10px;
}

.game-news__description {
  font-family: "Poppins", sans-serif;
  font-size: clamp(14px, 2.5vw, 16px);
  color: #a0a0a5;
  margin-bottom: 16px;
}

.game-news__button {
  font-size: 12px;
  padding: 6px 16px;
  border-radius: 8px;
  background-color: #3e9cdc;
  color: #0e0e10;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.game-news__button:hover {
  background-color: #00ffc8;
}

@media (max-width: 768px) {
  .game-news__item {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    text-align: center;
  }
  .game-news__content {
    text-align: center;
  }
}
/* =========================
   Mobile Games Section
========================= */
.mobile-games {
  padding: 60px 0;
  background-color: #151518;
  text-align: center;
  color: #f1f1f1;
}

.mobile-games__title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(20px, 5vw, 33px);
  color: #00ffc8;
  margin-bottom: 12px;
}

.mobile-games__text {
  font-family: "Poppins", sans-serif;
  font-size: clamp(12px, 2.5vw, 16px);
  color: #a0a0a5;
  margin-bottom: 40px;
}

.mobile-games__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  justify-items: center;
}

.mobile-games__item {
  background-color: #1c1c26;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 15px #00ffc8;
          box-shadow: 0 0 15px #00ffc8;
  -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;
  cursor: pointer;
  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;
  width: 100%;
}

.mobile-games__item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 0 25px #00ffc8;
          box-shadow: 0 0 25px #00ffc8;
}

.mobile-games__item img {
  width: 100%;
  height: 155px;
  display: block;
}

.mobile-games__info {
  padding: 12px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

.mobile-games__name {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(16px, 3vw, 22px);
  font-weight: 600;
  color: #00ffc8;
}

.mobile-games__genre,
.mobile-games__date {
  font-size: 12px;
  color: #a0a0a5;
}

.mobile-games__rating {
  font-size: 13px;
  color: #3e9cdc;
}

/* =========================
   Mobile News Section
========================= */
.mobile-news {
  padding: 60px 0;
  background-color: #0e0e10;
  color: #f1f1f1;
}

.mobile-news__title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(20px, 5vw, 33px);
  color: #00ffc8;
  text-align: center;
  margin-bottom: 12px;
}

.mobile-news__text {
  font-family: "Poppins", sans-serif;
  font-size: clamp(12px, 2.5vw, 16px);
  color: #a0a0a5;
  text-align: center;
  margin-bottom: 40px;
}

.mobile-news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.mobile-news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: #1c1c26;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 15px #00ffc8;
          box-shadow: 0 0 15px #00ffc8;
  -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;
}

.mobile-news__item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 0 25px #00ffc8;
          box-shadow: 0 0 25px #00ffc8;
}

.mobile-news__item--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.mobile-news__image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.mobile-news__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 20px;
}

.mobile-news__headline {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(18px, 3vw, 28px);
  color: #00ffc8;
  margin-bottom: 10px;
}

.mobile-news__description {
  font-family: "Poppins", sans-serif;
  font-size: clamp(12px, 2.5vw, 16px);
  color: #f1f1f1;
  line-height: 1.6;
}

/* =========================
   Responsive
========================= */
@media (max-width: 1024px) {
  .mobile-news__item,
  .mobile-news__item--reverse {
    -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;
  }
  .mobile-news__image img {
    width: 100%;
  }
  .mobile-news__content {
    padding: 12px;
  }
}
@media (max-width: 768px) {
  .mobile-games__list {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
  }
  .mobile-news__headline {
    font-size: clamp(16px, 4vw, 22px);
  }
  .mobile-news__description {
    font-size: clamp(12px, 3vw, 14px);
  }
}
.news-section {
  padding: 60px 0;
  background-color: #0e0e10;
  color: #f1f1f1;
}

.news-section__title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(22px, 5vw, 36px);
  color: #00ffc8;
  text-align: center;
  margin-bottom: 12px;
}

.news-section__text {
  font-family: "Poppins", sans-serif;
  font-size: clamp(14px, 3vw, 18px);
  color: #a0a0a5;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.5;
}

.news-section__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.news-section__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: #151518;
  padding: 20px;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 15px rgba(0, 255, 200, 0.3);
          box-shadow: 0 0 15px rgba(0, 255, 200, 0.3);
  -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;
}

.news-section__item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

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

.news-section__image img {
  width: 320px;
  height: auto;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-section__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.news-section__headline {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(18px, 4vw, 28px);
  color: #3e9cdc;
  margin-bottom: 12px;
}

.news-section__description {
  font-family: "Poppins", sans-serif;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 1.6;
  color: #f1f1f1;
}

@media (max-width: 768px) {
  .news-section__item,
  .news-section__item--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .news-section__image img {
    width: 100%;
  }
}
.contact-section {
  padding: 80px 0;
  background-color: #0e0e10; /* основной темный фон */
  color: #f1f1f1;
}

.contact-section__title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(24px, 5vw, 36px);
  color: #3e9cdc; /* синий акцент */
  text-align: center;
  margin-bottom: 40px;
}

.contact-section__form-wrapper {
  background-color: #151518; /* чуть светлее для контраста */
  padding: 40px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 20px rgba(62, 156, 220, 0.4);
          box-shadow: 0 0 20px rgba(62, 156, 220, 0.4);
}

.contact-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: 20px;
}

.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;
}

.contact-form__group label {
  font-size: 14px;
  margin-bottom: 6px;
  color: #a0a0a5;
}

.contact-form__group input,
.contact-form__group textarea {
  background-color: #0e0e10;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 12px;
  font-size: 14px;
  color: #f1f1f1;
  outline: none;
  -webkit-transition: border 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  transition: border 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.contact-form__group input:focus,
.contact-form__group textarea:focus {
  border-color: #3e9cdc;
  -webkit-box-shadow: 0 0 10px rgba(62, 156, 220, 0.5);
          box-shadow: 0 0 10px rgba(62, 156, 220, 0.5);
}

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

.contact-form__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #f1f1f1;
}

.contact-form__checkbox input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #3e9cdc;
}

.contact-form__submit {
  background-color: #3e9cdc;
  color: #0e0e10;
  border: none;
  border-radius: 6px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: background 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  transition: background 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.contact-form__submit:hover {
  background-color: #00ffc8;
  -webkit-box-shadow: 0 0 15px rgba(0, 255, 200, 0.6);
          box-shadow: 0 0 15px rgba(0, 255, 200, 0.6);
}

@media (max-width: 768px) {
  .contact-section__form-wrapper {
    padding: 30px 20px;
  }
}
.faq-section {
  padding: 80px 0;
  background-color: #0e0e10;
  color: #f1f1f1;
}

.faq-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(24px, 5vw, 36px);
  color: #3e9cdc;
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  background-color: #151518;
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 16px;
  -webkit-box-shadow: 0 0 10px rgba(62, 156, 220, 0.3);
          box-shadow: 0 0 10px rgba(62, 156, 220, 0.3);
}

.faq-question {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(16px, 3vw, 20px);
  color: #00ffc8;
  margin-bottom: 12px;
}

.faq-answer {
  font-family: "Poppins", sans-serif;
  font-size: clamp(12px, 2.5vw, 16px);
  color: #f1f1f1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 40px 20px;
  }
  .faq-item {
    padding: 16px 18px;
  }
  .faq-question {
    font-size: clamp(14px, 4vw, 18px);
  }
  .faq-answer {
    font-size: clamp(12px, 3vw, 15px);
  }
}
.disclaimer-section {
  background-color: #0e0e10;
  color: #f1f1f1;
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
}

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

.disclaimer-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  color: #00ffc8;
  text-align: center;
  margin-bottom: 20px;
}

.disclaimer-intro {
  font-size: clamp(14px, 2.5vw, 18px);
  color: #d0d0d0;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.7;
}

.disclaimer-points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.disclaimer-point h3 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  color: #3e9cdc;
  margin-bottom: 10px;
}

.disclaimer-point p {
  font-size: clamp(14px, 2vw, 16px);
  color: #e0e0e0;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 50px 0;
  }
  .disclaimer-title {
    font-size: clamp(22px, 6vw, 32px);
  }
  .disclaimer-intro {
    font-size: clamp(15px, 3vw, 16px);
  }
  .disclaimer-point h3 {
    font-size: clamp(20px, 4vw, 22px);
  }
  .disclaimer-point p {
    font-size: clamp(15px, 2.5vw, 15px);
  }
}
.privacy-section {
  background-color: #0e0e10;
  color: #f1f1f1;
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
}

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

.privacy-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  color: #00ffc8;
  text-align: center;
  margin-bottom: 20px;
}

.privacy-intro {
  font-size: clamp(14px, 2.5vw, 18px);
  color: #d0d0d0;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.7;
}

.privacy-points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.privacy-point h3 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  color: #3e9cdc;
  margin-bottom: 10px;
}

.privacy-point p {
  font-size: clamp(14px, 2vw, 16px);
  color: #e0e0e0;
  line-height: 1.8;
}

.privacy-point a {
  color: #00ffc8;
  text-decoration: none;
}

.privacy-point a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .privacy-section {
    padding: 50px 0;
  }
  .privacy-title {
    font-size: clamp(22px, 6vw, 32px);
  }
  .privacy-intro {
    font-size: clamp(15px, 3vw, 16px);
  }
  .privacy-point h3 {
    font-size: clamp(20px, 4vw, 22px);
  }
  .privacy-point p {
    font-size: clamp(15px, 2.5vw, 15px);
  }
}
.terms-section {
  background-color: #0e0e10;
  color: #f1f1f1;
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
}

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

.terms-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  color: #00ffc8;
  text-align: center;
  margin-bottom: 20px;
}

.terms-intro {
  font-size: clamp(14px, 2.5vw, 18px);
  color: #d0d0d0;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.7;
}

.terms-points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.terms-point h3 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  color: #3e9cdc;
  margin-bottom: 10px;
}

.terms-point p {
  font-size: clamp(14px, 2vw, 16px);
  color: #e0e0e0;
  line-height: 1.8;
}

.terms-point a {
  color: #00ffc8;
  text-decoration: none;
}

.terms-point a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .terms-section {
    padding: 50px 0;
  }
  .terms-title {
    font-size: clamp(22px, 6vw, 32px);
  }
  .terms-intro {
    font-size: clamp(15px, 3vw, 16px);
  }
  .terms-point h3 {
    font-size: clamp(20px, 4vw, 22px);
  }
  .terms-point p {
    font-size: clamp(15px, 2.5vw, 15px);
  }
}
.thanks-section {
  background-color: #0e0e10;
  color: #f1f1f1;
  padding: 100px 0;
  height: 100vh;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

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

.thanks-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  color: #00ffc8;
  margin-bottom: 20px;
}

.thanks-text {
  font-size: clamp(16px, 2.5vw, 18px);
  color: #d0d0d0;
  line-height: 1.8;
  margin-bottom: 20px;
}

.thanks-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.thanks-button {
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  color: #0e0e10;
  background-color: #00ffc8;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}

.thanks-button:hover {
  background-color: #00e0b0;
  color: #000;
}

.button--white.thanks-button {
  background-color: #1a1a1d;
  color: #00ffc8;
  border: 1px solid #00ffc8;
}

.button--white.thanks-button:hover {
  background-color: #00ffc8;
  color: #0e0e10;
}