
body {
  font-family: 'Montserrat', sans-serif;
  background: radial-gradient(circle at center, #0a0a0a, #050505);
  color: #ffffff;
  min-height: 100vh;
  margin: 0;
  display: flex;
}


body {
  justify-content: center;
  align-items: center;
  position: relative;
  overflow-x: hidden;
}

/* Новый стиль для видео-фона */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(10px);
  opacity: 0.7;
}




/* Заставка click to enter */
#intro-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1000;
  transition: opacity 0.8s ease;
}

#intro-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

#intro-text {
  font-size: 2.2rem;
  font-weight: 600;
  color: #00fff7;
  animation: pulse 2.5s infinite;
  text-shadow: 0 0 15px rgba(0, 255, 247, 0.5);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.98); }
}

/* Основная карточка */
.card {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  padding: 30px 40px;
  width: 90%;
  max-width: 650px;

  /* обводка */
  border: 0px solid #000000;

  /* Тень с эффектом свечения */
  box-shadow:
          0 0 0 0px rgba(0, 0, 0, 0.9), /* Внутренняя тень для глубины */
          0 10px 15px rgba(0, 0, 0, 1); /* Внешняя размытая тень */

  backdrop-filter: blur(5px);
  position: relative;
  z-index: 0;
}

/* Для мобилок */
@media (max-width: 768px) {
  .card {
    padding: 25px;
    width: 95%;
    box-shadow:
            0 0 0 1px rgba(0, 0, 0, 0.8),
            0 3px 10px rgba(0, 0, 0, 0.5);
  }
}

/* ник */
.nickname {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 15px 0;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  position: relative;
}

.nickname::after {
  content: '';
  display: block;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg,
  transparent,
  rgba(87, 87, 87, 0.8),
  transparent);
  margin: 10px auto 0;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.nickname::after::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
  transparent,
  rgba(0, 255, 247, 0.7),
  transparent);
  animation: lineFlow 2.5s linear infinite;
}

@keyframes lineFlow {
  0% { left: -100%; }
  100% { left: 100%; }
}


/* Описание */
.desc {
  font-size: 1.2rem;
  text-align: center;
  margin: 0 auto 25px;
  color: rgba(87, 87, 87, 0.9);
  text-shadow: 0 0 10px rgba(87, 87, 87, 0.8);
  line-height: 1.5;
  max-width: 80%;
}

/* Блоки с информацией */
.row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0 0 25px 0;
  flex-wrap: wrap;
}

.block {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 15px;
  padding: 20px;
  width: calc(50% - 20px);
  min-width: 250px;
  border: 1px solid rgba(0, 255, 255, 0.1);
  transition: transform 0.8s ease;
}

.block:hover {
  transform: translateY(-5px);
}

.block h3 {
  color: #00d4db;
  margin: 0 0 15px 0;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
}

.block h3::before {
  content: '»';
  margin-right: 8px;
  color: #575757;
}

.block ul {
  padding: 0;
  margin: 0;
  list-style: none;

}

.block li {
  margin: 0 0 10px 0;
  color: rgba(255, 255, 255, 1);
  position: relative;
  padding-left: 15px;
  color: #00d4db;
}

.block li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #00fff7;
}

/* Кнопки */
.btns {
  display: flex;
  gap: 75px; /* расстояние между кнопок */
  margin-bottom: 15px;
  justify-content: center; 
  flex-wrap: wrap;
}
.btn {
  padding: 12px 30px;
  border-radius: 35px;
  border: none;
  background: linear-gradient(135deg, #000000, #474747);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  overflow: hidden;
  transition: transform 0.3s;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transform: skewX(-25deg);
  transition: left 0.95s;
}
.btn:hover::before {
  left: 130%;
}
.btn:hover {
  transform: scale(1.05);
}

/* Плеер */
.music-control {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 15px 0 0 0;
  margin-top: 20px;
  position: relative;
}

.music-control::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg,
  transparent,
  rgba(144, 144, 144, 0.85),
  transparent);
  animation: lineFlow 3s ease-in-out infinite;
}

@keyframes lineFlow {
  0% { background-position: -100% 0; }
  100% { background-position: 100% 0; }
}

.track-info {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.btn-player {
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-player:hover {
  transform: scale(1.1);
}

.btn-player svg {
  filter: drop-shadow(0 0 5px rgba(0, 255, 247, 0.5));
}

/* Звёзды */
#stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* Адаптация ненужна хуйня */
@media (max-width: 768px) {
  .card {
    padding: 25px;
    width: 95%;
  }

  .nickname {
    font-size: 2.2rem;
  }

  .desc {
    font-size: 1.1rem;
    max-width: 100%;
  }

  .block {
    width: 100%;
  }

  .btn {
    padding: 10px 25px;
  }
}