/* ==========================================================
   Quran Ruqyah — Website Stylesheet
   Exact color palette from the Android app:
     dark green + gold premium theme
   ========================================================== */

:root {
  --green-900:   #0B2E1E;
  --green-800:   #0F3A26;
  --green-700:   #135232;
  --green-600:   #1A6B3F;
  --green-500:   #1F864E;
  --gold-700:    #B8871B;
  --gold-600:    #C99A2C;
  --gold-500:    #D6B05A;
  --gold-200:    #F1E2B8;
  --surface-dark:#0F1C16;
  --surface:     #13241C;
  --bg:          #0C1812;
  --on-surface:  #E6F0EA;
  --on-muted:    #A8B8AE;
  --radius:      12px;
  --radius-lg:   18px;
  --transition:  0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--on-surface);
  line-height: 1.6;
  overflow-x: hidden;
}
a       { color: inherit; text-decoration: none; }
ul      { list-style: none; }
button  { cursor: pointer; border: none; background: none; font-family: inherit; }
input   { font-family: inherit; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }

/* ── Gold text ─────────────────────────────────────────── */
.gold { color: var(--gold-500); }

@keyframes shimmer {
  0%   { background-position: -500px 0; }
  100% { background-position:  500px 0; }
}
.gold-shimmer {
  background: linear-gradient(90deg,
    var(--gold-700) 0%,
    var(--gold-200) 35%,
    var(--gold-500) 55%,
    var(--gold-700) 100%);
  background-size: 500px;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3.5s linear infinite;
}

/* ── Section helpers ───────────────────────────────────── */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  color: var(--gold-200);
  margin-bottom: 44px;
}

/* ═══════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════ */
#navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(12, 24, 18, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(214, 176, 90, 0.18);
  transition: box-shadow var(--transition);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-200);
  letter-spacing: 0.02em;
}
.brand-icon { font-size: 1.3rem; color: var(--gold-500); }
.brand-accent { color: var(--gold-500); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--on-muted);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--gold-500); }

.btn-nav {
  padding: 8px 20px !important;
  border-radius: 7px;
  background: var(--gold-600) !important;
  color: var(--green-900) !important;
  font-weight: 700 !important;
  font-size: 0.84rem !important;
  letter-spacing: 0.03em;
  transition: background var(--transition), transform var(--transition) !important;
}
.btn-nav:hover { background: var(--gold-500) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--gold-200);
  padding: 4px 8px;
}

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(165deg, var(--green-900) 0%, var(--bg) 65%);
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 65% 55% at 72% 38%, rgba(201,154,44,0.09) 0%, transparent 62%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D6B05A' fill-opacity='0.045'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 90px 24px 70px;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  padding: 7px 22px;
  border: 1px solid rgba(214, 176, 90, 0.38);
  border-radius: 999px;
  font-family: 'Amiri', serif;
  font-size: 1.05rem;
  color: var(--gold-500);
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  background: rgba(201, 154, 44, 0.07);
}
.hero-title {
  font-size: clamp(3.2rem, 8.5vw, 6rem);
  font-weight: 700;
  color: var(--gold-200);
  line-height: 1.08;
  margin-bottom: 16px;
  text-shadow: 0 2px 48px rgba(201, 154, 44, 0.22);
}
.hero-subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 22px;
}
.hero-desc {
  font-size: 1rem;
  color: var(--on-muted);
  max-width: 560px;
  margin: 0 auto 38px;
  line-height: 1.8;
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gold-600);
  color: var(--green-900);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 22px rgba(201, 154, 44, 0.32);
}
.btn-primary:hover {
  background: var(--gold-500);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 154, 44, 0.44);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border: 1.5px solid var(--gold-600);
  color: var(--gold-500);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: rgba(201, 154, 44, 0.1);
  border-color: var(--gold-500);
  transform: translateY(-2px);
}
.hero-scroll-hint {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--on-muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
  animation: bounce 2.2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* ═══════════════════════════════════════════════════════
   PLAYER SECTION
═══════════════════════════════════════════════════════ */
#player {
  background: linear-gradient(180deg, var(--bg) 0%, var(--green-900) 100%);
  border-top: 1px solid rgba(214, 176, 90, 0.08);
}
.player-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
/* ── Player card ── */
.player-card {
  background: var(--surface);
  border: 1px solid rgba(214, 176, 90, 0.28);
  border-radius: var(--radius-lg);
  padding: 28px 24px 22px;
  box-shadow:
    0 8px 40px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(214, 176, 90, 0.1);
}
.player-now-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 8px;
}
.player-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold-200);
  min-height: 1.7em;
  transition: color var(--transition);
}
.player-artist {
  font-size: 0.83rem;
  color: var(--on-muted);
  margin-top: 4px;
  margin-bottom: 18px;
}

