/* ==================================================
   ПЕРЕМЕННЫЕ
   ================================================== */
:root {
  --dark-gray: #222222;
  --yellow: #facc15;
  --light-yellow: #e6b800;
  --white: #ffffff;
  --light-gray: #f8f8f8;
  --text-dark: #333333;
  --text-light: #777777;

  --concert-title-size: 1.3rem;
  --concert-button-size: 1rem;
}

/* ==================================================
   ШРИФТЫ
   ================================================== */
@font-face {
  font-family: 'Bebas Neue Cyrillic';
  src: url('../fonts/Bebas Neue Cyrillic.ttf') format('truetype');
}

@font-face {
  font-family: 'Routine Variable Thin';
  src: url('../fonts/RoutineVariableThin-Thin.ttf') format('truetype');
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Regular.ttf') format('truetype');
}

/* ==================================================
   БАЗА
   ================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  padding-top: 80px;
  background-color: #fafafa;
  color: var(--text-dark);
}

h1, h2, h3,
.page-title, .month-title,
.concert-date, .concert-city, .concert-price-label,
.btn, .nav-link {
  font-family: 'Bebas Neue Cyrillic', sans-serif;
  font-weight: normal;
}

.concert-weekday,
.concert-location,
.concert-time,
.concert-time-separator,
.concert-price-value {
  font-family: 'Routine Variable Thin', sans-serif;
}

/* ==================================================
   МЕНЮ
   ================================================== */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-gray);
  padding: 15px 0;
  z-index: 1000;
  transform: translateY(0);
  transition: transform 0.3s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.top-nav.hidden {
  transform: translateY(-100%);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: var(--white);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--yellow);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}

/* ==================================================
   ШАПКА
   ================================================== */
.hero {
  height: 70vh;
  position: relative;
  overflow: hidden;
  background: var(--dark-gray);
  margin-top: -80px;
}

/* ИСПРАВЛЕНО: Убрали селектор .hero img, оставили только video */
/* Это стили только для фонового медиа */
.hero video {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: translateY(-50%);
  opacity: 0.9;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 2;
}

.pixel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/pixel-overlay.png') repeat;
  opacity: 0.2;
  pointer-events: none;
  z-index: 3;
}

.logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  width: 100%;
  padding: 20px;
}

/* Старый класс для текста (сохранен на всякий случай) */
.band-name {
  font-family: 'Bebas Neue Cyrillic', sans-serif;
  font-size: 6vw;
  color: var(--white) !important;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  position: relative;
  z-index: 4;
  line-height: 1.2;
}

/* ==================================================
   ЛОГОТИП НА ГЛАВНОЙ (ВМЕСТО ТЕКСТА)
   ================================================== */
.hero-logo-img {
  width: 90%;
  max-width: 850px;
  height: auto;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 4;
  
  /* Итоговая прозрачность, на которой логотип останется */
  opacity: 0.4; 
  
  filter: drop-shadow(0px 4px 15px rgba(0,0,0,0.6));
  
  /* Я немного увеличил время до 1.5s, чтобы этот перепад был хорошо виден */
  animation: fadeScaleInPulse 1.5s ease-out; 
}

/* Новая анимация по процентам */
@keyframes fadeScaleInPulse {
  0% { 
    opacity: 0; 
    transform: scale(0.95); 
  }
  60% { 
    /* На 60% времени логотип становится полностью ярким и достигает нормального размера */
    opacity: 1; 
    transform: scale(1); 
  }
  100% { 
    /* В конце плавно опускается до 0.4 */
    opacity: 0.4; 
    transform: scale(1); 
  }
}

/* Адаптивность для мобильных телефонов */
@media (max-width: 768px) {
  .hero-logo-img {
    width: 95%;
    max-width: 500px;
  }
}

/* ==================================================
   КОНТЕНТ
   ================================================== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0;
}

.page-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dark);
}

.no-concerts {
  text-align: center;
  font-size: 1.5rem;
  color: var(--text-light);
  padding: 50px 0;
}

.month-section {
  margin-bottom: 40px;
}

.month-title {
  font-size: 2rem;
  background-color: var(--yellow);
  padding: 10px 20px;
  display: inline-block;
  border-radius: 8px;
  margin-bottom: 25px;
  color: var(--text-dark);
}









/* ==================================================
   КОНЦЕРТЫ
   ================================================== */
