/*
 Theme Name: RetroTube Child
 Theme URI: https://example.com/
 Description: Child theme for RetroTube with custom video player and styling.
 Author: KlikBokep
 Template: retrotube
 Version: 1.0
*/

/* Custom: Download Buttons (migrated from parent theme) */
.download-buttons {
  display: flex !important;
  justify-content: center !important;  /* tombol rata tengah */
  gap: 20px !important;                /* jarak antar tombol */
  flex-wrap: wrap !important;
  margin: 30px 0 !important;
}

.download-buttons a.button {
  background: #75cacd !important;
  color: #fff !important;
  padding: 14px 28px !important;
  border-radius: 6px !important;
  font-weight: bold !important;
  font-size: 16px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.3s ease, transform 0.2s ease !important;
  min-width: 180px !important;  /* biar tombol lebih lebar */
  text-align: center !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2) !important;
}

.download-buttons a.button i {
  margin-right: 8px !important;
  font-size: 18px !important;
}

.download-buttons a.button:hover {
  background: #5bb0b3 !important;
  transform: translateY(-3px) !important;
}

.download-buttons a.button:active {
  transform: translateY(0) !important;
}

/* Mobile: tombol otomatis jadi full width */
@media (max-width: 768px) {
  .download-buttons {
    flex-direction: column !important;
    align-items: center !important;
  }
  .download-buttons a.button {
    width: 100% !important;
    max-width: 320px !important;
  }
}
