/* ═══════════════════════════════════════════════════
   VOTA POR TU CANCIÓN — Main Styles
   Tema: Oscuro elegante / Dorado / Música
   ═══════════════════════════════════════════════════ */

:root {
  --gold: #d4af37;
  --gold-light: #f0d060;
  --gold-dark: #a07820;
  --bg-dark: #0a0a0f;
  --bg-card: #12121e;
  --bg-card2: #1a1a2e;
  --bg-card3: #16213e;
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --text-light: #e8e8f0;
  --text-muted: #8888aa;
  --success: #10b981;
  --danger: #ef4444;
  --border-subtle: rgba(255,255,255,0.07);
}

/* ─── Inline Alert ─── */
.alert-inline {
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
}
.alert-inline-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}
.alert-inline-success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #6ee7b7;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  min-height: 100vh;
}

/* ═══ UTILITIES ═══ */
.text-gold { color: var(--gold) !important; }
.text-gold-glow {
  color: var(--gold);
  text-shadow: 0 0 20px rgba(212,175,55,0.7), 0 0 40px rgba(212,175,55,0.4);
}
.text-muted-custom { color: var(--text-muted) !important; }
.text-danger-custom { color: #f87171 !important; }
.btn-link-small {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-decoration: none;
}
.btn-link-small:hover { color: var(--gold); }

/* ═══ BUTTONS ═══ */
.btn-vote-main {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s;
}
.btn-vote-main:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,175,55,0.4);
}

.btn-outline-gold {
  color: var(--gold);
  border: 2px solid var(--gold);
  background: transparent;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #000;
}

/* ═══ LOGIN PAGE ═══ */
.login-page { background: var(--bg-dark); }

.login-bg {
  background: radial-gradient(ellipse at center, #1a0533 0%, #0a0a0f 70%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.music-notes-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.music-notes-bg span {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.06;
  animation: floatNote linear infinite;
}
.music-notes-bg span:nth-child(1) { left:5%; animation-duration:8s; animation-delay:0s; }
.music-notes-bg span:nth-child(2) { left:15%; animation-duration:12s; animation-delay:1s; }
.music-notes-bg span:nth-child(3) { left:30%; animation-duration:9s; animation-delay:2s; }
.music-notes-bg span:nth-child(4) { left:50%; animation-duration:11s; animation-delay:0.5s; }
.music-notes-bg span:nth-child(5) { left:65%; animation-duration:10s; animation-delay:3s; }
.music-notes-bg span:nth-child(6) { left:75%; animation-duration:14s; animation-delay:1.5s; }
.music-notes-bg span:nth-child(7) { left:85%; animation-duration:8s; animation-delay:4s; }
.music-notes-bg span:nth-child(8) { left:95%; animation-duration:13s; animation-delay:2.5s; }

@keyframes floatNote {
  0% { transform: translateY(110vh) rotate(0deg); opacity: 0.06; }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

.login-card {
  background: rgba(18, 18, 30, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,175,55,0.1);
}

.login-icon {
  font-size: 3.5rem;
  filter: drop-shadow(0 0 20px rgba(212,175,55,0.5));
}
.login-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 2px;
}
.login-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.custom-input {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: #fff !important;
  border-radius: 12px !important;
}
.custom-input:focus {
  background: rgba(255,255,255,0.08) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15) !important;
  color: #fff !important;
}
.form-floating label { color: var(--text-muted) !important; }
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  color: var(--gold) !important;
}

/* ═══ VOTE PAGE ═══ */
.vote-page, .vote-bg {
  background: var(--bg-dark);
  min-height: 100vh;
}

