/* ============================================
   Aria Tube — Redesign Stylesheet
   3 tema: light / dark / pink
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Tema değişkenleri ───────────────────── */
:root, [data-theme="light"] {
  --at-cream: #fef6ee;
  --at-sand:  #faf3eb;
  --at-card:  #ffffff;
  --at-ink:   #1e1b2e;
  --at-inkSoft: #4a4560;
  --at-muted: rgba(30,27,46,0.55);
  --at-border: rgba(30,27,46,0.08);
  --at-pink:  #ec4899;
  --at-pinkLight: #fbcfe8;
  --at-bar1: #f97373;
  --at-bar2: #fbbf24;
  --at-bar3: #ec4899;
  --at-bar4: #a855f7;
  --at-bar5: #14b8a6;
  --at-playerBg: #1e1b2e;
  --at-playerText: #ffffff;
  --at-shadow: 0 4px 20px rgba(30,27,46,0.04);
}

[data-theme="dark"] {
  --at-cream: #14121c;
  --at-sand:  #1b1828;
  --at-card:  #201d2e;
  --at-ink:   #f5f2ff;
  --at-inkSoft: #cec9e0;
  --at-muted: rgba(245,242,255,0.55);
  --at-border: rgba(245,242,255,0.10);
  --at-pink:  #ec4899;
  --at-pinkLight: #4a2a3c;
  --at-bar1: #f97373;
  --at-bar2: #fbbf24;
  --at-bar3: #ec4899;
  --at-bar4: #a855f7;
  --at-bar5: #14b8a6;
  --at-playerBg: #0a0812;
  --at-playerText: #ffffff;
  --at-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

[data-theme="pink"] {
  --at-cream: #fff0f6;
  --at-sand:  #ffe4ef;
  --at-card:  #ffffff;
  --at-ink:   #5a1436;
  --at-inkSoft: #8b2858;
  --at-muted: rgba(90,20,54,0.55);
  --at-border: rgba(236,72,153,0.15);
  --at-pink:  #ff3da0;
  --at-pinkLight: #ffd0e0;
  --at-bar1: #f97373;
  --at-bar2: #fbbf24;
  --at-bar3: #ec4899;
  --at-bar4: #a855f7;
  --at-bar5: #14b8a6;
  --at-playerBg: linear-gradient(135deg, #ff3da0, #d63384);
  --at-playerText: #ffffff;
  --at-shadow: 0 4px 20px rgba(255, 61, 160, 0.12);
}

html, body {
  height: 100%;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--at-cream);
  color: var(--at-ink);
  -webkit-font-smoothing: antialiased;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-bottom: 90px; /* player için */
  transition: background .25s ease, color .25s ease;
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: var(--at-border);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--at-muted); }

/* ── Header ──────────────────────────────── */
.header {
  background: var(--at-card);
  border-bottom: 1px solid var(--at-border);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: sticky; top: 0; z-index: 50;
}
.brand { display: flex; align-items: center; gap: 12px; }
.logo { width: 40px; height: 40px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; gap: 3px; }
.brand-name {
  font-size: 20px; font-weight: 800;
  letter-spacing: -0.5px; line-height: 1;
  color: var(--at-ink);
}
.brand-tag {
  font-size: 10px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--at-muted);
}

.header-actions {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap;
}

