/* ===== БАЗОВЫЕ СТИЛИ ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&display=swap');

:root {
  --bg-dark: #0a0a1a;
  --bg-gradient: linear-gradient(135deg, #0a0a2e 0%, #1a0a3e 50%, #0a1a3e 100%);
  --neon-pink: #ff2d95;
  --neon-cyan: #00f0ff;
  --neon-lime: #c8ff00;
  --white: #ffffff;
  --white-80: rgba(255,255,255,0.8);
  --white-60: rgba(255,255,255,0.6);
  --white-20: rgba(255,255,255,0.2);
  --card-bg: rgba(255,255,255,0.05);
  --card-border: rgba(255,255,255,0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg-dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ===== АНИМАЦИИ ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255,45,149,0.3); }
  50% { box-shadow: 0 0 40px rgba(255,45,149,0.6); }
}

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

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

@keyframes glowText {
  0%, 100% { text-shadow: 0 0 10px rgba(0,240,255,0.3); }
  50% { text-shadow: 0 0 25px rgba(0,240,255,0.6), 0 0 50px rgba(255,45,149,0.2); }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
  opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* ===== ХЕДЕР ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--white-20);
  padding: 0 1rem;
}

.header-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  flex-shrink: 0;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}

.nav a {
  padding: 0.25rem 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white-80);
  transition: color 0.3s, text-shadow 0.3s;
  white-space: nowrap;
}

.nav-divider {
  width: 1px;
  height: 16px;
  background: var(--white-20);
  margin: 0 0.2rem;
  flex-shrink: 0;
}

.nav a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0,240,255,0.5);
}

/* Бургер-меню */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 5px;
}

.burger span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== 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;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 46, 0.7) 0%,
    rgba(26, 10, 62, 0.8) 50%,
    rgba(10, 10, 26, 1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
}

.hero-title {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 8px;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan), var(--neon-lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--white-80);
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.6;
}

.city-hero .hero-subtitle {
  display: none;
}

.city-hero .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.city-hero .hero-title {
  margin-bottom: 0;
}

.city-hero .hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
  margin: 0 auto 2.75rem;
  line-height: 1.5;
}

.hero-card {
  width: min(90vw, 520px);
  margin: 2rem auto 0;
  background: rgba(7, 7, 20, 0.8);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
  backdrop-filter: blur(14px);
}

/* ===== КНОПКИ ===== */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-pink), #ff6b6b);
  color: var(--white);
  box-shadow: 0 4px 25px rgba(255,45,149,0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 35px rgba(255,45,149,0.6);
}

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

.btn-secondary:hover {
  background: var(--neon-cyan);
  color: var(--bg-dark);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 30px rgba(0,240,255,0.4);
}

/* ===== СЕКЦИИ ===== */
.section {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

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

.section-subtitle {
  text-align: center;
  color: var(--white-60);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== КАРТОЧКИ ГОРОДОВ ===== */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.city-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

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

.city-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,45,149,0.3);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3), 0 0 20px rgba(255,45,149,0.1);
}

.city-card:hover::before {
  transform: scaleX(1);
}

.city-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.city-card .venue {
  font-size: 0.95rem;
  color: var(--neon-cyan);
  margin-bottom: 0.5rem;
}

.city-card .date {
  font-size: 0.9rem;
  color: var(--neon-lime);
  margin-bottom: 1.2rem;
}

.city-card .btn {
  padding: 0.7rem 1.8rem;
  font-size: 0.85rem;
}

/* ===== БЛОК О ГРУППЕ ===== */
.about-section {
  background: linear-gradient(135deg, rgba(255,45,149,0.05), rgba(0,240,255,0.05));
  border-radius: 20px;
  padding: 3rem;
  margin-top: 2rem;
}

.about-text {
  color: var(--white-80);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

.about-text p {
  margin-bottom: 1rem;
}

/* ===== БЛОК ВИДЕО ===== */
.video-section {
  margin-top: 2rem;
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(255,45,149,0.2);
}

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

/* ===== БЛОК МУЗЫКИ ===== */
.music-section {
  margin-top: 2rem;
}

.music-widget {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0,240,255,0.15);
  background: var(--bg-dark);
}

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

/* ===== БЛОК КАК УЗНАТЬ ДАТЫ ===== */
.info-block {
  text-align: center;
  padding: 3rem;
  background: var(--card-bg);
  border-radius: 20px;
  border: 1px solid var(--card-border);
  margin-top: 2rem;
}

.info-block p {
  color: var(--white-80);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* ===== СТРАНИЦЫ ГОРОДОВ ===== */
.city-hero {
  min-height: 70vh;
}

.city-info-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 700px;
  margin: -4rem auto 0;
  position: relative;
  z-index: 3;
  backdrop-filter: blur(10px);
}

.city-info-card .info-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: baseline;
}

.city-info-card .info-label {
  font-weight: 700;
  color: var(--neon-cyan);
  min-width: 120px;
  font-size: 0.95rem;
}

.city-info-card .info-value {
  color: var(--white-80);
  font-size: 1rem;
}

