/* ==========================================================================
   STREET BARBEARIA - RÁDIO AMBIENTE POP ROCK (0% CPU / 0% BANDWIDTH VPS)
   ========================================================================== */

.radio-widget-floating {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 9999;
  font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.radio-toggle-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
  color: #0d1117;
  border: 2px solid #161b22;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 200, 83, 0.45);
  position: relative;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.radio-toggle-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(0, 200, 83, 0.6);
}

.radio-pulse-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 13px;
  height: 13px;
  background: #ef4444;
  border-radius: 50%;
  border: 2px solid #0d1117;
  animation: radio-pulse-ring 1.8s infinite;
}

@keyframes radio-pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.8); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.radio-card-box {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 320px;
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
  color: #f3f4f6;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.radio-card-box.hidden {
  display: none;
}

.radio-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.radio-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.radio-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #00c853;
  display: flex;
  align-items: center;
  gap: 8px;
}

.radio-subtitle {
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 500;
}

.radio-close-btn {
  background: transparent;
  border: none;
  color: #9ca3af;
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s ease;
}

.radio-close-btn:hover {
  color: #ffffff;
}

.radio-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #21262d;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid #30363d;
}

.radio-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #00c853;
  color: #0d1117;
  border: none;
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 200, 83, 0.3);
}

.radio-play-btn:hover {
  background: #00e676;
  transform: scale(1.05);
}

.radio-status-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-grow: 1;
  overflow: hidden;
}

.radio-status-text {
  font-size: 0.82rem;
  color: #ffffff;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.radio-volume-slider {
  width: 65px;
  accent-color: #00c853;
  cursor: pointer;
}
