:root {
  --pink-050: #fff8fb;
  --pink-100: #fff0f6;
  --pink-200: #f7d3e1;
  --pink-300: #edb5cc;
  --pink-500: #cf6793;
  --pink-700: #924865;

  --purple-050: #faf8ff;
  --purple-100: #f2efff;
  --purple-200: #ddd6f7;
  --purple-300: #c9bee9;
  --purple-500: #806db5;
  --purple-700: #5e5188;

  --background: #fbf9fc;
  --surface: rgba(255, 255, 255, 0.93);
  --surface-solid: #ffffff;
  --text: #3e3742;
  --muted: #807783;
  --line: #e8e1e9;
  --shadow: 0 16px 42px rgba(82, 56, 87, 0.10);
  --small-shadow: 0 8px 24px rgba(82, 56, 87, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 280px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(
      circle at 7% 0%,
      rgba(237, 181, 204, 0.32),
      transparent 28%
    ),
    radial-gradient(
      circle at 95% 1%,
      rgba(201, 190, 233, 0.34),
      transparent 30%
    ),
    var(--background);
  font-family:
    Pretendard,
    "Noto Sans KR",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  word-break: keep-all;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(128, 109, 181, 0.25);
  outline-offset: 2px;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

.page {
  width: min(100%, 1060px);
  margin: 0 auto;
  padding: 24px 18px 64px;
}

.hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 26px;
  background:
    linear-gradient(
      100deg,
      rgba(255, 240, 246, 0.98) 0%,
      rgba(255, 240, 246, 0.98) 49.8%,
      rgba(242, 239, 255, 0.98) 50%,
      rgba(242, 239, 255, 0.98) 100%
    );
  box-shadow: var(--shadow);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 31px 22px 27px;
  text-align: center;
}

.hero-decoration {
  position: absolute;
  z-index: 1;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}

.hero-decoration-pink {
  top: 17px;
  left: 28px;
  color: rgba(207, 103, 147, 0.15);
  font-size: 58px;
  transform: rotate(-12deg);
}

.hero-decoration-purple {
  right: 31px;
  bottom: 15px;
  color: rgba(128, 109, 181, 0.16);
  font-size: 68px;
  transform: rotate(13deg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  color: var(--purple-700);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.hero h1 {
  margin: 13px 0 8px;
  color: #664157;
  font-size: clamp(29px, 6vw, 47px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.hero p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.mobile-break {
  display: none;
}

.total-count {
  display: inline-block;
  margin-top: 13px;
  color: var(--purple-700);
  font-size: 13px;
}

.control-panel {
  margin-top: 17px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 21px;
  background: var(--surface);
  box-shadow: var(--small-shadow);
  backdrop-filter: blur(14px);
}

.search-wrap {
  position: relative;
}

.search-symbol {
  position: absolute;
  top: 50%;
  left: 16px;
  color: var(--pink-700);
  transform: translateY(-52%);
  font-size: 23px;
  font-weight: 800;
  pointer-events: none;
}

.search-input {
  width: 100%;
  height: 53px;
  padding: 0 48px 0 46px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 15px;
  outline: none;
  background: var(--surface-solid);
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease;
}

.search-input::placeholder {
  color: #a39aa6;
}

.search-input:focus {
  border-color: var(--pink-500);
  box-shadow: 0 0 0 4px rgba(237, 181, 204, 0.30);
}

.clear-search-button {
  position: absolute;
  top: 50%;
  right: 9px;
  width: 35px;
  height: 35px;
  padding: 0;
  color: var(--muted);
  border: 0;
  border-radius: 10px;
  background: transparent;
  transform: translateY(-50%);
  font-size: 20px;
}

.clear-search-button:hover {
  background: var(--pink-100);
}

.filter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  margin-top: 11px;
}

.select-wrap {
  min-width: 0;
}

.select-input {
  width: 100%;
  height: 46px;
  padding: 0 13px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: none;
  background: var(--surface-solid);
}

.select-input:focus {
  border-color: var(--purple-500);
  box-shadow: 0 0 0 4px rgba(201, 190, 233, 0.37);
}

.recommend-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 14px;
  color: #7d4660;
  border: 1px solid var(--pink-200);
  border-radius: 13px;
  background: var(--pink-100);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  user-select: none;
}

.recommend-toggle input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--pink-500);
}

.secondary-button {
  min-height: 46px;
  padding: 0 15px;
  color: var(--purple-700);
  border: 1px solid var(--purple-200);
  border-radius: 13px;
  background: var(--purple-100);
  font-size: 13px;
  font-weight: 850;
}

.secondary-button:hover {
  background: #eae5fc;
}

.random-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 126px minmax(175px, 225px);
  gap: 10px;
  align-items: center;
  margin-top: 13px;
  padding: 13px;
  border-radius: 17px;
  background:
    linear-gradient(
      100deg,
      rgba(255, 240, 246, 0.96),
      rgba(242, 239, 255, 0.96)
    );
}