.city-info-card .info-value.highlight {
  color: var(--neon-lime);
  font-weight: 600;
}

/* ===== БЛОК О КОНЦЕРТЕ ===== */
.concert-about {
  max-width: 800px;
  margin: 0 auto;
}

.concert-about p {
  color: var(--white-80);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ===== БЛОК ПЛОЩАДКА ===== */
.venue-block {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2.5rem;
}

.venue-block h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--neon-cyan);
}

.venue-block p {
  color: var(--white-80);
  line-height: 1.8;
}

/* ===== ССЫЛКА НАЗАД ===== */
.back-link {
  text-align: center;
  margin-top: 3rem;
}

.back-link a {
  color: var(--neon-cyan);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.back-link a:hover {
  color: var(--neon-pink);
  text-shadow: 0 0 10px rgba(255,45,149,0.3);
}

/* ===== ФУТЕР ===== */
.footer {
  background: rgba(10, 10, 26, 0.95);
  border-top: 1px solid var(--white-20);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 4rem;
}

.footer p {
  color: var(--white-60);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer a {
  color: var(--neon-cyan);
  transition: color 0.3s;
}

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

.footer .disclaimer {
  font-size: 0.8rem;
  color: var(--white-60);
  margin-top: 1rem;
  font-style: italic;
}

/* ===== КНОПКА НАВЕРХ ===== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(255,45,149,0.4);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

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

.scroll-top:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 30px rgba(255,45,149,0.6);
}

/* ===== АДАПТИВ ===== */
/* ===== КАРТОЧКИ-ССЫЛКИ (ИНФОРМАЦИЯ) ===== */
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.info-link-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

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

.info-link-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255,45,149,0.4);
  box-shadow: 0 15px 50px rgba(0,0,0,0.4), 0 0 30px rgba(255,45,149,0.15), 0 0 60px rgba(0,240,255,0.05);
}

.info-link-card:hover::before {
  transform: scaleX(1);
}

.info-link-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--neon-cyan);
}

.info-link-card p {
  color: var(--white-60);
  font-size: 0.95rem;
  line-height: 1.5;
}

.info-link-card .btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}

/* ===== РАСПИСАНИЕ (ТАБЛИЦА) ===== */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.schedule-table th,
.schedule-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--card-border);
}

.schedule-table th {
  background: rgba(255,45,149,0.1);
  color: var(--neon-cyan);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.schedule-table td {
  color: var(--white-80);
  font-size: 0.95rem;
}

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

.schedule-table tr:hover td {
  background: rgba(0,240,255,0.03);
}

.schedule-table .btn {
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
}

/* ===== КОНТЕНТ-СТРАНИЦЫ ===== */
.content-section {
  max-width: 900px;
  margin: 0 auto;
}

.content-section h2 {
  animation: glowText 3s ease-in-out infinite;
}

.content-section p {
  color: var(--white-80);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0,240,255,0.3);
}

.content-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
  color: var(--neon-lime);
}

/* ===== БЛОК ТЕКСТА ПЕСНИ ===== */
.lyrics-block {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  margin: 1.5rem 0 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: pre-line;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--white-80);
}

.lyrics-block:hover {
  box-shadow: 0 8px 35px rgba(0,0,0,0.35), 0 0 20px rgba(0,240,255,0.06);
  border-color: rgba(0,240,255,0.15);
}