.vote-header {
  background: rgba(12,12,24,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}
.vote-header-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(0.7rem, 2vw, 0.9rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
}
.vote-header-sub { font-size: 0.75rem; color: var(--text-muted); }
.voter-greeting { font-size: 0.9rem; color: var(--text-light); }

.badge-active-pulse {
  background: var(--success);
  color: #fff;
  font-size: 0.65rem;
  animation: pulseBadge 2s infinite;
  border-radius: 20px;
  padding: 2px 8px;
}
@keyframes pulseBadge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.vote-section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1rem, 3vw, 1.4rem);
  font-weight: 700;
  color: #fff;
}
.vote-section-sub { color: var(--text-muted); font-size: 0.9rem; }
.vote-counter-bar {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.3rem 1rem;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 20px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ─── Song Cards ─── */
.song-card-label { cursor: pointer; }
.song-card-label:hover .song-card { transform: translateY(-3px); }

.song-card {
  background: var(--bg-card);
  border: 2px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}
.song-card.selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.25), 0 8px 30px rgba(212,175,55,0.2);
  transform: translateY(-4px) scale(1.02);
  background: var(--bg-card2);
}

.song-card-img-wrap {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  background: var(--bg-card2);
}
.song-card-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.song-card:hover .song-card-img,
.song-card.selected .song-card-img { transform: scale(1.05); }

.song-card-check {
  position: absolute;
  top: 8px; right: 8px;
  width: 28px; height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 0.9rem;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s;
}
.song-card.selected .song-card-check {
  opacity: 1;
  transform: scale(1);
}

.song-card-body {
  padding: 0.75rem;
}
.song-card-title {
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 3px;
}
.song-card-composer {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.song-card-version {
  font-size: 0.7rem;
  color: var(--gold);
  margin-top: 3px;
}

/* ─── Vote Sticky Bar ─── */
.vote-sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(18,18,30,0.97);
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(212,175,55,0.3);
  padding: 1rem 0;
  z-index: 200;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.vote-sticky-bar.show {
  transform: translateY(0);
}
.selected-song-info {
  font-size: 0.85rem;
  color: var(--text-light);
}
.btn-vote-submit {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: all 0.3s;
}
.btn-vote-submit:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #000;
  box-shadow: 0 5px 20px rgba(212,175,55,0.4);
}
.btn-vote-submit:disabled {
  background: rgba(255,255,255,0.08) !important;
  color: rgba(255,255,255,0.3) !important;
  box-shadow: none !important;
  cursor: not-allowed;
  transform: none !important;
}
.btn-vote-submit.btn-vote-ready {
  animation: pulseGold 1.5s ease-in-out infinite;
}
@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(212,175,55,0); }
}

/* Locked song cards (limit reached in multi-select) */
.song-card-locked {
  opacity: 0.3 !important;
  pointer-events: none;
}

/* Inline counter inside sticky bar */
.vote-counter-inline {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}

