@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: #0b090a; /* угольно-чёрный фон */
  --color-bg-alt: #1d1d1f; /* более мягкий тёмный для секций/карточек */
  --color-primary: #f2e900; /* кислотно-жёлтый, главный акцент */
  --color-accent: #00ff85; /* неоново-зелёный вспомогательный акцент */
  --color-hover: #ff002b; /* насыщенно-красный для наведения */
  --color-border: rgba(255, 255, 255, 0.1); /* мягкие тонкие границы */
  --color-shadow: rgba(242, 233, 0, 0.4); /* мягкое кислотное свечение */
  /* ⚪ Текст */
  --color-text: #fefefe; /* чистый белый текст */
  --color-text-muted: #9ea0a4; /* светло-серый приглушенный */
  --color-link: #00ffec; /* яркий бирюзовый для ссылок */
  /* 🌫 Эффекты */
  --blur-bg: rgba(15, 15, 18, 0.9); /* стеклянный эффект */
  --glass-border: rgba(255, 255, 255, 0.06);
  /* 🧩 Градиенты */
  --gradient-primary: linear-gradient(90deg, #f2e900 0%, #00ff85 100%);
  --gradient-hover: linear-gradient(90deg, #00ff85 0%, #f2e900 100%);
  /* 🔠 Шрифты */
  --font-main: "Space Mono", monospace;
  --font-title: "Press Start 2P", cursive; /* ретро-гейминг стиль */
  /* 📏 Размеры и сетка */
  --container-width: 1240px;
  --container-padding: 18px;
  --radius: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  /* 🧍 Тени и свечения */
  --glow-primary: 0 0 20px rgba(242, 233, 0, 0.75);
  --glow-accent: 0 0 20px rgba(0, 255, 133, 0.7);
  /* ⚙️ z-index */
  --z-header: 950;
  --z-overlay: 850;
  --z-modal: 1050;
}

.wrapper {
  font-family: var(--font-main);
  overflow: hidden;
}

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

@media (max-width: 768px) {
  .header__menu li {
    padding-bottom: 3px;
    border-bottom: 1px solid var(--glass-border);
  }
}
.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-weight: 700;
  font-size: clamp(20px, 5vw, 33px);
  line-height: 1.2;
  color: #f2e900;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, right top, from(#f2e900), to(#f2e900));
  background: linear-gradient(90deg, #f2e900, #f2e900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__subtitle {
  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 #f2e900;
  background-color: #f2e900;
  color: #000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.hero__button:hover {
  background-color: transparent;
  color: #f2e900;
}
@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(290px, 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;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 8px;
}
.games-section__item:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -o-border-image: linear-gradient(45deg, #f2e900, #00ffc8) 1;
     border-image: linear-gradient(45deg, #f2e900, #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;
  }
}

.games-section__item-desc {
  font-family: var(--font-main);
  font-size: clamp(12px, 2vw, 14px);
  color: var(--color-text-muted);
  margin-top: 4px;
  line-height: 1.4;
  text-align: center;
  min-height: 36px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.games-section__item:hover .games-section__item-desc {
  color: var(--color-primary); /* Подсветка при ховере */
}

.games-section__item-genre {
  color: #c3c3c3;
}

.games-section__download-btn {
  background: var(--gradient-primary);
  border: none;
  padding: 10px 16px;
  border-radius: var(--radius);
  color: #111;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  margin-top: auto;
  width: 100%;
}

.games-section__download-btn:hover {
  background: var(--gradient-hover);
}

.modal {
  display: none; /* скрыто по умолчанию */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 20, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
}

.modal__content {
  background: #1c1c26;
  border-radius: var(--radius);
  padding: 30px 25px;
  max-width: 450px;
  width: 100%;
  position: relative;
  -webkit-box-shadow: 0 0 25px rgba(0, 255, 200, 0.4), 0 0 15px rgba(62, 156, 220, 0.4);
          box-shadow: 0 0 25px rgba(0, 255, 200, 0.4), 0 0 15px rgba(62, 156, 220, 0.4);
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 24px;
  color: #ff5ca2;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.modal__close:hover {
  color: #00ffe0;
}

.modal__title {
  font-family: "Orbitron", sans-serif;
  font-size: 22px;
  color: #00ffe0;
  margin-bottom: 12px;
  text-align: center;
  text-shadow: 0 0 8px #00ffe0, 0 0 12px #f2e900;
}

.modal__text {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #c1c1c8;
  text-align: center;
  margin-bottom: 20px;
}

.modal__form .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: 15px;
}

.modal__form .checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.modal__form label {
  font-size: 13px;
  color: #ff5ca2;
}

.modal__form input[type=text],
.modal__form input[type=email] {
  padding: 10px 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #111118;
  color: #f5f5f5;
  font-size: 14px;
  outline: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.modal__form input[type=text]:focus,
.modal__form input[type=email]:focus {
  border-color: #00ffe0;
  -webkit-box-shadow: 0 0 8px #00ffe0;
          box-shadow: 0 0 8px #00ffe0;
}

.checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #c1c1c8;
}

.modal__btn.submit-btn {
  width: 100%;
  padding: 10px 16px;
  margin-top: 10px;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  background: -webkit-gradient(linear, left top, right top, from(#00ffe0), to(#ff5ca2));
  background: linear-gradient(90deg, #00ffe0, #ff5ca2);
  color: #111;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.modal__btn.submit-btn:hover {
  background: -webkit-gradient(linear, left top, right top, from(#ff5ca2), to(#00ffe0));
  background: linear-gradient(90deg, #ff5ca2, #00ffe0);
  -webkit-box-shadow: 0 0 10px #00ffe0, 0 0 10px #ff5ca2;
          box-shadow: 0 0 10px #00ffe0, 0 0 10px #ff5ca2;
}

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

.achievement-grid {
  padding: 70px 0;
  background: radial-gradient(circle at top, #1b1f32, #0d0f1a);
  color: #e2e2e2;
  text-align: center;
}
.achievement-grid__title {
  font-size: clamp(22px, 4vw, 36px);
  color: #37f0c2;
  text-shadow: 0 0 8px rgba(55, 240, 194, 0.8);
  margin-bottom: 10px;
}
.achievement-grid__subtitle {
  font-size: clamp(14px, 2.5vw, 18px);
  max-width: 600px;
  margin: 0 auto 40px;
  color: #b8c1d1;
}
.achievement-grid__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  padding: 0;
  list-style: none;
}

.achievement-card {
  background: linear-gradient(145deg, #2b2f43, #181a27);
  border-radius: 16px;
  padding: 25px 20px;
  -webkit-box-shadow: 0 0 15px rgba(55, 240, 194, 0.2), inset 0 0 10px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 15px rgba(55, 240, 194, 0.2), inset 0 0 10px rgba(0, 0, 0, 0.4);
  -webkit-transition: -webkit-transform 0.25s, -webkit-box-shadow 0.25s;
  transition: -webkit-transform 0.25s, -webkit-box-shadow 0.25s;
  transition: transform 0.25s, box-shadow 0.25s;
  transition: transform 0.25s, box-shadow 0.25s, -webkit-transform 0.25s, -webkit-box-shadow 0.25s;
  position: relative;
}
.achievement-card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 0 20px rgba(55, 240, 194, 0.5);
          box-shadow: 0 0 20px rgba(55, 240, 194, 0.5);
}
.achievement-card__icon {
  font-size: 40px;
  margin-bottom: 12px;
  color: #37f0c2;
  text-shadow: 0 0 12px rgba(55, 240, 194, 0.9);
}
.achievement-card__count {
  font-size: clamp(26px, 5vw, 42px);
  color: #ffffff;
  font-weight: bold;
  margin: 5px 0;
}
.achievement-card__label {
  font-size: 14px;
  color: #aeb7cc;
  letter-spacing: 0.5px;
}

@media (max-width: 600px) {
  .achievement-grid {
    padding: 50px 0;
  }
}
.feedbacks-section {
  padding: 60px 0;
  background-color: var(--color-bg-alt);
  color: #fff;
}
.feedbacks-section__title {
  font-family: var(--font-title);
  font-size: clamp(24px, 4vw, 36px);
  text-align: center;
  color: var(--color-text);
  margin-bottom: 12px;
}
.feedbacks-section__subtitle {
  font-family: var(--font-main);
  font-size: clamp(14px, 2.5vw, 18px);
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 40px;
}
.feedbacks-section__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feedbacks-section__card {
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
          box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
  -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;
}
.feedbacks-section__card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.feedbacks-section__card__avatar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}
.feedbacks-section__card__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.feedbacks-section__card__content {
  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;
  gap: 6px;
}
@media (max-width: 768px) {
  .feedbacks-section {
    padding: 40px 0;
  }
  .feedbacks-section__list {
    gap: 16px;
  }
  .feedbacks-section__card {
    -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;
    text-align: center;
  }
  .feedbacks-section__card__content .feedbacks-card__platform {
    margin-bottom: 4px;
  }
}

.feedbacks-card__name {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

.feedbacks-card__platform {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.feedbacks-card__text {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.5;
}

.feedbacks-card__rating {
  font-size: 14px;
  color: var(--color-primary);
  margin-top: 8px;
}

.player-feedback {
  padding: 70px 0;
  background-color: #f5f7fa;
}
.player-feedback__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(26px, 5vw, 38px);
  text-align: center;
  color: #111;
  margin-bottom: 10px;
}
.player-feedback__subtitle {
  font-family: "Inter", sans-serif;
  font-size: clamp(14px, 2.5vw, 18px);
  color: #555;
  text-align: center;
  margin-bottom: 50px;
}
.player-feedback__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.player-feedback__card {
  background-color: #fff;
  border-radius: 16px;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.player-feedback__card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}
.player-feedback__card__avatar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
}
.player-feedback__card__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.player-feedback__card__info {
  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;
  gap: 6px;
}
@media (max-width: 768px) {
  .player-feedback {
    padding: 50px 0;
  }
  .player-feedback__cards {
    gap: 20px;
  }
  .player-feedback__card {
    -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;
    text-align: center;
  }
}

.player-feedback__name {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #1a73e8;
}

.player-feedback__platform {
  font-size: 12px;
  color: #999;
}

.player-feedback__message {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.player-feedback__rating {
  margin-top: 8px;
  color: #ffb400;
  font-size: 14px;
}

.player-feedback__platform {
  margin-bottom: 4px;
}

.reviews-section {
  padding: 60px 0;
  background-color: var(--color-bg-alt);
}
.reviews-section__title {
  font-family: var(--font-title);
  font-size: clamp(24px, 4vw, 36px);
  color: var(--color-text);
  text-align: center;
  margin-bottom: 12px;
}
.reviews-section__text {
  font-family: var(--font-main);
  font-size: clamp(14px, 2.5vw, 18px);
  color: var(--color-text-muted);
  margin-bottom: 40px;
}
.reviews-section__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.reviews-section__item {
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  -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;
}
.reviews-section__item:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.reviews-section__item__avatar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}
.reviews-section__item__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.reviews-section__item__content {
  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;
  gap: 6px;
}
.reviews-section__item__content .reviews-section__name {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}
.reviews-section__item__content .reviews-section__platform {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}
.reviews-section__item__content .reviews-section__text {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.5;
}
.reviews-section__item__content .reviews-section__rating {
  font-size: 14px;
  color: var(--color-primary);
  margin-top: 8px;
}
@media (max-width: 768px) {
  .reviews-section {
    padding: 40px 0;
  }
  .reviews-section__list {
    gap: 16px;
  }
  .reviews-section__item {
    -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;
    text-align: center;
  }
  .reviews-section__item__content .reviews-section__platform {
    margin-bottom: 4px;
  }
}

.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: #f2e900; /* основной акцент */
  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: #f2e900;
  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: #f2e900;
  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: #f2e900;
}

/* =========================
   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;
    text-align: center;
  }
}
@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: #f2e900;
  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: #f2e900; /* синий акцент */
  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: #f2e900;
  -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: #f2e900;
}

.contact-form__submit {
  background-color: #f2e900;
  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: #f2e900;
  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: #f2e900;
  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: #f2e900;
  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: #f2e900;
  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;
}

/* Темная секция новостей */
.news-universe {
  padding: 80px 0;
  background-color: #1a1a2e; /* темный фон */
  color: #f0f0f5; /* основной светлый текст */
}

/* Общие стили секции */
.updates-section {
  background-color: #1c1c28;
  color: #ffffff;
  padding: 80px 0;
  font-family: "Roboto", sans-serif;
}

.updates-section__title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: #ffd700; /* золотой акцент */
}

.updates-section__subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 60px;
  color: #cccccc;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Список карточек */
.updates-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: 60px;
}

/* Каждая карточка */
.updates-section__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  background-color: #2a2a3c;
  border-radius: 15px;
  padding: 30px;
  -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;
}

.updates-section__item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Перевернутые карточки */
.updates-section__item--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/* Изображения */
.updates-section__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 12px;
  overflow: hidden;
  max-width: 400px;
  -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;
}

