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

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

:focus,
:active {
  outline: none;
}

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

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

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

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

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

button {
  cursor: pointer;
}

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

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

a {
  color: inherit;
}

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

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

.wrapper {
  overflow-x: hidden;
}

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

/* === GameNest Header === */
.gn-shell {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 50;
}

.gn-shell__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1rem 2rem;
  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;
}

/* === LOGO === */
.gn-logo {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #111827;
  letter-spacing: -0.03em;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.gn-logo:hover {
  color: #2563eb;
}

.gn-logo__dot {
  color: #2563eb;
  font-weight: 800;
}

/* === NAV === */
.gn-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.gn-nav__item {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #374151;
  text-decoration: none;
  position: relative;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}

.gn-nav__item:hover {
  color: #2563eb;
}

.gn-nav__item.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #2563eb;
  border-radius: 1px;
}

/* === BURGER === */
.gn-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;
  gap: 5px;
  width: 36px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.gn-toggle__bar {
  width: 100%;
  height: 3px;
  background: #111827;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* === MOBILE NAV === */
@media (max-width: 768px) {
  .gn-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .gn-nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
  }
  .gn-nav.active {
    max-height: 400px;
    opacity: 1;
    pointer-events: all;
    -webkit-transition: max-height 0.3s ease, opacity 0.3s ease;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }
  .gn-nav__item {
    padding: 0.75rem 0;
    font-size: 1.1rem;
  }
  .gn-toggle.open .gn-toggle__bar:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
  .gn-toggle.open .gn-toggle__bar:nth-child(2) {
    opacity: 0;
  }
  .gn-toggle.open .gn-toggle__bar:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
}
/* === Cookie Banner === */
.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 0;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  padding: 1.25rem 1.5rem;
  font-family: "Inter", sans-serif;
  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;
  z-index: 9999;
  -webkit-transition: bottom 0.5s ease, opacity 0.5s ease;
  transition: bottom 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}

.cookie-banner.active {
  bottom: 0;
  opacity: 1;
}

.cookie-banner.hide {
  opacity: 0;
  bottom: -200px;
}

/* === Content === */
.cookie-banner__content {
  max-width: 1200px;
  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: 1.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* === Text === */
.cookie-banner__text {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 260px;
}

.cookie-banner__link {
  color: #4f46e5;
  font-weight: 500;
  text-decoration: underline;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.cookie-banner__link:hover {
  color: #3730a3;
}

/* === Button === */
.cookie-banner__btn {
  background: #4f46e5;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  font-size: 0.95rem;
  -webkit-transition: background 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, transform 0.2s ease;
  transition: background 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.cookie-banner__btn:hover {
  background: #4338ca;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.cookie-banner__btn:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

/* === Responsive === */
@media (max-width: 768px) {
  .cookie-banner__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .cookie-banner__btn {
    width: 100%;
    max-width: 300px;
  }
}
/* === ARCARDIA HERO SECTION === */
.pulse-intro {
  position: relative;
  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;
  min-height: 92vh;
  padding: 5rem 10px;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f3f4f6));
  background: linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%);
  overflow: hidden;
}

.pulse-intro__container {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  text-align: center;
}

/* === HEADLINE === */
.pulse-intro__headline {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.1;
  color: #111827;
  margin-bottom: 1.2rem;
  letter-spacing: -0.03em;
}

/* === TAGLINE === */
.pulse-intro__tagline {
  font-size: 1.2rem;
  color: #4b5563;
  line-height: 1.65;
  margin-bottom: 2.4rem;
  font-family: "Inter", sans-serif;
}

/* === BUTTONS === */
.pulse-btn {
  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;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  border-radius: 10px;
  padding: 1rem 2rem;
  font-size: 1rem;
  text-decoration: none;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  cursor: pointer;
}

.pulse-btn--main {
  background: #2563eb;
  border: 2px solid #2563eb;
  color: #fff;
  -webkit-box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
          box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
}

.pulse-btn--main:hover {
  background: #1d4ed8;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35);
          box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35);
}

