/* Premium Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), #ab841c);
  color: #0b0d0c;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
  transition: var(--transition);
  width: 100%;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}

.btn-primary-glow {
  background: linear-gradient(135deg, var(--gold-primary), #ab841c);
  color: #0b0d0c;
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.18);
  transition: var(--transition);
  width: 100%;
}
.btn-primary-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.01);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.btn-icon:hover {
  background: var(--gold-dim);
  color: var(--gold-primary);
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px var(--gold-glow);
  transform: scale(1.05);
}

.btn-icon-minimal {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
}
.btn-icon-minimal:hover {
  color: var(--gold-primary);
  background: var(--gold-dim);
}
.btn-text-desktop {
  margin-inline-start: 5px;
}

.btn-download-stem {
  background: transparent;
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.btn-download-stem:hover {
  background: var(--gold-primary);
  color: #0b0d0c;
}

/* DAW Style Mute / Solo Buttons */
.btn-daw {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-daw:hover {
  color: var(--text-main);
  background: rgba(255,255,255,0.06);
}
.btn-solo.active {
  background: var(--gold-glow) !important;
  color: var(--gold-primary) !important;
  border-color: var(--gold-primary) !important;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}
.btn-mute.active {
  background: rgba(239, 68, 68, 0.12) !important;
  color: #f87171 !important;
  border-color: #ef4444 !important;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.2);
}

/* ==========================================
   Advanced Islamic Preloader (Naqaa 9.5)
   ========================================== */
#splash-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background-color: var(--bg-color);
  background-image: var(--bg-gradient);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.splash-backdrop-pattern {
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,<svg width="80" height="80" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg"><path d="M40 0 L52 28 L80 40 L52 52 L40 80 L28 52 L0 40 L28 28 Z" fill="none" stroke="%23d4af37" stroke-width="0.5" opacity="0.15"/></svg>');
  background-repeat: repeat;
  background-size: 100px 100px;
  opacity: 0.25;
  pointer-events: none;
  animation: bgPan 40s linear infinite;
}
@keyframes bgPan {
  from { background-position: 0 0; }
  to { background-position: 100px 100px; }
}

/* Floating Cinematic Dust Particles */
.splash-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-primary);
  opacity: 0;
}
.p1 { left: 20%; top: 75%; animation: particleFloat 5s infinite 0.2s; }
.p2 { left: 45%; top: 85%; animation: particleFloat 6s infinite 0.8s; }
.p3 { left: 65%; top: 65%; animation: particleFloat 5.5s infinite 0.4s; }
.p4 { left: 80%; top: 80%; animation: particleFloat 7s infinite 1.5s; }
.p5 { left: 30%; top: 55%; animation: particleFloat 4.8s infinite 2.0s; }
.p6 { left: 75%; top: 45%; animation: particleFloat 6.2s infinite 0.6s; }

@keyframes particleFloat {
  0% { transform: translateY(0) scale(0.7); opacity: 0; }
  30% { opacity: 0.55; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-70px) scale(1.1); opacity: 0; }
}

