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

html {
  height: 100%;
}

body {
  background: #1a1a2e;
  color: #e0e0e0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  flex: 1;
}

/* ── Header ─────────────────────────────── */

header {
  text-align: center;
  padding: 48px 0 32px;
}

header h1 {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -1px;
}

header h1 a {
  color: #e8e8e8;
  transition: color 0.2s;
}

header h1 a:hover {
  color: #a78bfa;
}

.tagline {
  color: #888;
  font-size: 0.95rem;
  margin-top: 4px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── Search ─────────────────────────────── */

.search {
  position: relative;
  margin-bottom: 32px;
}

#search-input {
  width: 100%;
  background: #16213e;
  border: 1px solid #2a2a4a;
  border-radius: 8px;
  color: #e0e0e0;
  padding: 14px 18px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

#search-input::placeholder {
  color: #666;
}

#search-input:focus {
  outline: none;
  border-color: #a78bfa;
}

.results {
  list-style: none;
  background: #16213e;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  margin-top: -4px;
}

.results:empty {
  display: none;
}

.result {
  padding: 12px 18px;
  cursor: pointer;
  border-top: 1px solid #2a2a4a;
  transition: background 0.15s;
}

.result:first-child {
  border-top: none;
}

.result:hover {
  background: #1f2b4d;
}

/* ── Lyrics ─────────────────────────────── */

.lyrics {
  padding-bottom: 80px;
}

.lyrics-title {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #f0f0f0;
}

.lyrics-actions {
  text-align: center;
  margin-bottom: 24px;
}

.copy-btn {
  background: none;
  border: 1px solid #444;
  color: #a78bfa;
  padding: 6px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  font-family: inherit;
  transition: border-color 0.2s, color 0.2s;
}

.copy-btn:hover {
  border-color: #a78bfa;
}

.lyrics-text {
  font-size: 1.1rem;
  line-height: 1.8;
  white-space: pre-line;
  color: #ccc;
}

.loading {
  text-align: center;
  color: #666;
  padding: 32px 0;
}

.error {
  text-align: center;
  color: #888;
  padding: 32px 0;
}

/* ── Footer ─────────────────────────────── */

footer {
  text-align: center;
  padding: 24px;
  color: #555;
  font-size: 0.85rem;
}

footer a {
  color: #666;
  margin: 0 12px;
  transition: color 0.2s;
}

footer a:hover {
  color: #a78bfa;
}

/* ── Responsive ─────────────────────────── */

@media (max-width: 500px) {
  header {
    padding: 32px 0 24px;
  }

  header h1 {
    font-size: 1.8rem;
  }

  .lyrics-text {
    font-size: 1rem;
  }
}
