/* General Styles */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #121212;
  color: #f0f0f0;
}

h1 {
  text-align: center;
  margin-top: 20px;
  font-size: 2.5em;
  color: #ffffff;
}

/* Navigation Menu */
header {
  position: sticky;
  top: 0;
  background: linear-gradient(90deg, #1e1e1e, #333333);
  z-index: 10;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.category-btn {
  padding: 12px 25px;
  background: #e50914; /* Red matching homepage */
  border: none;
  border-radius: 30px;
  color: #fff;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn:hover {
  background: #c20810; /* Darker red */
  transform: translateY(-3px);
}

.category-btn:active {
  transform: translateY(1px);
}

.back-btn {
  padding: 12px 25px;
  background-color: #e50914; /* Red matching homepage */
  border: none;
  border-radius: 30px;
  color: #fff;
  font-size: 1em;
  cursor: pointer;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background-color: #c20810;
  transform: translateY(-3px);
}

.back-btn:active {
  transform: translateY(1px);
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-item iframe {
  width: 100%;
  height: 200px;
  border-radius: 15px;
  border: none; /* Red border */
  transition: transform 0.3s ease;
}

.video-item iframe:hover {
  transform: scale(1.02);
}

/* Footer */
/* footer {
  background-color: #1e1e1e;
  padding: 20px 0;
  text-align: center;
  color: #f0f0f0;
} */

/* .social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
} */

/* .social-icon {
  font-size: 1.5em;
  color: #e50914; 
  text-decoration: none;
  transition: color 0.3s ease;
} */

/* .social-icon:hover {
  color: #c20810;
} */

/* Responsive Design */
/* @media (max-width: 768px) {
  h1 {
    font-size: 2em;
  }

  .category-btn, .back-btn {
    font-size: 0.9em;
    padding: 10px 20px;
  }

  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 480px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .category-btn, .back-btn {
    font-size: 0.8em;
    padding: 8px 15px;
  }
} */
