@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 {
  --page-bg: #ffffff;
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --highlight: #2563eb;
  --radius-soft: 12px;
  --anim-speed: 0.3s ease;
  --drop-soft: 0 4px 14px rgba(0, 0, 0, 0.06);
}

body {
  font-family: "Inter", sans-serif;
  background: var(--page-bg);
  color: var(--text-main);
}

.wrapper {
  overflow-x: hidden;
}

.sky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--page-bg);
  -webkit-box-shadow: var(--drop-soft);
          box-shadow: var(--drop-soft);
  z-index: 999;
}

.beam-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  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;
}

.brand-mark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
  color: var(--text-main);
  -webkit-transition: color var(--anim-speed);
  transition: color var(--anim-speed);
}

.brand-mark:hover {
  color: var(--highlight);
}

.brand-mark img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.nav-track ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}

.nav-track a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  -webkit-transition: color var(--anim-speed);
  transition: color var(--anim-speed);
}

.nav-track a:hover {
  color: var(--highlight);
}

/* ——— Burger ——— */
.pulse-toggle {
  display: none;
  -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;
  width: 28px;
  height: 22px;
  gap: 5px;
  cursor: pointer;
}

.pulse-toggle span {
  display: block;
  height: 3px;
  background: var(--text-main);
  border-radius: 2px;
  -webkit-transition: all var(--anim-speed);
  transition: all var(--anim-speed);
}

/* Мобильная версия */
@media (max-width: 768px) {
  .nav-track ul {
    position: absolute;
    top: 70px;
    right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: var(--page-bg);
    width: 100%;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height var(--anim-speed);
    transition: max-height var(--anim-speed);
    -webkit-box-shadow: var(--drop-soft);
            box-shadow: var(--drop-soft);
  }
  .nav-track ul.menu-open {
    max-height: 300px;
  }
  .pulse-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .nav-track a {
    display: block;
    padding: 1rem 1.5rem;
  }
}
/* Анимация бургер-меню */
.pulse-toggle.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translateY(8px);
          transform: rotate(45deg) translateY(8px);
}

.pulse-toggle.active span:nth-child(2) {
  opacity: 0;
}

.pulse-toggle.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translateY(-8px);
          transform: rotate(-45deg) translateY(-8px);
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(100%);
          transform: translateX(-50%) translateY(100%);
  background-color: #ffffff; /* светлый фон */
  color: #111827;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* легкая тень */
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
}

.cookie-banner.active {
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.cookie-banner.hide {
  -webkit-transform: translateX(-50%) translateY(100%);
          transform: translateX(-50%) translateY(100%);
  opacity: 0;
}

/* ---------- Banner Content ---------- */
.cookie-banner__text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #6b7280;
}