.splash-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.mandala-outer-wrap {
  width: 200px;
  height: 200px;
  margin-bottom: 25px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mandala-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.mandala-cw {
  animation: rotateCW 26s linear infinite;
}
.mandala-ccw {
  animation: rotateCCW 18s linear infinite;
}
@keyframes rotateCW {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes rotateCCW {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

.center-calligraphy-container {
  width: 130px;
  height: 130px;
  position: absolute;
  z-index: 3;
  animation: floatLogo 5s ease-in-out infinite;
}

@keyframes floatLogo {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(0.6deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.calligraphy-drop-svg {
  width: 100%;
  height: 100%;
  animation: shimmerGold 4s ease-in-out infinite;
}

@keyframes shimmerGold {
  0% { filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.35)); }
  50% { filter: drop-shadow(0 4px 22px rgba(212, 175, 55, 0.7)); }
  100% { filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.35)); }
}

/* Calligraphy & Mandala stroke self-drawing animations */
.draw-mandala-path-1 {
  stroke-dasharray: 450;
  stroke-dashoffset: 450;
  animation: drawStroke 3.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.draw-mandala-path-2 {
  stroke-dasharray: 450;
  stroke-dashoffset: 450;
  animation: drawStroke 3.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.3s;
}
.draw-mandala-path-3 {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawStroke 2.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.6s;
}
.draw-mandala-path-4 {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawStroke 2.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.9s;
}

.draw-drop-frame {
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: drawStroke 2.8s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.2s;
}
.draw-line-1 {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  animation: drawStroke 2.2s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.5s;
}
.draw-line-2 {
  stroke-dasharray: 140;
  stroke-dashoffset: 140;
  animation: drawStroke 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards 1.4s;
}
.draw-line-3 {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: drawStroke 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards 2.2s;
}
.draw-line-4 {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawStroke 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards 2.6s;
}

.draw-dot-1 { opacity: 0; animation: fadeInDot 0.4s ease forwards 1.2s; }
.draw-dot-2 { opacity: 0; animation: fadeInDot 0.4s ease forwards 1.9s; }
.draw-dot-3 { opacity: 0; animation: fadeInDot 0.4s ease forwards 2.0s; }

@keyframes drawStroke {
  to { stroke-dashoffset: 0; }
}
@keyframes fadeInDot {
  to { opacity: 1; }
}

.preloader-progress-wrap {
  width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.preloader-percent {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--gold-primary);
  text-shadow: 0 0 10px var(--gold-glow);
  margin-bottom: 8px;
}
.preloader-bar-bg {
  width: 100%;
  height: 3px;
  background: rgba(212, 175, 55, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}
.preloader-bar-fill {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  width: 0%;
  transition: width 0.15s ease-out;
  box-shadow: 0 0 8px var(--gold-primary);
}
body.lang-en .preloader-bar-fill {
  left: 0; right: auto;
}

.preloader-status-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  margin-top: 12px;
  letter-spacing: 0.5px;
}
.preloader-subtitle-text {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-family: var(--font-quran);
  margin-top: 6px;
}
body.lang-en .preloader-subtitle-text {
  font-family: inherit;
  font-style: italic;
}

/* Header brand logo animations */
.header-logo-svg {
  filter: drop-shadow(0 2px 6px rgba(212,175,55,0.35));
  animation: floatLogo 5s ease-in-out infinite;
}
.header-logo-drop {
  animation: headerShimmer 3s ease-in-out infinite;
}
@keyframes headerShimmer {
  0% { opacity: 0.95; }
  50% { opacity: 1; filter: brightness(1.15); }
  100% { opacity: 0.95; }
}

/* Floating WhatsApp Chat Widget */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  text-decoration: none;
  color: white;
  transition: var(--transition);
}
.floating-whatsapp-btn {
  width: 52px;
  height: 52px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  position: relative;
  transition: var(--transition);
}
.floating-whatsapp-btn:hover {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}
.floating-whatsapp-btn:before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(37, 211, 102, 0.3);
  animation: pulseWhatsApp 1.8s infinite;
}
@keyframes pulseWhatsApp {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.15); opacity: 0; }
}

/* AI Studio Processing Motion Graphic */
.ai-processing-graphic {
  position: relative;
  width: 76px;
  height: 76px;
  margin: 15px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spinner-mandala {
  position: absolute;
  inset: 0;
  border: 2px dashed var(--gold-primary);
  border-radius: 50%;
  animation: rotateCW 8s linear infinite;
}
.pulse-core {
  width: 22px;
  height: 22px;
  background: var(--gold-primary);
  border-radius: 50%;
  filter: drop-shadow(0 0 8px var(--gold-primary));
  animation: pulseCore 1.5s ease-in-out infinite alternate;
}
@keyframes pulseCore {
  0% { transform: scale(0.85); opacity: 0.7; }
  100% { transform: scale(1.18); opacity: 1; }
}

.dropzone-animation {
  position: relative;
}
.pulse-ring-ambient {
  position: absolute;
  inset: 20px;
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-sm);
  pointer-events: none;
  animation: pulseAmbientBox 3s infinite alternate;
}
@keyframes pulseAmbientBox {
  0% { transform: scale(0.98); opacity: 0.2; }
  100% { transform: scale(1.02); opacity: 0.8; }
}

/* Toasts */
.toast-container {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 100002;
  pointer-events: none;
}
.toast-msg {
  background: var(--glass-bg);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  box-shadow: var(--glass-shadow);
  animation: slideToastUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes slideToastUp {
  from { opacity: 0; transform: translateY(12px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Select */
.premium-select {
  width: 100%;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23d4af37' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: left 10px center;
  padding-left: 35px;
}
body.lang-en .premium-select {
  background-position: right 10px center;
  padding-right: 35px;
  padding-left: 14px;
}
.premium-select:hover {
  border-color: var(--gold-primary);
  background-color: rgba(0,0,0,0.4);
}

.premium-select-small {
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.premium-select-small:hover {
  border-color: var(--gold-primary);
}

/* Switch */
.premium-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 22px;
}
.premium-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.switch-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.switch-slider:before {
  content: "";
  position: absolute;
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: var(--text-muted);
  border-radius: 50%;
  transition: var(--transition);
}
body.lang-en .switch-slider:before {
  left: auto; right: 3px;
}
.premium-switch input:checked + .switch-slider {
  background-color: var(--emerald-glow);
  border-color: var(--emerald-light);
}
.premium-switch input:checked + .switch-slider:before {
  transform: translateX(22px);
  background-color: var(--emerald-light);
}
body.lang-en .premium-switch input:checked + .switch-slider:before {
  transform: translateX(-22px);
}

/* Range Sliders */
.premium-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.06);
  outline: none;
  transition: var(--transition);
}
.premium-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold-primary);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
  transition: var(--transition);
}
.premium-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.vol-percentage {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-primary);
  width: 32px;
  text-align: end;
}