.lyrics-block .lyrics-label {
  display: inline-block;
  color: var(--neon-pink);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

/* ===== БЛОК-ПРЕДУПРЕЖДЕНИЕ ===== */
.warning-block {
  background: rgba(255,45,149,0.08);
  border-left: 4px solid var(--neon-pink);
  border-radius: 0 12px 12px 0;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  box-shadow: 0 4px 20px rgba(255,45,149,0.1);
  transition: all 0.3s ease;
}

.warning-block:hover {
  box-shadow: 0 8px 30px rgba(255,45,149,0.2);
}

.warning-block p {
  color: var(--white-80);
  margin: 0;
}

/* ===== FAQ ===== */
.faq-list {
  margin-top: 2rem;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 15px rgba(0,240,255,0.08);
  border-color: rgba(0,240,255,0.2);
}

.faq-item h3 {
  color: var(--neon-cyan);
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.faq-item p {
  color: var(--white-80);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* ===== ОТЗЫВЫ ===== */
.review-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35), 0 0 20px rgba(0,240,255,0.08);
  border-color: rgba(0,240,255,0.2);
}

.review-card .review-author {
  color: var(--neon-cyan);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.review-card .review-city {
  color: var(--neon-lime);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.review-card p:last-child {
  color: var(--white-80);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== КНОПКИ-ССЫЛКИ ===== */
.link-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* ===== АЛЬБОМ-КАРТОЧКА ===== */
.album-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.album-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35), 0 0 20px rgba(255,45,149,0.1);
  border-color: rgba(255,45,149,0.25);
}

.album-card h3 {
  color: var(--neon-cyan);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.album-card .album-year {
  color: var(--neon-lime);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.album-card p:last-child {
  color: var(--white-80);
  margin: 0;
  line-height: 1.6;
}

/* ===== МЕНЮ РЕСТОРАНА ===== */
.menu-category {
  margin-bottom: 2.5rem;
}

.menu-category h3 {
  color: var(--neon-cyan);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--card-border);
  text-shadow: 0 0 10px rgba(0,240,255,0.3);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
}

.menu-item-name {
  color: var(--white-80);
  font-size: 0.95rem;
}

.menu-item-weight {
  color: var(--white-60);
  font-size: 0.85rem;
  margin-left: 0.5rem;
}

.menu-item-price {
  color: var(--neon-lime);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  margin-left: 1rem;
}

/* ===== ПСЕВДОНИМ-БЛОК ===== */
.pseudo-block {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pseudo-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35), 0 0 20px rgba(200,255,0,0.08);
  border-color: rgba(200,255,0,0.2);
}

.pseudo-block h3 {
  color: var(--neon-cyan);
  font-size: 1.2rem;
  margin: 0 0 0.75rem;
}

.pseudo-block p {
  color: var(--white-80);
  line-height: 1.6;
  margin: 0;
}

/* ===== SEO-ССЫЛКИ (блочная перелинковка) ===== */
.seo-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.seo-link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  color: var(--white-80);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.seo-link-card:hover {
  transform: translateY(-4px);
  border-color: var(--neon-cyan);
  box-shadow: 0 8px 30px rgba(0,240,255,0.1), 0 0 15px rgba(0,240,255,0.05);
  color: var(--neon-cyan);
}

.seo-link-card .seo-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,240,255,0.08);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.seo-link-card:hover .seo-icon {
  background: rgba(0,240,255,0.15);
}

.seo-link-card .seo-text {
  line-height: 1.3;
}

/* Старая перелинковка ul/li (фоллбэк) */
.seo-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.seo-links ul li {
  margin-bottom: 0.5rem;
}

.seo-links ul li a {
  color: var(--neon-cyan);
  font-size: 1.05rem;
  transition: color 0.3s, text-shadow 0.3s;
}

.seo-links ul li a:hover {
  color: var(--neon-pink);
  text-shadow: 0 0 10px rgba(255,45,149,0.4);
}

/* ===== ФОРМА КОНТАКТОВ ===== */
.contact-form {
  margin-top: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  color: var(--neon-cyan);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0,240,255,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== ФОТОГАЛЕРЕЯ ===== */
.photo-gallery {
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--card-border);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4), 0 0 20px rgba(0,240,255,0.08);
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: #fff; font-size: 2.5rem;
  cursor: pointer; z-index: 10000;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 2rem;
  width: 50px; height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s;
  z-index: 10000;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(0,240,255,0.15);
  border-color: var(--neon-cyan);
}

/* ===== АДАПТИВ: ТАБЛИЦА РАСПИСАНИЯ ===== */
@media (max-width: 768px) {
  .schedule-table thead {
    display: none;
  }

  .schedule-table,
  .schedule-table tbody,
  .schedule-table tr,
  .schedule-table td {
    display: block;
    width: 100%;
  }

  .schedule-table tr {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    margin-bottom: 1rem;
  }

  .schedule-table td {
    padding: 0.4rem 0;
    border-bottom: none;
    font-size: 0.95rem;
    text-align: left;
  }

  .schedule-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.15rem;
  }

  .schedule-table td:last-child {
    margin-top: 0.5rem;
  }

  .schedule-table .btn {
    width: 100%;
    text-align: center;
  }

  .info-cards-grid {
    grid-template-columns: 1fr;
  }

  .menu-item {
    flex-direction: column;
    gap: 0.25rem;
  }

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

  .gallery-grid img {
    height: 180px;
  }
}

@media (max-width: 1024px) {
  .nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 10, 26, 0.98);
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
    padding: 70px 1rem 2rem;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav a {
    display: block;
    font-size: 1.05rem;
    padding: 0.7rem 1.5rem;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    white-space: normal;
    flex-shrink: 0;
  }

  .nav-divider {
    display: block;
    width: 60%;
    height: 1px;
    background: var(--neon-pink);
    margin: 0.4rem auto;
    opacity: 0.4;
    flex-shrink: 0;
  }

  .burger {
    display: flex;
    z-index: 1001;
  }

  .hero-title {
    font-size: 3.5rem;
  }

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

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

@media (max-width: 768px) {
  .header-inner {
    height: 60px;
  }

  .nav {
    padding-top: 60px;
  }

  .hero {
    min-height: 80vh;
  }

  .hero-title {
    font-size: 2.8rem;
    letter-spacing: 4px;
  }

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

  .section {
    padding: 3rem 1.5rem;
  }

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

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

  .city-info-card {
    margin-top: -2rem;
    padding: 1.5rem;
  }

  .city-info-card .info-row {
    flex-direction: column;
    gap: 0.3rem;
  }

  .about-section {
    padding: 2rem 1.5rem;
  }

  .btn {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
  }

  .venue-block {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }

  .logo {
    font-size: 1.4rem;
  }

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

  .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
  }
}
