:root {
 color-scheme: light;
 --bg: #e9d2ad;
 --ink: #1c2a45;
 --muted: #5b4d3c;
 --accent: #c33d2a;
 --accent-dark: #8f2b1f;
 --card: #f3e2c3;
 --line: rgba(28, 42, 69, 0.24);
 --shadow: 0 24px 40px rgba(28, 42, 69, 0.16);
 --artist-list-height: 200px;
 --song-list-height: 260px;
 --suggestions-gap: 16px;
 --suggestion-title-height: 18px;
 --list-margin-top: 10px;
 --featured-list-height: 280px;
 --list-visible-count: 3;
 --suggestion-item-height: 72px;
 --song-card-height: 84px;
 --list-gap: 8px;
 --list-padding: 10px;
 --list-height: calc(
   var(--list-visible-count) * var(--suggestion-item-height) +
     (var(--list-visible-count) - 1) * var(--list-gap) +
     (2 * var(--list-padding))
 );
 --popular-list-height: calc(
   var(--list-visible-count) * var(--song-card-height) +
     (var(--list-visible-count) - 1) * var(--list-gap) +
     (2 * var(--list-padding))
 );
 --results-visible-count: 5;
 --results-list-height: calc(
   var(--results-visible-count) * var(--song-card-height) +
     (var(--results-visible-count) - 1) * var(--list-gap) +
     (2 * var(--list-padding))
 );
}


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


html,
body {
 overflow-x: hidden;
 width: 100%;
}


body {
 min-height: 100vh;
 font-family: "Noto Serif SC", "Fraunces", serif;
 color: var(--ink);
 background:
   radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.35), transparent 55%),
   radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.18), transparent 60%),
   linear-gradient(180deg, #efd9b4 0%, #e4caa1 45%, #dcc190 100%),
   repeating-linear-gradient(
     90deg,
     rgba(28, 42, 69, 0.04) 0 1px,
     transparent 1px 4px
   );
 line-height: 1.6;
 padding: 48px clamp(20px, 4vw, 64px) 64px;
 position: relative;
 overflow-x: hidden;
}


.script-status {
 font-size: 0.75rem;
 color: var(--muted);
 letter-spacing: 0.08em;
 text-transform: uppercase;
 font-weight: 600;
 margin-top: 20px;
}


.script-toggle {
 border: 1px solid rgba(28, 42, 69, 0.35);
 background: #f6ead0;
 color: var(--ink);
 padding: 8px 16px;
 border-radius: 999px;
 cursor: pointer;
 font-weight: 600;
 letter-spacing: 0.04em;
 font-size: 0.85rem;
 font-family: "Space Grotesk", "Noto Serif SC", sans-serif;
}


.script-toggle:hover {
 border-color: var(--accent);
 color: var(--accent-dark);
}


.script-controls {
 display: flex;
 flex-wrap: wrap;
 align-items: flex-start;
 flex-direction: column;
 gap: 10px;
}


.glow {
 position: absolute;
 border-radius: 999px;
 filter: blur(0px);
 opacity: 0.18;
 z-index: 0;
}


.glow-one {
 width: 420px;
 height: 420px;
 background: radial-gradient(circle, rgba(195, 61, 42, 0.35), rgba(195, 61, 42, 0));
 top: -120px;
 right: -140px;
}


.glow-two {
 width: 320px;
 height: 320px;
 background: radial-gradient(circle, rgba(28, 42, 69, 0.25), rgba(28, 42, 69, 0));
 bottom: 40px;
 left: -120px;
}


.grid {
 position: absolute;
 inset: 0;
 background-image: none;
 z-index: 0;
 pointer-events: none;
}


.hero {
 display: grid;
 grid-template-columns: minmax(0, 1fr);
 gap: clamp(24px, 4vw, 48px);
 align-items: start;
 position: relative;
 z-index: 1;
}


.hero-copy h1 {
 font-family: "Noto Serif SC", "Fraunces", serif;
 font-weight: 900;
 font-size: clamp(1.8rem, 4vw, 1.8rem);
 line-height: 1.5;
 margin: 16px 0 16px;
 text-decoration: underline;
 text-underline-offset: 6px;
}


.hero-copy p {
 color: var(--muted);
 max-width: 540px;
 font-size: 1.05rem;
}