/* Option Cards */
.toggle-option-card {
  flex: 1;
  background: rgba(0,0,0,0.15);
  border: 1px solid var(--glass-border);
  padding: 14px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
}
.toggle-option-card input {
  display: none;
}
.toggle-option-card i {
  color: var(--text-muted);
  width: 22px;
  height: 22px;
  transition: var(--transition);
}
.toggle-option-card span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}
.toggle-option-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
  background: rgba(0,0,0,0.25);
}
.toggle-option-card.active {
  border-color: var(--gold-primary);
  background: var(--gold-dim);
}
.toggle-option-card.active i {
  color: var(--gold-primary);
  filter: drop-shadow(0 0 6px var(--gold-primary));
}
.toggle-option-card.active span {
  color: var(--gold-light);
}

/* Dynamic Glowing Card effect on Hover */
.glass-panel {
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}
.glass-panel:hover {
  border-color: rgba(212, 175, 55, 0.22);
  box-shadow: 0 10px 30px rgba(0,0,0,0.65), 0 0 15px var(--gold-dim);
  transform: translateY(-2px);
}

/* Active Prayer Times Pulsing Glow */
.prayer-time-card {
  position: relative;
  transition: var(--transition);
}
.prayer-time-card.active {
  border-color: var(--gold-primary) !important;
  background: var(--gold-dim) !important;
  box-shadow: 0 0 15px var(--gold-glow);
  transform: scale(1.03);
}
.prayer-active-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 6px;
  height: 6px;
  background: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-primary);
  animation: pulseActiveDot 1.5s infinite alternate;
}
body.lang-en .prayer-active-dot {
  right: auto;
  left: 8px;
}
@keyframes pulseActiveDot {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 1; }
}

/* Bubbling floating Tasbeeh text popups */
.tasbeeh-bubble {
  position: absolute;
  color: var(--gold-primary);
  font-size: 0.8rem;
  font-weight: 700;
  pointer-events: none;
  animation: floatBubble 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  text-shadow: 0 0 8px var(--gold-glow);
  z-index: 10;
}
@keyframes floatBubble {
  0% { transform: translateY(0) scale(0.8); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(-60px) scale(1.18); opacity: 0; }
}

/* Animations */
.animate-fade-in {
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.animate-scale {
  animation: scaleUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleUp {
  from { opacity: 0; transform: scale(0.96) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.logo-container img {
    height: 48px !important;
}

/* Prayer Cards Grid */
.prayer-cards-grid {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}
.prayer-card {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 15px;
    border-radius: var(--radius-md);
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
.prayer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}
.active-prayer-card {
    border-color: var(--gold-light);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}
.prayer-active-dot {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 10px;
    height: 10px;
    background: var(--gold-light);
    border-radius: 50%;
    animation: pulseDot 1.5s infinite;
}
@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}
.next-prayer-lbl {
    font-size: 0.75rem;
    color: var(--gold-light);
    margin-top: 5px;
}

/* Mushaf Styles */
.mushaf-container { display: flex; flex-direction: column; gap: 20px; padding-bottom: 30px; }
.mushaf-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; }
.mushaf-controls { display: flex; gap: 15px; }
.premium-select { 
    background: rgba(20,20,20,0.5); border: 1px solid var(--gold-dark); 
    color: var(--text-main); padding: 10px 15px; border-radius: var(--radius-sm); 
    font-family: inherit; font-size: 1rem; outline: none;
}
.quran-text { 
    padding: 40px; font-size: 2rem; line-height: 2.5; text-align: center; 
    font-family: 'Amiri', 'Traditional Arabic', serif; 
}
.ayah-span { transition: all 0.3s ease; border-radius: 5px; padding: 0 5px; }
.ayah-active { color: var(--gold-light); background: rgba(212,175,55,0.1); text-shadow: 0 0 10px rgba(212,175,55,0.5); }
.ayah-number { display: inline-block; width: 30px; height: 30px; line-height: 30px; border-radius: 50%; border: 1px solid var(--gold-dark); font-size: 1rem; margin: 0 8px; text-align: center; }

/* Radio Network Grid */
.radio-network-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; padding: 20px; }
.radio-station-btn { 
    background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); 
    color: white; padding: 15px; border-radius: var(--radius-md); 
    display: flex; align-items: center; gap: 10px; cursor: pointer; transition: 0.3s; 
}
.radio-station-btn:hover { background: rgba(212,175,55,0.1); border-color: var(--gold-dark); }
.radio-station-btn.active { background: rgba(212,175,55,0.2); border-color: var(--gold-light); box-shadow: 0 0 15px rgba(212,175,55,0.2); }

/* Reels Modal */
.modal-overlay { 
    position: fixed; top: 0; left: 0; right: 0; bottom: 0; 
    background: rgba(0,0,0,0.8); z-index: 10000; display: none; 
    justify-content: center; align-items: center; backdrop-filter: blur(10px);
}
.modal-overlay.active { display: flex; }
.modal-content { max-width: 500px; width: 90%; text-align: center; padding: 30px; }
.reels-preview { margin: 20px 0; background: #000; border-radius: 15px; overflow: hidden; display: inline-block; }
.reels-preview canvas { width: 250px; height: 437px; } /* 9:16 aspect ratio */
