@charset "utf-8";




/* ── Top play/pause button with text ── */
.orh-page-btn {
  background: linear-gradient(135deg, #e53935, #ff6f61);
  border: none;
  border-radius: 28px;
  height: 46px;
  padding: 0 22px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(229, 57, 53, 0.4);
}
.orh-page-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.orh-page-btn svg { width: 16px; height: 16px; fill: #fff; flex-shrink: 0; }
.orh-page-btn span {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Sticky bottom player ── */
#orh-player {
  position: fixed;
  bottom: -80px;
  left: 0;
  right: 0;
  height: 70px;
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 20px;
  transition: bottom 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 99999;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
}
#orh-player.orh-open { bottom: 0; }

/* LEFT */
.orh-left { display: flex; align-items: center; gap: 12px; min-width: 0; }
.orh-thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.08);
}
.orh-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.orh-info { min-width: 0; }
.orh-title {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.orh-meta { display: flex; align-items: center; gap: 6px; margin-top: 3px; }
.orh-sub {
  font-size: 12px;
  color: #6b7280;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  display: flex;
  align-items: center;
  gap: 5px;
}
.orh-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #e53935;
  animation: orh-dot 1.6s ease-in-out infinite;
  transition: background 0.3s;
}
.orh-status-dot.orh-offline { background: #4a5568; animation: none; }

@keyframes orh-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

.orh-wv {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 26px;
  flex-shrink: 0;
}
.orh-wb {
  width: 3px;
  height: 5px;
  background: #e53935;
  border-radius: 2px;
  opacity: 0.8;
}
.orh-playing .orh-wb:nth-child(1) { animation: orh-wa 0.8s 0.00s ease-in-out infinite; }
.orh-playing .orh-wb:nth-child(2) { animation: orh-wa 0.8s 0.10s ease-in-out infinite; }
.orh-playing .orh-wb:nth-child(3) { animation: orh-wa 0.8s 0.20s ease-in-out infinite; }
.orh-playing .orh-wb:nth-child(4) { animation: orh-wa 0.8s 0.15s ease-in-out infinite; }
.orh-playing .orh-wb:nth-child(5) { animation: orh-wa 0.8s 0.05s ease-in-out infinite; }
@keyframes orh-wa {
  0%, 100% { height: 4px; }
  50%       { height: 20px; }
}

/* CENTER */
.orh-center { display: flex; justify-content: center; align-items: center; padding: 0 16px; }
.orh-main-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e53935, #ff6f61);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(229,57,53,0.45);
}
.orh-main-btn:hover { opacity: 0.88; transform: scale(1.06); }
.orh-main-btn svg { width: 17px; height: 17px; fill: #fff; }

/* RIGHT */
.orh-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.orh-right svg { width: 15px; height: 15px; fill: #8b93a8; flex-shrink: 0; }
.orh-vol-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 90px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.12);
  outline: none;
  cursor: pointer;
}
.orh-vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #e53935;
  cursor: pointer;
}
.orh-vol-slider::-moz-range-thumb {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #e53935;
  border: none;
  cursor: pointer;
}

body.orh-body-pad { padding-bottom: 70px !important; }

@media (max-width: 500px) {
  .orh-right { display: none; }
  #orh-player { grid-template-columns: 1fr auto 48px; padding: 0 12px; }
}
