.wildlife-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.wildlife-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wildlife-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.wildlife-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.wildlife-card video,
.wildlife-card .wildlife-video {
  width: 100%;
  height: 250px;
  object-fit: cover;
  cursor: pointer;
}

.video-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(220, 53, 69, 0.9);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.play-button:hover {
  background: rgba(220, 53, 69, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button.hidden {
  display: none;
}

.wildlife-card .card-body {
  padding: 20px;
}

.wildlife-card h4 {
  color: #dc3545;
  margin-bottom: 15px;
  font-weight: bold;
}

.location-badge {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}

.hero-section {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(248, 249, 250, 0.3));
  padding: 60px 40px;
  border-radius: 15px;
  margin-bottom: 40px;
  text-align: center;
  border: 1px solid rgba(220, 53, 69, 0.2);
}

.timelapse-section {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
  margin: 40px 0;
  text-align: center;
}

.timelapse-section img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.stat-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #dc3545;
  margin-bottom: 10px;
}

.stat-label {
  color: #495057;
  font-weight: 600;
}

.country-header {
  grid-column: 1 / -1;
  color: #dc3545;
  font-weight: bold;
  margin: 40px 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 3px solid #dc3545;
  text-align: center;
}

.country-header:first-of-type {
  margin-top: 0;
}