.pulse-btn--line {
  margin-left: 1rem;
  border: 2px solid #2563eb;
  color: #2563eb;
}

.pulse-btn--line:hover {
  background: #2563eb;
  color: #fff;
}

/* === VISUAL BACKGROUND === */
.pulse-intro__visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.12;
  background: radial-gradient(circle at 25% 30%, #3b82f6 0%, transparent 55%), radial-gradient(circle at 80% 75%, #a855f7 0%, transparent 60%);
}

.pulse-intro__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .pulse-intro__tagline {
    font-size: 1rem;
  }
  .pulse-btn--line {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
  }
  .pulse-btn {
    width: 100%;
  }
}
.gn-trends {
  padding: 80px 0;
  background: #fafafa;
  color: #111;
}

.gn-trends__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.gn-trends__title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.gn-trends__desc {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
}

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

.gn-gamecard {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  -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, -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;
}

.gn-gamecard:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.gn-gamecard__img {
  width: 100%;
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.gn-gamecard__info {
  padding: 15px;
}

.gn-gamecard__name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.gn-gamecard__genre {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.gn-gamecard__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: none;
  gap: 0.25rem; /* расстояние между текстом и стрелкой */
  font-size: 0.95rem;
  font-weight: 500;
  color: #ff6f61; /* акцентный цвет */
  text-decoration: none;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, transform 0.3s ease;
  transition: color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.gn-gamecard__price {
  font-size: 1rem; /* Умеренный размер шрифта */
  font-weight: 600; /* Полужирный, чтобы выделялась цена */
  color: #ff6b6b; /* Яркий акцентный цвет (красный) */
  margin: 0.25rem 0; /* Небольшой отступ сверху и снизу */
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.gn-gamecard:hover .gn-gamecard__price {
  color: #ff4c4c; /* При наведении слегка усиливаем цвет */
}

/* Для адаптивности */
@media (max-width: 768px) {
  .gn-gamecard__price {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .gn-gamecard__price {
    font-size: 0.9rem;
  }
}
.gn-gamecard__btn:hover {
  color: #ff3b20; /* цвет при hover */
}

.gn-gamecard__btn:hover::after {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.gn-gamecard__btn::after {
  content: "→";
  display: inline-block;
  -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;
}

/* --- Overlay --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 999;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

/* --- Modal content --- */
.modal-content {
  background-color: #121212;
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 450px;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  -webkit-animation: slideDown 0.3s ease;
          animation: slideDown 0.3s ease;
}

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideDown {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
/* --- Close button --- */
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.modal-close:hover {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

/* --- Title and subtitle --- */
.modal-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.modal-subtitle {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  color: #ccc;
}

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

.modal-form label {
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
  color: #bbb;
}

.modal-form input,
.modal-form select {
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  border: 1px solid #333;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  -webkit-transition: border 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border 0.2s ease, box-shadow 0.2s ease;
  transition: border 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}

.modal-form input:focus,
.modal-form select:focus {
  border-color: #ff6b6b;
  -webkit-box-shadow: 0 0 6px rgba(255, 107, 107, 0.5);
          box-shadow: 0 0 6px rgba(255, 107, 107, 0.5);
}

/* --- Privacy checkbox --- */
.privacy-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #ccc;
}

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

/* --- Submit button --- */
.modal-submit {
  padding: 0.7rem 1.2rem;
  border-radius: 10px;
  background-color: #ff6b6b;
  border: none;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: background 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, transform 0.2s ease;
  transition: background 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.modal-submit:hover {
  background-color: #ff5252;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

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

/* ================= GN NEWS SECTION ================= */
.gn-news {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.gn-news__header {
  text-align: center;
  margin-bottom: 50px;
}

.gn-news__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.gn-news__desc {
  font-size: 1rem;
  color: #555;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.gn-newscard {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -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;
}

.gn-newscard:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

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

.gn-newscard__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;
  gap: 12px;
}

.gn-newscard__title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
}

.gn-newscard__text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.gn-newscard__date {
  font-size: 0.85rem;
  color: #999;
  text-align: right;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gn-newscard__img {
    height: 150px;
  }
}
@media (max-width: 480px) {
  .gn-news__title {
    font-size: 2rem;
  }
  .gn-news__desc {
    font-size: 0.95rem;
  }
  .gn-newscard__title {
    font-size: 1.1rem;
  }
  .gn-newscard__text {
    font-size: 0.9rem;
  }
}
/* ===== Секция категорий ===== */
.gn-categories {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.gn-categories__header {
  text-align: center;
  margin-bottom: 40px;
}

.gn-categories__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.gn-categories__desc {
  font-size: 1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Сетка карточек ===== */
.gn-categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

/* ===== Карточка категории ===== */
.gn-category-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px 15px;
  text-align: center;
  -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;
}

.gn-category-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.gn-category-card__img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  -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;
}

.gn-category-card:hover .gn-category-card__img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.gn-category-card__name {
  font-size: 1.7rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.gn-category-card__count {
  font-size: 1.2rem;
  color: #888;
}

/* ===== Адаптив ===== */
@media (max-width: 768px) {
  .gn-categories__grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
  }
  .gn-categories__title {
    font-size: 1.75rem;
  }
  .gn-category-card__img {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 480px) {
  .gn-categories__grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
  }
  .gn-categories__title {
    font-size: 1.5rem;
  }
}
/* ===== Light News Section ===== */
.gn-news-light {
  background-color: #fdfdfd;
  color: #111;
  padding: 60px 0;
}

.gn-news-light__header {
  text-align: center;
  margin-bottom: 50px;
}

.gn-news-light__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.gn-news-light__desc {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.gn-news-light__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.gn-news-card-light {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  -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;
}

.gn-news-card-light:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.gn-news-card-light__img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
}

.gn-news-card-light__info {
  padding: 15px;
}

.gn-news-card-light__name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #111;
}

.gn-news-card-light__category {
  font-size: 0.8rem;
  font-weight: 600;
  color: #ff4c3b;
  margin-bottom: 8px;
  display: block;
}

.gn-news-card-light__desc {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 10px;
}

.gn-news-card-light__date {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 12px;
}

.gn-news-card-light__btn {
  font-size: 0.9rem;
  color: #ff4c3b;
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.gn-news-card-light__btn:hover {
  color: #111;
}

/* Футер */
.gn-footer {
  background-color: #f8f9fa;
  color: #222;
  padding: 60px 0 30px;
  font-family: "Segoe UI", sans-serif;
}

.gn-footer__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Верхняя часть футера */
.gn-footer__top {
  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;
  gap: 40px;
  margin-bottom: 40px;
}

/* Бренд */
.gn-footer__brand {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 250px;
          flex: 1 1 250px;
}

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

.gn-footer__logo span {
  color: #222;
}

.gn-footer__desc {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Ссылки */
.gn-footer__links {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 200px;
          flex: 1 1 200px;
}

.gn-footer__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #111;
}

.gn-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gn-footer__list li {
  margin-bottom: 10px;
}

.gn-footer__list a {
  text-decoration: none;
  color: #555;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.gn-footer__list a:hover {
  color: #ff4c3b;
}

/* Платежи */
.gn-footer__payments {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 200px;
          flex: 1 1 200px;
}

.gn-footer__payment-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
}

.gn-footer__payment-icons span {
  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: 3px 8px;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #ddd;
  -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;
}

.gn-footer__payment-icons span img {
  height: 30px;
  width: auto;
}

.gn-footer__payment-icons span:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Нижняя часть футера */
.gn-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;
  border-top: 1px solid #e5e5e5;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #777;
  gap: 10px;
}

.gn-footer__policies a {
  margin-left: 15px;
  text-decoration: none;
  color: #777;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.gn-footer__policies a:hover {
  color: #ff4c3b;
}

/* Адаптив */
@media (max-width: 768px) {
  .gn-footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
  .gn-footer__brand,
  .gn-footer__links,
  .gn-footer__payments {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .gn-footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
  .gn-footer__policies a {
    margin-left: 0;
    margin-right: 10px;
  }
}
/* ===== GN HOT GAMES SECTION ===== */
.gn-hot-games {
  padding: 80px 0;
  background-color: #f5f5f5;
  font-family: "Inter", sans-serif;
  color: #111;
}

.gn-hot-games__header {
  text-align: center;
  margin-bottom: 50px;
}

.gn-hot-games__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.gn-hot-games__desc {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.gn-hot-games__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* ===== CARD STYLES ===== */
.gn-hotgame-card {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 25px 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;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.gn-hotgame-card:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gn-hotgame-card__img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.gn-hotgame-card__info {
  padding: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.gn-hotgame-card__name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
}

.gn-hotgame-card__genre {
  font-size: 1rem;
  color: #888;
  margin-bottom: 15px;
}

.gn-hotgame-card__desc {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  margin-bottom: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.gn-hotgame-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff4d4d;
  margin-bottom: 15px;
}

/* ===== BUTTON ===== */
.gn-hotgame-card__btn {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  background: none;
  border: 2px solid #1a1a1a;
  border-radius: 50px;
  padding: 10px 25px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  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;
  gap: 8px;
}

.gn-hotgame-card__btn:hover {
  background-color: #1a1a1a;
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .gn-hot-games__grid {
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .gn-hot-games__title {
    font-size: 2.5rem;
  }
  .gn-hotgame-card__name {
    font-size: 1.5rem;
  }
  .gn-hotgame-card__desc {
    font-size: 1rem;
  }
  .gn-hotgame-card__price {
    font-size: 1.25rem;
  }
}
@media (max-width: 480px) {
  .gn-hot-games__title {
    font-size: 2rem;
  }
  .gn-hotgame-card__name {
    font-size: 1.25rem;
  }
  .gn-hotgame-card__desc {
    font-size: 0.95rem;
  }
  .gn-hotgame-card__price {
    font-size: 1.1rem;
  }
}
/* ---------------- Player Reviews Section ---------------- */
.gn-player-reviews {
  padding: 80px 0;
  background-color: #f9f9f9;
  font-family: "Inter", sans-serif;
}

.gn-player-reviews__header {
  text-align: center;
  margin-bottom: 60px;
}

.gn-player-reviews__title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.gn-player-reviews__desc {
  font-size: 1.25rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* Grid layout for reviews */
.gn-player-reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

/* Individual review card */
.gn-review-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 30px 25px;
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -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;
}

.gn-review-card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Avatar */
.gn-review-card__avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #ffd700;
}

/* Content */
.gn-review-card__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.gn-review-card__name {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.gn-review-card__text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 12px;
}

.gn-review-card__game {
  font-size: 1rem;
  font-weight: 500;
  color: #888;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gn-player-reviews__grid {
    gap: 25px;
  }
  .gn-review-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;
    padding: 25px 20px;
  }
  .gn-review-card__avatar img {
    width: 70px;
    height: 70px;
  }
  .gn-review-card__content {
    margin-top: 15px;
  }
}
/* ---------------- Newsletter Section ---------------- */
.gn-newsletter {
  padding: 80px 0;
  background-color: #e7f1ff;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.gn-newsletter__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.gn-newsletter__desc {
  font-size: 1.2rem;
  color: #444;
  max-width: 600px;
  margin: 0 auto 40px auto;
}

.gn-newsletter__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gn-newsletter__input {
  padding: 15px 20px;
  font-size: 1rem;
  border: 2px solid #1a73e8;
  border-radius: 8px;
  width: 480px;
  outline: none;
}

.gn-newsletter__input:focus {
  border-color: #0d47a1;
}

.gn-newsletter__btn {
  padding: 15px 25px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: #1a73e8;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.gn-newsletter__btn:hover {
  background-color: #0d47a1;
}

@media (max-width: 480px) {
  .gn-newsletter__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .gn-newsletter__input {
    width: 100%;
  }
  .gn-newsletter__btn {
    width: 100%;
  }
}
/* =========================
   RPG Games Section
========================= */
.gn-rpg-games {
  padding: 80px 0;
  background-color: #fdfdfd;
}

.gn-rpg-games__header {
  text-align: center;
  margin-bottom: 50px;
}

.gn-rpg-games__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

.gn-rpg-games__desc {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid */
.gn-rpg-games__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Card */
.gn-rpggame-card {
  background-color: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  -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;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.gn-rpggame-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.gn-rpggame-card__img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Info */
.gn-rpggame-card__info {
  padding: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.gn-rpggame-card__name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.gn-rpggame-card__genre {
  font-size: 1rem;
  color: #777;
  margin-bottom: 12px;
}

.gn-rpggame-card__desc {
  font-size: 1rem;
  color: #444;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 15px;
  line-height: 1.5;
}

.gn-rpggame-card__price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #e53935;
  margin-bottom: 12px;
}

/* Buy Button */
.gn-rpggame-card .gn-gamecard__btn {
  font-size: 1rem;
  font-weight: 600;
  color: #111;
  background: none;
  border: 2px solid #111;
  border-radius: 8px;
  padding: 10px 18px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.gn-rpggame-card .gn-gamecard__btn:hover {
  background-color: #111;
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gn-rpggame-card__img {
    height: 200px;
  }
  .gn-rpggame-card__name {
    font-size: 1.4rem;
  }
  .gn-rpggame-card__desc {
    font-size: 0.95rem;
  }
}
.gn-about-us {
  padding: 80px 0;
  background-color: #fefefe;
  font-family: "Inter", sans-serif;
}

.gn-about-us__header {
  text-align: center;
  margin-bottom: 60px;
}

.gn-about-us__title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a1a;
}

.gn-about-us__title span {
  color: #ff4c3b;
}

.gn-about-us__desc {
  font-size: 1.1rem;
  color: #555;
  max-width: 720px;
  margin: 15px auto 0;
  line-height: 1.6;
}

.gn-about-us__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.gn-about-us__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 450px;
          flex: 1 1 450px;
}

.gn-about-us__text p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

.gn-about-us__cta {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gn-about-us__image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 450px;
          flex: 1 1 450px;
  text-align: center;
}

.gn-about-us__image img {
  max-width: 100%;
  border-radius: 12px;
  -webkit-box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
          box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* Общие контейнеры */
.gn-mission {
  padding: 80px 0;
  background-color: #f9f9f9;
  color: #111;
  font-family: "Inter", sans-serif;
}

.gn-mission__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.gn-mission__title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #0d0d0d;
}

.gn-mission__title span {
  color: #ff4d6d; /* Акцентный цвет для бренда */
}

.gn-mission__desc {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.8;
}

/* Контент блоков */
.gn-mission__content {
  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;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.gn-mission__block {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 30%;
          flex: 1 1 30%;
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  -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: -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;
}

.gn-mission__block:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.gn-mission__block-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #111;
}

.gn-mission__block-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

/* Адаптив */
@media (max-width: 1024px) {
  .gn-mission__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
  .gn-mission__block {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
@media (max-width: 768px) {
  .gn-mission__title {
    font-size: 2.2rem;
  }
  .gn-mission__desc {
    font-size: 1.1rem;
  }
  .gn-mission__block-title {
    font-size: 1.4rem;
  }
  .gn-mission__block-text {
    font-size: 0.95rem;
  }
}
/* Общие стили секции */
.gn-news-section {
  padding: 80px 0;
  background-color: #f9f9f9;
  font-family: "Inter", sans-serif;
}

.gn-news-section__header {
  text-align: center;
  margin-bottom: 60px;
}

.gn-news-section__title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.gn-news-section__desc {
  font-size: 1.25rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Сетка карточек */
.gn-news-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
}

/* Карточки новостей */
.gn-news-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
          box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -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;
}

.gn-news-card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
          box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.gn-news-card__img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 220px;
}

.gn-news-card__content {
  padding: 25px;
  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;
}

.gn-news-card__title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1a1a1a;
}

.gn-news-card__date {
  font-size: 0.95rem;
  color: #888;
  font-weight: 500;
}

.gn-news-card__genre {
  font-size: 1rem;
  color: #555;
  font-weight: 500;
  margin-bottom: 8px;
}

.gn-news-card__summary {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
}

/* Адаптив */
@media (max-width: 1024px) {
  .gn-news-card__img {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .gn-news-section__title {
    font-size: 2.25rem;
  }
  .gn-news-section__desc {
    font-size: 1.1rem;
  }
  .gn-news-card__img {
    height: 180px;
  }
}
@media (max-width: 480px) {
  .gn-news-section__title {
    font-size: 1.85rem;
  }
  .gn-news-section__desc {
    font-size: 1rem;
  }
  .gn-news-card__img {
    height: 160px;
  }
  .gn-news-card__title {
    font-size: 1.45rem;
  }
  .gn-news-card__summary {
    font-size: 1rem;
  }
}
/* Контейнер секции */
.gn-updates {
  padding: 80px 0;
  background-color: #f9f9f9;
  font-family: "Inter", sans-serif;
}

.gn-updates__header {
  text-align: center;
  margin-bottom: 60px;
}

.gn-updates__title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 16px;
}

.gn-updates__desc {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto;
}

/* Сетка карточек */
.gn-updates__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Карточка игры */
.gn-update-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 25px 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;
}

.gn-update-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.gn-update-card__img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Информация о игре */
.gn-update-card__info {
  padding: 20px;
}

.gn-update-card__name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.gn-update-card__genre {
  font-size: 1rem;
  font-weight: 500;
  color: #777;
  margin-bottom: 12px;
}

.gn-update-card__desc {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 16px;
  max-height: 130px;
  overflow: hidden;
}

.gn-update-card__price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #e63946;
  margin-bottom: 12px;
}

/* Кнопка покупки */
.gn-gamecard__btn {
  font-size: 1rem;
  font-weight: 600;
  color: #e63946;
  border: none;
  background: transparent;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.gn-gamecard__btn:hover {
  color: #d62828;
}

/* Адаптив */
@media (max-width: 768px) {
  .gn-update-card__img {
    height: 200px;
  }
  .gn-update-card__desc {
    max-height: 120px;
  }
}
@media (max-width: 480px) {
  .gn-updates__title {
    font-size: 2.2rem;
  }
  .gn-update-card__name {
    font-size: 1.4rem;
  }
  .gn-update-card__desc {
    font-size: 0.95rem;
  }
}
/* Основной контейнер */
.contact-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  font-family: "Inter", sans-serif;
}

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

/* Заголовок секции */
.contact-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 30px;
}

/* Обертка формы */
.contact-section__form-wrapper {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 16px;
  -webkit-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

/* Группы полей формы */
.contact-form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 20px;
}

.contact-form__group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #333333;
  font-size: 0.95rem;
}

.contact-form__group input,
.contact-form__group textarea {
  padding: 14px 18px;
  border: 1.5px solid #d1d5db;
  border-radius: 12px;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  outline: none;
}

.contact-form__group input:focus,
.contact-form__group textarea:focus {
  border-color: #6366f1;
  -webkit-box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
          box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

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

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

.contact-form__checkbox input[type=checkbox] {
  margin-right: 12px;
  width: 18px;
  height: 18px;
  accent-color: #6366f1;
}

/* Кнопка отправки */
.contact-form__submit {
  display: inline-block;
  width: 100%;
  padding: 16px 0;
  background-color: #6366f1;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact-form__submit:hover {
  background-color: #4f46e5;
  -webkit-box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
          box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

/* Адаптив */
@media (max-width: 768px) {
  .contact-section__title {
    font-size: 2rem;
  }
  .contact-section__form-wrapper {
    padding: 30px;
  }
}
.privacy-policy-section {
  padding: 80px 20px;
  background-color: #fefefe;
  font-family: "Inter", sans-serif;
}

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

.privacy-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
}

.privacy-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4b4b4b;
  margin-bottom: 40px;
}

.privacy-list {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
  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;
}

.privacy-list li {
  position: relative;
  padding-left: 35px;
  font-size: 1rem;
  line-height: 1.7;
  color: #4b4b4b;
}

.privacy-list li::before {
  counter-increment: item;
  content: counter(item) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: #ff4b4b;
}

.privacy-list strong {
  font-weight: 600;
  color: #1a1a1a;
}

/* Адаптив */
@media (max-width: 768px) {
  .privacy-title {
    font-size: 1.7rem;
  }
  .privacy-intro {
    font-size: 1rem;
  }
  .privacy-list li {
    font-size: 0.95rem;
  }
}
.terms-section {
  padding: 80px 20px;
  background-color: #fafafa;
  font-family: "Inter", sans-serif;
}

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

.terms-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
}

.terms-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4b4b4b;
  margin-bottom: 40px;
}

