:root {
  --color-purple: #8156A2;
  --color-orange: #E89B2D;
  --color-bg: #FFFFFF;
  --font-main: 'Montserrat', sans-serif;
}
.discovery {
  padding: 80px 0;
  overflow: hidden;
  background-color: #fff;
}

.discovery__text {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 500;
  color: #1a1a1a;
  max-width: 900px;
}

.discovery__highlight {
  color: var(--color-purple);
  font-weight: 700;
}

.discovery__video-wrapper {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discovery__video-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.discovery__video-preview {
  aspect-ratio: 1.6;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
}

.discovery__play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid #fff;
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding-left: 5px;
}

.discovery__video-wrapper:hover .discovery__play-btn {
  background: var(--color-purple);
  border-color: var(--color-purple);
  transform: scale(1.1);
}

.discovery__play-btn svg {
  width: 20px;
  transition: transform 0.3s ease;
}

.discovery__dino-container {
  position: relative;
  z-index: 1;
}

.discovery__dino {
  max-width: 72%;
  height: auto;
  transform: scale(1.1);
  margin-left: auto;
  margin-bottom: 30px;
}

.stat-card {
  background: #ffffff;
  padding: 40px 20px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-card__number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-card--purple .stat-card__number {
  color: var(--color-purple);
}

.stat-card--orange .stat-card__number {
  color: var(--color-orange);
}

.stat-card__label {
  font-size: 14px;
  color: #333;
  margin-bottom: 0;
  line-height: 1.3;
  font-weight: 500;
}

.modal-content {
  border-radius: 30px;
  overflow: hidden;
}

.btn-close {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.btn-close:hover {
  opacity: 1;
}

@media (max-width: 991px) {
  .discovery__text {
    font-size: 20px;
  }
  .discovery__dino-container {
    margin-top: 40px;
  }
}