/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== ROOT VARIABLES ===== */
:root {
  --font-title: "Bebas Neue", sans-serif;
  --font-text: "Roboto", sans-serif;

  --color-bg: #111111;
  --color-dark: #1c1c1c;
  --color-text: #ffffff;
  --color-muted: #fcf6f6;
  --color-accent: #ff6600;
  --color-accent-hover: #e65500;
}

/* ===== BASE STYLES ===== */
body {
  font-family: var(--font-text);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

main {
  position: relative;
  background: #111111;
  overflow: hidden;
  min-height: 80vh;
}

main::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 200%;
  height: 200%;
  background-image: radial-gradient(circle, #ff6600 2px, transparent 2px);
  background-size: 80px 80px;
  animation: floatSparks 20s linear infinite;
  opacity: 0.2;
  
}

@keyframes floatSparks {
  from { transform: translateY(0); }
  to   { transform: translateY(-200px); }
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
  background: var(--color-dark);
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

/* Логотип */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  cursor: pointer;
}

.logo-img {
  width: 50px;
  height: auto;
}

.logo-text {
  font-family: var(--font-title);
  font-size: 2.2rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  transition: color 0.3s ease;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav a {
  font-family: var(--font-title);
  font-size: 1.2rem; 
  color: var(--color-text);
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s ease;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav a {
  font-family: var(--font-title);
  font-size: 1.2rem; 
  color: var(--color-text);
  text-transform: uppercase;
  position: relative;
  padding: 6px 10px; 
  transition: color 0.3s ease;
}

.nav a::before,
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-accent);
  box-shadow: 0 0 6px var(--color-accent);
  transition: width 0.4s ease;
}

.nav a::before {
  top: -5px; 
}

.nav a::after {
  bottom: -5px; 
}

.nav a:hover {
  color: var(--color-accent);
}

.nav a:hover::before,
.nav a:hover::after {
  width: 100%;
}

.glow-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-accent),
    #ff7a1a,
    var(--color-accent),
    transparent
  );
  background-size: 200% 100%;
  animation: glow 5s linear infinite; 
  filter: drop-shadow(0 0 4px var(--color-accent));
}

@keyframes glow {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.socials {
  display: flex;
  gap: 20px;
}

.socials a {
  color: var(--color-text);
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.socials a:hover {
  color: var(--color-accent);
  text-shadow: 0 0 8px var(--color-accent), 0 0 16px var(--color-accent);
  transform: scale(1.2);
}
/* ===== FOOTER ===== */
.footer {
  background: var(--color-dark);
  color: var(--color-text);
  padding: 50px 20px 20px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  animation: footer-glow 6s linear infinite;
}

@keyframes footer-glow {
  0% { left: -50%; }
  100% { left: 100%; }
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 80px;
  max-width: 1700px;
  margin: 0 auto;
}

.footer-logo img {
  width: 60px;
  margin-bottom: 10px;
}
.footer-logo h2 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--color-accent);
  margin-bottom: 10px;
}
.footer-logo p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.footer-links h3,
.footer-nav h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--color-accent);
}

.footer-links ul,
.footer-nav ul {
  list-style: none;
}

.footer-links li,
.footer-nav li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-nav a {
  color: var(--color-text);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.footer-links a:hover,
.footer-nav a:hover {
  color: var(--color-accent);
}

.footer-links a:hover::after,
.footer-nav a:hover::after {
  width: 100%;
}

/* Нижняя часть футера */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.85rem;
  color: var(--color-muted);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
}
/* ====== АДАПТИВ ====== */

/* Планшеты */
@media (max-width: 992px) {
  .container {
    padding: 0 15px;
  }

  .nav ul {
    gap: 20px;
  }

  .nav a {
    font-size: 1rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr; 
    gap: 20px;
  }
}

/* Смартфоны */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .logo-text {
    font-size: 1.6rem;
    letter-spacing: 2px;
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .socials {
    gap: 15px;
  }

  .footer-inner {
    grid-template-columns: 1fr; 
    text-align: center;
  }

  .footer-logo img {
    margin: 0 auto 10px;
  }

  .footer-logo h2 {
    font-size: 1.4rem;
  }

  .footer-logo p {
    font-size: 0.85rem;
  }

  .footer-links h3,
  .footer-nav h3 {
    font-size: 1rem;
  }
}