.concert-card{
  width:100%;
  max-width:800px;
  margin:0 auto 25px;
  background:var(--white);
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 5px 20px rgba(0,0,0,.08);
  border:1px solid #eee;
  transition:.3s;
}
.concert-card:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 30px rgba(0,0,0,.12);
}

/* ==================================================
   DESKTOP (≥ 769 px) — «новый» макет
   ================================================== */
.concert-desktop .concert-details{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:15px;
  padding:20px;
}
.concert-desktop .concert-column{min-width:0;text-align:center;}
.concert-desktop .date,
.concert-desktop .location,
.concert-desktop .price{flex:1;}
.concert-desktop .actions{flex:1.5;}

/* заголовки */
.concert-desktop .concert-date,
.concert-desktop .concert-city,
.concert-desktop .concert-price-label{
  font-size:var(--concert-title-size);
  color:var(--text-dark);
  text-transform:uppercase;
  white-space:nowrap;
  margin-bottom:5px;
}
/* подписи */
.concert-desktop .concert-weekday,
.concert-desktop .concert-location,
.concert-desktop .concert-time,
.concert-desktop .concert-time-separator,
.concert-desktop .concert-price-value{
  font-family:'Routine Variable Thin',sans-serif;
  font-size:.8rem;
  opacity:.7;
  color:var(--text-light);
  text-transform:uppercase;
  white-space:nowrap;
}
.concert-desktop .concert-location-time{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:5px;
}

/* кнопки */
.concert-desktop .concert-actions{display:flex;gap:10px;white-space:nowrap;}

/* ==================================================
   MOBILE (≤ 768 px) — «старый» макет
   ================================================== */
.concert-mobile{display:none;}
.concert-desktop{display:block;}

@media (max-width:768px){
  .concert-desktop{display:none;}
  .concert-mobile{display:flex;gap:15px;align-items:center;padding:20px;}

  /* дата-бейдж */
  .concert-mobile .concert-date{
    position:relative;
    flex:0 0 90px;
    width:90px;
    background:var(--yellow);
    color:var(--text-dark);
    border-radius:8px;
    text-align:center;
    padding:10px 5px;
  }
  .concert-mobile .pixel-overlay-contact{
    content:'';
    position:absolute;inset:0;
    background:url('/assets/img/pixel-overlay.svg') center/cover no-repeat;
    opacity:.08;border-radius:8px;
    pointer-events:none;
  }
  .concert-mobile .concert-day{
    font-family:'Bebas Neue Cyrillic',sans-serif;
    font-size:1.6rem;line-height:1;
  }
  .concert-mobile .concert-month,
  .concert-mobile .concert-weekday{
    font-size:.6rem;
    text-transform:uppercase;
    letter-spacing:.05em;
    line-height:1.1;
  }

  /* информация */
  .concert-mobile .concert-info{flex:1;}
  .concert-mobile .concert-city{
    font-family:'Bebas Neue Cyrillic',sans-serif;
    font-size:1.1rem;
    text-transform:uppercase;
    margin:0 0 5px;
  }
  .concert-mobile .concert-location{
    font-family:'Routine Variable Thin',sans-serif;
    font-size:.8rem;
    color:var(--text-light);
    margin:0 0 8px;
  }
  .concert-mobile .concert-price{
    font-size:.9rem;
    font-weight:700;
    margin-bottom:10px;
  }

  /* кнопки */
  .concert-mobile .concert-actions{
    display:flex;
    gap:10px;
    width:100%;
  }
  .concert-mobile .concert-actions .btn{
    flex:1 1 50%;
    font-size:.9rem;
    padding:10px 12px;
  }
}

/* очень узкие экраны */
@media (max-width:480px){
  .concert-mobile{padding:15px;gap:10px;}
  .concert-mobile .concert-day{font-size:1.4rem;}
  .concert-mobile .concert-month,
  .concert-mobile .concert-weekday{font-size:.55rem;}
  .concert-mobile .concert-city{font-size:1rem;}
  .concert-mobile .concert-location,
  .concert-mobile .concert-price{font-size:.75rem;}
  .concert-mobile .concert-actions .btn{font-size:.8rem;padding:9px 8px;}
}