/* ═══ CONFIRMATION PAGE ═══ */
.confirmation-page, .confirmation-bg {
  background: radial-gradient(ellipse at center, #0d1b0d 0%, #0a0a0f 70%);
}
.check-circle {
  width: 90px; height: 90px;
  background: linear-gradient(135deg, var(--success), #047857);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  margin: 0 auto;
  box-shadow: 0 0 30px rgba(16,185,129,0.4);
  animation: bounceIn 0.6s ease;
}
@keyframes bounceIn {
  0% { transform: scale(0); }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.confirmation-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 900;
  color: #fff;
  margin-top: 1rem;
}
.confirmation-sub { color: var(--text-muted); margin-top: 0.5rem; }
.voted-song-card {
  background: var(--bg-card);
  border: 2px solid rgba(212,175,55,0.3);
  border-radius: 20px;
  padding: 1.5rem;
  display: inline-block;
  min-width: 220px;
}
.voted-song-img {
  width: 120px; height: 120px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid var(--gold);
  box-shadow: 0 0 20px rgba(212,175,55,0.3);
}
.voted-song-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.voted-song-composer { color: var(--text-muted); font-size: 0.9rem; }
.voted-song-version { color: var(--gold); font-size: 0.8rem; margin-top: 4px; }

/* ═══ WINNER PAGE ═══ */
.winner-page, .winner-bg {
  background: radial-gradient(ellipse at top, #1a0d00 0%, #0a0a0f 60%);
  min-height: 100vh;
}
.winner-trophy-icon {
  font-size: clamp(3rem, 8vw, 5rem);
  filter: drop-shadow(0 0 30px rgba(212,175,55,0.7));
  animation: trophyFloat 3s ease-in-out infinite;
}
@keyframes trophyFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.winner-main-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1.2;
  margin-top: 0.5rem;
}
.winner-round-badge {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.winner-card {
  background: var(--bg-card2);
  border: 2px solid var(--gold);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 40px rgba(212,175,55,0.3), 0 0 80px rgba(212,175,55,0.1);
  opacity: 0;
  transform: scale(0.8) translateY(30px);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.winner-card.reveal {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.winner-card-glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.winner-img-wrap {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
  background: var(--bg-card);
}
.winner-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(1.1) saturate(1.2);
}
.winner-crown {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 2.5rem;
  animation: trophyFloat 2s ease-in-out infinite;
  filter: drop-shadow(0 2px 8px rgba(212,175,55,0.8));
}
.winner-card-body { padding: 1.5rem; }

/* Top N multi-winner card variant */
.winner-card-multi {
  opacity: 0;
  transform: translateY(30px);
  animation: winnerRevealMulti 0.6s ease forwards;
}
@keyframes winnerRevealMulti {
  to { opacity: 1; transform: translateY(0); }
}
.winner-top-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 1.6rem;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
  z-index: 2;
}
.winner-votes-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}
.winner-song-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 900;
  color: #fff;
}
.winner-song-composer { color: var(--text-muted); margin-top: 4px; }
.winner-song-version { color: var(--gold); font-size: 0.85rem; }

/* ─── Ranking ─── */
.ranking-list { display: flex; flex-direction: column; gap: 10px; }
.ranking-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 12px 16px;
  transition: all 0.3s;
}
.ranking-first {
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
  border-color: rgba(212,175,55,0.4);
}
.ranking-second {
  background: linear-gradient(135deg, rgba(192,192,192,0.1), rgba(192,192,192,0.03));
}
.ranking-third {
  background: linear-gradient(135deg, rgba(205,127,50,0.1), rgba(205,127,50,0.03));
}
.ranking-position { font-size: 1.5rem; min-width: 36px; text-align: center; }
.ranking-title { font-weight: 700; font-size: 0.95rem; color: #fff; }
.ranking-composer { font-size: 0.8rem; color: var(--text-muted); }
.ranking-votes { text-align: right; }
.badge-votes {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.ranking-votes small { color: var(--text-muted); font-size: 0.7rem; }

/* ─── Particles ─── */
.winner-particles {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.particle {
  position: absolute;
  animation: particleFloat linear infinite;
  opacity: 0.3;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0.3; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* ═══ WAITING PAGE ═══ */
.waiting-page, .waiting-bg {
  background: radial-gradient(ellipse at center, #0d0d1a 0%, #0a0a0f 70%);
}
.waiting-icon {
  font-size: 5rem;
  filter: drop-shadow(0 0 20px rgba(124,58,237,0.6));
  animation: trophyFloat 3s ease-in-out infinite;
}
.waiting-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.5rem, 5vw, 2rem);
  color: #fff;
  font-weight: 900;
  margin-bottom: 1rem;
}
.waiting-sub { color: var(--text-muted); font-size: 1rem; }

/* ═══════════════════════════════════════════════════
   FEEDBACK FORM STYLES
   ═══════════════════════════════════════════════════ */

.feedback-bg {
  min-height: 100vh;
  background: var(--bg-dark);
  background-image: radial-gradient(ellipse at 30% 20%, rgba(124,58,237,.08) 0%, transparent 60%),
                    radial-gradient(ellipse at 80% 80%, rgba(212,175,55,.06) 0%, transparent 55%);
}

.feedback-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #fff;
  font-weight: 900;
}

.feedback-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ── Section card ── */
.fb-section {
  display: flex;
  gap: 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1.5rem;
  transition: border-color .2s;
}
.fb-section:focus-within {
  border-color: rgba(212,175,55,.35);
}

.fb-section-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: rgba(212,175,55,.15);
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: .75rem;
  color: var(--gold);
  font-weight: 700;
  margin-top: .15rem;
}

.fb-section-body { flex: 1; min-width: 0; }

.fb-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .75rem;
}