/* Маленькие смартфоны */
@media (max-width: 480px) {
  .nav a {
    font-size: 0.9rem;
  }

  .socials a {
    font-size: 1.1rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
  }
}


/* ===== HERO ===== */
.hero {
  position: relative;
  background: url("../assets2/img/20.webp") no-repeat center/cover;
  color: #fff;
  padding: 80px 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-text {
  max-width: 700px;
  margin-bottom: 50px;
}
.hero-text h1 {
  font-family: var(--font-title);
  font-size: 2.5rem;
  text-transform: uppercase;
  line-height: 1.2;
}
.hero-text h1 span {
  background: var(--color-accent);
  padding: 0 6px;
}
.hero-text p {
  margin-top: 20px;
  color: rgb(255, 255, 255);
}

/* ===== CARDS ===== */
.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; 
}
.card {
  background: rgba(28,28,28,0.9);
  border-radius: 8px;
  padding: 20px;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  max-width: 350px;
  color: #fff;
}
.card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 15px;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card h3 {
  font-family: var(--font-title);
  margin-bottom: 10px;
}
.card .rating {
  color: #ffb400;
  margin-bottom: 10px;
}
.card p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 15px;
}
.card .btn {
  background: var(--color-accent);
  padding: 10px 20px;
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.9rem;
  border-radius: 4px;
}


/* ===== FEATURES SECTION ===== */
.features {
  background: transparent;
  padding: 60px 40px;
  color: #fff;
}

.features-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 80px; 
  max-width: 1600px; 
  margin: 0 auto;
}


.feature-item {
  margin-bottom: 60px;
}

.feature-item h3 {
  font-family: var(--font-title);
  font-size: 2rem; 
  color:var(--color-accent);
  margin-bottom: 15px;
}

.feature-item p {
  font-size: 1.1rem; 
  color: var(--color-muted);
  line-height: 1.8;
  max-width: 400px; 
}

/* Фото по центру */
.features-image img {
  max-width: 800px; 
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 1200px) {
  .features-inner {
    gap: 40px;
    max-width: 1000px;
  }
  .features-image img {
    max-width: 600px;
  }
}

@media (max-width: 992px) {
  .features-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .features-left,
  .features-right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .features-image {
    order: -1;
    margin-bottom: 40px;
  }
  .feature-item p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .features {
    padding: 60px 20px;
  }
  .features-image img {
    max-width: 100%;
  }
  .feature-item h3 {
    font-size: 1.5rem;
  }
  .feature-item p {
    font-size: 1rem;
  }
}
/* ===== FEATURES GRID SECTION ===== */
.features-grid {
  background: transparent; 
  padding: 0px 20px;
  text-align: center;
  color: var(--color-text);
  position: relative;
  z-index: 1;
}

.section-header h2 {
  font-family: var(--font-title);
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-header h2 span {
  color: var(--color-accent);
}
.section-header p {
  max-width: 800px;
  margin: 0 auto 60px;
  color: var(--color-muted);
  line-height: 1.6;
}

/* Grid */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.grid-card {
  background: rgba(28,28,28,0.9);
  padding: 40px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(255,102,0,0); 
}
.grid-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(255,102,0,0.6);
}

