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

*,
*:before,
*:after {
  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;
}

.wrapper {
  font-family: "Poppins", sans-serif;
  width: 100%;
  background-color: #0f0f13;
  min-height: 100%;
  overflow: hidden;
}

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

.header {
  background-color: #0f0f13;
  padding: 20px 0;
  color: #fff;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.header__logo {
  font-family: "Orbitron", sans-serif;
  font-size: 26px;
  color: #00ffc8;
  text-decoration: none;
}

.header__nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
}

.header__link {
  color: #fff;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
}

.header__link:hover {
  color: #00ffc8;
  transform: scale(1.05);
}

/* Бургер */
.header__mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1100;
}

.header__mobile-toggle span {
  display: block;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Анимация бургер->крест */
.header__mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Мобильное меню на всю высоту */
@media (max-width: 768px) {
  .header__nav-list {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(15, 15, 19, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transform: translateX(100%);
    transition: transform 0.5s ease;
    font-size: 24px;
  }
  .header__nav-list {
    width: 100%;
    max-width: 350px;
    padding-left: 20px;
  }
  .header__nav-list.active {
    transform: translateX(0);
  }
  .header__nav-list li {
    width: 100%;
    border-bottom: 1px solid #fff;
    padding-bottom: 3px;
  }
  .header__mobile-toggle {
    display: flex;
  }
}
.epichub-hero {
  position: relative;
  height: 95vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.epichub-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(140deg, rgba(10, 10, 30, 0.7), rgba(0, 200, 255, 0.3)), url("/img/banner.webp") center/cover no-repeat;
  z-index: 1;
  filter: brightness(0.65);
  animation: epichub-bgMove 25s linear infinite;
}

.epichub-hero__background--1 {
  background: linear-gradient(140deg, rgba(10, 10, 30, 0.7), rgba(0, 200, 255, 0.3)), url("/img/banner2.webp") center/cover no-repeat;
}

.epichub-hero__background--2 {
  background: linear-gradient(140deg, rgba(10, 10, 30, 0.7), rgba(0, 200, 255, 0.3)), url("/img/banner3.webp") center/cover no-repeat;
}

.epichub-hero__background--3 {
  background: linear-gradient(140deg, rgba(10, 10, 30, 0.7), rgba(0, 200, 255, 0.3)), url("/img/banner4.webp") center/cover no-repeat;
}

.epichub-hero__background--4 {
  background: linear-gradient(140deg, rgba(10, 10, 30, 0.7), rgba(0, 200, 255, 0.3)), url("/img/banner5.webp") center/cover no-repeat;
}

@keyframes epichub-bgMove {
  0% {
    background-position: center top;
  }
  50% {
    background-position: center bottom;
  }
  100% {
    background-position: center top;
  }
}
.epichub-hero__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.epichub-hero__title {
  font-size: 2.9rem;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
}

.epichub-hero__subtitle {
  font-size: 1.1rem;
  max-width: 750px;
  margin-bottom: 35px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
}

.epichub-hero__buttons {
  display: flex;
  gap: 25px;
}

.epichub-hero__button {
  padding: 14px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  background-color: #00ffe1;
  color: #0a0a0f;
  text-decoration: none;
  transition: all 0.3s ease;
}

.epichub-hero__button:hover {
  background-color: #00d4b8;
  transform: translateY(-4px);
}

.epichub-hero__button--outline {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid #fff;
}

.epichub-hero__button--outline:hover {
  background-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .epichub-hero__title {
    font-size: 1.8rem;
    text-align: center;
  }
  .epichub-hero__subtitle {
    font-size: 1rem;
    max-width: 100%;
    text-align: center;
  }
  .epichub-hero__buttons {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
/* Общие стили секции игр */
.epichub-games {
  padding: 80px 0;
  background: #0f0f13;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.epichub-games__heading {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 700;
  color: #00ffc8;
  text-shadow: 0 4px 10px rgba(0, 255, 200, 0.5);
}

.epichub-games__intro {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #dcdcdc;
}

/* Сетка карточек */
.epichub-games__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* Карточки игр */
.game-card {
  background: linear-gradient(145deg, #1a1a1f, #121217);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 255, 200, 0.5);
}

/* Изображение */
.game-card__image img {
  width: 100%;
  height: 158px;
  display: block;
  border-bottom: 2px solid #00ffc8;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .game-card__image img {
    height: auto;
  }
}

.game-card__image img:hover {
  transform: scale(1.05);
}

/* Информация о игре */
.game-card__info {
  padding: 15px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.game-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #00ffc8;
}

.game-card__description {
  font-size: 0.95rem;
  flex: 1;
  color: #ccc;
  margin-bottom: 12px;
  line-height: 1.4;
}

/* Кнопка скачать */
.game-card__buttons {
  text-align: center;
}

.game-card__button {
  display: inline-block;
  padding: 10px 25px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  background-color: #00ffc8;
  color: #0f0f13;
  text-decoration: none;
  transition: all 0.3s ease;
}

.game-card__button:hover {
  background-color: #00e6b0;
  transform: translateY(-3px);
}

/* Чередование ПК и консоль (добавим уникальные градиенты) */
.game-card--epic1 {
  background: linear-gradient(145deg, #1a1a1f, #0f1f2f);
}

.game-card--epic2 {
  background: linear-gradient(145deg, #1a1a1f, #2f1f1f);
}

.game-card--epic3 {
  background: linear-gradient(145deg, #1a1a1f, #1f2f1f);
}

.game-card--epic4 {
  background: linear-gradient(145deg, #1a1a1f, #2f2f1f);
}

.game-card--epic5 {
  background: linear-gradient(145deg, #1a1a1f, #1f1f2f);
}

.game-card--epic6 {
  background: linear-gradient(145deg, #1a1a1f, #2f1f2f);
}

.game-card--epic7 {
  background: linear-gradient(145deg, #1a1a1f, #1f2f2f);
}

.game-card--epic8 {
  background: linear-gradient(145deg, #1a1a1f, #2f2f2f);
}

.game-card--epic9 {
  background: linear-gradient(145deg, #1a1a1f, #1f1f1f);
}

.game-card--epic10 {
  background: linear-gradient(145deg, #1a1a1f, #0f2f2f);
}

.game-card--epic11 {
  background: linear-gradient(145deg, #1a1a1f, #2f0f1f);
}

.game-card--epic12 {
  background: linear-gradient(145deg, #1a1a1f, #1f0f2f);
}

.game-card--epic13 {
  background: linear-gradient(145deg, #1a1a1f, #2f1f0f);
}

.game-card--epic14 {
  background: linear-gradient(145deg, #1a1a1f, #0f2f1f);
}

.game-card--epic15 {
  background: linear-gradient(145deg, #1a1a1f, #1f2f0f);
}

.game-card--epic16 {
  background: linear-gradient(145deg, #1a1a1f, #2f0f2f);
}

.game-card--epic17 {
  background: linear-gradient(145deg, #1a1a1f, #0f1f1f);
}

.game-card--epic18 {
  background: linear-gradient(145deg, #1a1a1f, #1f0f0f);
}

.game-card--epic19 {
  background: linear-gradient(145deg, #1a1a1f, #0f0f2f);
}

.game-card--epic20 {
  background: linear-gradient(145deg, #1a1a1f, #2f2f0f);
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  .epichub-games__heading {
    font-size: 2rem;
  }
  .epichub-games__intro {
    font-size: 1rem;
    padding: 0 15px;
  }
  .epichub-games__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .game-card__button {
    width: 100%;
  }
}
/* Модалка EpicHub */
.epichub-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.epichub-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 25, 0.75);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

.epichub-modal__box {
  position: relative;
  background: #1f1f28; /* Светлее темного фона */
  padding: 30px 35px;
  border-radius: 16px;
  max-width: 450px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 255, 200, 0.35);
  z-index: 2;
  text-align: center;
  animation: modalFade 0.35s ease-out;
}

@keyframes modalFade {
  from {
    transform: translateY(-40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.epichub-modal__close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #00ffc8;
  cursor: pointer;
  transition: all 0.3s ease;
}

.epichub-modal__close:hover {
  color: #00e6b0;
  transform: scale(1.1);
}

.epichub-modal__image {
  max-width: 300px;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 10px 30px rgba(0, 255, 200, 0.4);
}

.epichub-modal__title {
  font-family: "Orbitron", sans-serif;
  font-size: 1.6rem;
  color: #00ffc8;
  margin-bottom: 20px;
}

.epichub-modal__form label {
  display: block;
  margin: 10px 0 5px;
  font-size: 0.95rem;
  text-align: left;
  color: #ccc;
}

.epichub-modal__form input[type=text],
.epichub-modal__form input[type=email] {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  margin-bottom: 15px;
  background: #2a2a38;
  color: #fff;
  font-size: 0.95rem;
}

.epichub-checkbox {
  display: flex !important;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  margin-bottom: 10px !important;
  color: #ccc;
}

.epichub-modal__submit {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg, #00ffc8, #00e6b0);
  color: #0f0f13;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.epichub-modal__submit:hover {
  background: linear-gradient(90deg, #00e6b0, #00bfa0);
  transform: translateY(-2px);
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  .epichub-modal__box {
    padding: 20px 20px;
  }
  .epichub-modal__image {
    max-width: 120px;
  }
  .epichub-modal__title {
    font-size: 1.4rem;
  }
}
/* Общие стили секции */
.epichub-news {
  padding: 60px 0;
  font-family: "Inter", sans-serif;
}

.epichub-news__heading {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 10px;
  color: #fff;
}

.epichub-news__intro {
  text-align: center;
  font-size: 1.1rem;
  color: #d1d1d1;
  margin-bottom: 50px;
}

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

/* Карточки новостей */
.news-card {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Изображение */
.news-card__image img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.news-card:hover .news-card__image img {
  transform: scale(1.05);
}

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

.news-card__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

/* ===== User Reviews Section ===== */
.user-reviews {
  padding: 80px 20px;
  background-color: #f9f9f9;
  font-family: "Inter", sans-serif;
}

.user-reviews__heading {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.user-reviews__intro {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 50px;
  color: #555;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.user-reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.review-card__name {
  font-weight: 600;
  color: #111;
  font-size: 1.1rem;
}

.review-card__date {
  font-size: 0.85rem;
  color: #888;
}

.review-card__rating {
  margin-left: 10px;
  color: #ffb400; /* золотой цвет для звезд */
}

.review-card__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  margin-top: 10px;
}

/* Адаптив */
@media (max-width: 768px) {
  .user-reviews__grid {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .review-card {
    padding: 20px 15px;
  }
  .user-reviews__heading {
    font-size: 1.8rem;
  }
}
.news-card__description {
  font-size: 0.95rem;
  color: #acabab;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* Кнопка */
.news-card__button {
  display: inline-block;
  padding: 10px 18px;
  background-color: #ff4a57;
  color: #fff;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.news-card__button:hover {
  background-color: #e13b49;
  transform: translateY(-2px);
}

/* Адаптивные размеры текста */
@media (max-width: 768px) {
  .epichub-news__heading {
    font-size: 2rem;
  }
  .epichub-news__intro {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .news-card__image img {
    height: 160px;
  }
}
@media (max-width: 480px) {
  .epichub-news__heading {
    font-size: 1.7rem;
  }
  .news-card__image img {
    height: 140px;
  }
  .news-card__title {
    font-size: 1.1rem;
  }
  .news-card__description {
    font-size: 0.9rem;
  }
}
.game-categories {
  padding: 80px 0;
  background: #f5f5f7;
  text-align: center;
}

.game-categories__title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1c1c1e;
}

.game-categories__intro {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 50px;
}

.game-categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.category-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.category-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1c1c1e;
}

.category-card__desc {
  font-size: 1rem;
  color: #a8a8a8;
  line-height: 1.6;
}

/* Можно добавить уникальные цвета для каждой категории */
.category-card--action {
  border-top: 4px solid #ff4c4c;
}

.category-card--rpg {
  border-top: 4px solid #4c6aff;
}

.category-card--adventure {
  border-top: 4px solid #4cff99;
}

.category-card--fps {
  border-top: 4px solid #ffa64c;
}

.category-card--horror {
  border-top: 4px solid #9b4cff;
}

.category-card--strategy {
  border-top: 4px solid #ffd54c;
}

/* 🍪 Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 0;
  width: 100%;
  background: rgba(20, 20, 25, 0.95);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  color: #fff;
  z-index: 9999;
  padding: 18px 25px;
  transition: bottom 0.6s ease;
  font-family: "Poppins", sans-serif;
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-banner__content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #d5d5d5;
  margin: 0;
  flex: 1;
}

.cookie-banner__link {
  color: #00ffe1;
  text-decoration: none;
  font-weight: 500;
  margin-left: 6px;
  transition: color 0.3s ease;
}

.cookie-banner__link:hover {
  color: #ff8efb;
}

.cookie-banner__btn {
  background: linear-gradient(90deg, #00ffe1, #ff8efb);
  border: none;
  color: #0a0a0a;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.3s ease;
}

.cookie-banner__btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* 📱 Responsive */
@media (max-width: 660px) {
  .cookie-banner__content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }
}
.upcoming-games {
  background: linear-gradient(180deg, #0f0f13 0%, #1a1a20 100%);
  color: #fff;
  padding: 70px 0;
}

.upcoming-games__title {
  text-align: center;
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  color: #00ffc8;
  margin-bottom: 15px;
}

.upcoming-games__intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  color: #bbb;
  font-family: "Poppins", sans-serif;
}

.upcoming-games__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.upcoming-item {
  background-color: #151518;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.upcoming-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 255, 200, 0.2);
}

.upcoming-item__image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.upcoming-item__content {
  padding: 20px;
}

.upcoming-item__name {
  font-family: "Orbitron", sans-serif;
  color: #00ffc8;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.upcoming-item__desc {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 15px;
  line-height: 1.5;
}

.upcoming-item__date {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  color: #888;
}

.site-footer {
  background: linear-gradient(180deg, #0f0f13 0%, #111118 100%);
  color: #ccc;
  padding: 70px 20px 30px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 200, 0.12) 0%, transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
}

.site-footer__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer__logo {
  font-family: "Orbitron", sans-serif;
  font-size: 28px;
  color: #00ffc8;
  text-decoration: none;
  transition: text-shadow 0.3s ease;
}

.footer__logo:hover {
  text-shadow: 0 0 10px #00ffc8, 0 0 20px #00ffc8;
}

.footer__tagline {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: #aaa;
  margin: 15px 0 0;
  line-height: 1.6;
}

.footer__heading {
  font-family: "Orbitron", sans-serif;
  color: #00ffc8;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

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

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: #bbb;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: #00ffc8;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
}

.game-categories {
  padding: 70px 0px;
  background: #0f1118;
  color: #fff;
  text-align: center;
}

.game-categories__title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.2rem;
  color: #00ffc8;
  margin-bottom: 15px;
}

.game-categories__intro {
  color: #ccc;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.game-categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.category-card {
  background: #1a1c25;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 255, 200, 0.15);
}

.category-card img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
}

.category-card__title {
  font-size: 1.3rem;
  margin: 15px 0 5px;
  color: #00ffc8;
}

.category-card__text {
  color: #b8b8b8;
  font-size: 0.95rem;
  padding: 0 15px 20px;
  line-height: 1.6;
}

.featured-games {
  padding: 70px 0px;
  background: radial-gradient(circle at top left, #12141b, #0b0c10 60%);
  color: #fff;
}

.featured-games__title {
  text-align: center;
  font-family: "Orbitron", sans-serif;
  font-size: 2.2rem;
  color: #00ffc8;
  margin-bottom: 15px;
}

.featured-games__intro {
  text-align: center;
  color: #ccc;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.featured-games__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-auto-rows: 260px;
  gap: 25px;
}

.featured-game {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.featured-game--large {
  grid-column: span 2;
  grid-row: span 2;
}

.featured-game:hover {
  transform: scale(1.03);
}

.featured-game__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(70%);
  transition: filter 0.3s ease;
}

.featured-game:hover .featured-game__image {
  filter: brightness(40%);
}

.featured-game__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.8));
  transition: background 0.3s ease;
}

.featured-game__name {
  font-size: 1.4rem;
  color: #00ffc8;
  font-weight: 600;
}

.featured-game__genre {
  font-size: 0.95rem;
  color: #bbb;
  margin: 5px 0 15px;
}

.featured-game__btn {
  align-self: flex-start;
  background: #00ffc8;
  color: #000;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.featured-game__btn:hover {
  background: #00d1a5;
  transform: translateY(-2px);
}

.featured-game__desc {
  font-size: 0.95rem;
  color: #ddd;
  margin: 5px 0;
  line-height: 1.4;
}

.featured-game__dev,
.featured-game__other {
  font-size: 0.85rem;
  color: #aaa;
  margin: 2px 0;
}

@media (max-width: 768px) {
  .featured-game--large {
    grid-column: span 1;
    grid-row: span 1;
  }
}
.news-section {
  padding: 70px 0px;
  background: #0f0f13;
  color: #fff;
}

.news-section__title {
  text-align: center;
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  color: #00ffc8;
  margin-bottom: 10px;
}

.news-section__intro {
  text-align: center;
  color: #bbb;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

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

.news-card {
  background: #1a1a1d;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 200, 0.3);
}

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

.news-card__content {
  padding: 20px;
}

.news-card__title {
  font-size: 1.2rem;
  color: #00ffc8;
  margin-bottom: 10px;
}

.news-card__text {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.5;
}

.news-card__btn {
  text-decoration: none;
  background: #00ffc8;
  color: #000;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.news-card__btn:hover {
  background: #00d1a5;
  transform: translateY(-2px);
}

.latest-news {
  padding: 100px 20px;
  background: #0f0f13;
  color: #fff;
}

.latest-news__title {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  text-align: center;
  color: #00ffc8;
  margin-bottom: 10px;
}

.latest-news__intro {
  text-align: center;
  color: #bbb;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

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

.news-item {
  background: #1a1a1d;
  border-radius: 16px;
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 200, 0.3);
}

.news-item__date {
  font-size: 0.85rem;
  color: #00ffc8;
  margin-bottom: 8px;
  font-weight: 600;
}

.news-item__title {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
}

.news-item__text {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.news-item__link {
  color: #00ffc8;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.news-item__link:hover {
  color: #00d1a5;
}

.featured-suggestions {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f0f13, #1a1a1f);
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.featured-suggestions__heading {
  font-size: 36px;
  text-align: center;
  font-weight: 700;
  color: #00ffc8;
  margin-bottom: 10px;
}

.featured-suggestions__intro {
  text-align: center;
  font-size: 18px;
  max-width: 750px;
  margin: 0 auto 50px auto;
  color: #d0d0d0;
}

.featured-suggestions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0 10px;
}

.suggestion-card {
  background-color: #151518;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.suggestion-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 255, 200, 0.3);
}

.suggestion-card__image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.suggestion-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}

.suggestion-card:hover .suggestion-card__image img {
  transform: scale(1.1);
}

.suggestion-card__info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.suggestion-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #00ffc8;
}

.suggestion-card__platform,
.suggestion-card__genre {
  font-size: 14px;
  color: #c0c0c0;
  display: inline-block;
}

@media (max-width: 768px) {
  .featured-suggestions__grid {
    grid-template-columns: 1fr;
  }
  .featured-suggestions__heading {
    font-size: 28px;
  }
  .featured-suggestions__intro {
    font-size: 16px;
  }
}
/* Контейнер */
.contact-section {
  background-color: #0f0f13;
  color: #fff;
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
}

.contact-section__title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 20px;
  font-family: "Orbitron", sans-serif;
  color: #00ffc8;
}

.contact-section__form-wrapper {
  margin: 0 auto;
  background: #151518;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 255, 200, 0.2);
}

/* Группы полей */
.contact-form__group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.contact-form__group label {
  font-weight: 500;
  margin-bottom: 8px;
  color: #fff;
}

.contact-form__group input,
.contact-form__group textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: none;
  background-color: #0f0f13;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-form__group input:focus,
.contact-form__group textarea:focus {
  outline: none;
  box-shadow: 0 0 10px #00ffc8;
}

/* Текстовое поле */
.contact-form__group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Чекбокс */
.contact-form__checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  font-size: 14px;
}

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

/* Кнопка отправки */
.contact-form__submit {
  width: 100%;
  padding: 15px 0;
  background: linear-gradient(90deg, #00ffc8, #00d4ff);
  color: #0f0f13;
  font-weight: 700;
  font-size: 18px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 200, 0.4);
}

/* Адаптив */
@media (max-width: 768px) {
  .contact-section__form-wrapper {
    padding: 30px 20px;
  }
  .contact-section__title {
    font-size: 28px;
  }
}
.epic-faq {
  padding: 80px 0;
  background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
  color: #ffffff;
}

.epic-faq__title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.epic-faq__subtitle {
  text-align: center;
  color: #b0b0b0;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.epic-faq__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.epic-faq__category {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.faq-category__title {
  font-size: 1.4rem;
  color: #00d4ff;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}

.faq-category__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.faq-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-item__header:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-item__question {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 600;
  margin: 0;
  flex: 1;
  padding-right: 1rem;
}

.faq-item__toggle {
  color: #00d4ff;
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-item__answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item__answer p {
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
  padding-bottom: 1.5rem;
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
}

.faq-item.active .faq-item__toggle {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .epic-faq__grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  .epic-faq__title {
    font-size: 2.2rem;
  }
  .epic-faq__category {
    padding: 1.5rem;
  }
  .faq-item__header {
    padding: 1rem;
  }
  .faq-item__question {
    font-size: 1rem;
  }
}
/* JavaScript için gerekli stil */
.faq-item__answer {
  display: none;
}

.faq-item.active .faq-item__answer {
  display: block;
}

.epic-support {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #ffffff;
}

.epic-support__title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.epic-support__subtitle {
  text-align: center;
  color: #b0b0b0;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.epic-support__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.support-channel {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.support-channel:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
}

.channel-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.channel-title {
  font-size: 1.5rem;
  color: #00d4ff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.channel-description {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.channel-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.info-item {
  color: #b0b0b0;
  font-size: 0.9rem;
}

.channel-button {
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  font-size: 1rem;
}

.channel-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.common-issues {
  margin-bottom: 4rem;
}

.common-issues__title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #ffffff;
  font-weight: 600;
}

.issues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.issue-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 1.5rem;
  border-left: 4px solid #00d4ff;
  transition: transform 0.3s ease;
}

.issue-card:hover {
  transform: translateX(10px);
}

.issue-title {
  color: #00d4ff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.issue-solution {
  color: #cccccc;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.issue-link {
  color: #00d4ff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.issue-link:hover {
  color: #ffffff;
}

.support-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #00d4ff;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #b0b0b0;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .epic-support__grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  .epic-support__title {
    font-size: 2.2rem;
  }
  .support-channel {
    padding: 2rem 1.5rem;
  }
  .issues-grid {
    grid-template-columns: 1fr;
  }
  .support-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .support-stats {
    grid-template-columns: 1fr;
  }
}
.epic-reviews {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.epic-reviews__title {
  font-size: 2.5rem;
  text-align: center;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.epic-reviews__subtitle {
  text-align: center;
  color: #b8b8b8;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.epic-reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.experience-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.experience-card--premium {
  border-left: 4px solid #ffd700;
}

.experience-card--vip {
  border-left: 4px solid #9b59b6;
}

.experience-card--elite {
  border-left: 4px solid #3498db;
}

.experience-card--legendary {
  border-left: 4px solid #e74c3c;
}

.experience-card__header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.user-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.5rem;
}

.user-avatar--pro {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
}

.user-avatar--veteran {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.user-avatar--elite {
  background: linear-gradient(135deg, #3498db, #2980b9);
}

.user-avatar--legend {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.user-info__name {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.user-info__badges {
  display: flex;
  gap: 0.5rem;
}

.badge {
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge--ps5 {
  background: #003087;
  color: #fff;
}

.badge--pc {
  background: #00a8ff;
  color: #fff;
}

.badge--xbox {
  background: #107c10;
  color: #fff;
}

.badge--nintendo {
  background: #e60012;
  color: #fff;
}

.badge--hardcore {
  background: #e74c3c;
  color: #fff;
}

.badge--rpg {
  background: #9b59b6;
  color: #fff;
}

.badge--competitive {
  background: #f39c12;
  color: #fff;
}

.badge--casual {
  background: #27ae60;
  color: #fff;
}

.experience-card__text {
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.experience-card__rating {
  display: flex;
  gap: 0.25rem;
}

.rating-star {
  width: 20px;
  height: 20px;
  background: #333;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.rating-star--active {
  background: #ffd700;
}

.rating-star--half {
  background: linear-gradient(90deg, #ffd700 50%, #333 50%);
}

@media (max-width: 768px) {
  .epic-reviews__grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  .epic-reviews__title {
    font-size: 2rem;
  }
}
.news-archive {
  background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
  padding: 80px 0;
  color: #ffffff;
}

.news-archive__title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.news-archive__subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #b0b0b0;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.news-category {
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.news-category__title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #00d4ff;
  border-bottom: 2px solid #00d4ff;
  padding-bottom: 0.5rem;
  display: inline-block;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.news-article {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 1.5rem;
  border-left: 4px solid #0099ff;
  transition: transform 0.3s ease, background 0.3s ease;
}

.news-article:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.07);
}

.news-article__title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.4;
}

.news-article__content {
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.news-article__meta {
  color: #888888;
  font-size: 0.9rem;
  font-style: italic;
  border-top: 1px solid #333333;
  padding-top: 0.5rem;
}

@media (max-width: 768px) {
  .news-archive__title {
    font-size: 2.2rem;
  }
  .news-archive__subtitle {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
  .news-category {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  .news-article {
    padding: 1rem;
  }
  .news-article__title {
    font-size: 1.2rem;
  }
}
.epic-story {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.epic-story__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.epic-story__title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 700;
}

.epic-story__timeline {
  position: relative;
}

.epic-story__timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #00d4ff 0%, #0099ff 100%);
  border-radius: 3px;
}

.timeline-item {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-year {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  margin-right: 2rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.timeline-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.timeline-content h3 {
  color: #00d4ff;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.timeline-content p {
  color: #ccc;
  line-height: 1.6;
}

.epic-story__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #00d4ff;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #fff;
  font-size: 1.1rem;
}

.epic-values {
  padding: 80px 0;
  background: #0c0c0c;
}

.epic-values__title {
  font-size: 2.5rem;
  color: #fff;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}

.epic-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.value-title {
  color: #00d4ff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.value-description {
  color: #ccc;
  line-height: 1.6;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .epic-story__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .epic-story__stats {
    grid-template-columns: 1fr;
  }
  .epic-story__timeline::before {
    left: 25px;
  }
  .timeline-year {
    width: 50px;
    height: 50px;
    font-size: 1rem;
    margin-right: 1.5rem;
  }
  .epic-values__grid {
    grid-template-columns: 1fr;
  }
}
.epic-team {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
}

.epic-team__title {
  font-size: 2.5rem;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 700;
}

.epic-team__subtitle {
  text-align: center;
  color: #b0b0b0;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.epic-team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.member-avatar {
  flex-shrink: 0;
}

.member-initials {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
}

.member-info {
  flex: 1;
}

.member-name {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.member-role {
  color: #00d4ff;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  display: block;
}

.member-bio {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.member-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.expertise-tag {
  background: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

@media (max-width: 768px) {
  .epic-team__grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  .team-member {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  .member-initials {
    margin: 0 auto;
  }
  .member-expertise {
    justify-content: center;
  }
}
.epic-privacy {
  padding: 60px 0;
  background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
  color: #ffffff;
  line-height: 1.7;
}

.privacy-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 1rem;
}

.privacy-title {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.privacy-intro {
  font-size: 1.3rem;
  color: #b0b0b0;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.last-update {
  display: inline-block;
  background: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.privacy-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.privacy-section {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.section-title {
  font-size: 1.8rem;
  color: #00d4ff;
  margin-bottom: 2rem;
  font-weight: 600;
  line-height: 1.3;
}

.section-content {
  color: #cccccc;
}

.section-content h3 {
  color: #ffffff;
  margin: 2rem 0 1rem 0;
  font-size: 1.3rem;
}

.section-content h4 {
  color: #00d4ff;
  margin: 1.5rem 0 0.5rem 0;
  font-size: 1.1rem;
}

.section-content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.section-content li {
  margin-bottom: 0.8rem;
  padding-left: 0.5rem;
}

.section-content strong {
  color: #ffffff;
}

.privacy-note {
  background: rgba(0, 212, 255, 0.1);
  border-left: 4px solid #00d4ff;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 10px 10px 0;
}

.privacy-alert {
  background: rgba(255, 193, 7, 0.1);
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 10px 10px 0;
}

.security-features {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.security-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookies-grid, .rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.cookie-type, .right-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.cookie-type:hover, .right-item:hover {
  transform: translateY(-5px);
}

.cookie-control {
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
}

.cookie-control a {
  color: #00d4ff;
  text-decoration: none;
}

.cookie-control a:hover {
  text-decoration: underline;
}

.contact-info {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem 0;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.final-note {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 255, 0.1));
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
  text-align: center;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.final-note p {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .privacy-title {
    font-size: 2.2rem;
  }
  .privacy-intro {
    font-size: 1.1rem;
  }
  .privacy-section {
    padding: 2rem 1.5rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .cookies-grid, .rights-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .privacy-title {
    font-size: 1.8rem;
  }
  .privacy-section {
    padding: 1.5rem 1rem;
  }
  .security-features {
    grid-template-columns: 1fr;
  }
}
.epic-terms {
  padding: 60px 0;
  background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
  color: #ffffff;
  line-height: 1.7;
}

.terms-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 1rem;
}

.terms-title {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.terms-intro {
  font-size: 1.3rem;
  color: #b0b0b0;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.last-update {
  display: inline-block;
  background: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.terms-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.terms-section {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.section-title {
  font-size: 1.8rem;
  color: #00d4ff;
  margin-bottom: 2rem;
  font-weight: 600;
  line-height: 1.3;
}

.section-content {
  color: #cccccc;
}

.section-content h3 {
  color: #ffffff;
  margin: 2rem 0 1rem 0;
  font-size: 1.3rem;
}

.section-content h4 {
  color: #00d4ff;
  margin: 1.5rem 0 0.5rem 0;
  font-size: 1.1rem;
}

.section-content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.section-content li {
  margin-bottom: 0.8rem;
  padding-left: 0.5rem;
}

.section-content strong {
  color: #ffffff;
}

.terms-note {
  background: rgba(0, 212, 255, 0.1);
  border-left: 4px solid #00d4ff;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 10px 10px 0;
}

.terms-alert {
  background: rgba(255, 193, 7, 0.1);
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 10px 10px 0;
}

.policy-features, .rules-grid, .technical-grid {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.policy-item, .rule-item, .tech-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem 0;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.final-note {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 255, 0.1));
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
  text-align: center;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.final-note p {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .terms-title {
    font-size: 2.2rem;
  }
  .terms-intro {
    font-size: 1.1rem;
  }
  .terms-section {
    padding: 2rem 1.5rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .policy-features, .rules-grid, .technical-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .terms-title {
    font-size: 1.8rem;
  }
  .terms-section {
    padding: 1.5rem 1rem;
  }
}
.epic-disclaimer {
  padding: 60px 0;
  background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
  color: #ffffff;
  line-height: 1.7;
}

.disclaimer-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 1rem;
}

.disclaimer-title {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.disclaimer-intro {
  font-size: 1.3rem;
  color: #b0b0b0;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.last-update {
  display: inline-block;
  background: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.disclaimer-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.disclaimer-section {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.section-title {
  font-size: 1.8rem;
  color: #00d4ff;
  margin-bottom: 2rem;
  font-weight: 600;
  line-height: 1.3;
}

.section-content {
  color: #cccccc;
}

.section-content h3 {
  color: #ffffff;
  margin: 2rem 0 1rem 0;
  font-size: 1.3rem;
}

.section-content h4 {
  color: #00d4ff;
  margin: 1.5rem 0 0.5rem 0;
  font-size: 1.1rem;
}

.section-content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.section-content li {
  margin-bottom: 0.8rem;
  padding-left: 0.5rem;
}

.section-content strong {
  color: #ffffff;
}

.disclaimer-note {
  background: rgba(0, 212, 255, 0.1);
  border-left: 4px solid #00d4ff;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 10px 10px 0;
}

.disclaimer-alert {
  background: rgba(255, 193, 7, 0.1);
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 10px 10px 0;
}

.disclaimer-features, .financial-grid, .force-majeure-grid {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.disclaimer-item, .financial-item, .force-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.final-note {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 255, 0.1));
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
  text-align: center;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.final-note p {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .disclaimer-title {
    font-size: 2.2rem;
  }
  .disclaimer-intro {
    font-size: 1.1rem;
  }
  .disclaimer-section {
    padding: 2rem 1.5rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .disclaimer-features, .financial-grid, .force-majeure-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .disclaimer-title {
    font-size: 1.8rem;
  }
  .disclaimer-section {
    padding: 1.5rem 1rem;
  }
}
.epic-thanks {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.thanks-header {
  text-align: center;
  margin-bottom: 4rem;
}

.thanks-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.thanks-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thanks-subtitle {
  font-size: 1.3rem;
  color: #b0b0b0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.thanks-content {
  max-width: 1200px;
  margin: 0 auto;
}

.welcome-message {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.welcome-title {
  font-size: 2rem;
  color: #00d4ff;
  margin-bottom: 1.5rem;
  text-align: center;
}

.welcome-text {
  color: #cccccc;
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 2rem;
}

.next-steps {
  margin-top: 3rem;
}

.steps-title {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.step-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

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

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0 auto 1rem auto;
}

.step-title {
  color: #00d4ff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

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

.special-offer {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 255, 0.1));
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 212, 255, 0.3);
  text-align: center;
}

.offer-title {
  font-size: 1.8rem;
  color: #00d4ff;
  margin-bottom: 1rem;
}

.offer-description {
  color: #cccccc;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.offer-code {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 2rem 0;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border: 2px dashed #00d4ff;
}

.code-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00d4ff;
  letter-spacing: 2px;
}

.copy-button {
  background: #00d4ff;
  color: #000000;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.copy-button:hover {
  background: #0099ff;
}

.offer-note {
  color: #b0b0b0;
  font-size: 0.9rem;
  font-style: italic;
}

.community-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.community-title {
  font-size: 1.8rem;
  color: #00d4ff;
  margin-bottom: 1rem;
  text-align: center;
}

.community-text {
  color: #cccccc;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.community-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.community-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

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

.community-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.community-card-title {
  color: #00d4ff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.community-card-text {
  color: #cccccc;
  line-height: 1.5;
}

.support-reminder {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.support-title {
  font-size: 1.8rem;
  color: #00d4ff;
  margin-bottom: 1rem;
}

.support-text {
  color: #cccccc;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.support-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.support-button {
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.support-button:hover {
  transform: translateY(-2px);
}

.support-button--outline {
  background: transparent;
  border: 2px solid #00d4ff;
  color: #00d4ff;
}

.final-thanks {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 255, 0.1));
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.final-title {
  font-size: 1.8rem;
  color: #00d4ff;
  margin-bottom: 1.5rem;
}

.final-text {
  color: #cccccc;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.social-share {
  margin-top: 2rem;
}

.share-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.share-button {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.share-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .thanks-title {
    font-size: 2.2rem;
  }
  .thanks-subtitle {
    font-size: 1.1rem;
  }
  .welcome-message,
  .special-offer,
  .community-section,
  .support-reminder,
  .final-thanks {
    padding: 2rem 1.5rem;
  }
  .steps-grid,
  .community-features {
    grid-template-columns: 1fr;
  }
  .support-options {
    flex-direction: column;
    align-items: center;
  }
  .share-buttons {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .thanks-title {
    font-size: 1.8rem;
  }
  .offer-code {
    flex-direction: column;
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */