/* ========== CSS VARIABLES & RESET ========== */
:root {
  --bg: #0c0c0c;
  --panel: #111;
  --text: #fff;
  --muted: #8d8d8d;
  --accent: #FAA843;
  --accent-2: #FFD84B;
  --accent-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
  --gold-gradient: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00, #FFD700);
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-1: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-gold: 0 8px 25px rgba(255, 215, 0, 0.3);
  --glass: rgba(255,255,255,0.05);
  --container: 1200px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
}

/* Critical CSS Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  height: 100%;
}

body {
  min-height: 100%;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: 
    radial-gradient(ellipse at top right, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(255, 165, 0, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 50%, #0c0c0c 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Анимированные частицы фона */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(255, 215, 0, 0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255, 215, 0, 0.2), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.1), transparent);
  background-repeat: repeat;
  background-size: 200px 200px;
  animation: particleMove 20s infinite linear;
  z-index: -1;
  pointer-events: none;
}

@keyframes particleMove {
  0% { transform: translateY(0) translateX(0); }
  100% { transform: translateY(-200px) translateX(100px); }
}

/* ========== LAYOUT & CONTAINER ========== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== TYPOGRAPHY ========== */
.hero-title {
  font-weight: 900;
  font-size: clamp(32px, 6vw, 64px);
  line-height: 1.1;
  margin: 0 0 24px;
  text-transform: uppercase;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.section-title {
  font-weight: 900;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.1;
  margin: 0 0 40px;
  text-transform: uppercase;
  text-align: center;
}

.accent {
  background: var(--gold-gradient);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s ease infinite;
}

.white {
  color: var(--text);
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-desc {
  color: var(--muted);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6;
  margin: 0 0 32px;
  max-width: 600px;
}

/* ========== HEADER & NAVIGATION ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(30px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: end;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  font-weight: 900;
  font-size: clamp(18px, 3vw, 22px);
}

.brand__gold {
  color: var(--accent);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand__russia {
  color: var(--text);
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--text);
}

.nav-link.active {
  color: var(--text);
}

.nav-link.active::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

.nav-socials {
  display: flex;
  gap: 16px;
}

.icon-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.icon-link:hover {
  color: var(--accent);
}

/* ========== MOBILE MENU WITH GESTURES ========== */
.burger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1001;
}

.burger__bar {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: var(--transition);
  position: absolute;
  left: 4px;
}

.burger__bar:nth-child(1) { top: 8px; }
.burger__bar:nth-child(2) { top: 14px; }
.burger__bar:nth-child(3) { top: 20px; }

.burger.active .burger__bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger.active .burger__bar:nth-child(2) {
  opacity: 0;
}

.burger.active .burger__bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: var(--bg);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 999;
  padding: 80px 24px 40px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  touch-action: pan-y;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu__item {
  width: 100%;
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  background: var(--panel);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 0 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.mobile-menu__link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left 0.6s ease;
}

.mobile-menu__link:hover::before,
.mobile-menu__link.active::before {
  left: 100%;
}

.mobile-menu__link.active {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(255, 215, 0, 0.05);
}

.mobile-menu__link:hover {
  border-color: var(--accent);
  color: var(--text);
  transform: translateX(8px);
}

.mobile-menu__socials {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu__social-link {
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  background: var(--panel);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 0 20px;
  transition: var(--transition);
}

.mobile-menu__social-link:hover {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(255, 215, 0, 0.05);
}

/* ========== HERO SECTION ========== */
.hero.section {
  padding: 140px 0 80px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  aspect-ratio: 16/9;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}

.hero-media:hover .hero-image {
  transform: scale(1.02);
}

.hero-body {
  text-align: left;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 24px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
}

/* ========== DOWNLOAD SECTION ========== */
.download-section {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
}

.download-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: var(--radius-lg);
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  min-height: 60px;
}

.btn:active {
  transform: translateY(2px);
}

.btn--primary {
  background: var(--gold-gradient);
  color: #000;
  box-shadow: var(--shadow-gold);
  animation: pulseGold 2s ease-in-out infinite;
}

.btn--primary:hover {
  animation: none;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.btn-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.btn-icon img {
  width: 20px;
  height: 20px;
  display: block;
}

.btn:hover .btn-icon {
  transform: scale(1.2);
}

.btn-desc {
  display: block;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.8;
  margin-top: 4px;
}

@keyframes pulseGold {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
  }
}

.download-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.info-card {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.2);
}

