/* Tambahan: tombol panjang di bawah header */
.telegram-banner {
  background: #ff3399;
  color: black;
  text-align: center;
  padding: 12px 10px;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
}
.telegram-banner:hover {
  background: #ff66aa;
}

/* Tambahkan di bawah kode CSS kamu: */

/* RESPONSIVE LAYOUT */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  nav form {
    width: 100%;
    margin-top: 10px;
    flex-direction: column;
  }

  nav input,
  nav button {
    width: 100%;
    margin-bottom: 6px;
  }

  .logo {
    font-size: 26px;
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
  }

  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }

  .section-title {
    font-size: 18px;
  }
}