.updates-section__image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

.updates-section__item:hover .updates-section__image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

/* Контент карточки */
.updates-section__content {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

.top-player-reviews-grid {
  padding: 60px 0;
  background-color: #121212;
  color: #f0f0f0;
  font-family: var(--font-main);
}

.top-player-reviews-grid__title {
  font-family: var(--font-title);
  font-size: clamp(24px, 5vw, 36px);
  text-align: center;
  margin-bottom: 12px;
  color: #00ffc8;
}

.top-player-reviews-grid__subtitle {
  font-size: clamp(14px, 2.5vw, 18px);
  text-align: center;
  color: #c0c0c0;
  margin-bottom: 40px;
}

.top-player-reviews-grid__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.review-card {
  background-color: #1e1e1e;
  border-radius: 16px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -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;
  width: 100%;
}

.review-card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 8px 25px rgba(0, 255, 200, 0.5);
          box-shadow: 0 8px 25px rgba(0, 255, 200, 0.5);
}

.review-card__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
}

.review-card__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.review-card__content {
  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;
}

.review-card__name {
  font-size: 16px;
  font-weight: 600;
  color: #00ffc8;
}

.review-card__game {
  font-size: 14px;
  color: #9e9e9e;
}

.review-card__text {
  font-size: 14px;
  line-height: 1.5;
  color: #e0e0e0;
}

