
.samples-container {
  margin: 2rem auto;
  padding: 2rem;
  width: 100%;
}

.samples-container h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: aliceblue;
}

.samples-intro {
  text-align: center;
  font-size: 1.1rem;
  color: aliceblue;
  margin-bottom: 2.5rem;
}


.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 1rem;
}


.video-card {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-card:hover {
  transform: translateY(-10px);
  border-color: cornflowerblue;
}


.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; 
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
}


.video-info {
  padding: 1.5rem;
}

.video-info h3 {
  color: aliceblue;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.video-date {
  color: cornflowerblue;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.video-description {
  color: #d0d0d0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.video-stats {
  display: flex;
  gap: 0.5rem;
}

.video-card video,
.videos-grid video {
  max-width: 100% !important;
  width: 100% !important;
  height: auto !important;
  display: block;
}

.video-stats span {
  background-color: cornflowerblue;
  color: #111;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}


@media (max-width: 768px) {
  .samples-container {
    padding: 1rem;
  }

  .samples-container h2 {
    font-size: 2rem;
  }

  .videos-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0.5rem;
  }

  .video-info {
    padding: 1rem;
  }

  .video-info h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .videos-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .samples-container h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .samples-intro {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .video-info h3 {
    font-size: 1.1rem;
  }

  .video-description {
    font-size: 0.9rem;
  }
}


video::-webkit-media-controls-time-remaining-display {
  color: cornflowerblue;
}

video::-webkit-media-controls-current-time-display {
  color: cornflowerblue;
}

*{
    color: aliceblue;
}


@media (max-width: 410px) {
  .videos-grid { grid-template-columns: 1fr; gap: 1rem; }
  .video-wrapper { padding-bottom: 56.25%; }
  .video-info { padding: 1rem; }
}

@media (min-width: 411px) and (max-width: 1023px) {
  .videos-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .video-wrapper { padding-bottom: 56.25%; }
}

@media (min-width: 1024px) {
  .videos-grid { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }
}