/* Visualizer */
.player-visualizer {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 40px;
  margin-bottom: 18px;
}
.player-visualizer span {
  width: 4px;
  height: 5px;
  background: var(--gold-600);
  border-radius: 2px;
  opacity: 0.35;
  transition: height 0.2s ease, opacity 0.2s ease;
}
.player-visualizer.playing span {
  opacity: 1;
  animation: vizbar 0.75s ease-in-out infinite alternate;
}
.player-visualizer.playing span:nth-child(1)  { animation-delay: 0.00s; animation-duration: 0.7s; }
.player-visualizer.playing span:nth-child(2)  { animation-delay: 0.10s; animation-duration: 0.8s; }
.player-visualizer.playing span:nth-child(3)  { animation-delay: 0.20s; animation-duration: 0.6s; }
.player-visualizer.playing span:nth-child(4)  { animation-delay: 0.05s; animation-duration: 0.9s; }
.player-visualizer.playing span:nth-child(5)  { animation-delay: 0.15s; animation-duration: 0.7s; }
.player-visualizer.playing span:nth-child(6)  { animation-delay: 0.25s; animation-duration: 0.8s; }
.player-visualizer.playing span:nth-child(7)  { animation-delay: 0.00s; animation-duration: 0.65s; }
.player-visualizer.playing span:nth-child(8)  { animation-delay: 0.12s; animation-duration: 0.85s; }
.player-visualizer.playing span:nth-child(9)  { animation-delay: 0.22s; animation-duration: 0.7s; }
.player-visualizer.playing span:nth-child(10) { animation-delay: 0.07s; animation-duration: 0.75s; }
.player-visualizer.playing span:nth-child(11) { animation-delay: 0.17s; animation-duration: 0.9s; }
.player-visualizer.playing span:nth-child(12) { animation-delay: 0.27s; animation-duration: 0.6s; }
.player-visualizer.playing span:nth-child(13) { animation-delay: 0.03s; animation-duration: 0.8s; }
.player-visualizer.playing span:nth-child(14) { animation-delay: 0.13s; animation-duration: 0.7s; }
.player-visualizer.playing span:nth-child(15) { animation-delay: 0.23s; animation-duration: 0.85s; }
@keyframes vizbar {
  from { height: 4px; }
  to   { height: 34px; }
}

/* Progress */
.player-progress-area { margin-bottom: 22px; }
.player-progress-bar {
  position: relative;
  width: 100%;
  height: 5px;
  background: var(--green-700);
  border-radius: 3px;
  cursor: pointer;
  margin-bottom: 8px;
  overflow: visible;
  user-select: none;
}
.player-progress-fill {
  height: 100%;
  background: var(--gold-600);
  border-radius: 3px;
  width: 0%;
  pointer-events: none;
  transition: width 0.18s linear;
}
.player-progress-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%) scale(0);
  width: 15px;
  height: 15px;
  background: var(--gold-500);
  border-radius: 50%;
  transition: transform var(--transition), left 0.18s linear;
  box-shadow: 0 0 10px rgba(214, 176, 90, 0.55);
}
.player-progress-bar:hover .player-progress-thumb { transform: translate(-50%, -50%) scale(1); }
.player-time {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--on-muted);
}

/* Controls */
.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.ctrl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--gold-200);
  transition: all var(--transition);
  flex-shrink: 0;
}
.ctrl-btn svg { display: block; pointer-events: none; }
.ctrl-small {
  width: 38px; height: 38px;
  background: rgba(214, 176, 90, 0.08);
  padding: 9px;
}
.ctrl-small:hover  { background: rgba(214, 176, 90, 0.18); color: var(--gold-500); }
.ctrl-small.active { background: rgba(214, 176, 90, 0.18); color: var(--gold-500); }
.ctrl-medium {
  width: 46px; height: 46px;
  background: rgba(214, 176, 90, 0.1);
  padding: 11px;
}
.ctrl-medium:hover { background: rgba(214, 176, 90, 0.2); }
.ctrl-play {
  width: 60px; height: 60px;
  background: var(--gold-600);
  color: var(--green-900);
  padding: 15px;
  box-shadow: 0 4px 18px rgba(201, 154, 44, 0.38);
}
.ctrl-play:hover {
  background: var(--gold-500);
  transform: scale(1.07);
  box-shadow: 0 6px 26px rgba(201, 154, 44, 0.52);
}

