@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: #0b0c10; /* тёмный фон */
  color: #ffffff; /* светлый текст */
  line-height: 1.3;
  font-size: 16px;
}

.wrapper {
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
}

/* ---------- Header ---------- */
.gn-header {
  width: 100%;
  padding: 20px 15px;
  background: #121318; /* тёмный фон */
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  position: sticky;
  top: 0;
  z-index: 999;
  -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;
}

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

.container-df {
  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;
}

.gn-logo {
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  position: relative;
}

.gn-logo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 3px;
  background: #2563eb;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}

.gn-logo:hover::after {
  width: 100%;
}

.gn-nav .gn-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  list-style: none;
}

.gn-menu li a {
  color: #ffffff;
  font-weight: 600;
  position: relative;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.gn-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #2563eb;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.gn-menu li a:hover::after {
  width: 100%;
}

.gn-menu li a:hover {
  color: #2563eb;
}

/* ---------- Burger Menu ---------- */
.gn-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: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.gn-burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #ffffff;
  border-radius: 2px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.gn-burger.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
          transform: rotate(45deg) translate(5px, 5px);
}

.gn-burger.active span:nth-child(2) {
  opacity: 0;
}

.gn-burger.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(5px, -5px);
          transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .gn-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 250px;
    height: 100vh;
    background: #121318;
    -webkit-box-shadow: -2px 4px 20px rgba(0, 0, 0, 0.7);
            box-shadow: -2px 4px 20px rgba(0, 0, 0, 0.7);
    border-left: 2px solid #2563eb;
    -webkit-transition: right 0.5s ease;
    transition: right 0.5s ease;
    padding-top: 80px;
    padding-left: 10px;
  }
  .gn-nav.active {
    right: 0;
  }
  .gn-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
  .gn-menu li {
    padding-bottom: 4px;
    border-bottom: 1px solid #c0c0c0;
  }
  .gn-burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
/* ---------- Hero Section ---------- */
.gn-hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  padding: 0 15px;
}

.privacy-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.privacy-container .gn-cta-button {
  -ms-flex-item-align: center;
      align-self: center;
}

