/* Font dan Warna Umum */
body {
  font-family: 'Rubik', sans-serif;
  background: #121212;
  color: #fff;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1080px;
  margin: auto;
  padding: 1rem;
}

.site-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}
.site-title {
  font-size: 1.8rem;
  color: #ff69b4;
  text-shadow: 0 0 10px #ff69b4;
  letter-spacing: 1px;
  margin: 0;
}

/* Navbar */
.nav-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: #181818;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #ff69b4;
  box-shadow: 0 2px 8px rgba(255, 105, 180, 0.2);
  overflow-x: auto;
  white-space: nowrap;
}
.nav-menu a {
  text-decoration: none;
  padding: 8px 14px;
  background: #1f1f1f;
  color: #ccc;
  border: 1px solid #2c2c2c;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.25s ease-in-out;
}
.nav-menu a:hover {
  background: #2a2a2a;
  color: #ff69b4;
  border-color: #ff69b4;
  box-shadow: 0 0 5px #ff69b4;
}

/* Form Filter */
.filter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.filter-form input,
.filter-form select,
.filter-form button {
  padding: 0.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Rubik', sans-serif;
}
.reset-btn {
  background-color: #f44336;
  color: white;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  border-radius: 6px;
}

/* Judul Section */
.section-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ff85c1;
  border-left: 5px solid #ff69b4;
  padding-left: 10px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

/* Grid & Card */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}
.video-card {
  background: #181818;
  border-radius: 6px;
  overflow: hidden;
  font-size: 0.75rem;
  transition: transform 0.2s;
  animation: fadeIn 0.5s ease-in;
}
.video-card:hover {
  transform: scale(1.03);
}
.video-thumb {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

/* Info dan Teks */
.video-info {
  padding: 6px 8px;
}
.video-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffb6d9;
  transition: all 0.3s ease;
}
.video-card:hover .video-title {
  color: #ffffff;
  text-shadow: 0 0 4px #ff69b4;
}
.genre-text {
  font-size: 0.7rem;
  color: #ccc;
  font-style: italic;
}

/* Badge overlay */
.badge-overlay {
  position: absolute;
  top: 5px;
  left: 5px;
  background: rgba(0, 0, 0, 0.7);
  padding: 1px 5px;
  font-size: 0.65rem;
  border-radius: 3px;
}
.badge-right {
  top: 5px;
  right: 5px;
  left: auto;
}

/* Animasi FadeIn */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