.hero-copy strong {
 font-weight: 900;
 font-size: 1.05rem;
 color: var(--ink);
 background: rgba(195, 61, 42, 0.07);
 padding: 0 5px;
 border-radius: 5px;
}


.pill {
 display: inline-flex;
 padding: 6px 14px;
 border-radius: 999px;
 background: var(--accent);
 color: #f6ead0;
 font-size: 0.85rem;
 letter-spacing: 0.08em;
 text-transform: uppercase;
 font-weight: 600;
 border: 1px solid rgba(28, 42, 69, 0.2);
}


.search {
 margin-top: 20px;
 display: flex;
 gap: 12px;
 align-items: center;
}


.matches-head .search,
.results .search {
 margin-bottom: 10px;
}


.results-label {
 margin-top: 6px;
 color: var(--muted);
 font-size: 0.9rem;
 display: none;
}


.results-label-text {
 color: var(--ink);
}


.search input {
 flex: 1;
 border: 1px solid rgba(28, 42, 69, 0.4);
 border-radius: 16px;
 padding: 14px 16px;
 font-size: 1rem;
 background: #f6ead0;
 box-shadow: 0 10px 18px rgba(28, 42, 69, 0.12);
 font-family: "Space Grotesk", "Noto Serif SC", sans-serif;
}


.search button {
 border: none;
 background: var(--accent);
 color: #f6ead0;
 padding: 12px 18px;
 border-radius: 12px;
 cursor: pointer;
 font-weight: 600;
 font-family: "Space Grotesk", "Noto Serif SC", sans-serif;
}


.search button:hover {
 background: var(--accent-dark);
}


#clearBtn {
 background: transparent;
 color: var(--ink);
 border: 1px solid rgba(28, 42, 69, 0.35);
}


#clearBtn:hover {
 background: rgba(246, 234, 208, 0.7);
 border-color: var(--accent);
 color: var(--accent-dark);
}


.suggestions {
 margin-top: 8px;
 display: grid;
 gap: var(--suggestions-gap);
 width: 100%;
 min-width: 0;
}


.suggestions-title {
 text-transform: uppercase;
 letter-spacing: 0.14em;
 font-size: 0.75rem;
 color: var(--muted);
 font-weight: 600;
 height: var(--suggestion-title-height);
 line-height: var(--suggestion-title-height);
}


.pane-note {
 color: var(--muted);
 font-size: 0.85rem;
 max-width: 520px;
}


.pane-ornament {
 display: flex;
 align-items: center;
 gap: 10px;
 font-size: 0.8rem;
 letter-spacing: 0.18em;
 text-transform: uppercase;
 color: var(--accent-dark);
 margin: 8px 0 12px;
 padding-bottom: 6px;
 border-bottom: 1px solid rgba(28, 42, 69, 0.2);
 max-width: 520px;
}


.pane-ornament::before {
 content: "";
 width: 10px;
 height: 10px;
 background: var(--accent);
 border-radius: 2px;
 box-shadow: 0 0 0 2px rgba(195, 61, 42, 0.2);
 flex: 0 0 auto;
}


.suggestions-subtext {
 margin-top: 6px;
 color: var(--muted);
 font-size: 0.78rem;
}


.suggestions-title-row {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 8px;
 width: calc(100vw - 40px);
 max-width: 520px;
}


.random-refresh {
 border: 1px solid rgba(28, 42, 69, 0.35);
 background: #f6ead0;
 color: var(--ink);
 padding: 4px 10px;
 border-radius: 999px;
 cursor: pointer;
 font-weight: 600;
 letter-spacing: 0.04em;
 font-size: 0.7rem;
 font-family: "Space Grotesk", "Noto Serif SC", sans-serif;
 text-transform: uppercase;
 margin-top: 50px;
}


.random-refresh:hover {
 border-color: var(--accent);
 color: var(--accent-dark);
}


.suggestion-list {
 margin-top: var(--list-margin-top);
 display: grid;
 gap: var(--list-gap);
 max-height: var(--list-height);
 height: var(--list-height);
 overflow-y: auto;
 padding: var(--list-padding);
 border: 2px solid rgba(28, 42, 69, 0.35);
 border-radius: 24px;
 background: #f6ead0;
 box-shadow: 0 16px 24px rgba(28, 42, 69, 0.12);
 width: calc(100vw - 40px);
 max-width: 520px;
 margin-right: 0;
 margin-left: 0;
 box-sizing: border-box;
 align-content: start;
 text-align: left;
}