/* Theme switch */
.theme-switch {
  display: inline-flex;
  background: var(--at-sand);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.theme-btn {
  background: transparent;
  border: none;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  color: var(--at-muted);
  transition: all .15s;
}
.theme-btn:hover { color: var(--at-ink); }
.theme-btn.active {
  background: var(--at-card);
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}
[data-theme="light"] .theme-btn[data-theme-btn="light"].active { color: #f59e0b; }
[data-theme="dark"]  .theme-btn[data-theme-btn="dark"].active  { color: #a78bfa; }
[data-theme="pink"]  .theme-btn[data-theme-btn="pink"].active  { color: #ff3da0; }

.lang-select {
  background: var(--at-sand);
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--at-ink);
  font-family: inherit;
  cursor: pointer;
}

.install-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #ff3da0, #ff7eb3);
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 61, 160, 0.35);
  transition: transform .15s;
}
.install-btn:hover { transform: translateY(-1px); }
.install-btn:active { transform: scale(0.96); }
.install-btn[hidden] { display: none !important; }

/* ── App layout ──────────────────────────── */
.app-layout {
  display: flex;
  flex: 1;
  min-height: 0;
}

/* Sidebar */
.sidebar {
  width: 260px;
  flex-shrink: 0;
  background: var(--at-card);
  border-right: 1px solid var(--at-border);
  padding: 20px 14px;
  overflow-y: auto;
}
.sidebar-title {
  font-size: 11px; font-weight: 700;
  color: var(--at-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 12px;
  margin-bottom: 10px;
}
.sidebar-divider {
  border: none;
  border-top: 1px solid var(--at-border);
  margin: 20px 12px;
}

/* Mood list (ikon + label) */
.mood-list { display: flex; flex-direction: column; gap: 2px; }
.mood-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: transparent !important; /* JS inline bg'i ezelim */
  color: var(--at-ink);
  border: none;
  padding: 8px 12px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background .15s;
  position: relative;
  padding-left: 50px; /* ikon yeri */
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mood-btn::before {
  /* Mood ikonu için renkli kare placeholder — JS bg rengini "data" üzerinden alamayacağı için
     emoji mood label'ının baş kısmı zaten ikon görevi görüyor; biz ek olarak renkli arka plan veriyoruz */
  content: "";
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--mood-color, var(--at-pinkLight));
  opacity: 0.85;
}
.mood-btn:hover { background: var(--at-sand); }
.mood-btn.selected {
  background: var(--at-sand);
  font-weight: 700;
}
.mood-btn.selected::before {
  box-shadow: inset 0 0 0 2px currentColor;
  opacity: 1;
}

/* Action list */
.action-list { display: flex; flex-direction: column; gap: 2px; }
.action-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: transparent;
  color: var(--at-ink);
  border: none;
  padding: 8px 12px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background .15s;
}
.action-btn:hover { background: var(--at-sand); }
.action-ic {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Main content ────────────────────────── */
.main-content {
  flex: 1;
  min-width: 0;
  padding: 32px 32px 40px;
  max-width: 960px;
  width: 100%;
}

/* Top chart banner (weekly popular) */
.top-chart-banner {
  margin-bottom: 16px;
}
.top-chart-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 18px;
  background: linear-gradient(135deg, #ff3da0 0%, #ff7eb3 50%, #ffa502 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255, 61, 160, 0.28);
  transition: transform .15s, box-shadow .2s;
  text-align: left;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
}
.top-chart-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  animation: shimmer 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50%      { transform: translateX(100%); }
}
.top-chart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 61, 160, 0.42);
}
.top-chart-btn:active { transform: scale(0.98); }
.top-chart-icon {
  font-size: 28px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
  flex-shrink: 0;
}
.top-chart-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.top-chart-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.top-chart-sub {
  font-size: 12px;
  opacity: 0.9;
  font-weight: 500;
}
.top-chart-arrow {
  font-size: 28px;
  font-weight: 300;
  opacity: 0.8;
}
.top-chart-meta {
  margin-top: 6px;
  font-size: 11px;
  color: var(--at-muted);
  text-align: right;
  padding: 0 4px;
  min-height: 16px;
}

/* Hero + search yan yana (desktop) */
.hero-row {
  display: flex;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 20px;
}
.hero {
  flex: 1 1 42%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 700;
  color: var(--at-pink);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero-title {
  font-size: 32px; font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.1;
  color: var(--at-ink);
  margin-bottom: 8px;
}
.hero-italic {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--at-pink);
}
.hero-sub {
  font-size: 14px;
  color: var(--at-muted);
  line-height: 1.5;
  max-width: 420px;
}

/* Search card */
.search-card {
  flex: 1 1 58%;
  background: var(--at-card);
  border: 1px solid var(--at-border);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 0;
  box-shadow: var(--at-shadow);
  align-self: center;
}
.search-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--at-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.search-label + .search-label,
.input-row + .search-label { margin-top: 16px; }
.input-form { margin: 0; padding: 0; }
.input-form + .input-form { margin-top: 16px; }
.input-row {
  display: flex;
  gap: 8px;
}
.input-row input {
  flex: 1;
  background: var(--at-sand);
  border: 1px solid transparent;
  outline: none;
  padding: 12px 14px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  color: var(--at-ink);
  transition: border-color .15s;
  min-width: 0;
}
.input-row input::placeholder { color: var(--at-muted); }
.input-row input:focus { border-color: var(--at-pink); }

.btn-primary {
  background: var(--at-ink);
  color: var(--at-cream);
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .15s;
}
.btn-primary:hover { opacity: 0.85; }
.btn-primary:active { transform: scale(0.97); }

