.video-section {
  padding: 4rem 2rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.video-section h1 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-extra-bold);
  color: var(--primary-1);
  text-align: center;
  margin-bottom: 1rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.recent-msg {
  font-family: var(--font-body);
  font-size: var(--fs-h5);
  font-weight: var(--fw-medium);
  color: #555;
  text-align: center;
  margin-bottom: 3rem;
}

.video-categories {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 0.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  margin: 0 auto 3rem;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.category-tab {
  position: relative;
  flex-shrink: 0;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  color: #555;
  background: transparent;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  outline: none;
}

.category-tab:hover {
  color: var(--primary-1);
}

.category-tab.active {
  color: white;
  background: linear-gradient(135deg, var(--primary-1), var(--primary-2));
}

.category-tab:focus-visible {
  outline: 2px solid var(--primary-1);
  outline-offset: 2px;
}

.playlist-display {
  margin-top: 3rem;
  background: #000;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.playlist-display iframe {
  display: block;
  border: none;
}

.streaming-footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #e0e0e0;
}

.all-streams-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--primary-1), var(--primary-2));
  color: white;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: var(--fs-h5);
  font-weight: var(--fw-bold);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(48, 92, 222, 0.3);
}

.all-streams-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(48, 92, 222, 0.4);
}

.all-streams-link::after {
  content: "→";
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.all-streams-link:hover::after {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .video-section {
    padding: 3rem 1rem;
  }

  .video-section h1 {
    font-size: var(--fs-h3);
  }

  .recent-msg {
    font-size: var(--fs-body);
    margin-bottom: 2rem;
  }

  .video-categories {
    gap: 0.375rem;
    padding: 0.375rem;
    max-width: 100%;
  }

  .category-tab {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }

  .streaming-footer {
    margin-top: 2rem;
  }

  .all-streams-link {
    font-size: var(--fs-body);
    padding: 0.75rem 1.5rem;
  }

  .playlist-display iframe {
    height: 450px;
  }
}

@media (max-width: 480px) {
  .video-section h1 {
    font-size: var(--fs-h4);
  }

  .category-tab {
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
  }

  .playlist-display iframe {
    height: 350px;
  }
}