.gn-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.gn-hero-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(0.45);
          filter: brightness(0.45); /* более тёмный фон */
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.gn-hero:hover .gn-hero-bg img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.gn-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  color: #ffffff;
  -webkit-animation: fadeUp 1s ease forwards;
          animation: fadeUp 1s ease forwards;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.gn-hero-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.gn-hero-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.gn-cta-button {
  padding: 0.8rem 2rem;
  background: -webkit-gradient(linear, left top, right top, from(#2563eb), to(#5b2ee5));
  background: linear-gradient(90deg, #2563eb, #5b2ee5);
  color: #ffffff;
  font-weight: 700;
  border-radius: 8px;
  -webkit-transition: background 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  -webkit-box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
          box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

.gn-cta-button:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  background: -webkit-gradient(linear, left top, right top, from(#5b2ee5), to(#2563eb));
  background: linear-gradient(90deg, #5b2ee5, #2563eb);
  -webkit-box-shadow: 0 0 20px rgba(37, 99, 235, 0.8);
          box-shadow: 0 0 20px rgba(37, 99, 235, 0.8);
}

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

@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .gn-hero-title {
    font-size: 2.5rem;
  }
  .gn-hero-text {
    font-size: 1.1rem;
  }
  .gn-cta-button {
    padding: 0.7rem 1.8rem;
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .gn-hero-title {
    font-size: 2rem;
  }
  .gn-hero-text {
    font-size: 1rem;
  }
  .gn-cta-button {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .gn-hero-title {
    font-size: 1.6rem;
  }
  .gn-hero-text {
    font-size: 0.9rem;
  }
  .gn-cta-button {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
  }
}
.gn-popular-games {
  padding: 80px 15px;
  background: #0f0f15; /* тёмный фон в стиле Epic Games */
  color: #fff;
}

.gn-section-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 1rem;
  color: #ffffff;
}

.gn-section-desc {
  font-size: 1.1rem;
  color: #c0c0c0;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.6;
}

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

.gn-game-card {
  background: #1a1a28;
  border-radius: 12px;
  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;
}

.gn-game-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 30px rgba(91, 46, 229, 0.6);
          box-shadow: 0 10px 30px rgba(91, 46, 229, 0.6);
}

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

.gn-game-info {
  padding: 15px 20px;
}

.gn-game-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.gn-game-desc {
  font-size: 0.95rem;
  color: #b0b0b0;
  line-height: 1.4;
}

/* Адаптив */
@media (max-width: 1024px) {
  .gn-games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gn-section-title {
    font-size: 2.2rem;
  }
  .gn-section-desc {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .gn-games-grid {
    grid-template-columns: 1fr;
  }
  .gn-section-title {
    font-size: 1.8rem;
  }
  .gn-section-desc {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .gn-section-title {
    font-size: 1.6rem;
  }
  .gn-section-desc {
    font-size: 0.9rem;
  }
}
.gn-news-updates {
  padding: 80px 15px;
  background: #0b0b14;
  color: #fff;
}

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

.gn-news-card {
  background: #1a1a28;
  border-radius: 12px;
  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;
}

.gn-news-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 30px rgba(91, 46, 229, 0.6);
          box-shadow: 0 10px 30px rgba(91, 46, 229, 0.6);
}

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

.gn-news-info {
  padding: 15px 20px;
}

.gn-news-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.gn-news-desc {
  font-size: 0.95rem;
  color: #b0b0b0;
  line-height: 1.4;
}

/* Адаптив */
@media (max-width: 1024px) {
  .gn-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gn-section-title {
    font-size: 2.2rem;
  }
  .gn-section-desc {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .gn-news-grid {
    grid-template-columns: 1fr;
  }
  .gn-section-title {
    font-size: 1.8rem;
  }
  .gn-section-desc {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .gn-section-title {
    font-size: 1.6rem;
  }
  .gn-section-desc {
    font-size: 0.9rem;
  }
}
.gn-detailed-reviews {
  padding: 80px 15px;
  background: #0b0b14;
  color: #fff;
}

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

.gn-review-card {
  background: #1a1a28;
  border-radius: 12px;
  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-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(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 30px rgba(91, 46, 229, 0.6);
          box-shadow: 0 10px 30px rgba(91, 46, 229, 0.6);
}

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

.gn-review-info {
  padding: 15px 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.gn-review-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.gn-review-desc {
  font-size: 0.95rem;
  color: #b0b0b0;
  line-height: 1.4;
}

.gn-review-link {
  display: inline-block;
  margin-top: 10px;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.gn-review-link:hover {
  color: #5b2ee5;
}

/* Адаптив */
@media (max-width: 1024px) {
  .gn-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gn-section-title {
    font-size: 2.2rem;
  }
  .gn-section-desc {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .gn-reviews-grid {
    grid-template-columns: 1fr;
  }
  .gn-section-title {
    font-size: 1.8rem;
  }
  .gn-section-desc {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .gn-section-title {
    font-size: 1.6rem;
  }
  .gn-section-desc {
    font-size: 0.9rem;
  }
}
.gn-events-updates {
  padding: 80px 15px;
  background: #0b0b14;
  color: #fff;
}

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

.gn-event-card {
  background: #1a1a28;
  border-radius: 12px;
  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;
}

.gn-event-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 30px rgba(91, 46, 229, 0.6);
          box-shadow: 0 10px 30px rgba(91, 46, 229, 0.6);
}

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

.gn-event-info {
  padding: 15px 20px;
}

.gn-event-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.gn-event-desc {
  font-size: 0.95rem;
  color: #b0b0b0;
  line-height: 1.4;
}

/* Адаптив */
@media (max-width: 1024px) {
  .gn-events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gn-section-title {
    font-size: 2.2rem;
  }
  .gn-section-desc {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .gn-events-grid {
    grid-template-columns: 1fr;
  }
  .gn-section-title {
    font-size: 1.8rem;
  }
  .gn-section-desc {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .gn-section-title {
    font-size: 1.6rem;
  }
  .gn-section-desc {
    font-size: 0.9rem;
  }
}
.gn-footer {
  background: #10101d;
  color: #b0b0b0;
  padding: 50px 15px 30px;
  font-family: "Inter", sans-serif;
}

.gn-footer a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

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

.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: 2rem;
  margin-bottom: 30px;
}

.gn-footer-logo h2 {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
}

.gn-footer-links ul {
  list-style: none;
  padding: 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: 0.8rem;
}

.gn-footer-links ul li a {
  font-weight: 500;
  font-size: 0.95rem;
}

.gn-footer-social a {
  margin-right: 10px;
}

.gn-footer-social img {
  width: 29px;
  height: 29px;
}

.gn-footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #6b7280;
  border-top: 1px solid #1a1a28;
  padding-top: 15px;
}

/* Адаптив */
@media (max-width: 768px) {
  .gn-footer-top {
    -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;
    gap: 1.5rem;
  }
  .gn-footer-links ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem;
  }
  .gn-footer-social {
    margin-top: 10px;
  }
}
/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(100%);
          transform: translateX(-50%) translateY(100%);
  background-color: #1a1a2e;
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
  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;
}

.cookie-banner__text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #cccccc;
}

.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: #5b2ee5;
}

.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: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  -webkit-transition: background 0.3s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.3s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  -webkit-box-shadow: 0 0 8px rgba(37, 99, 235, 0.5);
          box-shadow: 0 0 8px rgba(37, 99, 235, 0.5);
}

.cookie-banner__btn:hover {
  background-color: #5b2ee5;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 0 15px rgba(37, 99, 235, 0.8);
          box-shadow: 0 0 15px rgba(37, 99, 235, 0.8);
}

@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;
  }
}
.highlight-section {
  padding: 70px 15px;
  background: #0b0b14;
  color: #ffffff;
}

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

.highlight-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;
  margin-bottom: 30px;
}

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

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

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

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

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

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

@media (max-width: 1024px) {
  .highlight-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .highlight-text {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .highlight-image {
    height: 10%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 100%;
  }
  .highlight-title {
    font-size: 1.8rem;
  }
  .highlight-desc {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .highlight-title {
    font-size: 1.6rem;
  }
  .highlight-desc {
    font-size: 0.9rem;
  }
}
.contact-section {
  padding: 70px 15px;
  background: #1b1b2f;
  color: #ffffff;
  font-family: "Inter", sans-serif;
}

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

.contact-section__form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.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: 1.5rem;
  background: #25253f;
  padding: 2rem;
  border-radius: 12px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.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;
  gap: 0.5rem;
}

.contact-form__group label {
  font-weight: 600;
  color: #ffffff;
}

.contact-form__group input,
.contact-form__group textarea,
.contact-form__group select {
  padding: 0.7rem 1rem;
  border-radius: 8px;
  border: 1px solid #444466;
  background: #1b1b2f;
  color: #ffffff;
  font-size: 1rem;
  outline: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact-form__group input:focus,
.contact-form__group textarea:focus,
.contact-form__group select:focus {
  border-color: #2563eb;
  -webkit-box-shadow: 0 0 8px #2563eb;
          box-shadow: 0 0 8px #2563eb;
}

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

.contact-form__group select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='5'><polygon points='0,0 10,0 5,5' fill='white'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 10px 5px;
}

.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;
  font-size: 0.9rem;
  color: #aaaaaa;
}

.contact-form__checkbox input {
  width: 18px;
  height: 18px;
}

.contact-form__submit {
  padding: 0.8rem 1.8rem;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  background: -webkit-gradient(linear, left top, right top, from(#2563eb), to(#5b2ee5));
  background: linear-gradient(90deg, #2563eb, #5b2ee5);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.contact-form__submit:hover {
  background: -webkit-gradient(linear, left top, right top, from(#5b2ee5), to(#2563eb));
  background: linear-gradient(90deg, #5b2ee5, #2563eb);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 0 15px #2563eb;
          box-shadow: 0 0 15px #2563eb;
}

/* Адаптив */
@media (max-width: 768px) {
  .contact-section__title {
    font-size: 2rem;
  }
  .contact-form {
    padding: 1.5rem;
  }
  .contact-form__submit {
    width: 100%;
    text-align: center;
  }
}
.faq-section {
  padding: 70px 15px;
  background: #121212; /* тёмный фон */
  color: #ffffff;
  font-family: "Inter", sans-serif;
}

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

.faq-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 3rem;
  color: #ffffff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.faq-item {
  background: #1e1e2f;
  border-radius: 12px;
  padding: 25px 30px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.faq-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.faq-question {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #ff6a00; /* выделяем вопрос цветом */
}

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

@media (max-width: 768px) {
  .faq-title {
    font-size: 2rem;
  }
  .faq-question {
    font-size: 1.2rem;
  }
  .faq-answer {
    font-size: 0.95rem;
  }
}
.privacy-section {
  padding: 80px 15px;
  background: #0f0f17; /* глубокий тёмный фон */
  color: #f0f0f0;
  font-family: "Inter", sans-serif;
}

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

.privacy-title {
  font-size: 2.8rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 3rem;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.privacy-item {
  background: #1a1a2f;
  border-radius: 12px;
  padding: 25px 30px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
          box-shadow: 0 6px 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;
}

.privacy-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
          box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
}

.privacy-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #ff6a00; /* выделение заголовка */
}

.privacy-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #d1d1d1;
}

.privacy-link {
  color: #2563eb;
  text-decoration: underline;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.privacy-link:hover {
  color: #5b2ee5;
}

@media (max-width: 768px) {
  .privacy-title {
    font-size: 2rem;
  }
  .privacy-heading {
    font-size: 1.3rem;
  }
  .privacy-text {
    font-size: 0.95rem;
  }
}