.review-card__rating {
  font-size: 14px;
  color: #ffd700;
  margin-top: 6px;
}

/* Адаптив */
@media (max-width: 768px) {
  .top-player-reviews-grid__list {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
  }
  .review-card {
    padding: 16px;
  }
}
.top-player-reviews {
  padding: 60px 0;
  background-color: #121212;
  color: #f0f0f0;
  font-family: var(--font-main);
}

.top-player-reviews__title {
  font-family: var(--font-title);
  font-size: clamp(24px, 5vw, 36px);
  text-align: center;
  margin-bottom: 12px;
  color: #00ffc8;
}

.top-player-reviews__subtitle {
  font-size: clamp(14px, 2.5vw, 18px);
  text-align: center;
  color: #c0c0c0;
  margin-bottom: 40px;
}

.top-player-reviews__carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  justify-items: center;
}

.review-block {
  background-color: #1e1e1e;
  border-radius: 16px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -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;
  width: 100%;
}

.review-block:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 8px 25px rgba(0, 255, 200, 0.5);
          box-shadow: 0 8px 25px rgba(0, 255, 200, 0.5);
}

.review-block__content {
  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;
}

.review-block__name {
  font-size: 16px;
  font-weight: 600;
  color: #00ffc8;
}

.review-block__game {
  font-size: 14px;
  color: #9e9e9e;
}