.cookie-banner__text a.cookie-banner__link {
  color: #2563eb; /* основной цвет сайта */
  text-decoration: underline;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.cookie-banner__text a.cookie-banner__link:hover {
  color: #1e40af; /* темнее при наведении */
}

/* ---------- Accept Button ---------- */
.cookie-banner__btn {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: 0.5rem;
  background-color: #2563eb; /* основной цвет */
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  -webkit-transition: background 0.3s ease, -webkit-transform 0.2s ease;
  transition: background 0.3s ease, -webkit-transform 0.2s ease;
  transition: background 0.3s ease, transform 0.2s ease;
  transition: background 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.cookie-banner__btn:hover {
  background-color: #1e40af;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
  .cookie-banner {
    padding: 0.8rem 1rem;
    bottom: 10px;
  }
  .cookie-banner__text {
    font-size: 0.85rem;
  }
  .cookie-banner__btn {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
}
.sunrise-hero {
  padding: 120px 15px 70px;
  background: #f9fafb;
}

.orbit-frame {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.intro-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.intro-title {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 800;
  color: #111827;
}

.intro-text {
  font-size: 1.1rem;
  color: #4b5563;
  max-width: 500px;
}

.cta-button {
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.cta-button:hover {
  background: #1e40af;
}

.highlight-news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.news-card {
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  -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-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.news-thumb {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-info {
  padding: 1rem 1.2rem 1.4rem;
}

.news-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.news-snippet {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.read-more {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* Адаптив */
@media (max-width: 900px) {
  .orbit-frame {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .intro-block {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .intro-text {
    max-width: none;
  }
  .highlight-news {
    margin-top: 2rem;
  }
}
.nova-news {
  padding: 70px 15px 70px;
  background: #fefefe;
}

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

.nova-title {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  text-align: center;
  margin-bottom: 0.5rem;
}

.nova-subtitle {
  font-size: 1rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 3rem;
}

.nova-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.nova-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  -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;
}

.nova-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.nova-thumb {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}

.nova-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; /* чтобы занять оставшееся место */
}

.nova-headline {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.nova-text {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 0.8rem;
}

.nova-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  white-space: nowrap;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  margin-top: auto;
}

.nova-link:hover {
  text-decoration: underline;
  color: #1e40af;
}

@media (max-width: 1024px) {
  .nova-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .nova-grid {
    grid-template-columns: 1fr;
  }
}
.reviews-section {
  padding: 70px 15px 70px;
  background: #f9fafb;
}

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

.reviews-title {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  text-align: center;
  margin-bottom: 0.5rem;
}

.reviews-subtitle {
  font-size: 1rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 3rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  -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;
}

.review-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.review-thumb {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}

.review-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.review-headline {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.review-text {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 0.8rem;
}

.review-score {
  font-weight: 700;
  color: #2563eb;
  margin-top: auto;
  margin-bottom: 0.5rem;
}

.review-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  white-space: nowrap;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.review-link:hover {
  color: #1e40af;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}
.popular-games {
  padding: 70px 15px 70px;
  background: #fff;
}

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

.popular-title {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  text-align: center;
  margin-bottom: 0.5rem;
}

.popular-subtitle {
  font-size: 1rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 3rem;
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.game-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #f9fafb;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  -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;
}

.game-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

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

.game-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.game-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.game-genre {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 10px;
}

.game-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  white-space: nowrap;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
}

.game-link:hover {
  color: #1e40af;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .popular-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .popular-grid {
    grid-template-columns: 1fr;
  }
}
.highlight-section {
  padding: 70px 15px;
  background: #fefefe;
}

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

.highlight-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; /* растягиваем блоки по высоте */
  gap: 3rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.highlight-text {
  -webkit-box-flex: 2;
      -ms-flex: 2 1 600px;
          flex: 2 1 600px; /* большой блок текста */
}

.highlight-title {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 1rem;
}

.highlight-desc {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.highlight-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.7rem 1.5rem;
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  margin-top: 1rem;
}

.highlight-link:hover {
  background: #1e40af;
}

.highlight-image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 400px;
          flex: 1 1 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* делаем flex, чтобы img растягивалось */
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; /* растягиваем по высоте текста */
}

.highlight-image img {
  width: 100%;
  height: 100%; /* теперь тянется за высотой текста */
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

/* Адаптивность */
@media (max-width: 1024px) {
  .highlight-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem; /* уменьшаем расстояние между текстом и картинкой */
  }
  .highlight-text {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .highlight-image {
    width: 100%;
    height: auto; /* на мобильных пусть картинка имеет естественную высоту */
  }
  .highlight-image img {
    height: auto;
  }
}
.footer-section {
  background: #f8f9fa;
  padding: 70px 15px 30px;
  color: #111827;
  font-family: "Inter", sans-serif;
}

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

.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.footer-logo p {
  font-size: 0.95rem;
  color: #6b7280;
}

.footer-links h3,
.footer-social h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.footer-links ul li {
  margin-bottom: 0.6rem;
}

.footer-links ul li a {
  text-decoration: none;
  color: #2563eb;
  font-weight: 600;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #1e40af;
}

.footer-social .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.footer-social .social-icons a img {
  width: 30px;
  height: 30px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.footer-social .social-icons a img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.85rem;
  color: #6b7280;
  border-top: 1px solid #e5e7eb;
  padding-top: 15px;
  gap: 0.5rem;
}

.footer-legal a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  margin-left: 1rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-size: 0.85rem;
}

.footer-legal a:hover {
  color: #1e40af;
}

@media (max-width: 768px) {
  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.3rem;
  }
  .footer-legal a {
    margin-left: 0;
    margin-right: 1rem;
  }
}
@media (max-width: 768px) {
  .footer-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
  .footer-logo h2 {
    font-size: 1.5rem;
  }
}
.reviews-section {
  padding: 70px 15px;
  background: #fefefe;
}

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

.reviews-title {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.5rem;
  text-align: center;
}

.reviews-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 3rem;
  text-align: center;
}

.reviews-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: 2.5rem;
}

.review-item {
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.review-game-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.review-meta {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 1rem;
  font-style: italic;
}

.review-desc {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
}

/* Адаптивность */
@media (max-width: 768px) {
  .reviews-title {
    font-size: 1.7rem;
  }
  .review-game-title {
    font-size: 1.15rem;
  }
  .review-desc {
    font-size: 0.95rem;
  }
}
.featured-reviews-grid {
  padding: 70px 15px;
  background: #fefefe;
}

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

.featured-title {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 3rem;
  text-align: center;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.featured-card {
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  -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;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; /* картинка сверху, текст снизу */
}

.featured-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.featured-card img {
  width: 100%;
  height: auto; /* чтобы тянулась пропорционально */
  -o-object-fit: cover;
     object-fit: cover;
}

.featured-info {
  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;
}

.featured-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.meta {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 1rem;
  font-style: italic;
}

.desc {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
}

/* Адаптивность */
@media (max-width: 1024px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
}
.trends-section {
  padding: 70px 15px;
  background: #fefefe;
}

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

.trends-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 3rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.trends-text {
  -webkit-box-flex: 2;
      -ms-flex: 2 1 600px;
          flex: 2 1 600px;
}

.trends-title {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 1rem;
}

.trends-desc {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.trends-image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 400px;
          flex: 1 1 400px;
}

.trends-image img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1024px) {
  .trends-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .trends-image {
    max-height: 400px;
  }
  .trends-text {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
.about-section {
  padding: 70px 15px;
  background: #fefefe;
}

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

.about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 3rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.about-text {
  -webkit-box-flex: 2;
      -ms-flex: 2 1 600px;
          flex: 2 1 600px;
}

.about-title {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 1rem;
}

.about-desc {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.about-image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 400px;
          flex: 1 1 400px;
}

.about-image img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1024px) {
  .about-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-image {
    max-height: 400px;
  }
}
.about-stats {
  padding: 70px 15px;
  background: #fefefe;
}

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

.stats-title {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stats-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  -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;
}

.stats-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.stats-card h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 0.5rem;
}

.stats-card p {
  font-size: 1rem;
  color: #6b7280;
}

/* Адаптивность */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
.about-insights {
  padding: 70px 15px;
  background: #fefefe;
}

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

.insights-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 3rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.insights-text {
  -webkit-box-flex: 2;
      -ms-flex: 2 1 600px;
          flex: 2 1 600px;
}

.insights-title {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 1rem;
}

.insights-desc {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.insights-image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 400px;
          flex: 1 1 400px;
}

.insights-image img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1024px) {
  .insights-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .insights-image {
    max-height: 400px;
  }
}
/* ---------- Contact Section ---------- */
.contact-section {
  padding: 70px 15px;
  background: #fefefe;
}

.contact-section__title {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-section__form-wrapper {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 1.5rem;
}

.contact-form__group label {
  font-size: 0.95rem;
  color: #111827;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-form__group input,
.contact-form__group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  color: #111827;
  background: #fefefe;
  -webkit-transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  transition: border-color 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: #2563eb;
  -webkit-box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
          box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
  outline: none;
}

.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: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #6b7280;
}

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

.contact-form__submit {
  display: inline-block;
  width: 100%;
  padding: 0.75rem 1rem;
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: background 0.3s ease, -webkit-transform 0.2s ease;
  transition: background 0.3s ease, -webkit-transform 0.2s ease;
  transition: background 0.3s ease, transform 0.2s ease;
  transition: background 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.contact-form__submit:hover {
  background: #1e40af;
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .contact-section__form-wrapper {
    padding: 30px 20px;
  }
  .contact-section__title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }
}
.privacy-section {
  padding: 120px 15px 70px;
  background: #e2e4e6;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #111827;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.3;
}

.privacy-block {
  margin-bottom: 2.5rem;
  padding: 20px 25px;
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.privacy-subtitle {
  font-size: 1.7rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 1rem;
}

.privacy-text {
  font-size: 1.2rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.privacy-text a {
  color: #1e40af;
}

.privacy-list {
  list-style: disc inside;
  color: #4b5563;
  margin-bottom: 1rem;
  padding-left: 1rem;
}

.privacy-list li {
  margin-bottom: 0.5rem;
}

/* Адаптивность */
@media (max-width: 768px) {
  .privacy-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .privacy-block {
    padding: 15px 20px;
  }
  .privacy-subtitle {
    font-size: 1.3rem;
  }
}
.thanks-section {
  padding: 100px 20px;
  background: #fefefe;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  min-height: 80vh;
}

.thanks-container {
  max-width: 700px;
  text-align: center;
}

.thanks-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 1.5rem;
}

.thanks-text {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: left;
}

.thanks-list {
  text-align: left;
  margin-bottom: 2rem;
  padding-left: 1.2rem;
  list-style: disc inside;
  color: #4b5563;
}

.thanks-list li {
  margin-bottom: 0.7rem;
}

.thanks-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  -webkit-transition: background 0.3s ease, -webkit-transform 0.2s ease;
  transition: background 0.3s ease, -webkit-transform 0.2s ease;
  transition: background 0.3s ease, transform 0.2s ease;
  transition: background 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.thanks-button:hover {
  background: #1e40af;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

/* Адаптивность */
@media (max-width: 768px) {
  .thanks-title {
    font-size: 2rem;
  }
  .thanks-text {
    font-size: 1rem;
  }
}