* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: #000000;
  overflow-x: hidden;
}

/* Анимированный фон */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: linear-gradient(45deg, #000000, #1a1a1a, #000000, #2a2a2a);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  transition: transform 0.2s ease-out;
}

.animated-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

.animated-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(90deg, transparent, transparent 98px, rgba(255, 255, 255, 0.02) 100px);
  animation: slide 25s linear infinite;
}

/* Анимированные ноты */
.music-notes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  transition: transform 0.3s ease-out;
}

.note {
  position: absolute;
  color: rgba(255, 255, 255, 0.2);
  font-size: 24px;
  animation: floatNote 15s linear infinite;
  opacity: 0;
  transition: transform 0.5s ease-out;
}

.note-1 {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
  font-size: 20px;
}

.note-2 {
  left: 20%;
  top: 70%;
  animation-delay: 2s;
  font-size: 28px;
}

.note-3 {
  left: 30%;
  top: 40%;
  animation-delay: 4s;
  font-size: 22px;
}

.note-4 {
  left: 40%;
  top: 80%;
  animation-delay: 6s;
  font-size: 26px;
}

.note-5 {
  left: 60%;
  top: 30%;
  animation-delay: 8s;
  font-size: 24px;
}

.note-6 {
  left: 70%;
  top: 60%;
  animation-delay: 10s;
  font-size: 18px;
}

.note-7 {
  left: 80%;
  top: 20%;
  animation-delay: 12s;
  font-size: 30px;
}

.note-8 {
  left: 90%;
  top: 50%;
  animation-delay: 14s;
  font-size: 22px;
}

@keyframes floatNote {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.2;
  }
  80% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* Движущиеся частицы */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  transition: transform 0.4s ease-out;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: particleFloat 15s linear infinite;
  transition: transform 0.6s ease-out;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 12s;
}
.particle:nth-child(2) {
  left: 20%;
  animation-delay: 2s;
  animation-duration: 18s;
}
.particle:nth-child(3) {
  left: 30%;
  animation-delay: 4s;
  animation-duration: 15s;
}
.particle:nth-child(4) {
  left: 40%;
  animation-delay: 6s;
  animation-duration: 20s;
}
.particle:nth-child(5) {
  left: 50%;
  animation-delay: 8s;
  animation-duration: 14s;
}
.particle:nth-child(6) {
  left: 60%;
  animation-delay: 10s;
  animation-duration: 16s;
}
.particle:nth-child(7) {
  left: 70%;
  animation-delay: 12s;
  animation-duration: 13s;
}
.particle:nth-child(8) {
  left: 80%;
  animation-delay: 14s;
  animation-duration: 17s;
}
.particle:nth-child(9) {
  left: 90%;
  animation-delay: 16s;
  animation-duration: 19s;
}

/* Добавим класс для интерактивного элемента */
.interactive-element {
  transition: transform 0.3s ease-out;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Навигация */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
  object-fit: contain;
}