/* ==================================================
   ОБЩИЕ стили кнопок (не менялись)
   ================================================== */
.btn{
  font-size:var(--concert-button-size);
  padding:8px 15px;
  border-radius:8px;
  text-decoration:none;
  letter-spacing:.5px;
  transition:.3s;
  cursor:pointer;
}
.btn-primary{background:var(--yellow);color:var(--text-dark);border:none;}
.btn-primary:hover{background:var(--light-yellow);}
.btn-secondary{background:transparent;color:var(--text-dark);border:2px solid var(--dark-gray);}
.btn-secondary:hover{background:var(--dark-gray);color:var(--white);}






/* ==================================================
   ГОЛОСОВАЛКА
   ================================================== */
.vote-section {
  background: var(--light-gray);
  border-radius: 15px;
  padding: 40px;
  max-width: 800px;
  margin: 60px auto;
  text-align: center;
}

.vote-title {
  font-size: 2.2rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  color: var(--text-dark);
}

.vote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
}

.vote-form select,
.vote-form input[type="text"] {
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  transition: border-color 0.3s;
}

.vote-form select:focus,
.vote-form input[type="text"]:focus {
  border-color: var(--yellow);
  outline: none;
}

.vote-form button {
  padding: 15px;
  background: var(--dark-gray);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.vote-form button:hover {
  background: var(--yellow);
  color: var(--text-dark);
}

#customCity {
  display: none;
}

#customCity.visible {
  display: block;
}

/* Сообщения */
.success-message {
  background-color: #4CAF50;
  color: white;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  font-family: 'Roboto', sans-serif;
}

.error-message {
  background-color: #f44336;
  color: white;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  font-family: 'Roboto', sans-serif;
}

/* ==================================================
   СОЦСЕТИ
   ================================================== */
.social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 30px 0;
}

.social-links img {
  height: 40px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.social-links img:hover {
  opacity: 1;
}

/* ==================================================
   ФУТЕР
   ================================================== */
footer {
  background: var(--dark-gray);
  padding: 30px 0;
  text-align: center;
}

.footer-copy {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #ccc;
  padding-top: 20px;
}

/* ==================================================
   АДАПТИВНОСТЬ (глобально)
   ================================================== */
@media (max-width: 992px) {
  .main-logo { width: 70%; }
  .nav-link  { font-size: 1.3rem; }
}

@media (max-width: 768px) {
  .band-name { font-size: 12vw !important; white-space: nowrap; }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--dark-gray);
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    transition: left 0.3s;
    z-index: 999;
  }
  .nav-links.active { left: 0; }

  .nav-link      { font-size: 2rem; margin: 15px 0; }
  .mobile-toggle { display: block; }

  /* Принудительное применение шрифтов для мобильных */
  body { font-family: 'Roboto', sans-serif !important; }

  h1, h2, h3, .page-title, .month-title, 
  .concert-day, .concert-month, .concert-city,
  .concert-price, .btn, .nav-link {
    font-family: 'Bebas Neue Cyrillic', sans-serif !important;
    font-weight: normal !important;
  }

  .concert-weekday, .concert-location {
    font-family: 'Routine Variable Thin', sans-serif !important;
  }

  .concert-actions { flex-direction: column; }
  .btn             { width: 100%; }
}

@media (max-width: 576px) {
  .band-name  { font-size: 14vw !important; letter-spacing: 3px; }
  .page-title { font-size: 2.2rem; }
  .month-title{ font-size: 1.5rem; padding: 8px 15px; }
  .concert-date{ padding: 10px; }
  .concert-day { font-size: 2rem; }
  .concert-month{ font-size: 1.2rem; }
  .social-links{ gap: 15px; }
  .social-links img { height: 30px; }
  .vote-section { padding: 20px; }
  .vote-title   { font-size: 1.8rem; }
}

/* ==================================================
   ПРОВЕРКА ШРИФТОВ
   ================================================== */