/* Иконки */
.grid-card i {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.grid-card h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.grid-card p {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* Адаптив */
@media (max-width: 992px) {
  .grid-cards {
    grid-template-columns: 1fr;
  }
}
/* ===== COIN SECTION ===== */
.coin-section {
  padding: 60px 20px; 
  text-align: center;
  color: #fff;
  position: relative;
}

.coin-title {
  font-family: var(--font-title);
  font-size: 4rem; 
  margin-bottom: 100px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Layout */
.coin-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 120px; 
  max-width: 1600px; 
  margin: 0 auto;
}

.coin-image img {
  max-width: 550px; 
  width: 100%;
  display: block;
  margin: 0 auto;
}

/* Features */
.coin-features {
  display: flex;
  flex-direction: column;
  gap: 70px; 
}

.coin-item {
  display: flex;
  align-items: center;   
  gap: 20px;
  text-align: left;
}

.coin-item .icon {
  flex-shrink: 0;       
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 150, 255, 0.15);
  color: #00aaff;
  font-size: 2.2rem;
  font-weight: bold;
  box-shadow: 0 0 18px rgba(0, 150, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  display: flex;        
  align-items: center;
  justify-content: center;
}
/* ЛЕВАЯ КОЛОНКА */
.coin-features.left .coin-item {
  position: relative;
}
.coin-features.left .coin-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -50px;
  width: 50px;
  height: 2px;
  background: rgba(0,150,255,0.7);
  box-shadow: 0 0 10px rgba(0,150,255,0.9);
  transform: translateY(-50%);
}

/* ПРАВАЯ КОЛОНКА */
.coin-features.right .coin-item {
  position: relative;
}
.coin-features.right .coin-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -50px;
  width: 50px;
  height: 2px;
  background: rgba(0,150,255,0.7);
  box-shadow: 0 0 10px rgba(0,150,255,0.9);
  transform: translateY(-50%);
}


.coin-item .icon:hover {
  background: rgba(0, 150, 255, 0.3);
  transform: scale(1.2);
  box-shadow: 0 0 35px rgba(0, 150, 255, 1);
}

.coin-text .title {
  font-family: var(--font-title);
  font-size: 1.6rem; 
  margin-bottom: 8px;
}

.coin-text .desc {
  font-size: 1.05rem;
  color: var(--color-muted);
  display: none;
  line-height: 1.7;
  max-width: 420px;
}

/* Адаптив */
@media (max-width: 1200px) {
  .coin-wrapper {
    gap: 60px;
  }
  .coin-image img {
    max-width: 450px;
  }
}

@media (max-width: 992px) {
  .coin-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .coin-features {
    align-items: center;
    text-align: center;
  }
  .coin-item {
    justify-content: center;
  }
  .coin-text .desc {
    max-width: 100%;
  }
}