.info-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.info-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text);
}

.info-card p {
  color: var(--muted);
  font-size: 14px;
}

/* ========== ENHANCED CAROUSEL ========== */
.carousel-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  perspective: 1000px;
}

.carousel {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

.carousel-slide {
  position: absolute;
  transition: var(--transition);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  cursor: pointer;
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.slide-content {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 24px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  text-align: center;
}

.slide-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  margin: 0 auto 12px;
  transition: var(--transition);
}

.carousel-slide[data-social="vk"] .slide-social-icon {
  background: #4C75A3;
  color: white;
}

.carousel-slide[data-social="tg"] .slide-social-icon {
  background: #2AABEE;
  color: white;
}

.carousel-slide[data-social="dc"] .slide-social-icon {
  background: #5865F2;
  color: white;
}

.slide-title {
  color: var(--text);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.slide-action {
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease 0.1s;
}

/* Позиционирование слайдов */
.carousel-slide.far-prev {
  width: 200px;
  height: 280px;
  transform: translateX(-400px) scale(0.7) rotateY(20deg);
  z-index: 1;
  opacity: 0.3;
  filter: blur(1px) brightness(0.6);
}

.carousel-slide.prev {
  width: 280px;
  height: 350px;
  transform: translateX(-200px) scale(0.85) rotateY(10deg);
  z-index: 2;
  opacity: 0.6;
  filter: brightness(0.7);
}

.carousel-slide.active {
  width: 380px;
  height: 450px;
  transform: translateX(0) scale(1) rotateY(0deg);
  z-index: 5;
  opacity: 1;
  filter: brightness(1);
  box-shadow: 
    0 25px 60px rgba(250, 168, 67, 0.4),
    0 0 0 1px rgba(250, 168, 67, 0.2);
  animation: activeSlideGlow 3s ease-in-out infinite;
}

.carousel-slide.next {
  width: 280px;
  height: 350px;
  transform: translateX(200px) scale(0.85) rotateY(-10deg);
  z-index: 2;
  opacity: 0.6;
  filter: brightness(0.7);
}

.carousel-slide.far-next {
  width: 200px;
  height: 280px;
  transform: translateX(400px) scale(0.7) rotateY(-20deg);
  z-index: 1;
  opacity: 0.3;
  filter: blur(1px) brightness(0.6);
}

/* Эффекты при наведении */
.carousel-slide:hover .slide-overlay {
  transform: translateY(0);
}

.carousel-slide:hover img {
  transform: scale(1.05);
}

.carousel-slide:hover .slide-action {
  opacity: 1;
  transform: translateY(0);
}

.carousel-slide.active:hover {
  animation: none;
  box-shadow: 
    0 30px 80px rgba(250, 168, 67, 0.6),
    0 0 0 2px rgba(250, 168, 67, 0.3);
}

@keyframes activeSlideGlow {
  0%, 100% {
    box-shadow: 
      0 25px 60px rgba(250, 168, 67, 0.4),
      0 0 0 1px rgba(250, 168, 67, 0.2);
  }
  50% {
    box-shadow: 
      0 25px 80px rgba(250, 168, 67, 0.6),
      0 0 0 1px rgba(250, 168, 67, 0.4);
  }
}

/* Навигация карусели */
.carousel-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  pointer-events: none;
  z-index: 20;
}

.carousel-nav-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(250, 168, 67, 0.3);
  background: rgba(12, 12, 12, 0.8);
  backdrop-filter: blur(20px);
  color: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  pointer-events: all;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.carousel-nav-btn:hover {
  border-color: var(--accent);
  background: rgba(250, 168, 67, 0.1);
  transform: translateY(-2px) scale(1.1);
  box-shadow: 
    0 12px 35px rgba(250, 168, 67, 0.4),
    0 0 0 1px rgba(250, 168, 67, 0.2);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.carousel-prev, .carousel-next {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: rgba(250, 168, 67, 0.1);
  color: var(--accent);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
}

.carousel-prev:hover, .carousel-next:hover {
  background: var(--accent);
  color: var(--bg);
  transform: scale(1.15);
}

.carousel-indicators {
  display: flex;
  gap: 15px;
}

.indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.indicator::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-gradient);
  border-radius: 50%;
  transition: left 0.3s ease;
}