.font-test { position: absolute; left: -9999px; }
.font-test::before {
  content: 'Bebas loaded';
  font-family: 'Bebas Neue Cyrillic', sans-serif;
}
.font-test::after {
  content: 'Routine loaded';
  font-family: 'Routine Variable Thin', sans-serif;
}

/* ==================================================
   СТРАНИЦА КОНТАКТОВ
   ================================================== */
.contacts-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin: 40px auto;
  max-width: 1200px;
}

.contact-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
  border: 1px solid #eee;
  width: 100%;
  max-width: 500px;
}

.contact-header {
  background: var(--dark-gray);
  color: var(--white);
  padding: 25px;
  text-align: center;
}

.contact-position {
  font-family: 'Bebas Neue Cyrillic', sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.contact-name {
  font-family: 'Routine Variable Thin', sans-serif;
  font-size: 1.3rem;
  opacity: 0.9;
}

.contact-details {
  padding: 25px;
  text-align: center;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  margin: 0 15px 15px 0;
  padding: 10px 15px;
  background: var(--light-gray);
  border-radius: 30px;
}

.contact-icon { margin-right: 10px; width: 20px; text-align: center; }
.social-icon-small { width: 20px; height: 20px; opacity: .8; transition: opacity .3s; }

.contact-link {
  font-family: 'Roboto', sans-serif;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s;
}
.contact-link:hover { color: var(--yellow); }

/* Адаптивность (контакты) */
@media (max-width:768px){
  .contact-card   { max-width: 100%; }
  .contact-header { padding: 20px; }
  .contact-position{ font-size: 1.5rem; }
  .contact-name   { font-size: 1.1rem; }
  .contact-details{ padding: 20px 15px; }
  .contact-item   { margin: 0 10px 10px 0; padding: 8px 12px; }
}

/* ==================================================
   ШАПКА (ГЛАВНАЯ/МУЗЫКА)
   ================================================== */
.hero { position: relative; overflow: hidden; background: var(--dark-gray); width: 100%; }
.hero-main      { height: 70vh; margin-top: -80px; }
.hero-secondary { height: 160px; margin-top: 0; }

/* Большие экраны */
@media (min-width:1920px){ .hero-secondary{ height: 260px; } }
/* Планшеты/небольшие ноутбуки */
@media (max-width:1024px){ .hero-secondary{ height: 140px; } }
/* Телефоны (ландшафт / портрет) */
@media (max-width:768px){ .hero-secondary{ height: 0px; } }
@media (max-width:480px){ .hero-secondary{ height: 0px; } }

.hero video {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(-50%);
  opacity: 0.9;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 2;
}

.pixel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/pixel-overlay.png') repeat;
  opacity: 0.2;
  pointer-events: none;
  z-index: 3;
}

.logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  text-align: center;
  width: 100%;
}