/* Status */
.status {
  font-size: 13px;
  color: var(--at-muted);
  padding: 12px 16px;
  background: var(--at-sand);
  border-radius: 10px;
  margin-bottom: 20px;
}

/* Song list */
.list-box {
  background: var(--at-card);
  border: 1px solid var(--at-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--at-shadow);
}
.list-title {
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--at-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--at-border);
}
.song-list { display: flex; flex-direction: column; }
.song-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--at-border);
  cursor: pointer;
  transition: background .15s;
}
.song-row:last-child { border-bottom: none; }
.song-row:hover { background: var(--at-sand); }
.song-row.active {
  background: var(--at-pinkLight);
}
.song-info {
  flex: 1;
  font-size: 14px;
  color: var(--at-ink);
  line-height: 1.4;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.row-btn {
  width: 36px; height: 36px;
  border: none;
  background: var(--at-sand);
  color: var(--at-ink);
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  flex-shrink: 0;
  transition: all .15s;
}
.row-btn:hover { background: var(--at-pinkLight); }
.heart-btn.faved {
  background: var(--at-pink);
  color: #fff;
}

.empty-msg {
  padding: 40px 20px;
  text-align: center;
  color: var(--at-muted);
  font-size: 14px;
}

/* Footer */
.footer {
  margin-top: 30px;
  padding: 20px;
  text-align: center;
  font-size: 12px;
  color: var(--at-muted);
  line-height: 1.6;
}

/* ── Player bar ──────────────────────────── */
.player-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--at-playerBg);
  color: var(--at-playerText);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 40;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.player-track {
  display: flex; align-items: center; gap: 12px;
  min-width: 0;
  flex: 1;
}
.player-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.player-meta {
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player-bar audio {
  height: 36px;
  flex: 2;
  max-width: 500px;
}
.player-yt-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #ff0033;
  color: #fff;
  border: none;
  padding: 9px 14px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(255, 0, 51, 0.3);
  transition: background .15s, transform .1s, box-shadow .2s;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}
.player-yt-btn:hover {
  background: #cc0029;
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(255, 0, 51, 0.4);
}
.player-yt-btn:active { transform: scale(0.96); }
.player-yt-btn[hidden] { display: none !important; }
.player-yt-btn svg { flex-shrink: 0; }

/* ── Modals ──────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--at-card);
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.modal-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--at-border);
  font-size: 16px;
  font-weight: 700;
  color: var(--at-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-close {
  background: var(--at-sand);
  border: none;
  width: 30px; height: 30px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--at-ink);
}
.modal-body { padding: 12px; overflow-y: auto; }
.modal-song-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
}
.modal-song-row:hover { background: var(--at-sand); }
.modal-song-info {
  flex: 1;
  font-size: 13px;
  color: var(--at-ink);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.modal-play-btn, .modal-del-btn {
  background: var(--at-sand);
  border: none;
  width: 32px; height: 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
}
.modal-play-btn:hover { background: var(--at-pinkLight); }

/* ── Splash screen ───────────────────────── */
#splash {
  position: fixed; inset: 0;
  background: var(--at-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity .5s;
}
#splash.hide { opacity: 0; pointer-events: none; }
#splashCanvas { max-width: 90%; }
.splash-sub {
  margin-top: 20px;
  font-family: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  font-size: 12px;
  color: var(--at-muted);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .5s;
}

/* ============================================
   Responsive — mobile
   ============================================ */
