:root {
  --pink: #00ffec;
}

body {
  background-color: #121212;
  color: #f5f5f5;
  padding-top: 70px;
}

.text-pink {
  color: var(--pink) !important;
}

.bg-pink {
  background-color: var(--pink) !important;
}

.btn-pink {
  background-color: var(--pink);
  border: none;
}

.btn-outline-pink {
  border: 2px solid var(--pink);
  color: var(--pink);
}

.btn-outline-pink:hover {
  background-color: var(--pink);
  color: #000;
}

.hero-slider {
  height: 60vh;
}

.hero-slider .carousel-item img {
  height: 60vh;
  object-fit: cover;
}

.hero-slider .carousel-caption {
  bottom: 20%;
  left: 10%;
  right: auto;
}

@media (max-width: 768px) {
  .hero-slider .carousel-caption {
    bottom: 10%;
    left: 5%;
    right: 5%;
    text-align: center;
  }

  .hero-slider h1 {
    font-size: 1.5rem;
  }
}

/* Для object-fit */
.object-fit-cover {
  object-fit: cover;
}

.hero-slider {
  height: 80vh;
  overflow: hidden;
}

.hero-slider .carousel-item {
  height: 80vh;
  position: relative;
}

.hero-slide-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  z-index: 1;
}

.hero-text {
  position: absolute;
  bottom: 10%;
  left: 5%;
  color: #fff;
  z-index: 2;
}

.hero-text h1,
.hero-text p {
  margin: 0;
}

.carousel-indicators [data-bs-target] {
  background-color: var(--pink);
}

.video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  background-color: #000;
}

.video-card img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.video-card:hover img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0.9;
}

.play-button img {
  pointer-events: none;
}

.match-card {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: #1a1a1a;
}

.match-card img {
  display: inline-block;
}

.match-card .btn-pink {
  font-weight: 500;
  font-size: 0.9rem;
}

.text-info {
  color: var(--pink) !important;
}

.btn-dark {
  background-color: #000;
  border: none;
}

.play-icon {
  height: 14px; /* или 16px, как тебе нужно */
}
.play-button {
  width: 70px;
  height: 70px;
}

#heroCarousel2 .carousel-indicators [data-bs-target] {
  background-color: black;
}

#heroCarousel2 .carousel-indicators .active {
  background-color: black;
}