.nominations-card {
  max-width: 800px;
  text-align: center;
}

/* Прогресс голосования */
.voting-progress {
  margin: 25px 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.progress-bar {
  width: 100%;
  max-width: 400px;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 10px;
  transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  width: 0%;
}

.progress-text {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Секция номинаций */
.nominations-section {
  position: relative;
  z-index: 3;
  padding: 40px 20px;
}

.nominations-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
  
}

/* Категория номинации */
.nomination-category {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border: 1px solid var(--glass-border);
  border-radius: var(--glass-radius);
  padding: 30px;
  backdrop-filter: blur(12px) saturate(120%);
  box-shadow: 0 8px 32px rgba(2,6,23,0.4);
}

.category-header {
  text-align: center;
  margin-bottom: 35px;
}

.category-emoji {
  font-size: 2.5rem; /* Уменьшили размер */
  display: block;
  margin-bottom: 12px;
}

.category-header h2 {
  font-size: 1.6rem; /* Уменьшили размер */
  font-weight: 800;
  margin: 0 0 10px 0;
  background: linear-gradient(90deg, #ffffff, rgba(125,211,252,0.95));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.category-header p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
  opacity: 0.8;
}

/* Сетка номинантов */
.nominees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Уменьшили минимальную ширину */
  gap: 20px;
  align-items: stretch;
}

/* Карточка номинанта */
.nominee-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 320px; /* Компактная высота */
}

/* Убрали диагональную линию и сложные эффекты */
.nominee-card::before {
  display: none; /* Убираем градиентный overlay */
}

.nominee-card:hover {
  transform: translateY(-8px);
  border-color: rgba(125, 211, 252, 0.3);
  box-shadow: 
    0 15px 35px rgba(2, 6, 23, 0.5),
    0 0 40px rgba(125, 211, 252, 0.15);
}

.nominee-card:hover::before {
  opacity: 1;
}

.nominee-card.selected {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(125,211,252,0.08), rgba(96,165,250,0.04));
}

.nominee-content {
  padding: 0 20px 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.nominee-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.nominee-card:hover .nominee-image {
  border-color: rgba(125, 211, 252, 0.4);
  transform: scale(1.08);
}

.nominee-card.selected .nominee-image {
  border-color: var(--accent);
  box-shadow: 0 0 25px rgba(125, 211, 252, 0.4);
}

.nominee-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.nominee-card h3 {
  font-size: 1rem; /* Уменьшили шрифт */
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #fff;
  line-height: 1.3;
}

.nominee-card p {
  color: var(--muted);
  font-size: 0.8rem; /* Уменьшили шрифт */
  line-height: 1.4;
  margin: 0 0 15px 0;
  opacity: 0.8;
  flex-grow: 1;
}

.vote-indicator {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.nominee-card.selected .vote-indicator {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(125, 211, 252, 0.5);
}

.nominee-card.selected .vote-indicator::after {
  content: '✓';
  color: #021029;
  font-size: 11px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Кнопка голосования */
.nominee-card .btn {
  margin: 0;
  border-radius: 0 0 16px 16px;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.3s ease;
  padding: 12px 20px;
  font-size: 0.9rem;
  width: 100%;
}

.nominee-card .btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nominee-card.selected .btn {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #021029;
  font-weight: 700;
}

/* Секция действий */
.action-section {
  position: relative;
  z-index: 3;
  padding: 40px 20px;
}

.action-card {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.action-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #fff;
}

.action-content p {
  color: var(--muted);
  margin: 0 0 25px 0;
}

.action-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Анимации */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nomination-category {
  animation: fadeInUp 0.6s ease-out both;
}

.nomination-category:nth-child(1) { animation-delay: 0.1s; }
.nomination-category:nth-child(2) { animation-delay: 0.2s; }
.nomination-category:nth-child(3) { animation-delay: 0.3s; }
.nomination-category:nth-child(4) { animation-delay: 0.4s; }
.nomination-category:nth-child(5) { animation-delay: 0.5s; }
.nomination-category:nth-child(6) { animation-delay: 0.6s; }

/* Анимация для уведомлений */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Адаптивность */
@media (max-width: 768px) {
  .nominations-container {
    gap: 30px;
  }
  
  .nomination-category {
    padding: 20px;
  }
  
  .nominees-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .category-header h2 {
    font-size: 1.5rem;
  }
  
  .category-emoji {
    font-size: 2.5rem;
  }
  
  .action-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .action-buttons .btn {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .nominations-section {
    padding: 20px 15px;
  }
  
  .nomination-category {
    padding: 15px;
  }
  
  .nominee-content {
    padding: 20px 15px 15px;
  }
}

/* Карусель номинаций */
.nominations-carousel {
  position: relative;
  z-index: 3;
  padding: 40px 20px;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.carousel-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Прогресс-бар номинаций */
.nominations-progress {
  margin-bottom: 40px;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  position: relative;
}

.step {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--muted);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.step.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #021029;
  transform: scale(1.1);
}

.step.completed {
  background: rgba(125, 211, 252, 0.3);
  border-color: var(--accent);
  color: white;
}

.progress-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  position: relative;
  margin: 0 17px;
}

.track-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  transition: width 0.6s ease;
  width: 8.33%; /* 1/12 */
}

/* Контейнер слайдов */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--glass-radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px) saturate(120%);
  box-shadow: 0 8px 32px rgba(2,6,23,0.4);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Улучшенные слайды */
.carousel-slide {
  min-width: 100%;
  padding: 30px; /* Уменьшили отступы */
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.carousel-slide.active {
  opacity: 1;
  transform: translateX(0);
}

/* Навигация карусели */
.carousel-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding: 0 15px;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  padding: 12px 20px;
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
}

.nav-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(125, 211, 252, 0.4);
  transform: translateY(-2px);
}

.nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.nav-info {
  color: var(--muted);
  font-weight: 600;
  font-size: 1.1rem;
}

/* Подсказка выбора */
.selection-hint {
  text-align: center;
  margin-top: 20px;
  padding: 15px;
  background: rgba(125, 211, 252, 0.1);
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.hint-text {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Адаптация существующих стилей для карусели */
.nomination-category {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
}

.category-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

/* Анимации */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.carousel-slide.active {
  animation: slideIn 0.5s ease-out;
}

/* Адаптивность */
@media (max-width: 768px) {
  .nominations-carousel {
    padding: 20px 15px;
  }
  
  .carousel-slide {
    padding: 20px 15px;
  }

  .category-header h2 {
    font-size: 1.4rem;
  }
  
  .progress-steps {
    display: none; /* Скрываем шаги на мобильных */
  }

  .category-emoji {
    font-size: 2rem;
  }
  
  .carousel-nav {
    flex-direction: column;
    gap: 15px;
  }
  
  .nav-btn {
    width: 100%;
    max-width: 200px;
  }
  
  .nominees-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
  }

  .nominee-image-wrapper {
    width: 60px;
    height: 60px;
  }

  .nominee-card {
    min-height: 280px;
  }
}

@media (max-width: 480px) {
  .carousel-slide {
    padding: 20px 15px;
  }
  
  .category-header h2 {
    font-size: 1.5rem;
  }
  
  .category-emoji {
    font-size: 2.5rem;
  }
}

/* Видео-фон для номинаций */
.nominations-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.nominations-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: brightness(0.6) contrast(1.2);
}

.nominations-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(2, 8, 23, 0.9) 0%,
    rgba(15, 23, 42, 0.8) 50%,
    rgba(2, 8, 23, 0.9) 100%
  );
  backdrop-filter: blur(2px);
}

/* Анимированный заголовок */
.carousel-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
}

.carousel-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #fff, var(--accent), #fff);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 8s ease-in-out infinite; /* Увеличили с 3s до 6s */
  text-align: center;
}

/* Убираем сложные 3D эффекты для производительности */
.carousel-3d-wrapper {
  perspective: none;
}

.carousel-wrapper {
  transform-style: flat;
}

.carousel-track {
  transform-style: flat;
}

.carousel-slide {
  transform: none;
  filter: none;
}

.carousel-slide.active {
  transform: none;
  filter: none;
}

/* Упрощаем glow эффекты */
.slide-glow {
  display: none;
}

.card-glow {
  display: none;
}

/* Улучшенные карточки номинантов */
.nominee-card {
  position: relative;
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(20px);
}

.nominee-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(125, 211, 252, 0.3);
  box-shadow: 
    0 20px 40px rgba(2, 6, 23, 0.6),
    0 0 80px rgba(125, 211, 252, 0.1);
}

/* Улучшенные изображения - идеальные круги */  
.nominee-image-wrapper {
  position: relative;
  width: 70px; /* Уменьшили размер */
  height: 70px;
  margin: 20px auto 15px;
}

/* Убрали сложные эффекты для изображений */
.image-frame,
.image-shine {
  display: none; /* Убираем рамку и блеск */
}

.nominee-card:hover .image-frame {
  opacity: 1;
}

.nominee-card:hover .image-shine {
  left: 150%;
}

