/* ===== Общие стили ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');

:root {
  --bg-dark: #0b0d1a;
  --bg-card: rgba(255, 255, 255, 0.05);
  --neon-pink: #ff2d78;
  --neon-cyan: #00e5ff;
  --neon-lime: #c6ff00;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --gradient-bg: linear-gradient(135deg, #0b0d1a 0%, #1a1040 50%, #0d2137 100%);
  --gradient-hero: linear-gradient(180deg, rgba(11,13,26,0.3) 0%, rgba(11,13,26,0.85) 100%);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--gradient-bg);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--neon-cyan);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--neon-pink);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Хедер ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 13, 26, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 20px;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header__logo {
  font-size: 1.4rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
  white-space: nowrap;
}

.header__nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header__nav a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  transition: color var(--transition);
  white-space: nowrap;
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--neon-cyan);
}

/* Выпадающее меню */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  transition: color var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown__toggle::after {
  content: '\25BE';
  font-size: 0.7rem;
}

.nav-dropdown__toggle:hover,
.nav-dropdown__toggle.active {
  color: var(--neon-cyan);
}

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 12px;
  background: rgba(11, 13, 26, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 1001;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown__menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.nav-dropdown__menu a:hover {
  color: var(--neon-cyan);
  background: rgba(0, 229, 255, 0.06);
}

/* Бургер */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 20px;
}

.hero__title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #fff, var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease forwards;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

/* ===== Кнопки ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
}

.btn--primary {
  background: linear-gradient(135deg, var(--neon-pink), #c2185b);
  color: #fff;
  box-shadow: 0 4px 24px rgba(255, 45, 120, 0.35);
}

.btn--primary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 32px rgba(255, 45, 120, 0.55);
  color: #fff;
}

.btn--secondary {
  background: transparent;
  color: var(--neon-cyan);
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.15);
}

.btn--secondary:hover {
  background: var(--neon-cyan);
  color: var(--bg-dark);
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.4);
}

.hero__content .btn {
  animation: fadeInUp 0.8s ease 0.4s both;
}

/* ===== Секции ===== */
.section {
  padding: 80px 0;
}

.section__title {
  font-size: 2.4rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 16px;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__text {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== Карточки городов ===== */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.city-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  animation: fadeInUp 0.6s ease both;
}

.city-card:nth-child(1) { animation-delay: 0.1s; }
.city-card:nth-child(2) { animation-delay: 0.2s; }
.city-card:nth-child(3) { animation-delay: 0.3s; }
.city-card:nth-child(4) { animation-delay: 0.4s; }

.city-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.12);
  transform: translateY(-6px);
}

.city-card__name {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.city-card__venue {
  color: var(--neon-cyan);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.city-card__date {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* ===== Инфо-блок (город) ===== */
.info-box {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  max-width: 600px;
  margin: 0 auto 32px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.info-box__row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 1rem;
}

.info-box__row:last-child {
  border-bottom: none;
}

.info-box__label {
  color: var(--text-secondary);
  font-weight: 600;
}

.info-box__value {
  font-weight: 700;
  color: var(--neon-cyan);
}

/* ===== Блок О концерте / Место проведения ===== */
.about-block {
  max-width: 800px;
  margin: 0 auto;
}

.about-block p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ===== Блок «О Егоре Криде» ===== */
.about-section {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 48px 32px;
  max-width: 900px;
  margin: 0 auto;
}

.about-section p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ===== Видео ===== */
.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
}

/* ===== Музыка (Яндекс.Музыка) ===== */
.music-wrapper {
  max-width: 700px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-dark);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.music-wrapper iframe {
  width: 100%;
  border: none;
  display: block;
  border-radius: 16px;
}

/* ===== Футер ===== */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 20px;
  text-align: center;
  background: rgba(11, 13, 26, 0.8);
}

.footer p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer a {
  color: var(--neon-cyan);
  font-weight: 600;
}

/* ===== Кнопка «Наверх» ===== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-pink), #c2185b);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255, 45, 120, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  font-size: 1.3rem;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(255, 45, 120, 0.6);
}

/* ===== Ссылка «Вернуться» ===== */
.back-link {
  text-align: center;
  padding: 32px 0;
}

.back-link a {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--neon-cyan);
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}