.logo-img:hover {
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: #cccccc;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #ffffff;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(90deg, #ffffff, #cccccc);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Переключатель языков */
.language-switcher {
  display: flex;
  gap: 5px;
  margin-left: 20px;
}

.lang-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #cccccc;
  padding: 5px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  border-radius: 4px;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.lang-btn.active {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Шапка */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.hero-content {
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  animation: fadeInUp 1s ease, glow 3s ease-in-out infinite alternate;
  background: linear-gradient(45deg, #ffffff, #cccccc, #ffffff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease, textShine 3s ease-in-out infinite;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #cccccc;
  animation: fadeInUp 1s ease 0.3s both;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.cta-button {
  background: linear-gradient(45deg, #ffffff, #cccccc);
  color: #000000;
  border: 2px solid transparent;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease 0.6s both;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
  background: linear-gradient(45deg, #cccccc, #ffffff);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #cccccc;
  animation: bounce 2s infinite;
}

/* Секции */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #ffffff;
  position: relative;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.section-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ffffff, #cccccc, #ffffff);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  animation: shimmer 2s ease-in-out infinite;
}

/* О себе */
.about {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
  pointer-events: none;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-media {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.profile-img-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.profile-img {
  width: 100%;
  border-radius: 20px;
  transition: all 0.3s ease;
  filter: grayscale(100%) contrast(1.2);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: block;
}

.profile-img:hover {
  transform: scale(1.05);
  filter: grayscale(80%) contrast(1.3);
}

/* Видео контейнер в секции О себе */
.video-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
  background: #000;
  transition: all 0.3s ease;
  aspect-ratio: 16 / 9;
}

.video-container:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(255, 255, 255, 0.15);
}

.profile-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  outline: none;
}

.profile-video:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

/* Кастомизация контролов видео */
.profile-video::-webkit-media-controls-panel {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.profile-video::-webkit-media-controls-play-button,
.profile-video::-webkit-media-controls-pause-button {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}

/* Адаптивность для видео в секции О себе */
@media (max-width: 768px) {
  .video-container {
    aspect-ratio: 16 / 10;
    border-radius: 15px;
  }

  .profile-video {
    border-radius: 15px;
  }
}

@media (max-width: 576px) {
  .video-container {
    aspect-ratio: 4 / 3;
    border-radius: 10px;
  }

  .profile-video {
    border-radius: 10px;
  }
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.8;
  color: #cccccc;
}

.stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.stat {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.stat:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  color: #cccccc;
}

/* Достижения */
.achievements {
  padding: 100px 0;
  position: relative;
}

.achievements::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.achievements-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.achievement-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 3 / 4;
}

.achievement-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.achievement-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.2) brightness(0.9);
  transition: filter 0.3s ease;
}

.achievement-item:hover img {
  filter: contrast(1.3) brightness(1.1) saturate(1.2) hue-rotate(10deg);
}

.achievement-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: white;
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.achievement-item:hover .achievement-overlay {
  transform: translateY(0);
}

.achievement-overlay h4 {
  color: #ffffff;
  margin-bottom: 5px;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.achievement-overlay p {
  color: #cccccc;
}

/* Концерты */
.concerts {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
}

.concerts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
  pointer-events: none;
}

.concerts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

/* Концерты - обновленные стили для видео */
.concert-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.concert-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}

.concert-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.concert-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

.concert-video:hover {
  transform: scale(1.02);
}

.concert-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.concert-info h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #ffffff;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.concert-info p {
  color: #cccccc;
  margin-bottom: 10px;
  line-height: 1.5;
}

