/* ============================================ */
/* 1. БАЗОВІ СТИЛІ ТА СКИДАННЯ */
/* ============================================ */

/* Скидання базових стилів */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  list-style: none;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #000;
  color: #fff;
}

/* Основний контейнер */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 16px;
}

/* Анімації для всього сайту */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-glow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 0, 64, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(255, 0, 64, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 0, 64, 0);
  }
}

/* Анімація появи елементів при скролі */
.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================ */
/* 2. ГОЛОВНИЙ БАНЕР (HERO SECTION) */
/* ============================================ */
.hero-block {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 20px;
  position: relative;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 1) 100%
    ),
    url("/hero.jpeg") no-repeat center center;
  background-size: cover;
}

/* Шапка з логотипом */
.top-header {
  width: 100%;
  padding: 20px 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}

.header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.logo-img {
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

/* Контент банеру */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-grow: 1;
  padding-bottom: 60px;
}

.hero-subtitle {
  font-size: 60px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-title {
  font-size: 80px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 40px;
  background: linear-gradient(50deg, #ff6b9d, #cc00ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero-button {
  display: inline-block;
  background: red; /* Рожевий/червоний */
  color: #000; /* Чорний текст */
  padding: 16px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

/* ВИПРАВЛЕННЯ: при наведенні текст має бути видимим */
.hero-button:hover {
  background: transparent;
  color: #fff; /* Білий текст на прозорому фоні */
  border-color: #fff; /* Біла обводка */
  transform: translateY(-3px); /* Легкий підйом */
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Індикатор скролу */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.wheel {
  width: 4px;
  height: 10px;
  background-color: oklch(64.5% 0.246 16.439);
  border-radius: 2px;
  animation: scroll-wheel 1.5s ease infinite;
}

@keyframes scroll-wheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}

/* ============================================ */
/* 3. БЛОК ПОСЛУГ (SERVICES) */
/* ============================================ */

.services-section {
  background: black;
  color: #000;
  padding: 100px 0;
}

.services-section .section-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: white;
}

.services-section .section-subtitle {
  font-size: 18px;
  text-align: center;
  color: white;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-card {
  background: black;
  border-radius: 12px;
  border: 1px solid oklch(64.5% 0.246 16.439);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  color: oklch(64.5% 0.246 16.439);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(244, 114, 182, 0.1);
  border-radius: 50%;
  border: 1px solid #d74760;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 28px;
  font-weight: bold;
  color: oklch(64.5% 0.246 16.439);
}

.service-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

.service-card p {
  font-size: 16px;
  line-height: 1.6;
  color: white;
}

/* ============================================ */
/* 4. ПОРТФОЛІО (PORTFOLIO) */
/* ============================================ */

.portfolio-section {
  background-color: oklch(14.1% 0.005 285.823);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

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

.section-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 400;
}

.section-header p {
  color: #888;
  margin-bottom: 50px;
}

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.track-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
  background-color: #111;
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.5s ease,
    filter 0.3s ease;
}

.track-card:hover .cover-img,
.track-card.playing .cover-img {
  transform: scale(1.05);
  filter: brightness(0.6);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.track-card:hover .overlay,
.track-card.playing .overlay {
  opacity: 1;
}

.play-btn {
  width: 60px;
  height: 60px;
  background-color: #ff0040;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(255, 0, 64, 0.4);
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.track-card:hover .play-btn {
  transform: scale(1);
}

.play-btn svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.icon-pause {
  display: none;
}

.track-card.playing .icon-play {
  display: none;
}

.track-card.playing .icon-pause {
  display: block;
}

.track-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  text-align: left;
  box-sizing: border-box;
}

.track-info h3 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}

.track-info p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #ccc;
}

/* ============================================ */
/* 5. ЦІНИ (PRICING) */
/* ============================================ */

.pricing-section {
  background-color: #000;
  color: #fff;
  padding: 60px 20px;
}

.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background-color: #080808;
  border: 1px solid #222;
  border-radius: 4px;
  padding: 30px;
  width: 350px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: #333;
}

.pricing-card.featured {
  border: 1px solid rgba(255, 0, 64, 0.5);
  box-shadow: 0 0 20px rgba(255, 0, 64, 0.1);
}

.pricing-card h3 {
  margin: 0 0 10px 0;
  font-size: 22px;
  font-weight: bold;
}

.desc {
  color: #888;
  font-size: 13px;
  margin: 0 0 20px 0;
  height: 32px;
}

.price-block {
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
}

.currency {
  font-size: 24px;
  font-weight: bold;
  margin-right: 5px;
}

.amount {
  font-size: 42px;
  font-weight: bold;
  line-height: 1;
}

.unit {
  color: #888;
  font-size: 14px;
  margin-left: 5px;
}