#artistList {
 height: var(--artist-list-height);
 max-height: var(--artist-list-height);
}


#featuredList,
#popularSongsList {
 height: var(--list-height);
 max-height: var(--list-height);
}


#popularSongsList .suggestion-item,
#randomSongsList .suggestion-item,
#memeSongsList .suggestion-item {
 min-height: var(--song-card-height);
}


#popularSongsList {
 height: var(--popular-list-height);
 max-height: var(--popular-list-height);
}


#songList {
 height: var(--song-list-height);
 max-height: var(--song-list-height);
}


.suggestion-item {
 text-align: left;
 display: grid;
 gap: 6px;
 border: 1px solid rgba(28, 42, 69, 0.2);
 background: var(--card);
 color: var(--ink);
 padding: 8px 12px;
 border-radius: 12px;
 cursor: pointer;
 font-size: 0.9rem;
 min-height: var(--suggestion-item-height);
 width: 100%;
}


.suggestion-item.is-artist {
 min-height: 52px;
}


.suggestion-item:hover {
 border-color: var(--accent);
 color: var(--accent-dark);
}


.suggestion-sep {
 color: var(--muted);
}


.suggestion-label {
 color: var(--muted);
 font-size: 0.8rem;
 text-transform: uppercase;
 letter-spacing: 0.06em;
}


.suggestion-text {
 font-size: 0.92rem;
}


.suggestion-line {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 gap: 6px;
}


.suggestion-artist-line .suggestion-text {
 font-size: 0.88rem;
}


.artist-english {
 margin-left: 4px;
 color: var(--muted);
 font-size: 0.85em;
 white-space: nowrap;
}


#popularSongsList .artist-english {
 margin-left: 2px;
}


#popularSongsList .suggestion-item {
 min-height: var(--song-card-height);
}


#popularSongsList .suggestion-artist-line {
 align-items: flex-end;
}


.pinyin-stack {
 display: inline-flex;
 flex-direction: column;
 align-items: flex-start;
 gap: 2px;
}


.pinyin-stack.inline {
 vertical-align: middle;
}


.pinyin-stack-py {
 font-size: 0.7rem;
 color: var(--muted);
 line-height: 1;
}


.pinyin-stack-hz {
 line-height: 1.2;
}


.suggestion-line .pinyin-stack-py {
 font-size: 0.68rem;
}


.suggestion-artist-line .pinyin-stack-hz {
 font-size: 0.88rem;
}


.chips {
 display: flex;
 flex-wrap: wrap;
 gap: 10px;
 margin-top: 16px;
}


.chips button {
 background: transparent;
 border: 1px dashed var(--accent);
 color: var(--accent-dark);
 padding: 6px 12px;
 border-radius: 999px;
 cursor: pointer;
 font-size: 0.9rem;
}


.chips button[disabled] {
 border-color: var(--line);
 color: var(--muted);
 cursor: not-allowed;
 opacity: 0.7;
}




.hero-card {
 background: var(--card);
 border: 1px solid var(--line);
 border-radius: 24px;
 padding: 24px;
 box-shadow: var(--shadow);
}


.hero-card-label {
 text-transform: uppercase;
 letter-spacing: 0.18em;
 font-size: 0.7rem;
 color: var(--muted);
}


.hero-card-title {
 font-family: "Fraunces", serif;
 font-size: 1.8rem;
 margin-top: 8px;
}


.hero-card-sub {
 color: var(--muted);
 margin-top: 6px;
 font-size: 0.95rem;
}


.audio-wrap {
 margin-top: 20px;
 display: grid;
 gap: 12px;
}


.audio-wrap audio {
 width: 100%;
}


#playFromStart {
 border: 1px solid var(--accent);
 background: transparent;
 color: var(--accent-dark);
 padding: 10px 12px;
 border-radius: 12px;
 cursor: pointer;
 font-weight: 600;
}


.youtube-link,
.spotify-link,
.apple-music-link {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 border: 1px solid var(--line);
 background: #fff;
 color: var(--ink);
 padding: 10px 12px;
 border-radius: 12px;
 text-decoration: none;
 font-weight: 600;
 white-space: nowrap;
}


