/* Global */
body {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #e0e0e0;
  font-family: 'Poppins', Arial, sans-serif;
  text-align: center;
  padding: 20px;
  margin: 0;
}

h1 {
  color: #ffcc00;
  font-size: 2.5em;
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.6);
  margin-bottom: 20px;
}

a {
  color: #00e5ff;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #ffcc00;
  text-shadow: 0 0 8px #ffcc00;
}

/* Grid untuk daftar video */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
  padding: 20px;
}

.video-item {
  background: rgba(20, 20, 20, 0.9);
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 229, 255, 0.3);
  backdrop-filter: blur(6px);
}

.video-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 229, 255, 0.4);
  border-color: #00e5ff;
}

.video-item video {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.video-item p {
  color: #ffcc00;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

/* Pagination */
.pagination {
  margin-top: 25px;
}
.pagination a {
  color: #00e5ff;
  padding: 10px 16px;
  border: 1px solid #00e5ff;
  border-radius: 8px;
  margin: 0 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.pagination a:hover {
  background: #00e5ff;
  color: #0f0f0f;
  box-shadow: 0 0 12px #00e5ff;
}

/* Progress bar container */
.progress-container {
  width: 80%;
  margin: 20px auto;
  background: #1f1f1f;
  border-radius: 12px;
  overflow: hidden;
  padding: 6px;
  color: #e0e0e0;
  font-size: 15px;
  text-align: left;
  box-shadow: inset 0 0 10px rgba(0, 229, 255, 0.3);
}

/* Progress bar */
.progress-bar {
  height: 26px;
  width: 0;
  background: linear-gradient(90deg, #ff0057, #ff7b00, #ffe600);
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  color: #111;
  transition: width 0.4s ease;
  box-shadow: 0 0 10px rgba(255, 124, 0, 0.6);
}