/* Volume */
.player-volume {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--on-muted);
  margin-bottom: 14px;
}
.player-volume input[type=range] {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  border-radius: 2px;
  background: var(--green-700);
  outline: none;
  cursor: pointer;
}
.player-volume input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--gold-500);
  cursor: pointer;
}
.player-volume input[type=range]::-moz-range-thumb {
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--gold-500);
  border: none;
  cursor: pointer;
}
.player-hint {
  font-size: 0.72rem;
  color: rgba(168,184,174,0.45);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ── Playlist card ── */
.playlist-card {
  background: var(--surface);
  border: 1px solid rgba(214, 176, 90, 0.22);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 480px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 40px rgba(0,0,0,0.32);
}
.playlist-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(214, 176, 90, 0.12);
  background: rgba(201, 154, 44, 0.04);
  flex-shrink: 0;
}
.playlist-title-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
}
.playlist-count { font-size: 0.78rem; color: var(--on-muted); }
.playlist-list {
  overflow-y: auto;
  flex: 1;
  padding: 6px 0;
}
.playlist-list::-webkit-scrollbar { width: 4px; }
.playlist-list::-webkit-scrollbar-track { background: transparent; }
.playlist-list::-webkit-scrollbar-thumb {
  background: rgba(214, 176, 90, 0.22);
  border-radius: 2px;
}
.playlist-loading {
  padding: 24px 20px;
  color: var(--on-muted);
  font-size: 0.88rem;
  text-align: center;
}
.playlist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  cursor: pointer;
  border-bottom: 1px solid rgba(214, 176, 90, 0.06);
  transition: background var(--transition);
}
.playlist-item:hover { background: rgba(214, 176, 90, 0.07); }
.playlist-item.active {
  background: rgba(201, 154, 44, 0.12);
  border-left: 3px solid var(--gold-500);
  padding-left: 17px;
}
.playlist-index {
  width: 22px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--on-muted);
  flex-shrink: 0;
}
.playlist-item.active .playlist-index { color: var(--gold-500); }
.playlist-info { flex: 1; min-width: 0; }
.playlist-item-title {
  font-size: 0.88rem;
  color: var(--on-surface);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.playlist-item.active .playlist-item-title { color: var(--gold-500); font-weight: 600; }
.playlist-item-artist { font-size: 0.73rem; color: var(--on-muted); }

/* ═══════════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════════ */
#features {
  background: var(--surface-dark);
  border-top:    1px solid rgba(214, 176, 90, 0.08);
  border-bottom: 1px solid rgba(214, 176, 90, 0.08);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid rgba(214, 176, 90, 0.15);
  border-radius: var(--radius);
  padding: 30px 22px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  border-color: rgba(214, 176, 90, 0.42);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.36);
}
.feature-icon {
  font-size: 2.1rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 9px rgba(201, 154, 44, 0.28));
}
.feature-card h3 {
  font-size: 1.1rem;
  color: var(--gold-200);
  margin-bottom: 10px;
}
.feature-card p { font-size: 0.875rem; color: var(--on-muted); line-height: 1.75; }

/* ═══════════════════════════════════════════════════════
   DOWNLOAD
═══════════════════════════════════════════════════════ */
#download {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--bg) 100%);
  border-top: 1px solid rgba(214, 176, 90, 0.08);
}
.download-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.download-text p {
  color: var(--on-muted);
  font-size: 0.95rem;
  line-height: 1.82;
  max-width: 480px;
  margin-bottom: 30px;
}