.concerts-upload-info {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.concerts-upload-info h3 {
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.concerts-upload-info ol {
  color: #cccccc;
  padding-left: 20px;
}

.concerts-upload-info li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.concerts-upload-info strong {
  color: #ffffff;
}

/* Адаптивность для видео концертов */
@media (max-width: 768px) {
  .concerts-grid {
    grid-template-columns: 1fr;
  }

  .concert-video-container {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 576px) {
  .concert-video-container {
    aspect-ratio: 4 / 3;
  }

  .concert-info {
    padding: 15px;
  }

  .concert-info h4 {
    font-size: 1.1rem;
  }
}

/* Музыка */
.music {
  padding: 100px 0;
  position: relative;
}

.music::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.music-upload-info {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.upload-instructions h3 {
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.upload-instructions ol {
  color: #cccccc;
  padding-left: 20px;
}

.upload-instructions li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.music-player {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.playlist {
  padding: 20px;
}

/* Музыка - обновленные стили для индивидуальных плееров */
.track-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  margin-bottom: 20px;
  padding: 20px;
  transition: all 0.3s ease;
}

.track-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.track-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.track-cover {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.2);
  transition: all 0.3s ease;
}

.track-item:hover .cover-img,
.track-item.playing .cover-img {
  filter: grayscale(80%) contrast(1.3);
  transform: scale(1.05);
}

.track-info {
  flex: 1;
  min-width: 0;
}

.track-info h4 {
  margin-bottom: 5px;
  color: #ffffff;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
  font-size: 1.1rem;
}

.track-info p {
  font-size: 0.9rem;
  color: #cccccc;
  margin: 0;
}

.track-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.track-play-btn {
  background: linear-gradient(45deg, #ffffff, #cccccc);
  color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.track-play-btn:hover {
  background: linear-gradient(45deg, #cccccc, #ffffff);
  transform: scale(1.1);
}

.track-play-btn.playing {
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
}

.track-duration {
  color: #cccccc;
  font-size: 0.9rem;
  min-width: 40px;
}

.track-player {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.track-progress-container {
  flex: 1;
}

.track-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  cursor: pointer;
  margin-bottom: 8px;
  overflow: hidden;
  position: relative;
}

.track-progress {
  height: 100%;
  background: linear-gradient(90deg, #ffffff, #cccccc);
  border-radius: 3px;
  width: 0%;
  transition: width 0.1s ease;
  position: relative;
}

.track-progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: progressShine 2s ease-in-out infinite;
}

.track-time-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #cccccc;
}

.track-volume-container {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 120px;
}

.track-volume-container i {
  color: #cccccc;
  font-size: 0.9rem;
}

.track-volume-slider {
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.track-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.track-volume-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* Адаптивность для трек-плееров */
@media (max-width: 768px) {
  .track-player {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }

  .track-volume-container {
    justify-content: center;
    min-width: auto;
  }

  .track-header {
    flex-wrap: wrap;
  }

  .track-controls {
    order: 3;
    width: 100%;
    justify-content: space-between;
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .track-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .track-info {
    order: 1;
  }

  .track-cover {
    order: 2;
    align-self: center;
  }

  .track-controls {
    order: 3;
    justify-content: center;
  }
}

/* Telegram CTA Section */
.telegram-cta {
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(0, 136, 204, 0.1), rgba(0, 136, 204, 0.05));
  border: 1px solid rgba(0, 136, 204, 0.3);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.telegram-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 136, 204, 0.1), transparent);
  animation: telegramShine 3s ease-in-out infinite;
}

.telegram-cta-content {
  position: relative;
  z-index: 1;
}

.telegram-cta h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.telegram-cta p {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.telegram-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(45deg, #0088cc, #229ed9);
  color: #ffffff;
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 136, 204, 0.3);
}

.telegram-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.telegram-btn:hover::before {
  left: 100%;
}

.telegram-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 136, 204, 0.4);
  background: linear-gradient(45deg, #229ed9, #0088cc);
}

.telegram-btn i {
  font-size: 1.4rem;
  animation: telegramPulse 2s ease-in-out infinite;
}

@keyframes telegramShine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

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

/* Адаптивность для Telegram CTA */
@media (max-width: 768px) {
  .telegram-cta {
    margin-top: 30px;
    padding: 30px 20px;
  }

  .telegram-cta h3 {
    font-size: 1.5rem;
  }

  .telegram-cta p {
    font-size: 1rem;
  }

  .telegram-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    gap: 12px;
  }
}

@media (max-width: 576px) {
  .telegram-cta {
    padding: 25px 15px;
  }

  .telegram-cta h3 {
    font-size: 1.3rem;
  }

  .telegram-cta p {
    font-size: 0.95rem;
  }

  .telegram-btn {
    padding: 12px 25px;
    font-size: 1rem;
    gap: 10px;
  }

  .telegram-btn i {
    font-size: 1.2rem;
  }
}

/* Контакты */
.contact {
  padding: 100px 0;
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.contact-info,
.social-links {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.contact-info:hover,
.social-links:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.contact-info h3,
.social-links h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.contact-info p {
  color: #cccccc;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #cccccc;
  transition: color 0.3s ease;
}

.contact-item:hover {
  color: #ffffff;
}

.contact-item i {
  color: #ffffff;
  width: 20px;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.social-icon:hover::before {
  left: 100%;
}

.social-icon:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Футер */
.footer {
  background: rgba(0, 0, 0, 0.8);
  color: #cccccc;
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Модальные окна */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  margin: 5% auto;
  padding: 30px;
  border-radius: 15px;
  width: 80%;
  max-width: 500px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 2rem;
  cursor: pointer;
  color: #cccccc;
  transition: color 0.3s ease;
}

.close:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.modal-content img {
  width: 100%;
  max-width: 300px;
  margin-bottom: 20px;
  border-radius: 10px;
  filter: contrast(1.2) brightness(1.0) saturate(1.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: filter 0.3s ease;
}

.modal-content img:hover {
  filter: contrast(1.3) brightness(1.1) saturate(1.3) hue-rotate(15deg);
  transform: scale(1.02);
}

.modal-content h3 {
  color: #ffffff;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.modal-content p {
  color: #cccccc;
  line-height: 1.6;
}

/* Анимации */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(1deg);
  }
  66% {
    transform: translateY(-10px) rotate(-1deg);
  }
}

@keyframes slide {
  0% {
    transform: translateX(-100px);
  }
  100% {
    transform: translateX(100px);
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

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

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

@keyframes glow {
  0%,
  100% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  }
  50% {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 40px rgba(255, 255, 255, 0.3);
  }
}

@keyframes textShine {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-50%) scaleX(0);
  }
  50% {
    transform: translateX(-50%) scaleX(1);
  }
  100% {
    transform: translateX(-50%) scaleX(0);
  }
}

@keyframes progressShine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Адаптивность */
/* Улучшенная адаптивность */
@media (max-width: 1200px) {
  .container {
    padding: 0 15px;
  }

  .concerts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-media {
    order: 1;
  }

  .about-text {
    order: 2;
  }

  .achievements-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .concerts-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat {
    min-width: 120px;
  }
}

@media (max-width: 768px) {
  /* Навигация */
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    padding: 15px 0;
    font-size: 1.1rem;
  }

  .language-switcher {
    margin-right: 15px;
    gap: 8px;
  }

  .lang-btn {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  /* Герой */
  .hero-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 25px;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  /* Секции */
  .section-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  /* О себе */
  .about {
    padding: 80px 0;
  }

  .about-content {
    gap: 30px;
  }

  .about-text h3 {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .stats {
    gap: 15px;
    margin-top: 25px;
  }

  .stat {
    padding: 15px;
    min-width: 100px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  /* Достижения */
  .achievements {
    padding: 80px 0;
  }

  .achievements-gallery {
    gap: 20px;
  }

  /* Концерты */
  .concerts {
    padding: 80px 0;
  }

  .concert-info {
    padding: 18px;
  }

  .concert-info h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .concert-info p {
    font-size: 0.95rem;
  }

  /* Музыка */
  .music {
    padding: 80px 0;
  }

  .track-item {
    padding: 18px;
    margin-bottom: 18px;
  }

  .track-header {
    gap: 12px;
    margin-bottom: 12px;
  }

  .track-cover {
    width: 55px;
    height: 55px;
  }

  .track-info h4 {
    font-size: 1.05rem;
  }

  .track-info p {
    font-size: 0.85rem;
  }

  .track-play-btn {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }

  .track-player {
    gap: 15px;
    padding-top: 12px;
  }

  .track-volume-container {
    min-width: 100px;
  }

  .track-volume-slider {
    width: 70px;
  }

  /* Контакты */
  .contact {
    padding: 80px 0;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info,
  .social-links {
    padding: 25px;
  }

  .contact-info h3,
  .social-links h3 {
    font-size: 1.4rem;
  }

  .contact-item {
    font-size: 1rem;
    gap: 12px;
  }

  .social-icons {
    justify-content: center;
    gap: 12px;
  }

  .social-icon {
    width: 45px;
    height: 45px;
  }

  /* Telegram CTA */
  .telegram-cta {
    margin-top: 30px;
    padding: 30px 20px;
  }

  .telegram-cta h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .telegram-cta p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .telegram-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    gap: 12px;
  }

  /* Модальные окна */
  .modal-content {
    width: 90%;
    margin: 10% auto;
    padding: 25px;
  }
}

@media (max-width: 576px) {
  /* Контейнер */
  .container {
    padding: 0 10px;
  }

  /* Навигация */
  .nav-container {
    padding: 0 15px;
    height: 65px;
  }

  .nav-logo {
    font-size: 1.3rem;
  }

  .language-switcher {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    background: rgba(0, 0, 0, 0.98);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
    margin: 0;
    backdrop-filter: blur(10px);
  }

  .nav-menu {
    top: 105px; /* Учитываем высоту языкового переключателя */
  }

  /* Герой */
  .hero {
    padding-top: 40px;
  }

  .hero-content {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .scroll-indicator {
    bottom: 20px;
    font-size: 0.9rem;
  }

  /* Секции */
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  /* О себе */
  .about {
    padding: 60px 0;
  }

  .about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .about-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .stats {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
  }

  .stat {
    width: 100%;
    max-width: 200px;
    padding: 12px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  /* Достижения */
  .achievements {
    padding: 60px 0;
  }

  .achievements-gallery {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .achievement-item {
    aspect-ratio: 4 / 3;
  }

  /* Концерты */
  .concerts {
    padding: 60px 0;
  }

  .concert-video-container {
    aspect-ratio: 16 / 10;
  }

  .concert-info {
    padding: 15px;
  }

  .concert-info h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }

  .concert-info p {
    font-size: 0.9rem;
  }

  /* Музыка */
  .music {
    padding: 60px 0;
  }

  .music-upload-info {
    padding: 20px;
    margin-bottom: 30px;
  }

  .upload-instructions h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .upload-instructions li {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .track-item {
    padding: 15px;
    margin-bottom: 15px;
  }

  .track-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    align-items: center;
  }

  .track-cover {
    width: 80px;
    height: 80px;
    order: 1;
  }

  .track-info {
    order: 2;
    text-align: center;
  }

  .track-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .track-info p {
    font-size: 0.8rem;
  }

  .track-controls {
    order: 3;
    justify-content: center;
    margin-top: 8px;
  }

  .track-play-btn {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }

  .track-player {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    padding-top: 10px;
  }

  .track-volume-container {
    justify-content: center;
    min-width: auto;
  }

  .track-volume-slider {
    width: 60px;
  }

  .track-time-info {
    font-size: 0.75rem;
  }

  /* Telegram CTA */
  .telegram-cta {
    padding: 20px 15px;
    margin-top: 25px;
  }

  .telegram-cta h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .telegram-cta p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .telegram-btn {
    padding: 12px 20px;
    font-size: 1rem;
    gap: 8px;
  }

  .telegram-btn i {
    font-size: 1.1rem;
  }

  /* Контакты */
  .contact {
    padding: 60px 0;
  }

  .contact-info,
  .social-links {
    padding: 20px;
  }

  .contact-info h3,
  .social-links h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .contact-info p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .contact-item {
    font-size: 0.9rem;
    gap: 10px;
    margin-bottom: 12px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  /* Модальные окна */
  .modal-content {
    width: 95%;
    margin: 15% auto;
    padding: 20px;
  }

  .modal-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .modal-content p {
    font-size: 0.9rem;
  }

  .close {
    font-size: 1.5rem;
    right: 15px;
    top: 10px;
  }

  /* Скрыть частицы на мобильных */
  .particle {
    display: none;
  }

  /* Уменьшить анимации на мобильных */
  .note {
    font-size: 16px;
  }

  .note-2,
  .note-7 {
    font-size: 20px;
  }

  .note-4,
  .note-5 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .about-text h3 {
    font-size: 1.3rem;
  }

  .track-cover {
    width: 70px;
    height: 70px;
  }

  .telegram-cta h3 {
    font-size: 1.1rem;
  }

  .telegram-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}

/* Планшеты в альбомной ориентации */
@media (max-width: 1024px) and (orientation: landscape) {
  .hero {
    height: 100vh;
    padding-top: 0;
  }

  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .concerts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Планшеты в портретной ориентации */
@media (max-width: 768px) and (orientation: portrait) {
  .concerts-grid {
    grid-template-columns: 1fr;
  }

  .achievements-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Google Drive Video Links */
.drive-video-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 300px;
}

.video-drive-btn,
.concert-drive-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: white;
  padding: 30px 40px;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  min-height: 150px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.video-drive-btn::before,
.concert-drive-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.video-drive-btn:hover::before,
.concert-drive-btn:hover::before {
  left: 100%;
}

.video-drive-btn:hover,
.concert-drive-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(66, 133, 244, 0.3);
  background: linear-gradient(135deg, #34a853, #4285f4);
}

.video-drive-btn i,
.concert-drive-btn i {
  font-size: 3rem;
  margin-bottom: 10px;
}

.video-drive-btn span,
.concert-drive-btn span {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.video-drive-btn small,
.concert-drive-btn small {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: normal;
}

.drive-folder-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(45deg, #4285f4, #34a853);
  color: white;
  padding: 15px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.drive-folder-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(66, 133, 244, 0.3);
}

.drive-folder-btn i {
  font-size: 1.2rem;
}

/* Адаптивность для Google Drive кнопок */
@media (max-width: 768px) {
  .video-drive-btn,
  .concert-drive-btn {
    padding: 25px 30px;
    min-height: 120px;
  }

  .video-drive-btn i,
  .concert-drive-btn i {
    font-size: 2.5rem;
  }

  .video-drive-btn span,
  .concert-drive-btn span {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .video-drive-btn,
  .concert-drive-btn {
    padding: 20px 25px;
    min-height: 100px;
  }

  .video-drive-btn i,
  .concert-drive-btn i {
    font-size: 2rem;
  }

  .video-drive-btn span,
  .concert-drive-btn span {
    font-size: 1rem;
  }
}