.divider {
  height: 1px;
  background-color: #222;
  margin-bottom: 25px;
  width: 100%;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex-grow: 1;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.4;
  color: #ccc;
}

.check-icon {
  display: inline-flex;
  margin-right: 12px;
  min-width: 18px;
}

.check-icon svg {
  width: 18px;
  height: 18px;
  fill: #ff0040;
  background: rgba(255, 0, 64, 0.1);
  border-radius: 50%;
  padding: 2px;
}

.pricing-btn {
  display: block;
  width: 100%;
  background-color: #ff0040;
  color: white;
  text-align: center;
  text-decoration: none;
  border: none;
  padding: 12px 0;
  font-size: 14px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-transform: uppercase;
  box-sizing: border-box;
}

.pricing-btn:hover {
  background-color: #d10035;
}

.pricing-section .section-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: white;
}

.pricing-section .section-subtitle {
  font-size: 18px;
  text-align: center;
  color: white;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* ============================================ */
/* 6. ДИСТРИБУЦІЯ (DISTRIBUTION) */
/* ============================================ */

.distribution-section {
  background-color: oklch(14.1% 0.005 285.823);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

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

.dist-header h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 400;
}

.dist-subtitle {
  color: #888;
  font-size: 16px;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.dist-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.dist-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.dist-item:hover .icon-circle {
  transform: scale(1.1);
  background-color: #222;
}

.icon-circle svg {
  width: 28px;
  height: 28px;
  fill: #ff0040;
}

.dist-item h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
}

.dist-item p {
  color: #aaa;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.dist-divider {
  height: 1px;
  background-color: #222;
  width: 100%;
  margin: 40px 0;
}

.dist-footer {
  text-align: center;
}

.platforms-title {
  color: #666;
  font-size: 14px;
  margin-bottom: 25px;
}

.platforms-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.platforms-list span {
  color: #666;
  font-size: 16px;
  font-weight: 500;
  cursor: default;
  transition: color 0.3s;
}

.platforms-list span:hover {
  color: #fff;
}

/* ============================================ */
/* 7. ПРО НАС (ABOUT) */
/* ============================================ */

.about-section {
  background-color: #000;
  color: #fff;
  padding: 80px 20px;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 60px;
}

.about-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
}

.about-text {
  flex: 1;
  max-width: 50%;
}

.about-text p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 15px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-features {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-box {
  background-color: #080808;
  border: 1px solid #222;
  padding: 30px 20px;
  text-align: center;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  border-color: #333;
}

.icon-wrap {
  margin-bottom: 15px;
}

.icon-wrap svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #ff0040;
  stroke-width: 1.5;
}

.icon-wrap svg path {
  fill: #ff0040;
  stroke: none;
}