.review-block__text {
  font-size: 14px;
  line-height: 1.5;
  color: #e0e0e0;
}

.review-block__rating {
  font-size: 14px;
  color: #ffd700;
  margin-top: 6px;
}

/* Адаптив */
@media (max-width: 768px) {
  .top-player-reviews__carousel {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
  }
  .review-block {
    padding: 16px;
  }
}
.updates-section__headline {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffd700;
}

.updates-section__description {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
}

/* Адаптив */
@media (max-width: 992px) {
  .updates-section__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .updates-section__item--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .updates-section__image {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .updates-section__title {
    font-size: 2rem;
  }
  .updates-section__headline {
    font-size: 1.5rem;
  }
  .updates-section__description {
    font-size: 0.95rem;
  }
}
.news-universe__title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: #ffd700; /* золотой акцент */
}

.news-universe__subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: #ccccdd; /* светло-серый текст */
  margin-bottom: 60px;
}

/* Сетка новостей */
.news-universe__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .news-universe__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .news-universe__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
/* Каждая новость */
.news-universe__item {
  background-color: #23233a; /* чуть светлее темный фон */
  border-radius: 15px;
  overflow: hidden;
  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-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  -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-universe__item:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
          box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4); /* золотистая тень при ховере */
}

.news-universe__item--reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.news-universe__image img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-bottom: 2px solid #ffd700; /* золотая граница */
}