.random-copy {
  min-width: 0;
}

.random-copy strong {
  display: block;
  color: #67475a;
  font-size: 14px;
}

.random-copy span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.count-stepper {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  height: 43px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-solid);
}

.count-stepper button {
  padding: 0;
  color: var(--purple-700);
  border: 0;
  background: var(--purple-100);
  font-size: 19px;
  font-weight: 900;
}

.count-stepper button:hover {
  background: #e7e1fb;
}

.count-stepper input {
  width: 100%;
  min-width: 0;
  padding: 0;
  color: var(--text);
  border: 0;
  outline: none;
  background: var(--surface-solid);
  text-align: center;
  font-weight: 900;
  -moz-appearance: textfield;
}

.count-stepper input::-webkit-inner-spin-button,
.count-stepper input::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.primary-button {
  min-height: 44px;
  padding: 0 15px;
  color: white;
  border: 0;
  border-radius: 13px;
  background:
    linear-gradient(
      135deg,
      var(--pink-500),
      var(--purple-500)
    );
  box-shadow: 0 8px 19px rgba(117, 98, 176, 0.22);
  font-weight: 900;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease;
}

.primary-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 11px 23px rgba(117, 98, 176, 0.29);
}

.results {
  margin-top: 23px;
}

.result-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin: 0 3px 11px;
}

.result-heading h2 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.result-heading p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.result-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.tiny-button {
  min-height: 32px;
  padding: 0 10px;
  color: var(--purple-700);
  border: 0;
  border-radius: 10px;
  background: var(--purple-100);
  font-size: 11px;
  font-weight: 850;
}

.song-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.song-card {
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  min-width: 0;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(232, 225, 233, 0.91);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 7px 22px rgba(82, 56, 87, 0.055);
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.16s ease;
}

.song-card:hover,
.song-card:focus-visible {
  transform: translateY(-2px);
  border-color: #d5c8dc;
  box-shadow: 0 12px 28px rgba(82, 56, 87, 0.10);
}

.song-card:active {
  transform: translateY(0) scale(0.995);
}

.song-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 29px;
}


.recommend-badge {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 29px;
  padding: 0 11px;
  color: var(--purple-700);
  border-radius: 9px;
  background: var(--purple-100);
  font-size: 10px;
  font-weight: 950;
}

.recommend-badge.high {
  color: #9b4a6f;
  background: var(--pink-100);
}

.song-title {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.46;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.song-artist {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.song-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
}

.category-list {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 5px;
  min-width: 0;
}

.category-chip {
  padding: 5px 8px;
  color: #6e6573;
  border-radius: 999px;
  background: #f6f3f7;
  font-size: 10px;
  font-weight: 750;
}

.category-chip.main {
  color: #8c4767;
  background: var(--pink-100);
}

.song-card-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
}

.lyrics-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  color: #92516f;
  border: 1px solid #efc8d9;
  border-radius: 10px;
  background: var(--pink-100);
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.lyrics-link-button:hover,
.lyrics-link-button:focus-visible {
  background: #f9ddea;
}

.copy-song-button {
  flex: 0 0 auto;
  min-height: 32px;
  padding: 0 10px;
  color: var(--purple-700);
  border: 1px solid var(--purple-200);
  border-radius: 10px;
  background: var(--purple-050);
  font-size: 10px;
  font-weight: 900;
}

.copy-song-button:hover {
  background: var(--purple-100);
}

.empty-state,
.error-state {
  grid-column: 1 / -1;
  padding: 54px 20px;
  color: var(--muted);
  border: 1px dashed #dbd2df;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.67);
  text-align: center;
  line-height: 1.7;
}

.error-state {
  color: #994360;
  border-color: #edc8d6;
  background: var(--pink-100);
}

.more-area {
  margin-top: 15px;
  text-align: center;
}

.more-button {
  min-width: 160px;
  min-height: 44px;
  padding: 0 16px;
  color: var(--purple-700);
  border: 1px solid var(--purple-200);
  border-radius: 13px;
  background: var(--surface-solid);
  font-weight: 850;
}

.more-button:hover {
  background: var(--purple-050);
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: var(--background);
}

.loading-card {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--muted);
  font-size: 13px;
}