.youtube-link,
.spotify-link,
.apple-music-link {
 padding: 8px 10px;
 font-size: 0.85rem;
 min-width: 170px;
}


.youtube-link:hover,
.spotify-link:hover,
.apple-music-link:hover {
 border-color: var(--accent);
 color: var(--accent-dark);
}


.youtube-link.is-disabled,
.spotify-link.is-disabled,
.apple-music-link.is-disabled {
 pointer-events: none;
 opacity: 0.6;
 border-color: var(--line);
 color: var(--muted);
}


.back-to-section {
 border: 1px solid var(--line);
 background: transparent;
 color: var(--muted);
 min-width: 140px;
 height: 42px;
 padding: 0 18px;
 border-radius: 999px;
 cursor: pointer;
 font-weight: 600;
 font-size: 0.9rem;
 display: none;
 align-items: center;
 justify-content: center;
 align-self: end;
 white-space: nowrap;
 margin-bottom: 6px;
}


.back-to-section:hover {
 border-color: var(--accent);
 color: var(--accent-dark);
}


.artist-tooltip {
 position: fixed;
 width: 120px;
 height: 120px;
 border-radius: 16px;
 overflow: hidden;
 border: 1px solid var(--line);
 background: #fff;
 box-shadow: 0 18px 30px rgba(31, 26, 20, 0.2);
 display: none;
 pointer-events: none;
 z-index: 20;
}


.artist-tooltip img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}


.audio-note {
 font-size: 0.9rem;
 color: var(--muted);
}


.main {
 display: grid;
 grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
 grid-template-rows: auto 1fr;
 column-gap: clamp(24px, 4vw, 48px);
 row-gap: 18px;
 margin-top: 24px;
 position: relative;
 z-index: 1;
 width: 100%;
}


.suggestions-pane {
 grid-column: 1;
 grid-row: 2;
 min-width: 0;
}


.matches-head {
 grid-column: 2;
 grid-row: 1;
}


.content-pane {
 grid-column: 2;
 grid-row: 2;
 display: grid;
 gap: 32px;
 min-width: 0;
}


.section-head {
 display: flex;
 align-items: baseline;
 justify-content: space-between;
 margin-bottom: 16px;
}


.section-head h2 {
 font-family: "Noto Serif SC", "Fraunces", serif;
 font-size: 1.6rem;
 text-decoration: underline;
 text-underline-offset: 6px;
}


.section-desc {
 color: var(--muted);
 margin-bottom: 16px;
 font-size: 0.95rem;
}


.section-help {
 color: var(--muted);
 margin-top: 0;
 margin-bottom: 16px;
 font-size: 0.9rem;
 display: none;
 border: 1px solid rgba(28, 42, 69, 0.35);
 background: #f6ead0;
 border-radius: 16px;
 padding: 14px;
}


.search-help-toggle {
 border: 1px solid rgba(28, 42, 69, 0.35);
 background: #f6ead0;
 color: var(--ink);
 padding: 6px 12px;
 border-radius: 999px;
 cursor: pointer;
 font-weight: 600;
 font-size: 0.8rem;
 font-family: "Space Grotesk", "Noto Serif SC", sans-serif;
 margin-bottom: 12px;
 display: inline-flex;
 align-items: center;
 gap: 8px;
 outline: none;
}


.search-help-toggle[aria-expanded="true"] {
 border-bottom-left-radius: 12px;
 border-bottom-right-radius: 12px;
 border-bottom-color: transparent;
 margin-bottom: -1px;
}


.search-help-toggle[aria-expanded="true"] + .section-help {
 border-top-left-radius: 0;
 border-top-right-radius: 0;
 border-top-color: transparent;
}


.search-help-toggle:hover {
 border-color: rgba(28, 42, 69, 0.35);
 color: var(--ink);
}


.search-help-toggle:focus,
.search-help-toggle:focus-visible {
 outline: none;
 box-shadow: none;
}


.search-help-chevron {
 width: 0;
 height: 0;
 border-left: 5px solid transparent;
 border-right: 5px solid transparent;
 border-bottom: 6px solid currentColor;
 transform: translateY(1px);
 transition: transform 0.2s ease;
}