@media (max-width: 760px) {
  .header {
    padding: 12px 16px;
    gap: 8px;
  }
  .brand-text { display: none; }
  .lang-select { display: none; }
  .install-btn span { display: none; }
  .install-btn { padding: 8px 10px; }
  .theme-btn span { display: none; }
  .theme-btn { padding: 6px 8px; }

  .app-layout { flex-direction: column; }
  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--at-border);
    padding: 12px 14px;
    overflow-x: auto;
  }
  .sidebar > .sidebar-divider { display: none; }
  .sidebar-section { margin-bottom: 14px; }
  .sidebar-section:last-child { margin-bottom: 0; }
  .sidebar-title {
    padding: 0 4px;
    margin-bottom: 6px;
    font-size: 10px;
  }
  .mood-list {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 6px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .mood-btn {
    flex-shrink: 0;
    width: auto;
    padding: 8px 14px 8px 38px;
    font-size: 13px;
    background: var(--at-sand) !important;
  }
  .mood-btn::before {
    width: 22px; height: 22px;
    left: 8px;
    border-radius: 6px;
  }

  .main-content {
    padding: 24px 18px 30px;
  }
  .hero-row {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
  }
  .hero-title { font-size: 28px; letter-spacing: -0.8px; }
  .hero-sub { font-size: 13px; max-width: none; }
  .search-card { padding: 16px; border-radius: 12px; align-self: stretch; }
  .input-row { flex-direction: column; }
  .input-row input { padding: 12px 14px; }
  .btn-primary { padding: 12px; }

  .player-bar {
    padding: 10px 14px;
    gap: 8px;
    flex-wrap: wrap;
  }
  .player-bar audio { max-width: 100%; flex: 1 1 100%; order: 3; }
  .player-meta { font-size: 12px; }
  .player-yt-btn { padding: 8px 10px; order: 2; }
  .player-yt-text { display: none; }

  /* Action list mobil: yatay kaydırılabilir */
  .action-list {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 6px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .action-btn {
    flex-shrink: 0;
    width: auto;
    padding: 8px 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  /* Top chart banner mobil */
  .top-chart-banner { margin-bottom: 12px; }
  .top-chart-btn { padding: 12px 14px; gap: 10px; }
  .top-chart-icon { font-size: 24px; }
  .top-chart-title { font-size: 14px; }
  .top-chart-sub { font-size: 11px; }
}

@media (max-width: 480px) {
  .header { padding: 10px 12px; }
  .logo { width: 34px; height: 34px; }
  .player-bar audio::-webkit-media-controls-volume-slider,
  .player-bar audio::-webkit-media-controls-mute-button { display: none; }
}

/* Tablet: keep side-by-side but narrower */
@media (min-width: 769px) and (max-width: 1100px) {
  .hero-row { gap: 14px; }
  .hero { flex: 1 1 36%; }
  .search-card { flex: 1 1 64%; padding: 14px 16px; }
  .hero-title { font-size: 26px; }
  .hero-sub { font-size: 13px; }
}

/* Mood butonlarına renkli arka plan inject etmek için
   JS arka plan rengini inline atıyor — biz onu mood-btn::before'a
   forward ediyoruz. Ek olarak ikon arka planı için CSS değişkeni de tanımlayabiliriz. */
.mood-btn[style*="background"] {
  /* JS'in kendi rengini atadığı durum — biz override ettik ama
     her butona ::before için renk geçecek bir yol lazım.
     Aşağıda her mood için açık renk eşlemesi yapıyoruz. */
}
.mood-btn:nth-child(1)::before  { background: #fde68a; box-shadow: inset 0 0 0 2px #f59e0b; opacity: 0.6; }
.mood-btn:nth-child(2)::before  { background: #fed7aa; box-shadow: inset 0 0 0 2px #f97316; opacity: 0.6; }
.mood-btn:nth-child(3)::before  { background: #fef08a; box-shadow: inset 0 0 0 2px #eab308; opacity: 0.6; }
.mood-btn:nth-child(4)::before  { background: #fef3c7; box-shadow: inset 0 0 0 2px #ca8a04; opacity: 0.6; }
.mood-btn:nth-child(5)::before  { background: #d1fae5; box-shadow: inset 0 0 0 2px #10b981; opacity: 0.6; }
.mood-btn:nth-child(6)::before  { background: #bae6fd; box-shadow: inset 0 0 0 2px #0ea5e9; opacity: 0.6; }
.mood-btn:nth-child(7)::before  { background: #c7d2fe; box-shadow: inset 0 0 0 2px #6366f1; opacity: 0.6; }
.mood-btn:nth-child(8)::before  { background: #ddd6fe; box-shadow: inset 0 0 0 2px #8b5cf6; opacity: 0.6; }
.mood-btn:nth-child(9)::before  { background: #fbcfe8; box-shadow: inset 0 0 0 2px #ec4899; opacity: 0.6; }
.mood-btn:nth-child(10)::before { background: #fbb6ce; box-shadow: inset 0 0 0 2px #d946ef; opacity: 0.6; }
.mood-btn:nth-child(11)::before { background: #fecaca; box-shadow: inset 0 0 0 2px #dc2626; opacity: 0.6; }
.mood-btn:nth-child(12)::before { background: #fed7aa; box-shadow: inset 0 0 0 2px #f97316; opacity: 0.6; }

.mood-btn.selected::before {
  opacity: 1 !important;
}
