/* ===== RADIO PAGE BASE ===== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #05070a;
  color: white;
  overflow-x: hidden;
}

html, body {
  overflow-x: hidden;
}

/* ===== STARS BACKGROUND ===== */
.stars {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: radial-gradient(circle at top, #0b1220, #05070a);
  overflow: hidden;
  pointer-events: none;
}

.star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: white;
  border-radius: 50%;
  opacity: 0.4;
  box-shadow: 0 0 8px rgba(255,255,255,0.8);
  animation: floatGlow linear infinite;
}

@keyframes floatGlow {
  0%   { transform: translateY(0) scale(0.8); opacity: 0.1; }
  30%  { opacity: 0.9; }
  50%  { transform: translateY(-50vh) scale(1.2); opacity: 0.6; }
  100% { transform: translateY(-100vh) scale(0.8); opacity: 0; }
}

/* ===== TOP BAR ===== */
.topbar {
  display: flex;
  justify-content: space-between;
  padding: 12px 18px;
  background: #0b0f14;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.topbar a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
}

/* ===== RADIO CARD ===== */
.radio-card {
  width: 320px;
  margin: 20px auto;
  background: #15161886;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 60px rgba(0,0,0,0.8);
  border: 1px solid rgba(255,255,255,0.05);
}

.radio-top {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,#111827,#0b0f14);
}

/* ===== LIVE ===== */
.live-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-dot {
  width: 10px;
  height: 10px;
  background: red;
  border-radius: 50%;
  box-shadow: 0 0 15px red;
  animation: pulse 1.2s infinite;
}

@keyframes pulse {
  0%   { transform: scale(1); opacity: 1; }
  50%  { transform: scale(1.5); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

.live-text {
  font-size: 11px;
  letter-spacing: 2px;
  opacity: 0.8;
}

/* ===== EQUALIZER ===== */
.equalizer {
  display: flex;
  gap: 3px;
  height: 20px;
  margin-top: 10px;
  align-items: flex-end;
}

.equalizer span {
  width: 3px;
  background: #00ff88;
  border-radius: 2px;
  animation: eq 1s infinite ease-in-out;
}

.equalizer span:nth-child(1) { height: 6px; }
.equalizer span:nth-child(2) { height: 14px; animation-delay: 0.2s; }
.equalizer span:nth-child(3) { height: 10px; animation-delay: 0.4s; }
.equalizer span:nth-child(4) { height: 18px; animation-delay: 0.1s; }
.equalizer span:nth-child(5) { height: 8px; animation-delay: 0.3s; }

@keyframes eq {
  0%,100% { transform: scaleY(0.4); }
  50%     { transform: scaleY(1); }
}

/* ===== RADIO BODY ===== */
.radio-body {
  padding: 18px;
  text-align: center;
}

#title {
  font-size: 16px;
  font-weight: 800;
}

#artist {
  font-size: 12px;
  opacity: 0.6;
  margin-bottom: 15px;
}

/* ===== BUTTON ===== */
#radioBtn {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: none;
  background: white;
  cursor: pointer;
}

#radioBtn.stop {
  background: red;
  color: white;
}

/* ===== SCHEDULE ===== */

.box {
  flex: 1;
  padding: 12px;
  border-radius: 16px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 40px rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
}

.box h3 {
  color: #00ff99;
}

.box p {
  margin: 4px 0;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  min-height: 22px;
}

/* ===== TEXT ALIGNMENT ===== */
.box.english {
  text-align: left;
}

.box.arabic {
  text-align: right;
  direction: rtl;
  font-size: 18px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .schedule {
    flex-direction: column;
  }
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 20px;
  opacity: 0.6;
  font-size: 13px;
  width: 100%;
  display: block;
}

/* ===== FEEDBACK ===== */
.feedback-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  text-align: center;
}

.feedback-title {
  font-size: 18px;
  font-weight: 700;
  color: #00ff99;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.feedback-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 15px;
}

.feedback-btn {
  display: inline-block;
  padding: 10px 18px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #00ff99;
  border-radius: 8px;
  transition: 0.3s;
}

.feedback-btn:hover {
  background: #00ff99;
  color: black;
  box-shadow: 0 0 15px rgba(0, 255, 153, 0.4);
}

/* ===== SUPPORT BUTTON ===== */
.support-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: 0.3s;
  border: 1px solid #00ff99;
  font-weight: 700;
  color: #00ff99;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.support-btn:hover {
  background: #00ff99;
  color: black;
  box-shadow: 0 0 15px rgba(0, 255, 153, 0.4);
  transform: scale(1.05);
}

.support-ar {
  display: block;
  margin-top: 5px;
  font-size: 20px;
  font-weight: 600;
  direction: rtl;
}
#playbutton {
  font-size: 14px;
  font-weight: 600;
  color: aliceblue;
  font-family:Arial, Helvetica, sans-serif;
}