.search-help-toggle[aria-expanded="true"] .search-help-chevron {
 transform: rotate(180deg) translateY(1px);
}


.results-list {
 display: grid;
 gap: 8px;
 max-height: var(--results-list-height);
 align-content: start;
 grid-auto-rows: max-content;
 align-items: start;
}


.results .results-list {
 margin-top: 16px;
 padding: 10px;
 border: 2px solid rgba(28, 42, 69, 0.35);
 border-radius: 24px;
 background: #f6ead0;
 overflow-y: auto;
 box-shadow: 0 16px 24px rgba(28, 42, 69, 0.12);
 height: var(--results-list-height);
 max-height: var(--results-list-height);
 max-width: 520px;
 width: 100%;
}


.song-card {
 text-align: left;
 border: 1px solid rgba(28, 42, 69, 0.2);
 background: #f2deba;
 padding: 12px 14px;
 border-radius: 16px;
 cursor: pointer;
 box-shadow: none;
 transition: transform 0.2s ease, box-shadow 0.2s ease;
 min-height: var(--song-card-height);
 width: 100%;
}


.results-empty {
 color: var(--muted);
 font-size: 0.9rem;
 text-align: left;
}


.song-card:hover {
 transform: translateY(-2px);
 box-shadow: 0 12px 24px rgba(31, 26, 20, 0.12);
}


.song-card.active {
 border-color: var(--accent);
 background: rgba(200, 79, 47, 0.08);
}


.song-card-row {
 display: flex;
 justify-content: space-between;
 gap: 16px;
 align-items: center;
 flex-wrap: wrap;
}


.song-card-title {
 font-size: 1.1rem;
 font-weight: 600;
 display: block;
}


.song-card-title-text {
 font-size: 1.1rem;
 font-weight: 600;
}


.song-card-artist {
 margin-top: 6px;
 color: var(--muted);
 font-size: 0.9rem;
 display: block;
}


.song-card-artist-text {
 font-size: 0.9rem;
 color: var(--muted);
}


.song-card-title .pinyin-stack-hz {
 font-size: 1.1rem;
 font-weight: 600;
}


.song-card-title .pinyin-stack-py {
 font-size: 0.72rem;
 color: var(--muted);
}


.song-card-artist .pinyin-stack-hz {
 font-size: 0.9rem;
 color: var(--muted);
}


.song-card-artist .pinyin-stack-py {
 font-size: 0.7rem;
 color: var(--muted);
}


.empty {
 margin-top: 16px;
 color: var(--muted);
 display: none;
}


.lyrics {
 background: #f6ead0;
 border: 2px solid rgba(28, 42, 69, 0.35);
 border-radius: 24px;
 padding: 24px;
 box-shadow: var(--shadow);
 width: 100%;
 min-width: 0;
}


.lyrics-head {
 display: flex;
 align-items: baseline;
 justify-content: space-between;
 gap: 20px;
 border-bottom: 1px solid var(--line);
 padding-bottom: 16px;
}


.lyrics-label {
 text-transform: uppercase;
 letter-spacing: 0.14em;
 font-size: 0.7rem;
 color: var(--muted);
 font-weight: 600;
}


.title-cn {
 font-family: "Noto Serif SC", serif;
 font-size: 2rem;
}


.title-py {
 font-size: 1rem;
 color: var(--accent-dark);
 margin-top: 4px;
}


.title-en {
 font-size: 0.95rem;
 color: var(--muted);
}


.meta {
 color: var(--muted);
 display: grid;
 gap: 6px;
 text-align: right;
 justify-items: end;
}


.meta .pinyin-stack {
 align-items: flex-end;
}


.meta span:empty {
 display: none;
}


.meta-label {
 text-transform: uppercase;
 letter-spacing: 0.12em;
 font-size: 0.7rem;
 font-weight: 600;
 color: var(--muted);
 margin-bottom: -4px;
}


#artist {
 margin-bottom: 6px;
}


.lyrics-lines {
 display: grid;
 gap: 22px;
 margin-top: 20px;
}


.line {
 padding: 16px 18px;
 border-radius: 14px;
 background: rgba(246, 234, 208, 0.8);
 border: 1px dashed rgba(28, 42, 69, 0.2);
}


.word-line {
 display: flex;
 flex-wrap: wrap;
 gap: 14px 8px;
 align-items: flex-end;
}