.feature-box h4 {
  margin: 0 0 5px 0;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.feature-box span {
  font-size: 13px;
  color: #888;
}

.about-divider {
  height: 1px;
  background-color: #222;
  width: 100%;
  margin-bottom: 30px;
}

.about-bottom-text {
  text-align: center;
  color: #888;
  font-size: 14px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ============================================ */
/* 8. КОНТАКТИ (CONTACTS) */
/* ============================================ */

.contact-section {
  background-color: #000;
  color: #fff;
  padding: 80px 20px 40px 20px;
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 400;
}

.contact-header p {
  color: #888;
  font-size: 15px;
}

.contact-cards {
  display: flex;
  gap: 30px;
  margin-bottom: 80px;
}

.contact-card {
  background-color: #080808;
  border: 1px solid #222;
  border-radius: 4px;
  padding: 40px;
  flex: 1;
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: bold;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.icon-box {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 0, 64, 0.1);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.icon-box svg {
  width: 20px;
  height: 20px;
  fill: #ff0040;
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-details .label {
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.contact-details .value {
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.3s;
}

.contact-details a.value:hover {
  color: #ff0040;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 15px;
}

.hours-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-row .day {
  color: #aaa;
  font-size: 15px;
}

.hours-row .time {
  color: #fff;
  font-weight: bold;
  font-size: 15px;
}

/* ============================================ */
/* 9. ФУТЕР (FOOTER) */
/* ============================================ */

.site-footer {
  background-color: #000;
  color: #fff;
  border-top: 1px solid #111;
  padding-top: 60px;
  text-align: center;
}

.footer-content {
  margin-bottom: 50px;
  padding: 0 20px;
}

.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
}

.footer-logo span {
  color: #ff0040;
}

.footer-tagline {
  color: #666;
  font-size: 14px;
  margin-bottom: 30px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    background-color 0.3s,
    transform 0.3s;
}

.social-icon:hover {
  background-color: #333;
  transform: translateY(-3px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: #ccc;
}

.footer-bottom {
  border-top: 1px solid #111;
  padding: 20px 0;
  font-size: 12px;
  color: #444;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: #444;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: #888;
}

/* ============================================ */
/* 10. ДОДАТКОВІ ЕЛЕМЕНТИ */
/* ============================================ */

/* Кнопка "Наверх" */
#backToTopBtn {
  position: fixed;
  bottom: 130px;
  right: 30px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #d4af37;
  color: #121212;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

#backToTopBtn svg {
  width: 24px;
  height: 24px;
}

#backToTopBtn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#backToTopBtn:hover {
  background-color: #ffffff;
  transform: translateY(-5px);
}

/* ============================================ */
/* 11. АДАПТИВНІСТЬ (RESPONSIVE) */
/* ============================================ */

/* Мобільні пристрої */
@media (max-width: 768px) {
  /* Герой банер */
  .hero-subtitle {
    font-size: 30px;
    letter-spacing: 2px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-button {
    padding: 14px 30px;
    font-size: 16px;
  }

  .logo-img {
    max-width: 150px;
  }

  /* Послуги */
  .services-section {
    padding: 60px 0;
  }

  .services-section .section-title {
    font-size: 36px;
  }

  .services-section .section-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

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

  .service-card {
    padding: 30px 20px;
  }

  /* Ціни */
  .pricing-card {
    width: 100%;
  }

  /* Дистрибуція */
  .dist-features {
    grid-template-columns: 1fr;
  }

  .platforms-list {
    flex-direction: column;
    gap: 15px;
  }

  /* Про нас */
  .about-content {
    flex-direction: column;
    gap: 40px;
  }

  .about-text {
    max-width: 100%;
  }

  .about-features {
    width: 100%;
    grid-template-columns: 1fr;
  }

  /* Контакти */
  .contact-cards {
    flex-direction: column;
  }

  /* Футер */
  .footer-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

/* Планшети */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .dist-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================ */
/* 12. ПОЗИЦІОНУВАННЯ ЕЛЕМЕНТІВ У ГЕРОЇ БЛОЦІ */
/* ============================================ */

/* Додаткові стилі для правильного позиціонування в hero-block */
.hero-block {
  position: relative;
}

.hero-content {
  z-index: 2;
}

.top-header {
  z-index: 3;
}

/* Затримки для анімації появи карток */
.service-card:nth-child(2),
.track-card:nth-child(2),
.pricing-card:nth-child(2) {
  transition-delay: 0.1s;
}

.service-card:nth-child(3),
.track-card:nth-child(3),
.pricing-card:nth-child(3) {
  transition-delay: 0.2s;
}

.service-card:nth-child(4),
.track-card:nth-child(4) {
  transition-delay: 0.3s;
}

/* ============================================ */
/* 13. КРУТІ ЕФЕКТИ ТА АНІМАЦІЇ */
/* ============================================ */

/* Плаваючий міні-плеєр */
.floating-player {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 300px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 15px;
  border: 1px solid rgba(255, 107, 157, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateX(-50%) translateY(100px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: none;
}

.floating-player.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  display: block;
}

.player-mini {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mini-cover {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

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

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

.mini-title {
  font-size: 14px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-artist {
  font-size: 12px;
  color: #aaa;
}

.mini-controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

.mini-controls button {
  background: rgba(255, 107, 157, 0.2);
  border: none;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
}

.mini-controls button:hover {
  background: rgba(255, 107, 157, 0.8);
  transform: scale(1.1);
}

.mini-play {
  background: rgba(255, 107, 157, 0.8) !important;
}

/* Анімовані частинки */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: linear-gradient(90deg, #ff6b9d, #cc00ff);
  border-radius: 50%;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100px) rotate(720deg);
    opacity: 0;
  }
}

/* Неонові ефекти для карток */
.service-card,
.pricing-card,
.track-card {
  position: relative;
  overflow: hidden;
}

.service-card::before,
.pricing-card::before,
.track-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff6b9d, #cc00ff, #00ccff, #ff6b9d);
  z-index: -1;
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: inherit;
}

.service-card:hover::before,
.pricing-card:hover::before,
.track-card:hover::before {
  opacity: 0.5;
}

/* Анімація хвилі для активного треку */
.wave-animation {
  display: flex;
  align-items: flex-end;
  height: 30px;
  gap: 3px;
  margin: 10px 0;
}

.wave-bar {
  width: 4px;
  background: linear-gradient(to top, #ff6b9d, #cc00ff);
  border-radius: 2px;
  animation: wave 1.5s ease-in-out infinite;
}

.wave-bar:nth-child(2) {
  animation-delay: 0.1s;
}
.wave-bar:nth-child(3) {
  animation-delay: 0.2s;
}
.wave-bar:nth-child(4) {
  animation-delay: 0.3s;
}
.wave-bar:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes wave {
  0%,
  100% {
    height: 10px;
  }
  50% {
    height: 25px;
  }
}

/* Модальне вікно */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.modal-content {
  background: rgba(20, 20, 20, 0.95);
  padding: 40px;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  border: 1px solid rgba(255, 107, 157, 0.3);
  position: relative;
  transform: translateY(50px);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #aaa;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover {
  color: #ff6b9d;
}

.modal-content h3 {
  color: white;
  margin-bottom: 30px;
  font-size: 24px;
  text-align: center;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
}

.modal-content input:focus,
.modal-content select:focus,
.modal-content textarea:focus {
  outline: none;
  border-color: #ff6b9d;
  box-shadow: 0 0 15px rgba(255, 107, 157, 0.3);
}

.modal-content textarea {
  height: 120px;
  resize: vertical;
}

.modal-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(90deg, #ff6b9d, #cc00ff);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 107, 157, 0.3);
}

/* Паралакс ефект для секцій */
.parallax-section {
  transform: translateY(var(--parallax-offset));
  transition: transform 0.1s ease-out;
}

/* Анімація для кнопок "Почати" */
.pricing-btn,
.hero-button {
  position: relative;
  overflow: hidden;
}

.pricing-btn::after,
.hero-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.pricing-btn:hover::after,
.hero-button:hover::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(50, 50);
    opacity: 0;
  }
}

/* Адаптивність для нових елементів */
@media (max-width: 768px) {
  .floating-player {
    width: 90%;
    bottom: 20px;
  }

  .modal-content {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .services-grid {
    display: grid;
    grid-template-columns: 1fr; /* одна картка на рядок */
    gap: 30px; /* відстань між картками */
  }

  .service-card {
    padding: 30px 20px; /* трохи зменшили паддінг для мобільних */
  }

  .services-section {
    padding: 60px 20px; /* зменшили вертикальні відступи */
  }

  .services-section .section-title {
    font-size: 36px; /* трохи менше для мобільних */
  }

  .services-section .section-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
}

.contact-details a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.contact-details a:hover {
  text-decoration: underline;
}

/* ============================================ */
/* ПРОСТА ПУЛЬСАЦІЙНА КНОПКА БЕЗ ЗМІН ХОВЕРА */
/* ============================================ */

.hero-button {
  display: inline-block;
  background: #d74760;
  color: #000;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 2px solid transparent;
  box-shadow: 0 0 20px rgba(215, 71, 96, 0.5);

  /* Плавна пульсація що ніколи не зупиняється */
  animation: constant-pulse 2s infinite ease-in-out;
}

/* Пульсація яка працює завжди */
@keyframes constant-pulse {
  0% {
    transform: scale(1);
    box-shadow:
      0 0 10px rgba(215, 71, 96, 0.8),
      0 0 20px rgba(215, 71, 96, 0.6),
      0 0 30px rgba(215, 71, 96, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow:
      0 0 20px rgba(215, 71, 96, 1),
      0 0 40px rgba(215, 71, 96, 0.8),
      0 0 60px rgba(215, 71, 96, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow:
      0 0 10px rgba(215, 71, 96, 0.8),
      0 0 20px rgba(215, 71, 96, 0.6),
      0 0 30px rgba(215, 71, 96, 0.4);
  }
}

/* Білий ободок всередині */
.hero-button::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border-radius: 48px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 2;
  pointer-events: none;
}

/* Легкий ховер (лише для посилання) */
.hero-button:hover {
  color: #fff;
  text-decoration: none;
}

/* Адаптивність */
@media (max-width: 768px) {
  .hero-button {
    padding: 16px 35px;
    font-size: 16px;
    animation: constant-pulse 2.5s infinite ease-in-out;
  }
}

/* ============================================ */
.header-logo .logo-img {
  position: relative;
}

.header-logo .logo-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(147, 51, 234, 0.8),
    rgba(139, 92, 246, 0.8)
  );
  mix-blend-mode: color;
  pointer-events: none;
}
/* Світіння навколо лого */
.header-logo {
  position: relative;
}

.header-logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(147, 51, 234, 0.3) 0%,
    rgba(147, 51, 234, 0.1) 50%,
    transparent 70%
  );
  filter: blur(20px);
  z-index: -1;
}

/* Анімація пульсації лого */
.header-logo .logo-img {
  animation: logo-glow 3s infinite alternate;
}

@keyframes logo-glow {
  0% {
    filter: hue-rotate(250deg) saturate(1.5)
      drop-shadow(0 0 5px rgba(147, 51, 234, 0.5));
  }
  100% {
    filter: hue-rotate(250deg) saturate(1.8)
      drop-shadow(0 0 20px rgba(147, 51, 234, 0.8));
  }
}