.gradient {
  height: 80px;
  background: linear-gradient(to bottom, #111111, #1c1c1c);
}
.neon {
  height: 5px;
  background: linear-gradient(90deg, transparent, #ff6600, #ff7a1a, #ff6600, transparent);
  background-size: 200% 100%;
  animation: neon-move 4s linear infinite;
  box-shadow: 0 0 15px #ff6600;
}
@keyframes neon-move {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Скрытое состояние для всех секций */
section {
  opacity: 0;
  transform: translateY(50px); 
  transition: all 0.8s ease-out;
}

section.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NFT ITEMS SECTION ===== */
.nft-items {
  background: transparent;
  color: #fff;
  padding: 80px 5% 100px 10%;
  position: relative;
  z-index: 1;
}
.nft-inner {
  display: grid;
  grid-template-columns: 300px 1fr; 
  align-items: center;
  gap: 40px;
  max-width: 1600px;
  margin-left: auto;
  margin-right: 0;
}

.nft-left h2 {
  font-family: var(--font-title);
  font-size: 3rem;
  text-transform: uppercase;
  line-height: 1.1;
}
.nft-left h2 span {
  color: var(--color-accent);
}
.nft-left p {
  margin: 20px 0 40px;
  color: var(--color-muted);
  max-width: 280px;
}

.nft-nav {
  display: flex;
  gap: 15px;
}
.nft-arrow {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 8px 14px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.3s;
}
.nft-arrow:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Слайды */
.nft-slides {
  position: relative;
  width: 100%;
}
.nft-slide {
  display: none;
  grid-template-columns: 1fr 1fr; 
  align-items: center;
  gap: 40px;
}
.nft-slide.active {
  display: grid;
}

/* Картинка */
.nft-image img {
  max-width: 600px; 
  width: 100%;
  display: block;
  border-radius: 10px;
  filter: drop-shadow(0 0 30px rgba(255,102,0,0.8));
}

/* Правая часть */
.nft-id {
  color: #999;
  font-size: 0.9rem;
}
.nft-right h3 {
  font-family: var(--font-title);
  font-size: 2.2rem;
  margin: 10px 0;
  color: var(--color-text);
}
.nft-desc {
  color: var(--color-muted);
  font-size: 1rem;
  margin-bottom: 20px;
  max-width: 450px;
}

.nft-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.nft-stats .stat {
  color: #ffb400;
  font-size: 1rem;
}
.nft-stats .stat span {
  color: #fff;
  margin-right: 10px;
}

.nft-price {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.btn-nft {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  padding: 14px 34px;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: bold;
  transition: 0.3s;
}
.btn-nft:hover {
  background: var(--color-accent-hover);
}

/* Пагинация */
.nft-pagination {
  position: absolute;
  bottom: 30px;
  right: 10%;
  display: flex;
  gap: 10px;
}
.nft-pagination span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #555;
  display: inline-block;
}
.nft-pagination span.active {
  background: var(--color-accent);
}

/* Адаптив */
@media (max-width: 992px) {
  .nft-inner {
    grid-template-columns: 1fr;
    text-align: center;
    margin: 0 auto;
  }
  .nft-slide {
    grid-template-columns: 1fr;
  }
  .nft-image img {
    max-width: 100%;
  }
  .nft-left p, .nft-desc {
    margin: 10px auto 30px;
  }
}


/* ===== Testimonials Section ===== */
.testimonials-marquee {
  position: relative;
  background: var(--color-bg);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;  
  z-index: 1;
}

.testimonials-marquee::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 200%;
  height: 200%;
  background-image: radial-gradient(circle, var(--color-accent) 2px, transparent 2px);
  background-size: 80px 80px;
  animation: floatSparks 20s linear infinite;
  opacity: 0.15;
  z-index: -1; 
}
.testimonials-marquee .section-header {
  margin-bottom: 60px;
}
.testimonials-marquee .section-header .label {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 102, 0, 0.1);
  border: 1px solid var(--color-accent);
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--color-accent);
  margin-bottom: 15px;
}
.testimonials-marquee .section-header h2 {
  font-family: var(--font-title);
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.testimonials-marquee .section-header p {
  color: var(--color-muted);
  font-size: 1rem;
}

/* Marquee rows */
.marquee {
  overflow: hidden;
  position: relative;
  margin: 20px 0;
}

.marquee-inner {
  display: flex;
  gap: 30px;
  flex-wrap: nowrap;       
  min-width: max-content;   
  animation: scroll-left 25s linear infinite;
}

.marquee-right .marquee-inner {
  animation: scroll-right 25s linear infinite;
}

.testimonial {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  width: 620px;
  flex-shrink: 0;           
  text-align: left;
}
.testimonial p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--color-muted);
}
.testimonial h4 {
  font-size: 1rem;
  margin: 0;
  color: var(--color-text);
}
.testimonial span {
  font-size: 0.85rem;
  color: #aaa;
}

/* Animations */
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
/* ===== About Section ===== */
.about-section {
  position: relative;
  background: var(--color-bg);
  color: var(--color-text);
  padding: 100px 40px;
  overflow: hidden; 
  z-index: 1;
}

/* фон с искрами */
.about-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 200%;
  height: 200%;
  background-image: radial-gradient(circle, var(--color-accent) 2px, transparent 2px);
  background-size: 80px 80px;
  animation: floatSparks 20s linear infinite;
  opacity: 0.15;
  z-index: -1; 
}

@keyframes floatSparks {
  from { transform: translateY(0); }
  to   { transform: translateY(-200px); }
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* Левая часть с картинками */
.about-images {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-images .img-box {
  border: 3px solid var(--color-accent);
  border-radius: 8px;
  overflow: hidden;
  max-width: 400px;
}
.about-images img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.about-images .img-box:nth-child(2) {
  position: absolute;
  top: 80px;
  left: 120px;
  z-index: 2;
  transform: rotate(2deg);
}
.about-images .img-box:nth-child(3) {
  margin-left: 60px;
  transform: rotate(-2deg);
}

/* Правая часть с текстом */
.about-content h2 {
  font-family: var(--font-title);
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.about-content h2 span {
  color: var(--color-accent);
}
.about-content p {
  margin-bottom: 25px;
  color: var(--color-muted);
  line-height: 1.7;
}

/* Списки */
.about-lists {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}
.about-lists ul {
  list-style: none;
  padding: 0;
}
.about-lists li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
  color: var(--color-text);
}
.about-lists li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 0.9rem;
}

/* Адаптив */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-images {
    justify-content: center;
    align-items: center;
  }
  .about-images .img-box:nth-child(2),
  .about-images .img-box:nth-child(3) {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin: 0;
  }
  .about-lists {
    flex-direction: column;
    align-items: center;
  }
}