.back-link a:hover {
  border-bottom-color: var(--neon-cyan);
}

/* ===== Таблица расписания ===== */
.schedule-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: fadeInUp 0.6s ease both;
}

.schedule-table thead {
  background: rgba(255, 45, 120, 0.12);
}

.schedule-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--neon-cyan);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-table td {
  padding: 14px 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background var(--transition);
}

.schedule-table tbody tr:hover td {
  background: rgba(0, 229, 255, 0.04);
}

.schedule-table tbody tr:last-child td {
  border-bottom: none;
}

/* ===== Карточки информации ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 24px;
  transition: all var(--transition);
  animation: fadeInUp 0.6s ease both;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
  opacity: 0;
  transition: opacity var(--transition);
}

.info-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 8px 40px rgba(0, 229, 255, 0.1), 0 0 20px rgba(255, 45, 120, 0.05);
  transform: translateY(-6px);
}

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

.info-card:nth-child(1) { animation-delay: 0.05s; }
.info-card:nth-child(2) { animation-delay: 0.1s; }
.info-card:nth-child(3) { animation-delay: 0.15s; }
.info-card:nth-child(4) { animation-delay: 0.2s; }
.info-card:nth-child(5) { animation-delay: 0.25s; }
.info-card:nth-child(6) { animation-delay: 0.3s; }
.info-card:nth-child(7) { animation-delay: 0.35s; }
.info-card:nth-child(8) { animation-delay: 0.4s; }
.info-card:nth-child(9) { animation-delay: 0.45s; }

.info-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.info-card__desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== Блок-предупреждение ===== */
.warning-box {
  background: rgba(255, 45, 120, 0.08);
  border: 1px solid rgba(255, 45, 120, 0.3);
  border-radius: 16px;
  padding: 28px 32px;
  max-width: 800px;
  margin: 32px auto;
  animation: fadeInUp 0.6s ease both;
}

.warning-box__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--neon-pink);
  margin-bottom: 10px;
}

.warning-box p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== Блоки песен / аккордов ===== */
.song-block {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px 32px;
  margin-bottom: 32px;
  transition: all var(--transition);
  animation: fadeInUp 0.6s ease both;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.song-block:hover {
  border-color: rgba(0, 229, 255, 0.2);
  box-shadow: 0 8px 40px rgba(0, 229, 255, 0.08), 0 4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.song-block__title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.song-block__about {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.song-block__lyrics {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  padding: 24px;
  white-space: pre-line;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.8;
  max-height: 400px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.song-block__lyrics::-webkit-scrollbar {
  width: 6px;
}

.song-block__lyrics::-webkit-scrollbar-track {
  background: transparent;
}

.song-block__lyrics::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

.song-block__section {
  color: var(--neon-pink);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== Кнопки-платформы ===== */
.platform-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.platform-buttons .btn {
  min-width: 240px;
}

/* ===== Альбом-карточка ===== */
.album-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
  transition: all var(--transition);
  animation: fadeInUp 0.6s ease both;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.album-card:hover {
  border-color: rgba(0, 229, 255, 0.2);
  box-shadow: 0 8px 36px rgba(0, 229, 255, 0.08), 0 0 16px rgba(255, 45, 120, 0.05);
  transform: translateY(-4px);
}

.album-card__title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.album-card__year {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--neon-pink);
  margin-bottom: 12px;
}

.album-card__desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== Hero (маленький вариант) ===== */
.hero--small {
  min-height: 50vh;
}

/* ===== Форма контактов ===== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.6s ease both;
}

.contact-form__group {
  margin-bottom: 20px;
}

.contact-form__label {
  display: block;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  box-sizing: border-box;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.15);
}

.contact-form__textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form__submit {
  width: 100%;
  margin-top: 8px;
}

.contact-form__status {
  text-align: center;
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--neon-cyan);
  min-height: 24px;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.contact-links__block {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 24px;
  animation: fadeInUp 0.6s ease both;
}

.contact-links__block h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.contact-links__block a {
  display: block;
  color: var(--neon-cyan);
  font-size: 0.95rem;
  margin-bottom: 10px;
  transition: color var(--transition);
}

.contact-links__block a:hover {
  color: var(--neon-pink);
}

/* ===== Фотогалерея ===== */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.photo-gallery__item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.photo-gallery__item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 229, 255, 0.12);
  z-index: 1;
}

.photo-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== SEO-перелинковка ===== */
.seo-links {
  margin-top: 40px;
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
}

.seo-links__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.seo-links__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.seo-links__list a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.seo-links__list a:hover {
  color: var(--neon-cyan);
}

/* ===== Песни — список-каталог ===== */
.songs-catalog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.songs-catalog__item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  transition: all var(--transition);
  animation: fadeInUp 0.6s ease both;
}

.songs-catalog__item:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 6px 30px rgba(0, 229, 255, 0.08);
  transform: translateY(-4px);
}