.loading-note {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: white;
  border-radius: 14px;
  background:
    linear-gradient(
      135deg,
      var(--pink-500),
      var(--purple-500)
    );
  animation: float-note 1.1s ease-in-out infinite;
  font-size: 20px;
  font-weight: 900;
}

@keyframes float-note {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(49, 38, 53, 0.48);
  backdrop-filter: blur(5px);
}

.modal-card {
  width: min(100%, 620px);
  max-height: min(88vh, 780px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.93);
  border-radius: 23px;
  background: var(--surface-solid);
  box-shadow: 0 27px 85px rgba(42, 30, 48, 0.29);
}

.modal-header {
  padding: 21px 20px 17px;
  text-align: center;
  background:
    linear-gradient(
      100deg,
      var(--pink-100),
      var(--purple-100)
    );
}

.modal-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: white;
  border-radius: 12px;
  background:
    linear-gradient(
      135deg,
      var(--pink-500),
      var(--purple-500)
    );
  font-weight: 900;
}

.modal-header h2 {
  margin: 10px 0 0;
  color: #68465a;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.modal-header p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.random-list {
  max-height: 52vh;
  margin: 0;
  padding: 13px 17px;
  overflow-y: auto;
  list-style: none;
}

.random-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  padding: 12px 5px;
  border-bottom: 1px solid #eee8ef;
}

.random-item:last-child {
  border-bottom: 0;
}

.random-index {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: var(--purple-700);
  border-radius: 10px;
  background: var(--purple-100);
  font-size: 12px;
  font-weight: 950;
}

.random-song-title {
  font-size: 14px;
  font-weight: 950;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.random-song-artist {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid #eee8ef;
}

.modal-button {
  min-height: 44px;
  padding: 0 11px;
  border: 0;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 900;
}

.modal-button.redraw {
  color: white;
  background:
    linear-gradient(
      135deg,
      var(--pink-500),
      var(--purple-500)
    );
}

.modal-button.copy {
  color: var(--purple-700);
  background: var(--purple-100);
}

.modal-button.close {
  color: #746b77;
  background: #f3f0f4;
}

.toast {
  position: fixed;
  z-index: 3000;
  left: 50%;
  bottom: max(25px, env(safe-area-inset-bottom));
  display: none;
  max-width: calc(100% - 30px);
  padding: 11px 15px;
  color: white;
  border-radius: 12px;
  background: rgba(52, 42, 56, 0.93);
  box-shadow: 0 8px 25px rgba(45, 32, 52, 0.23);
  transform: translateX(-50%);
  text-align: center;
  font-size: 12px;
  font-weight: 850;
}

.toast.show {
  display: block;
  animation: toast-in 0.18s ease;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translate(-50%, 7px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}


/* 전체 목록 표 페이지 */
.all-page {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 18px 18px 52px;
}

.all-toolbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(240px, 560px) auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 13px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 17px;
  background: rgba(251, 249, 252, 0.94);
  box-shadow: var(--small-shadow);
  backdrop-filter: blur(14px);
}

.all-title-wrap h1 {
  margin: 0;
  color: #664157;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.all-title-wrap p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.all-search {
  width: 100%;
  height: 43px;
  padding: 0 13px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
  background: white;
}

.all-search:focus {
  border-color: var(--pink-500);
  box-shadow: 0 0 0 4px rgba(237, 181, 204, 0.28);
}

.back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--purple-700);
  border: 1px solid var(--purple-200);
  border-radius: 11px;
  background: var(--purple-100);
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.sheet-frame {
  overflow: auto;
  border: 1px solid #dcd5df;
  border-radius: 13px;
  background: white;
  box-shadow: var(--small-shadow);
  -webkit-overflow-scrolling: touch;
}

.song-sheet {
  width: 100%;
  min-width: 850px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  font-size: 12px;
}