/* Адаптив */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-images {
    justify-content: center;
    align-items: center;
  }
  .about-images .img-box:nth-child(2),
  .about-images .img-box:nth-child(3) {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin: 0;
  }
  .about-lists {
    flex-direction: column;
    align-items: center;
  }
}
.divider.big-wave {
  line-height: 0;
  overflow: hidden;
  margin-top: -40px; 
}

.divider.big-wave svg {
  display: block;
  width: 100%;
  height: 100px; 
}
/* ===== Banner Section ===== */
.banner-section {
  position: relative;
  min-height: 400px; 
  background: url("../assets2/img/32.webp") no-repeat center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding: 60px 20px; 
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.banner-content h1 {
  font-family: var(--font-title);
  font-size: 2rem; 
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 20px;
}

.banner-btn {
  display: inline-block;
  padding: 10px 24px;
  background: #fff;
  color: #111;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: bold;
  border-radius: 4px;
  transition: 0.3s;
}

.banner-btn:hover {
  background: var(--color-accent);
  color: #fff;
}


/* ===== Servers Section ===== */
.servers-section {
  position: relative;
  padding: 80px 20px;
  background: transparent; 
  color: var(--color-text);
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.servers-container {
  max-width: 1000px;
  margin: 0 auto;
}

.servers-container h2 {
  font-family: var(--font-title);
  font-size: 2.2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.servers-container p {
  color: var(--color-muted);
  margin-bottom: 30px;
}

.chart-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  box-shadow: none;
}



/* Popup */
.help-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 300px;
  background: var(--color-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,102,0,0.5);
  color: var(--color-text);
  z-index: 9999;
  display: none; 
  animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.help-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background: var(--color-accent);
  border-radius: 10px 10px 0 0;
  font-weight: bold;
}
.help-header button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #fff;
}

.help-body {
  padding: 15px;
  text-align: center;
}
.help-body p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 10px;
}
.help-body textarea {
  width: 100%;
  height: 80px;
  border-radius: 6px;
  border: none;
  padding: 8px;
  resize: none;
  font-family: var(--font-text);
  margin-bottom: 10px;
}
.help-body button {
  background: var(--color-accent);
  border: none;
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}
.help-body button:hover {
  background: var(--color-accent-hover);
}

.help-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: var(--color-accent);
  border-radius: 10px 10px 0 0;
  font-weight: bold;
  color: #fff;
}

.manager-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.manager-info img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}
.manager-info strong {
  font-size: 0.95rem;
}
.manager-info span {
  font-size: 0.8rem;
  color: #eee;
}

.help-header button {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #fff;
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(255,102,0,0.6);
  display: none; 
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: all 0.3s ease;
}
.scroll-top:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 0 20px rgba(255,102,0,0.9);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: transparent;
  padding: 100px 20px;
  color: var(--color-text);
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: flex-start;
}

.faq-left h2 {
  font-family: var(--font-title);
  font-size: 3.5rem; 
  text-transform: uppercase;
  line-height: 1.2;
}
.faq-left h2 span {
  color: var(--color-accent);
}

/* FAQ items */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 25px 0; 
}

.faq-question {
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.4rem; 
  width: 100%;
  text-align: left;
  font-family: var(--font-title);
  cursor: pointer;
  position: relative;
  padding-right: 35px;
  transition: color 0.3s ease;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 1.6rem;
  color: var(--color-accent);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
  color: var(--color-accent);
}
.faq-item.active .faq-question::after {
  content: "-";
  transform: rotate(180deg);
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  color: var(--color-muted);
  font-size: 1.05rem; 
  line-height: 1.8;
  transition: max-height 0.6s ease, opacity 0.4s ease;
}
.faq-item.active .faq-answer {
  opacity: 1;
  margin-top: 12px;
}

/* Responsive */
@media (max-width: 992px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-left {
    text-align: center;
  }
  .faq-left h2 {
    font-size: 2.4rem;
  }
}