.indicator.active::before {
  left: 0;
}

.indicator.active {
  transform: scale(1.4);
  box-shadow: 0 0 15px rgba(250, 168, 67, 0.6);
}

.indicator:hover {
  transform: scale(1.2);
  background: rgba(250, 168, 67, 0.4);
}

/* ========== SOCIAL GRID ========== */
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.social-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.social-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.1), transparent);
  transition: left 0.6s ease;
}

.social-card:hover::before {
  left: 100%;
}

.social-card:focus, .social-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.social-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  transition: var(--transition);
}

.social-icon.vk {
  background: linear-gradient(135deg, #4C75A3 0%, #5B7FA6 100%);
  color: white;
}

.social-icon.tg {
  background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
  color: white;
}

.social-icon.dc {
  background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
  color: white;
}

.social-card:hover .social-icon {
  transform: scale(1.1) rotate(5deg);
}

.social-card__title {
  font-weight: 900;
  font-size: 20px;
  margin: 0 0 12px;
  color: var(--text);
}

.social-card__desc {
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.btn--social {
  background: var(--gold-gradient);
  color: #000;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.btn--social:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* ========== FOOTER ========== */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 0 40px;
  margin-top: 80px;
  background: rgba(8, 8, 8, 0.8);
  backdrop-filter: blur(20px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-brand .brand {
  margin-bottom: 16px;
}

.company-info p {
  color: var(--muted);
  margin: 8px 0 0;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--accent);
}

.footer-pay {
  text-align: right;
}

.payment-text {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.payment-icons {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}

.payment-contact {
  color: var(--muted);
  font-size: 14px;
  margin-top: 12px;
}

.payment-contact a {
  color: inherit;
}

.payment-icons svg {
  width: 46px;
  height: 30px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.payment-icons img {
  width: 46px;
  height: 30px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.payment {
  background: rgba(255,255,255,0.05);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  width: 88px;
  height: 32px;
}

.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1500;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-consent--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-consent__inner {
  max-width: 1200px;
  margin: 0 auto 16px;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.cookie-consent__text {
  flex: 1 1 260px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.cookie-consent__link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent__link:hover {
  color: var(--accent-2);
}

.cookie-consent__button {
  flex: 0 0 auto;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  background: var(--gold-gradient);
  color: #000;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-fast);
}

.cookie-consent__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(255, 215, 0, 0.5);
}

@media (max-width: 768px) {
  .cookie-consent__inner {
    margin: 0 12px 12px;
    padding: 14px 14px 12px;
  }

  .cookie-consent__text {
    font-size: 12px;
  }

  .cookie-consent__button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

.copyright {
  margin-top: 40px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
  .hero-grid {
    gap: 40px;
  }
  
  .carousel {
    height: 450px;
  }
  
  .carousel-slide.active {
    width: 340px;
    height: 400px;
  }
}

@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  
  .burger {
    display: flex;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-body {
    text-align: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  
  .footer-pay {
    text-align: center;
  }
  
  .payment-icons {
    justify-content: center;
  }
  
  .social-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .download-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  
  .hero.section {
    padding: 120px 0 60px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .download-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .carousel {
    height: 380px;
  }
  
  .carousel-slide.active {
    width: 280px;
    height: 350px;
  }
  
  .carousel-nav-btn {
    width: 50px;
    height: 50px;
  }
  
  .carousel-prev, .carousel-next {
    width: 55px;
    height: 55px;
  }
  
  .mobile-menu {
    width: 85%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .stat-number {
    font-size: 20px;
  }
  
  .carousel {
    height: 320px;
  }
  
  .carousel-slide.active {
    width: 240px;
    height: 300px;
  }
  
  .carousel-controls {
    gap: 20px;
  }
  
  .carousel-indicators {
    gap: 8px;
  }
  
  .indicator {
    width: 10px;
    height: 10px;
  }
}

/* ========== ACCESSIBILITY ========== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--accent);
  color: var(--bg);
  padding: 8px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  z-index: 10000;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 6px;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 3px solid rgba(250, 168, 67, 0.4);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ========== OPTIMIZATIONS ========== */
.optimized-image {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Loading states */
.loading-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid transparent;
  border-top: 3px solid var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Infinite scroll loader */
.infinite-scroll-loader {
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
}

.no-more-screenshots {
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
  font-style: italic;
}

.load-error {
  text-align: center;
  padding: 40px 20px;
  color: #ff4444;
}

.load-error button {
  background: var(--accent);
  color: var(--bg);
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  cursor: pointer;
  margin-top: 16px;
  font-weight: 600;
  transition: var(--transition);
}

.load-error button:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
}

/* Яркий желтый акцент */
.accent-yellow {
    color: #FFD700 !important;
    background: none !important;
    -webkit-text-fill-color: #FFD700 !important;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

/* Запрет копирования */
.no-copy {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Карусель - улучшенные оверлеи */
.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    text-align: center;
}

.slide-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    margin: 0 auto 12px;
    transition: var(--transition);
}

.slide-title {
    color: var(--text);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 6px;
    text-transform: uppercase;
    display: block;
    line-height: 1.3;
}

.slide-action {
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease 0.1s;
    display: block;
    line-height: 1.3;
}

/* Убираем ползунок и быстрые суммы в донате */
.amount-slider,
.fast-amounts {
    display: none !important;
}

/* Убираем инфо карточки в скачивании */
.download-info {
    display: none;
}

/* Убираем вопрос о возврате средств */
.faq-item:nth-child(2) {
    display: none;
}

/* Упрощаем платежные методы */
.payment-methods {
    grid-template-columns: repeat(3, 1fr);
}

.btn--social {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  width: 100% !important;
}

/* Уберите старые стили если есть */
.social-card .btn {
  margin: 0 auto;
  display: block;
}

/* Исправление навигации */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    min-height: 70px; /* Добавьте фиксированную высоту */
}

.nav-list {
    display: flex;
    gap: 32px;
    align-items: center; /* Добавьте это */
    height: 100%;
}

.nav-link {
    display: flex;
    align-items: center;
    height: 40px; /* Фиксированная высота */
    padding: 0 5px;
}


.turbo-carousel {margin:30px auto;max-width:420px;overflow:hidden;border-radius:20px;position:relative}
.track {display:flex;scroll-snap-type:x mandatory;overflow-x:scroll;scroll-behavior:smooth;-webkit-overflow-scrolling:touch;scrollbar-width:none}
.track::-webkit-scrollbar {display:none}
.slide {min-width:100%;scroll-snap-align:center}
.slide img {width:100%;height:auto;display:block;border-radius:20px}
.dots {display:flex;justify-content:center;gap:12px;margin-top:16px}
.dot {width:11px;height:11px;border-radius:50%;background:rgba(255,255,255,.35);transition:all .3s}
.dot.active {background:#FAA843;transform:scale(1.4)}

@media (max-width:812px){
  body::before,.donate-page,.site-header,.modal-overlay{backdrop-filter:none!important;background:rgba(12,12,12,.98)!important}
  body::before,.floating-coins,.promo-shine,.btn-glow,.btn-shine,*::before,*::after{animation:none!important}
  *,*::before,*::after{transition:none!important}
  .donate-btn{background:#FAA843!important;color:#000!important;height:68px!important;box-shadow:0 8px 20px rgba(250,168,67,.5)!important}
  .donate-btn::before,.btn-glow,.btn-shine,.btn-sparkle{display:none!important}
  
  body,*{font-family:system-ui,-apple-system,sans-serif!important}
  
  .donate-visual,.amount-slider,.hero-media video,.bonus-section .bonus-card:nth-child(n+4),.payment-methods .payment-method:nth-child(n+4){display:none!important}

  .donate-modal,.modal-overlay{display:block!important;position:static;background:none;height:auto}
  .modal-content{position:static;transform:none;width:100%;max-width:none;height:auto;border-radius:0;border:none;box-shadow:none;background:var(--panel)}
}