.song-sheet th,
.song-sheet td {
  height: 38px;
  padding: 7px 10px;
  overflow: hidden;
  border-right: 1px solid #e6e0e7;
  border-bottom: 1px solid #e6e0e7;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.song-sheet th:last-child,
.song-sheet td:last-child {
  border-right: 0;
}

.song-sheet thead th {
  position: sticky;
  top: 0;
  z-index: 5;
  color: #67475a;
  background: linear-gradient(100deg, #fff0f6, #f2efff);
  font-weight: 900;
}

.song-sheet tbody tr {
  cursor: pointer;
  transition: background 0.12s ease;
}

.song-sheet tbody tr:nth-child(even) {
  background: #fcfafc;
}

.song-sheet tbody tr:hover,
.song-sheet tbody tr:focus-visible {
  outline: none;
  background: #f6f1ff;
}

.song-sheet tbody tr:active {
  background: #eee8fb;
}


.sheet-main-category {
  width: 140px;
}

.sheet-recommendation {
  width: 105px;
}

.sheet-title {
  width: 34%;
  font-weight: 850;
}

.sheet-artist {
  width: 23%;
}

.sheet-detail-category {
  width: 25%;
}

.sheet-recommend-text {
  color: var(--pink-700);
  font-weight: 800;
}

.all-empty {
  padding: 55px 20px;
  color: var(--muted);
  text-align: center;
}

.all-toast-hint {
  margin: 10px 2px 0;
  color: var(--muted);
  text-align: right;
  font-size: 10px;
}

@media (max-width: 760px) {
  .page {
    padding: 12px 11px 48px;
  }

  .hero {
    border-radius: 21px;
  }

  .hero-content {
    padding: 25px 16px 22px;
  }

  .hero-decoration-pink {
    top: 14px;
    left: 15px;
    font-size: 42px;
  }

  .hero-decoration-purple {
    right: 16px;
    bottom: 14px;
    font-size: 48px;
  }

  .all-page {
    padding: 9px 9px 38px;
  }

  .all-toolbar {
    position: static;
    grid-template-columns: 1fr auto;
    padding: 10px;
  }

  .all-title-wrap {
    min-width: 0;
  }

  .all-title-wrap h1 {
    font-size: 17px;
  }

  .all-search {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .song-sheet {
    min-width: 820px;
    font-size: 11px;
  }

  .mobile-break {
    display: initial;
  }

  .control-panel {
    padding: 12px;
    border-radius: 18px;
  }

  .filter-row {
    grid-template-columns: 1fr 1fr;
  }

  .select-wrap {
    grid-column: 1 / -1;
  }

  .random-panel {
    grid-template-columns: 1fr 116px;
  }

  .primary-button {
    grid-column: 1 / -1;
  }

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

  .result-heading {
    align-items: flex-end;
  }

  .song-footer {
    align-items: flex-start;
  }

  .modal-actions {
    grid-template-columns: 1fr 1fr;
  }

  .modal-button.close {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  .filter-row {
    grid-template-columns: 1fr;
  }

  .select-wrap {
    grid-column: auto;
  }

  .random-panel {
    grid-template-columns: 1fr;
  }

  .result-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .result-actions {
    width: 100%;
    justify-content: space-between;
  }

  .song-footer {
    flex-direction: column;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


.song-title.no-badge {
  margin-top: 0;
}


.request-notice {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 15px;
  padding: 13px 15px;
  color: #6f4b5e;
  border: 1px solid rgba(232, 188, 210, 0.9);
  border-radius: 15px;
  background:
    linear-gradient(
      100deg,
      rgba(255, 241, 246, 0.96),
      rgba(246, 242, 255, 0.96)
    );
  box-shadow: 0 7px 20px rgba(82, 56, 87, 0.055);
}

.request-notice-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  color: white;
  border-radius: 11px;
  background:
    linear-gradient(
      135deg,
      var(--pink-500),
      var(--purple-500)
    );
  font-size: 15px;
  font-weight: 900;
}

.request-notice p {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
}

.request-notice strong {
  color: var(--pink-700);
  font-weight: 950;
}



.request-notice-line {
  display: block;
}

.request-notice-line + .request-notice-line {
  margin-top: 4px;
}

@media (max-width: 520px) {
  .request-notice {
    align-items: flex-start;
    padding: 12px 13px;
  }

  .request-notice-icon {
    width: 31px;
    height: 31px;
  }
}

@media (max-width: 520px) {
  .song-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .song-card-actions {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .song-card-actions > .lyrics-link-button,
  .song-card-actions > .copy-song-button {
    width: 100%;
    min-width: 0;
    min-height: 38px;
    padding-right: 8px;
    padding-left: 8px;
  }

  .song-card-actions > .copy-song-button:only-child {
    grid-column: 2;
  }
}


.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 26px auto 18px;
  padding: 16px 12px;
  color: rgba(99, 72, 91, 0.72);
  text-align: center;
  font-size: 10px;
  line-height: 1.65;
}

.site-footer p {
  margin: 0;
}

.site-footer p + p {
  margin-top: 2px;
}

@media (max-width: 520px) {
  .site-footer {
    width: calc(100% - 24px);
    margin-top: 20px;
    padding-right: 4px;
    padding-left: 4px;
    font-size: 9px;
  }
}