.news-section {
  background: transparent;
  padding: 80px 20px;
  color: var(--color-text);
  position: relative;
  z-index: 1;
}

.news-tabs {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  justify-content: center;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}

.tab-btn {
  background: none;
  border: none;
  color: var(--color-text);
  font-family: var(--font-title);
  font-size: 1.2rem;
  text-transform: uppercase;
  cursor: pointer;
  padding: 10px 0;
  position: relative;
  transition: color 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
  color: var(--color-accent);
}

.tab-btn.active::after,
.tab-btn:hover::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-accent);
  box-shadow: 0 0 10px var(--color-accent);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.news-card {
  background: rgba(28,28,28,0.9);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-img {
  width: 100%;
  height: 200px;          /* фиксированная высота превью */
  overflow: hidden;       /* скрываем лишнее */
  border-radius: 6px;     /* опционально, скруглённые углы */
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* фото заполняет блок, обрезается красиво */
  display: block;
}


.news-body {
  padding: 20px;
}
.news-body h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--color-text);
}
.news-body .meta {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 10px;
}
.news-body p {
  font-size: 0.95rem;
  color: var(--color-muted);
}

.company-section {
  background: transparent;
  color: var(--color-text);
  padding: 100px 20px;
  position: relative;
  z-index: 1;
}

/* Message from CEO */
.ceo-message {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}

.ceo-left h2 {
  font-family: var(--font-title);
  font-size: 3rem;
  text-transform: uppercase;
  line-height: 1.2;
}
.ceo-left h2 span {
  color: var(--color-accent);
}

.ceo-right p {
  color: var(--color-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}
.ceo-sign {
  font-style: italic;
  color: var(--color-accent);
  font-weight: bold;
}

/* Open Positions */
.positions h2 {
  font-family: var(--font-title);
  font-size: 2.5rem;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 50px;
}
.positions h2 span {
  color: var(--color-accent);
}

.positions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.position-card {
  background: rgba(28,28,28,0.9);
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.position-card .icon {
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 15px;
  display: block;
}

.position-card h3 {
  font-family: var(--font-title);
  margin-bottom: 10px;
}

.position-card p {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-apply {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: bold;
  transition: 0.3s;
}
.btn-apply:hover {
  background: var(--color-accent-hover);
}

@media (max-width: 1200px) {
  .ceo-message {
    gap: 40px;
  }
  .ceo-left h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .ceo-message {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .ceo-left h2 {
    font-size: 2rem;
  }
  .ceo-right p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .ceo-message {
    margin-bottom: 50px;
  }
  .positions h2 {
    font-size: 2rem;
  }
  .position-card {
    padding: 20px 15px;
  }
  .position-card h3 {
    font-size: 1.2rem;
  }
  .position-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .ceo-left h2 {
    font-size: 1.6rem;
  }
  .positions h2 {
    font-size: 1.6rem;
  }
  .btn-apply {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}
.gameplay-section {
  background: transparent;
  color: var(--color-text);
  padding: 100px 20px;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-family: var(--font-title);
  font-size: 2.8rem;
  text-transform: uppercase;
}
.section-header h2 span {
  color: var(--color-accent);
}
.section-header p {
  color: var(--color-muted);
  max-width: 800px;
  margin: 20px auto 0;
  line-height: 1.7;
}

/* Grid */
.gameplay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.gameplay-card {
  background: rgba(28,28,28,0.9);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.gameplay-card .icon {
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 15px;
}
.gameplay-card h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.gameplay-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Highlight block */
.gameplay-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.highlight-text h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--color-accent);
}
.highlight-text p {
  color: var(--color-muted);
  line-height: 1.7;
}
.highlight-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255,102,0,0.4);
}

@media (max-width: 992px) {
  .gameplay-highlight {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .highlight-image img {
    max-width: 600px;
    margin: 0 auto;
  }
}
.contact-section {
  position: relative;
  padding: 100px 20px;
  color: var(--color-text);
  overflow: hidden;
  z-index: 1;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 200%;
  height: 200%;
  background-image: radial-gradient(circle, var(--color-accent) 2px, transparent 2px);
  background-size: 80px 80px;
  animation: floatSparks 20s linear infinite;
  opacity: 0.15;
  z-index: -1;
}

@keyframes floatSparks {
  from { transform: translateY(0); }
  to   { transform: translateY(-200px); }
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-image img {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 0 auto;
}

.contact-form-box h2 {
  font-family: var(--font-title);
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.contact-form-box h2 span {
  color: var(--color-accent);
}
.contact-form-box p {
  margin-bottom: 30px;
  color: var(--color-muted);
  font-size: 1rem;
}

.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--color-text);
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-accent);
}
.contact-form textarea {
  min-height: 120px;
  resize: none;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--color-muted);
}
.form-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--color-accent);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 15px rgba(255,102,0,0.5);
}
.btn-submit:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 0 25px rgba(255,102,0,0.9);
}

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-image img {
    max-width: 350px;
  }
}
.contact-info {
  margin-top: 40px;
  padding: 20px;
  background: rgba(28,28,28,0.9);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255,102,0,0.3);
}