.band-name {
  font-family: 'Bebas Neue Cyrillic', sans-serif;
  font-size: 6vw;
  color: white;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Адаптивность главной */
@media (max-width:768px){
  .hero-main { height: 60vh; }
  .band-name { font-size: 12vw; }
}

/* ==================================================
   ПИКСЕЛЬНЫЙ ОВЕРЛЕЙ (контакты + даты концертов)
   ================================================== */
.pixel-overlay-contact {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/pixel-overlay.png') repeat;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

.contact-header,
.concert-date { position: relative; overflow: hidden; }

/* Текст поверх оверлея */
.contact-position,
.contact-name,
.concert-day,
.concert-month,
.concert-weekday {
  position: relative;
  z-index: 2;
}

/* ==================================================
   СТРАНИЦА МУЗЫКИ
   ================================================== */
.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.track-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
  border: 1px solid #eee;
}

.track-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* Десктоп (квадратные карточки) */
@media (min-width:769px){
  .track-card { display: flex; flex-direction: column; }
  .track-image-container{
    position: relative; width: 100%; aspect-ratio: 1/1; overflow: hidden;
  }
  .track-info{
    padding: 20px; flex-grow: 1; display: flex; flex-direction: column;
  }
  .audio-player { margin-top: auto; }
}

/* Мобильная версия */
@media (max-width:768px){
  .track-image-container{
    position: relative; width: 100%; height: 250px; overflow: hidden;
  }
  .track-info  { padding: 20px; }
  .audio-player{ margin-top: 10px; }
}

.track-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.track-card:hover .track-image { transform: scale(1.05); }

.pixel-overlay-music {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/pixel-overlay.png') repeat;
  opacity: 0.15;
  pointer-events: none;
  z-index: 2;
}

.track-title {
  font-family: 'Bebas Neue Cyrillic', sans-serif;
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

.audio-player{
  width: 100%; background: transparent; border: none; padding: 0;
}

/* Стилизация аудио-плеера */
.audio-player::-webkit-media-controls-panel{ background: var(--white); }
.audio-player::-webkit-media-controls-play-button,
.audio-player::-webkit-media-controls-current-time-display,
.audio-player::-webkit-media-controls-time-remaining-display{ color: var(--dark-gray); }

/* Адаптивность (музыка) */
@media (max-width:768px){
  .music-grid { grid-template-columns: 1fr; }
  .track-title{ font-size: 1.5rem; }
}
@media (max-width:480px){
  .track-image-container{ height: 200px; }
  .track-title{ font-size: 1.4rem; }
}





/* Existing styles from your provided CSS remain unchanged. Adding video-specific styles below */

/* ==================================================
   СТРАНИЦА ВИДЕО
   ================================================== */
.video-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 40px 0;
}

.video-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
  border: 1px solid #eee;
  max-width: 800px;
  margin: 0 auto;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.video-preview-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.video-card:hover .video-preview {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--yellow);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  z-index: 3;
}

.play-button:hover {
  background: var(--light-yellow);
}

.play-icon {
  width: 24px;
  height: 24px;
  fill: var(--text-dark);
}

.pixel-overlay-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/pixel-overlay.png') repeat;
  opacity: 0.15;
  pointer-events: none;
  z-index: 2;
}

.video-player-container {
  width: 100%;
  aspect-ratio: 16/9;
}

.video-player {
  width: 100%;
  height: 100%;
  background: var(--dark-gray);
}

.video-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.video-title {
  font-family: 'Bebas Neue Cyrillic', sans-serif;
  font-size: 1.8rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

.video-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.no-videos {
  text-align: center;
  font-size: 1.5rem;
  color: var(--text-light);
  padding: 50px 0;
}

/* Адаптивность (видео) */
@media (max-width: 768px) {
  .video-title {
    font-size: 1.5rem;
  }
  .play-button {
    width: 50px;
    height: 50px;
  }
  .play-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .video-title {
    font-size: 1.4rem;
  }
  .video-card {
    margin: 0 15px;
  }
  .video-info {
    padding: 15px;
  }
  .video-links .btn {
    font-size: 0.9rem;
    padding: 8px 12px;
  }
}








/* Исправление шрифтов и отступов для анонсов "СКОРО" */
.concert-card.is-planned {
    background: var(--white) !important;
    border: 1px solid #eee !important;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08) !important;
    margin-bottom: 25px;
    transition: .3s;
}

.planned-banner {
    width: 100%;
    padding: 25px 30px; /* Отступы для десктопа */
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
}

.planned-status-line {
    font-family: 'Routine Variable Thin', sans-serif;
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

.planned-city-line {
    font-family: 'Bebas Neue Cyrillic', sans-serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.1;
}

/* --- АДАПТИВНОСТЬ ДЛЯ МОБИЛОК --- */
@media (max-width: 768px) {
    .planned-banner {
        padding: 20px; /* Уменьшаем внутренние отступы, как в .concert-info */
    }

    .planned-status-line {
        font-size: 0.75rem; /* Чуть меньше на мобильных */
        margin-bottom: 2px;
    }

    .planned-city-line {
        font-size: 1.5rem; /* Увеличиваем визуальный вес города на телефоне */
    }
}

/* Фикс для цены в обычных концертах */
.concert-price-label {
    font-family: 'Bebas Neue Cyrillic', sans-serif;
    font-size: 1.3rem;
    color: var(--text-dark);
}
.concert-price-value {
    font-family: 'Routine Variable Thin', sans-serif;
    font-size: 0.8rem;
    color: var(--text-light);
}