/* =====================  
   Vidia PWA Install Banner  
   ===================== */

#install-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 12px;
  background: rgba(3, 7, 18, 0.96);
  backdrop-filter: blur(12px);
  
  /* animation hidden state */
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
  pointer-events: none;
}

#install-banner.visible {
  /* animation visible state */
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

#install-banner .install-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #e5e7eb;
}

#install-banner .install-text span {
  display: block;
  font-size: 0.8rem;
  color: #9ca3af;
}

#install-banner .install-actions {
  display: flex;
  gap: 8px;
}

#install-banner .install-actions button {
  border-radius: 999px;
  border: none;
  padding: 6px 14px;
  font-size: 0.8rem;
  cursor: pointer;
}

/* Dismiss button */
#install-banner #install-dismiss {
  background: transparent;
  color: #9ca3af;
}

/* Install button */
#install-banner #install-btn {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  font-weight: 600;
}

/* Mobile layout */
@media (max-width: 576px) {
  #install-banner .install-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  #install-banner .install-actions {
    width: 100%;
    justify-content: flex-end;
  }
}