.contact-info h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--color-accent);
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info .icon {
  font-size: 1.2rem;
  color: var(--color-accent);
}

.contact-info a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-info a:hover {
  color: var(--color-accent);
}
.form-message {
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  display: none; 
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.form-message.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.form-message.success {
  background: rgba(0, 200, 100, 0.1);
  color: #4ef58a;
  border: 1px solid #4ef58a;
  box-shadow: 0 0 12px rgba(78, 245, 138, 0.4);
}
.policy-section {
  position: relative;
  background: var(--color-bg);
  color: var(--color-text);
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.policy-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 200%;
  height: 200%;
  background-image: radial-gradient(circle, var(--color-accent) 2px, transparent 2px);
  background-size: 80px 80px;
  animation: floatSparks 20s linear infinite;
  opacity: 0.12;
  z-index: -1;
}

.policy-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-left: 3px solid var(--color-accent);
  border-right: 3px solid var(--color-accent);
  opacity: 0.3;
  box-shadow: 0 0 15px var(--color-accent);
  pointer-events: none;
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.policy-container h1 {
  font-family: var(--font-title);
  font-size: 3rem;
  margin-bottom: 25px;
  text-transform: uppercase;
}
.policy-container h1 span {
  color: var(--color-accent);
}

.policy-container p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-muted);
  margin: 0 auto;
}

@media (max-width: 768px) {
  .policy-container h1 {
    font-size: 2rem;
  }
  .policy-container p {
    font-size: 1rem;
  }
}
.policy-section {
  position: relative;
  background: var(--color-bg);
  color: var(--color-text);
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.policy-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 200%;
  height: 200%;
  background-image: radial-gradient(circle, var(--color-accent) 2px, transparent 2px);
  background-size: 80px 80px;
  animation: floatSparks 20s linear infinite;
  opacity: 0.12;
  z-index: -1;
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.policy-container h1 {
  font-family: var(--font-title);
  font-size: 3rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}
.policy-container h1 span {
  color: var(--color-accent);
}
.policy-container h1::after {
  content: "";
  display: block;
  width: 60%;
  height: 4px;
  background: var(--color-accent);
  margin: 12px auto 0;
  border-radius: 2px;
  box-shadow: 0 0 10px var(--color-accent);
}

.policy-container p::first-letter {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--color-accent);
  float: left;
  margin-right: 6px;
  line-height: 1;
}

.policy-container p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-muted);
  margin: 0 auto;
  text-align: justify;
}

@media (max-width: 768px) {
  .policy-container h1 {
    font-size: 2rem;
  }
  .policy-container p {
    font-size: 1rem;
  }
}
ul {
  list-style-type: none; /* убираем точки */
  margin: 0;             /* убираем отступы сверху/снизу */
  padding: 0;            /* убираем отступы слева */
}
.stats-section {
  background: #111; /* тёмный фон */
  padding: 80px 20px;
  text-align: center;
  color: #ddd; /* спокойный текст */
}

.stats-section .section-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #fff;
}

.stats-section .section-header span {
  color: #ff6600; /* лёгкий акцент */
}

.stats-section .section-header p {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat-item {
  padding: 20px;
  background: #1a1a1a;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
}

.stat-item h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ff6600;
}

.stat-item p {
  font-size: 0.95rem;
  color: #bbb;
}