.songs-catalog__item h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.songs-catalog__item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 14px;
}

/* ===== Лайтбокс ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.6);
  object-fit: contain;
  transition: transform 0.3s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 2001;
}

.lightbox__close:hover {
  background: var(--neon-pink);
  border-color: var(--neon-pink);
  transform: scale(1.1);
}

.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 2001;
  user-select: none;
}

.lightbox__arrow:hover {
  background: rgba(0, 229, 255, 0.2);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.lightbox__arrow--prev {
  left: 20px;
}

.lightbox__arrow--next {
  right: 20px;
}

.lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 16px;
  border-radius: 20px;
}

.photo-gallery__item {
  cursor: pointer;
}

@media (max-width: 768px) {
  .lightbox__arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .lightbox__arrow--prev {
    left: 8px;
  }

  .lightbox__arrow--next {
    right: 8px;
  }

  .lightbox__close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }
}

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

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 229, 255, 0.1); }
  50% { box-shadow: 0 0 30px rgba(0, 229, 255, 0.2), 0 0 60px rgba(255, 45, 120, 0.08); }
}

.glow-animate {
  animation: glowPulse 3s ease-in-out infinite;
}

/* ===== Адаптивность ===== */
@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(11, 13, 26, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .header__nav.open {
    max-height: 500px;
    padding: 8px 0;
    overflow-y: auto;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown__toggle {
    display: block;
    padding: 14px 24px;
    font-size: 1rem;
    width: 100%;
    text-align: left;
  }

  .nav-dropdown__menu {
    position: static;
    transform: none;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-radius: 0;
    box-shadow: none;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
  }

  .nav-dropdown.open .nav-dropdown__menu {
    max-height: 500px;
    padding: 4px 0;
  }

  .nav-dropdown__menu a {
    padding: 10px 40px;
    font-size: 0.95rem;
  }

  .header__nav a {
    display: block;
    padding: 14px 24px;
    font-size: 1rem;
  }

  .burger {
    display: flex;
  }

  .hero__title {
    font-size: 2.4rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero {
    min-height: 70vh;
  }

  .section {
    padding: 48px 0;
  }

  .section__title {
    font-size: 1.8rem;
  }

  .info-box {
    padding: 24px 16px;
  }

  .info-box__row {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .about-section {
    padding: 32px 16px;
  }

  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }

  .schedule-table {
    font-size: 0.85rem;
  }

  .schedule-table th,
  .schedule-table td {
    padding: 10px 12px;
  }

  .song-block {
    padding: 24px 16px;
  }

  .song-block__lyrics {
    padding: 16px;
  }

  .platform-buttons {
    flex-direction: column;
    align-items: center;
  }
}

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

  .btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  .cities-grid {
    grid-template-columns: 1fr;
  }
}