/* Контент новости */
.news-universe__content {
  padding: 20px 25px;
}

.news-universe__headline {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffd700; /* яркий акцент */
  margin-bottom: 15px;
}

.news-universe__text {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd; /* светло-серый текст */
}

/* Адаптив для мобильных устройств */
@media (max-width: 576px) {
  .news-universe__item {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .news-universe__image img {
    height: 180px;
  }
}
/* ---------- Disclaimer Section ---------- */
.disclaimer-section {
  background-color: #1a1a1a; /* тёмный фон */
  color: #f5f5f5; /* светлый текст */
  padding: 80px 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.disclaimer-section__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #ffcc00; /* акцентный цвет */
}

.disclaimer-section__intro {
  font-size: 18px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 1.7;
  color: #e0e0e0;
}

.disclaimer-section__block {
  background-color: #2a2a2a;
  padding: 25px 30px;
  border-radius: 12px;
  margin-bottom: 25px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  -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;
}

.disclaimer-section__block:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
}

.disclaimer-section__subtitle {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffcc00;
}

.disclaimer-section__text {
  font-size: 16px;
  line-height: 1.8;
  color: #dcdcdc;
}
.disclaimer-section__text a {
  color: #ffcc00;
}

.disclaimer-section__note {
  font-size: 14px;
  text-align: center;
  margin-top: 40px;
  color: #aaaaaa;
}

.disclaimer-section__note a {
  color: #ffcc00;
  text-decoration: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.disclaimer-section__note a:hover {
  color: #ffd633;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .disclaimer-section__title {
    font-size: 28px;
  }
  .disclaimer-section__subtitle {
    font-size: 20px;
  }
  .disclaimer-section__text {
    font-size: 15px;
  }
  .disclaimer-section__intro {
    font-size: 16px;
    padding: 0 15px;
  }
}
.thanks-section {
  background-color: #1e1e2f; /* тёмный фон */
  color: #ffffff;
  padding: 80px 20px;
  font-family: "Inter", sans-serif;
}

.thanks-section .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.thanks-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffd700; /* золотой оттенок для акцента */
}

.thanks-section__subtitle {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: #cccccc;
  line-height: 1.6;
}

.thanks-section__message {
  background: #2a2a3d;
  border-radius: 15px;
  padding: 30px 20px;
  margin-bottom: 40px;
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.thanks-section__message p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.6;
}

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

.thanks-section__button {
  background-color: #ff6f61;
  color: #ffffff;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.thanks-section__button:hover {
  background-color: #ff3b2e;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.thanks-section__note {
  margin-bottom: 20px;
}

.thanks-section__text {
  margin-bottom: 20px;
}

.thanks-section__intro {
  margin-bottom: 20px;
}

.thanks-section__info {
  margin-top: 50px;
  font-size: 0.95rem;
  color: #aaaaaa;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .thanks-section__title {
    font-size: 2rem;
  }
  .thanks-section__subtitle {
    font-size: 1.1rem;
  }
  .thanks-section__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}