/* Phone mockup */
.mockup-phone {
  width: 196px;
  background: var(--green-900);
  border-radius: 32px;
  border: 2px solid rgba(214, 176, 90, 0.42);
  padding: 10px;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.55),
    0 0 48px rgba(201, 154, 44, 0.08);
  flex-shrink: 0;
}
.mockup-notch {
  width: 50px;
  height: 6px;
  background: rgba(214, 176, 90, 0.25);
  border-radius: 3px;
  margin: 0 auto 8px;
}
.mockup-screen {
  background: var(--surface);
  border-radius: 22px;
  padding: 18px 14px 14px;
  border: 1px solid rgba(214, 176, 90, 0.15);
}
.mockup-toolbar {
  font-size: 8px;
  letter-spacing: 0.16em;
  color: var(--gold-200);
  text-align: center;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
}
.mockup-now {
  font-size: 6.5px;
  color: var(--gold-500);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mockup-track {
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  color: var(--gold-200);
  margin: 4px 0 10px;
  font-weight: 600;
}
.mockup-bar {
  height: 3px;
  background: var(--green-700);
  border-radius: 2px;
  margin-bottom: 4px;
  overflow: hidden;
}
.mockup-fill {
  width: 38%;
  height: 100%;
  background: var(--gold-600);
  border-radius: 2px;
}
.mockup-time {
  display: flex;
  justify-content: space-between;
  font-size: 7px;
  color: var(--on-muted);
  margin-bottom: 12px;
}
.mockup-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}
.mockup-btn {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(214, 176, 90, 0.1);
  border-radius: 50%;
  font-size: 9px;
  color: var(--gold-200);
}
.mockup-play {
  width: 36px; height: 36px;
  background: var(--gold-600);
  color: var(--green-900);
  font-size: 11px;
}
.mockup-list { border-top: 1px solid rgba(214,176,90,0.12); padding-top: 8px; }
.mockup-list-item {
  font-size: 7px;
  color: var(--on-muted);
  padding: 3px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mockup-list-active { color: var(--gold-500); font-weight: 700; }

/* ═══════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════ */
#about {
  background: var(--bg);
  border-top: 1px solid rgba(214, 176, 90, 0.08);
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 50px;
}
.about-block {
  padding: 26px 22px;
  background: var(--surface);
  border: 1px solid rgba(214, 176, 90, 0.13);
  border-radius: var(--radius);
}
.about-block h4 {
  font-size: 1rem;
  color: var(--gold-500);
  margin-bottom: 10px;
}
.about-block p { font-size: 0.875rem; color: var(--on-muted); line-height: 1.78; }
.about-verse {
  text-align: center;
  padding: 38px 28px;
  background: linear-gradient(135deg, rgba(11,46,30,0.7), rgba(201,154,44,0.05));
  border: 1px solid rgba(214, 176, 90, 0.22);
  border-radius: var(--radius-lg);
}
.verse-arabic {
  font-family: 'Amiri', serif;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--gold-500);
  direction: rtl;
  line-height: 2.1;
  margin-bottom: 16px;
}
.verse-trans {
  font-size: 0.9rem;
  color: var(--on-muted);
  font-style: italic;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.85;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
#footer {
  background: var(--surface-dark);
  border-top: 1px solid rgba(214, 176, 90, 0.16);
  padding: 44px 24px 32px;
  text-align: center;
}
.footer-inner { max-width: 640px; margin: 0 auto; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-200);
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 0.82rem;
  color: var(--on-muted);
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 26px;
}
.footer-links a {
  font-size: 0.82rem;
  color: var(--on-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-500); }
.footer-copy { font-size: 0.74rem; color: rgba(168,184,174,0.42); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 920px) {
  .player-wrapper        { grid-template-columns: 1fr; }
  .playlist-card         { max-height: 330px; }
  .features-grid         { grid-template-columns: repeat(2, 1fr); }
  .about-grid            { grid-template-columns: 1fr 1fr; }
  .download-inner        { grid-template-columns: 1fr; text-align: center; }
  .download-text p       { margin-left: auto; margin-right: auto; }
  .download-mockup       { display: flex; justify-content: center; }
}

@media (max-width: 620px) {
  .nav-toggle  { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 62px;
    left: 0; right: 0;
    background: rgba(12, 24, 18, 0.98);
    padding: 18px 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(214, 176, 90, 0.15);
    z-index: 199;
  }
  .nav-links.open { display: flex; }
  .features-grid  { grid-template-columns: 1fr; }
  .about-grid     { grid-template-columns: 1fr; }
  .section-inner  { padding: 56px 18px; }
  .hero-inner     { padding: 70px 18px 56px; }
  .player-controls { gap: 8px; }
  .ctrl-play      { width: 54px; height: 54px; }
}