.terms-list {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
  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;
}

.terms-list li {
  position: relative;
  padding-left: 35px;
  font-size: 1rem;
  line-height: 1.7;
  color: #4b4b4b;
}

.terms-list li::before {
  counter-increment: item;
  content: counter(item) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: #007bff;
}

.terms-list strong {
  font-weight: 600;
  color: #1a1a1a;
}

/* Адаптив */
@media (max-width: 768px) {
  .terms-title {
    font-size: 1.7rem;
  }
  .terms-intro {
    font-size: 1rem;
  }
  .terms-list li {
    font-size: 0.95rem;
  }
}
.disclaimer-section {
  padding: 80px 20px;
  background-color: #fff8f0;
  font-family: "Inter", sans-serif;
}

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

.disclaimer-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
}

.disclaimer-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4b4b4b;
  margin-bottom: 40px;
}

.disclaimer-list {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
  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;
}

.disclaimer-list li {
  position: relative;
  padding-left: 35px;
  font-size: 1rem;
  line-height: 1.7;
  color: #4b4b4b;
}

.disclaimer-list li::before {
  counter-increment: item;
  content: counter(item) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: #ff6b3c;
}

.disclaimer-list strong {
  font-weight: 600;
  color: #1a1a1a;
}

/* Адаптив */
@media (max-width: 768px) {
  .disclaimer-title {
    font-size: 1.7rem;
  }
  .disclaimer-intro {
    font-size: 1rem;
  }
  .disclaimer-list li {
    font-size: 0.95rem;
  }
}
.thanks-section {
  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;
  padding: 120px 20px;
  background: #f5f5f5;
  font-family: "Inter", sans-serif;
  min-height: 100vh;
}

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

.thanks-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ff6b3c;
  margin-bottom: 20px;
}

.thanks-message {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 40px;
}

.thanks-btn {
  display: inline-block;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 600;
  color: #ff6b3c;
  border: 2px solid #ff6b3c;
  border-radius: 8px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.thanks-btn:hover {
  background-color: #ff6b3c;
  color: #fff;
  -webkit-box-shadow: 0 4px 15px rgba(255, 107, 60, 0.4);
          box-shadow: 0 4px 15px rgba(255, 107, 60, 0.4);
}

/* Адаптив */
@media (max-width: 768px) {
  .thanks-title {
    font-size: 2.2rem;
  }
  .thanks-message {
    font-size: 1rem;
  }
}