.fb-optional {
  font-size: .8rem;
  font-weight: 400;
  color: var(--text-muted);
}

.fb-hint {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: .75rem;
}

/* ── Inputs ── */
.fb-input {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: .6rem 1rem;
  color: var(--text-light);
  font-size: .92rem;
  outline: none;
  transition: border-color .2s, background .2s;
}
.fb-input:focus {
  border-color: rgba(212,175,55,.5);
  background: rgba(255,255,255,.07);
}
.fb-input::placeholder { color: var(--text-muted); }
.fb-input-sm { font-size: .88rem; padding: .5rem .9rem; }

.fb-textarea {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: .7rem 1rem;
  color: var(--text-light);
  font-size: .92rem;
  outline: none;
  resize: vertical;
  min-height: 90px;
  transition: border-color .2s, background .2s;
  font-family: inherit;
}
.fb-textarea:focus {
  border-color: rgba(212,175,55,.5);
  background: rgba(255,255,255,.07);
}
.fb-textarea::placeholder { color: var(--text-muted); }

.fb-char-count {
  font-size: .75rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: .3rem;
}

/* ── Song suggestion row ── */
.song-suggestion-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.song-suggestion-badge {
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
  background: rgba(212,175,55,.1);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: .35rem;
}
.song-suggestion-fields { flex: 1; min-width: 0; }

/* ── Star rating ── */
.star-rating {
  display: flex;
  gap: .4rem;
  margin-bottom: .5rem;
}
.star-btn {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: rgba(255,255,255,.15);
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color .15s, transform .1s;
}
.star-btn.active, .star-btn.hover { color: var(--gold); }
.star-btn:hover { transform: scale(1.2); }

.star-label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--gold);
  transition: color .2s;
  min-height: 1.4em;
}

/* ── Submit button ── */
.btn-fb-submit {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  border: none;
  border-radius: 50px;
  padding: .9rem 3rem;
  font-size: 1rem;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  letter-spacing: .05em;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  box-shadow: 0 4px 20px rgba(212,175,55,.35);
}
.btn-fb-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,175,55,.5);
}
.btn-fb-submit:active { transform: translateY(0); }
.btn-fb-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.btn-fb-outline {
  display: inline-block;
  border: 1px solid rgba(212,175,55,.4);
  color: var(--gold);
  border-radius: 50px;
  padding: .6rem 1.8rem;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.btn-fb-outline:hover {
  background: rgba(212,175,55,.1);
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Thanks page ── */
.thanks-icon { font-size: 4rem; animation: bounce-in .6s ease; }
@keyframes bounce-in {
  0%  { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.2); }
  100%{ transform: scale(1); opacity: 1; }
}
.thanks-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════
   ADMIN FEEDBACK LIST STYLES
   ═══════════════════════════════════════════════════ */

.fb-card-admin {
  border-bottom: 1px solid var(--border-subtle);
}
.fb-card-admin:last-child { border-bottom: none; }

.fb-card-admin-header {
  padding: .9rem 1.2rem;
  background: rgba(255,255,255,.02);
  border-bottom: 1px solid var(--border-subtle);
}

.fb-card-admin-body {
  padding: 1rem 1.2rem;
}

.fb-stars-display .star-filled { color: var(--gold); }
.fb-stars-display .star-empty  { color: rgba(255,255,255,.15); }

.fb-respondent-name {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-light);
}
.fb-respondent-anon {
  font-size: .85rem;
  color: var(--text-muted);
  font-style: italic;
}

.fb-timestamp {
  font-size: .78rem;
  color: var(--text-muted);
}

.fb-detail-row {
  margin-bottom: .75rem;
}
.fb-detail-row:last-child { margin-bottom: 0; }

.fb-detail-label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .25rem;
}

.fb-detail-value {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.fb-song-pill {
  display: inline-block;
  background: rgba(212,175,55,.1);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 20px;
  padding: .2rem .7rem;
  font-size: .82rem;
  color: var(--gold);
  margin: .2rem .2rem .2rem 0;
}