/* Убрали статистику для компактности */
.nominee-stats {
  display: none;
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  opacity: 0.8;
}

/* Космические кнопки */
.cosmic-btn {
  position: relative;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.btn-hover-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.cosmic-btn:hover .btn-hover-effect {
  left: 150%;
}

.cosmic-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(125, 211, 252, 0.5);
  box-shadow: 
    0 10px 30px rgba(2, 6, 23, 0.4),
    0 0 30px rgba(125, 211, 252, 0.2);
}

/* Эффекты для выбранных карточек */
.nominee-card.selected {
  border-color: var(--accent);
  background: linear-gradient(145deg, 
    rgba(125, 211, 252, 0.15) 0%,
    rgba(96, 165, 250, 0.1) 100%);
  box-shadow: 
    0 15px 35px rgba(2, 6, 23, 0.6),
    0 0 60px rgba(125, 211, 252, 0.3);
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s ease-out infinite;
}

/* Анимации */
@keyframes sparkleSpin {
  0%, 100% { transform: rotate(0deg) scale(1); opacity: 1; }
  50% { transform: rotate(180deg) scale(1.2); opacity: 0.8; }
}

@keyframes shimmer {
  0%, 100% { background-position: -200% 0; }
  50% { background-position: 200% 0; }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
  70% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) translateX(20px); opacity: 0; }
}

/* Анимированный индикатор */
.animated-hint {
  animation: float 3s ease-in-out infinite;
}

.hint-arrow {
  font-size: 1.2rem;
  margin-bottom: 5px;
  animation: bounce 2s ease-in-out infinite;
}

.hint-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  animation: particleFloat 3s ease-in-out infinite;
}

.particle:nth-child(1) { left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 50%; animation-delay: 1s; }
.particle:nth-child(3) { left: 80%; animation-delay: 2s; }

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Эмодзи с аурой */
.emoji-wrapper {
  position: relative;
  display: inline-block;
}

/* Упрощенные эффекты для категорий */
.emoji-aura,
.category-sparkles {
  display: none; /* Убираем сложные эффекты */
}

.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: sparkleTwinkle 4s ease-in-out infinite;
}

.sparkle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 60%; left: 80%; animation-delay: 1.3s; }
.sparkle:nth-child(3) { top: 30%; left: 90%; animation-delay: 2.6s; }

@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 1; transform: scale(1); }
}

/* Эффект блесток на кнопках */
.glow-effect {
  position: relative;
  overflow: hidden;
}

.btn-sparkle {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.vote-btn:active .btn-ripple {
  width: 100px;
  height: 100px;
  opacity: 0;
}

.nominee-card.selected .btn-sparkle {
  opacity: 1;
  animation: sparkleJump 0.6s ease-out;
}

@keyframes sparkleJump {
  0% { transform: translateY(-50%) scale(0) rotate(0deg); }
  50% { transform: translateY(-80%) scale(1.5) rotate(180deg); }
  100% { transform: translateY(-50%) scale(1) rotate(360deg); }
}

/* Адаптивность */
@media (max-width: 768px) {
  .carousel-title {
    font-size: 2rem;
  }
  
  .nominee-image-wrapper {
    width: 80px;
    height: 80px;
  }
  
  .cosmic-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

/* Темная тема улучшений */
@media (prefers-color-scheme: dark) {
  .nominations-video {
    filter: brightness(0.4) contrast(1.3);
  }
}

/* Стили для кнопки перехода к голосованию */
.scroll-to-voting {
  margin-top: 40px;
  text-align: center;
  position: relative;
}

.scroll-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none;
  border-radius: 25px;
  color: #021029;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 10px 30px rgba(2, 6, 23, 0.3),
    0 0 30px rgba(125, 211, 252, 0.2);
}

.scroll-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 15px 40px rgba(2, 6, 23, 0.4),
    0 0 50px rgba(125, 211, 252, 0.3);
}