.word {
 display: inline-flex;
 flex-direction: column;
 align-items: center;
 min-width: 1.1em;
}


.word.space {
 min-width: 0.6em;
}


.line .pinyin {
 font-size: 0.75rem;
 color: var(--accent-dark);
 line-height: 1;
}


.line .hanzi {
 font-family: "Noto Serif SC", serif;
 font-size: 1.1rem;
 line-height: 1.2;
}


.line-plain {
 font-family: "Noto Serif SC", serif;
 font-size: 1.1rem;
 line-height: 1.2;
}


.line .english {
 color: var(--muted);
 font-size: 0.9rem;
 margin-top: 10px;
}


footer {
 margin-top: 72px;
 color: var(--muted);
 position: relative;
 z-index: 1;
}


footer p {
 font-size: 0.85rem;
}


@media (max-width: 1280px) {
 body {
   padding: 32px 20px 48px;
 }


 .hero {
   grid-template-columns: 1fr;
 }


 .main {
   grid-template-columns: 1fr;
   grid-template-rows: auto;
 }


 .suggestions-pane,
 .matches-head,
 .content-pane {
   grid-column: 1;
   grid-row: auto;
 }


 .lyrics-head {
   flex-direction: column;
   align-items: stretch;
 }


 .meta {
   text-align: right;
   justify-items: end;
   align-self: flex-end;
 }


 .meta .youtube-link,
 .meta .back-to-section {
   justify-self: end;
 }


 .song-card-row {
   align-items: flex-start;
 }


 .hero-linebreak {
   display: none;
 }

 .suggestions-group:last-child {
   margin-bottom: 24px;
   padding-bottom: 24px;
   position: relative;
 }

 .suggestions-group:last-child::after {
   content: "";
   display: block;
   border-bottom: 1px solid rgba(28, 42, 69, 0.2);
   width: calc(100vw - 40px);
   max-width: 520px;
   margin-top: 16px;
 }
}


@media (min-width: 961px) {
 body {
   padding: 32px clamp(20px, 4vw, 64px) 44px;
 }


 .main {
   margin-top: 0;
   row-gap: 8px;
 }


 .suggestions {
   margin-top: 0;
 }


 .matches-head {
   margin-top: -16px;
 }


 .content-pane {
   margin-top: -12px;
   gap: 12px;
 }


 .section-head {
   margin-bottom: 10px;
 }


 .section-help {
   margin-bottom: 10px;
 }


 .results .results-list {
   margin-top: 10px;
 }


 .lyrics {
   padding: 20px;
 }


 .lyrics-head {
   padding-bottom: 12px;
 }


 .lyrics-lines {
   margin-top: 12px;
 }
}


@media (max-width: 1280px) and (min-width: 961px) {
 .matches-head {
   margin-top: 50px;
 }

 .suggestions-pane {
   margin-top: 30px;
 }

 .lyrics {
   margin-top: 50px;
 }
}


@media (max-width: 1280px) {
 .search {
   flex-direction: column;
   align-items: stretch;
 }

 .search input {
   order: 1;
   width: 100%;
 }

 .search button {
   width: 100%;
 }

 #clearBtn {
   order: 2;
 }

 #searchBtn {
   order: 3;
 }

 .results .results-list,
 .lyrics {
   max-width: 100%;
 }

 .main {
   display: flex;
   flex-direction: column;
 }

 .content-pane {
   display: contents;
 }

 .matches-head {
   order: 1;
 }

 .results {
   order: 2;
 }

 .suggestions-pane {
   order: 3;
 }

 .lyrics {
   order: 4;
 }
}


@media (max-width: 960px) {
 .matches-head {
   margin-top: 50px;
 }

 .suggestions-pane {
   margin-top: 30px;
 }

 .lyrics {
   margin-top: 50px;
 }
}


@media (prefers-reduced-motion: no-preference) {
 .hero,
 .main,
 .lyrics,
 .hero-card,
 .song-card {
   animation: rise 0.8s ease both;
 }


 .song-card {
   animation-delay: 0.1s;
 }


 @keyframes rise {
   from {
     transform: translateY(10px);
     opacity: 0;
   }
   to {
     transform: translateY(0);
     opacity: 1;
   }
 }
}