.scroll-btn:active {
  transform: translateY(-1px) scale(1.02);
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.btn-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.scroll-btn:hover .btn-arrow {
  transform: translateY(3px);
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.scroll-btn:hover .btn-glow {
  left: 150%;
}

/* Подсказка под кнопкой */
.scroll-hint {
  margin-top: 20px;
  opacity: 0.8;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hint-text {
  color: var(--muted);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 8px;
}

.hint-arrow-bounce {
  font-size: 1.2rem;
  color: var(--accent);
  animation: bounce 2s ease-in-out infinite;
}

/* Анимации для кнопки */
@keyframes pulseCta {
  0%, 100% { 
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
      0 15px 40px rgba(2, 6, 23, 0.4),
      0 0 50px rgba(125, 211, 252, 0.3);
  }
  50% { 
    transform: translateY(-5px) scale(1.08);
    box-shadow: 
      0 20px 50px rgba(2, 6, 23, 0.5),
      0 0 60px rgba(125, 211, 252, 0.4);
  }
}

.scroll-btn {
  animation: pulseCta 3s ease-in-out infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { 
    transform: translateY(0); 
    opacity: 0.7;
  }
  40% { 
    transform: translateY(-8px); 
    opacity: 1;
  }
  60% { 
    transform: translateY(-4px); 
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 0.8;
    transform: translateY(0);
  }
}

/* Адаптивность */
@media (max-width: 768px) {
  .scroll-to-voting {
    margin-top: 30px;
  }
  
  .scroll-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .btn-content {
    gap: 8px;
  }
  
  .hint-text {
    font-size: 0.85rem;
  }
}

/* Стили для кнопки просмотра видео */
.video-link {
  margin: 12px 0 15px;
  text-align: center;
}

.video-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 8px 16px;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.video-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(125, 211, 252, 0.2);
}

.video-icon {
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

/* Стили для соцсетей с Font Awesome */
.social-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 15px 0;
  padding: 0 20px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  position: relative;
  font-size: 0.9rem;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 6, 23, 0.3);
}

/* Цвета для разных соцсетей при наведении */
.social-link[title="TikTok"]:hover { color: #ff0050; border-color: #ff0050; }
.social-link[title="YouTube"]:hover { color: #ff0000; border-color: #ff0000; }
.social-link[title="Twitch"]:hover { color: #9146ff; border-color: #9146ff; }
.social-link[title="Instagram"]:hover { color: #e4405f; border-color: #e4405f; }
.social-link[title="Twitter"]:hover { color: #1da1f2; border-color: #1da1f2; }
.social-link[title="Telegram"]:hover { color: #0088cc; border-color: #0088cc; }
.social-link[title="VK"]:hover { color: #5b8bc2; border-color: #5b8bc2; }
.social-link[title="Discord"]:hover { color: #5865F2; border-color: #5865F2; }

.social-link[title="Spotify"]:hover { 
  color: #1db954; 
  border-color: #1db954; 
  background: rgba(29, 185, 84, 0.1);
}

.social-link[title="Яндекс Музыка"]:hover { 
  color: #ffcc00; 
  border-color: #ffcc00; 
  background: rgba(255, 204, 0, 0.1);
}

.social-link:hover::before {
  opacity: 1;
}

/* Адаптивность для новых элементов */
@media (max-width: 768px) {
  .video-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  
  .social-links {
    gap: 6px;
  }
  
  .social-link {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
}

.captcha-section {
  margin: 20px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(125, 211, 252, 0.2);
  backdrop-filter: blur(10px);
  text-align: center;
}

.captcha-section h3 {
  color: var(--accent);
  margin-bottom: 15px;
}

.captcha-status {
  margin-top: 10px;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
}

.captcha-status.success {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid #22c55e;
}

.captcha-status.error {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid #ef4444;
}

/* Специальная сетка для дуэтов */
.duo-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Карточка дуэта */
.duo-card {
  min-height: 380px;
}

.duo-content {
  padding-bottom: 20px;
}

/* Контейнер для двух изображений */
.duo-images-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  position: relative;
  width: 100%;
}

/* Отдельное изображение в дуэте */
.duo-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
  position: relative;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.duo-card:hover .duo-image {
  border-color: rgba(125, 211, 252, 0.4);
  transform: scale(1.05);
}

.duo-card.selected .duo-image {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(125, 211, 252, 0.4);
}

.duo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.duo-card:hover .duo-connector {
  background: linear-gradient(90deg, 
    rgba(125, 211, 252, 0.6), 
    var(--accent), 
    rgba(125, 211, 252, 0.6));
  box-shadow: 0 0 10px rgba(125, 211, 252, 0.4);
}

/* Заголовок дуэта */
.duo-card h3 {
  font-size: 1.1rem;
  line-height: 1.3;
  margin-bottom: 10px;
  min-height: 2.6em;
  display: flex;
  align-items: center;
}

.duo-card p {
  font-size: 0.85rem;
  line-height: 1.4;
  min-height: 2.8em;
  margin-bottom: 15px;
}

/* Соцсети для дуэта */
.duo-social {
  margin-top: auto;
  padding: 0 20px 15px;
}

/* Кнопка для дуэта */
.duo-card .btn {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 20px;
}