.home-header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
  padding: 0 16px;
  min-width: 0;
  font-family: Georgia, "Times New Roman", serif;
}

.home-header-nav a {
  color: #e8eaef;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.home-header-nav a:hover {
  color: #fff;
  text-decoration: underline;
}

.home-header-nav__sep {
  color: rgba(232, 234, 239, 0.45);
  user-select: none;
}

body.public-page-body {
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
  padding-top: 0;
}

body.public-page-body.has-discount-ribbon {
  padding-top: 0;
}

body.public-page-body > header {
  flex: 0 0 auto;
  z-index: 1001;
}

body.public-page-body .discount-ribbon {
  flex: 0 0 auto;
  z-index: 1000;
}

html.public-page-hold body.public-page-body > main {
  opacity: 0;
  transform: translateY(8px);
}

html.public-page-ready body.public-page-body > main {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

body.public-page-body > main {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  flex: 1 1 0%;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.public-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 20px 72px;
  width: 100%;
  box-sizing: border-box;
  flex: 1 0 auto;
}

.public-page--examples {
  max-width: 1680px;
}

.public-page--your-song {
  max-width: 1500px;
}

.public-page--your-song-detail {
  max-width: 1040px;
}

.public-page--site-map {
  max-width: 1120px;
}

.public-page--example-detail {
  --example-accent: #7eb4d4;
  --example-accent-strong: #4f6f86;
  --example-glow: rgba(126, 180, 212, 0.22);
  --example-bg-start: rgba(238, 246, 250, 0.98);
  --example-bg-end: rgba(255, 255, 255, 0.96);
  max-width: none;
  background:
    radial-gradient(circle at 18% 4%, color-mix(in srgb, var(--example-accent) 20%, transparent) 0%, transparent 28%),
    radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--example-accent) 14%, transparent) 0%, transparent 30%);
}

.public-hero {
  text-align: center;
  margin: 0 auto 34px;
  max-width: 760px;
}

.public-hero h1 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  color: #2d4a5c;
}

.public-hero p {
  margin: 0;
  color: #475569;
  font-size: 17px;
}

.site-map-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.site-map-card {
  padding: 24px;
  border: 1px solid color-mix(in srgb, #7eb4d4 24%, #ffffff);
  border-radius: 18px;
  background:
    radial-gradient(circle at 14% 0%, rgba(126, 180, 212, 0.16) 0%, transparent 34%),
    linear-gradient(145deg, rgba(238, 246, 250, 0.96) 0%, rgba(255, 255, 255, 0.96) 100%);
  box-shadow: 0 14px 34px rgba(45, 74, 92, 0.1);
}

.site-map-card--wide {
  margin-top: 22px;
}

.site-map-card h2 {
  margin: 0 0 14px;
  color: #2d4a5c;
  font-family: Georgia, "Times New Roman", serif;
  text-align: center;
}

.site-map-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-map-card a {
  color: #2d4a5c;
  font-weight: 700;
  text-decoration: none;
}

.site-map-card a:hover {
  color: #4f6f86;
  text-decoration: underline;
}

.site-map-card p {
  margin: 0;
  color: #475569;
  text-align: center;
}

.site-map-link-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.site-map-link-cloud a {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(126, 180, 212, 0.28);
  box-shadow: 0 8px 18px rgba(45, 74, 92, 0.06);
}

.example-list {
  display: grid;
  gap: 24px;
}

.reviews-masonry {
  column-count: 3;
  column-gap: 22px;
  min-height: min(720px, calc(100dvh - 260px));
}

.examples-masonry {
  column-count: 3;
  column-gap: 24px;
  min-height: min(760px, calc(100dvh - 260px));
}

.your-song-masonry {
  column-count: 3;
  column-gap: 24px;
  min-height: min(760px, calc(100dvh - 260px));
}

.example-card,
.review-card-public,
.your-song-card,
.your-song-detail-card,
.your-song-example-link-card {
  background: #fff;
  border: 1px solid #dbe4ee;
  border-radius: 18px;
  box-shadow: 0 8px 26px rgba(45, 74, 92, 0.08);
  padding: 24px;
}

.example-card,
.review-card-public,
.your-song-card,
.your-song-detail-card,
.your-song-example-link-card {
  --example-accent: #7eb4d4;
  --example-accent-strong: #4f6f86;
  --example-glow: rgba(126, 180, 212, 0.22);
  --example-bg-start: rgba(238, 246, 250, 0.98);
  --example-bg-end: rgba(255, 255, 255, 0.96);
  position: relative;
  overflow: hidden;
  border-color: color-mix(in srgb, var(--example-accent) 34%, #ffffff);
  background:
    radial-gradient(circle at 12% 0%, color-mix(in srgb, var(--example-accent) 22%, transparent) 0%, transparent 36%),
    linear-gradient(145deg, var(--example-bg-start) 0%, var(--example-bg-end) 100%);
  box-shadow: 0 16px 38px var(--example-glow), 0 8px 22px rgba(45, 74, 92, 0.08);
}

.example-card > *,
.review-card-public > *,
.your-song-card > *,
.your-song-detail-card > *,
.your-song-example-link-card > * {
  position: relative;
  z-index: 1;
}

.example-card--husband {
  --example-accent: #7f8fb9;
  --example-accent-strong: #445579;
  --example-glow: rgba(127, 143, 185, 0.25);
  --example-bg-start: rgba(239, 242, 251, 0.98);
  --example-bg-end: rgba(255, 255, 255, 0.96);
}

.example-card--wife {
  --example-accent: #d88aa8;
  --example-accent-strong: #8c4965;
  --example-glow: rgba(216, 138, 168, 0.26);
  --example-bg-start: rgba(255, 240, 246, 0.98);
  --example-bg-end: rgba(255, 253, 254, 0.96);
}

.example-card--mother {
  --example-accent: #d8a93d;
  --example-accent-strong: #8a6418;
  --example-glow: rgba(216, 169, 61, 0.28);
  --example-bg-start: rgba(255, 247, 224, 0.98);
  --example-bg-end: rgba(255, 255, 251, 0.96);
}

.example-card--father {
  --example-accent: #6f91c8;
  --example-accent-strong: #39567f;
  --example-glow: rgba(111, 145, 200, 0.25);
  --example-bg-start: rgba(235, 242, 255, 0.98);
  --example-bg-end: rgba(255, 255, 255, 0.96);
}

.example-card--brother {
  --example-accent: #4fa3b8;
  --example-accent-strong: #2f6573;
  --example-glow: rgba(79, 163, 184, 0.24);
  --example-bg-start: rgba(232, 248, 252, 0.98);
  --example-bg-end: rgba(255, 255, 255, 0.96);
}

.example-card--sister {
  --example-accent: #c992d8;
  --example-accent-strong: #7a4b86;
  --example-glow: rgba(201, 146, 216, 0.25);
  --example-bg-start: rgba(251, 240, 255, 0.98);
  --example-bg-end: rgba(255, 255, 255, 0.96);
}

.example-card--uncle {
  --example-accent: #9a8c6f;
  --example-accent-strong: #5d503c;
  --example-glow: rgba(154, 140, 111, 0.23);
  --example-bg-start: rgba(248, 244, 236, 0.98);
  --example-bg-end: rgba(255, 255, 255, 0.96);
}

.example-card--aunty {
  --example-accent: #cf8f72;
  --example-accent-strong: #814d37;
  --example-glow: rgba(207, 143, 114, 0.24);
  --example-bg-start: rgba(255, 241, 234, 0.98);
  --example-bg-end: rgba(255, 255, 255, 0.96);
}

.example-card--grandfather {
  --example-accent: #7f9f87;
  --example-accent-strong: #4a654f;
  --example-glow: rgba(127, 159, 135, 0.23);
  --example-bg-start: rgba(239, 248, 241, 0.98);
  --example-bg-end: rgba(255, 255, 255, 0.96);
}

.example-card--grandmother {
  --example-accent: #c9a27d;
  --example-accent-strong: #7a5738;
  --example-glow: rgba(201, 162, 125, 0.25);
  --example-bg-start: rgba(255, 245, 235, 0.98);
  --example-bg-end: rgba(255, 255, 255, 0.96);
}

.example-card--children {
  --example-accent: #7db89a;
  --example-accent-strong: #3f7359;
  --example-glow: rgba(125, 184, 154, 0.25);
  --example-bg-start: rgba(238, 250, 244, 0.98);
  --example-bg-end: rgba(255, 255, 255, 0.96);
}

.example-card--someone-special {
  --example-accent: #8fb6d8;
  --example-accent-strong: #4b7190;
  --example-glow: rgba(143, 182, 216, 0.24);
  --example-bg-start: rgba(238, 247, 255, 0.98);
  --example-bg-end: rgba(255, 255, 255, 0.96);
}

.example-card--partner {
  --example-accent: #d98aa4;
  --example-accent-strong: #8d4860;
  --example-glow: rgba(217, 138, 164, 0.25);
  --example-bg-start: rgba(255, 239, 244, 0.98);
  --example-bg-end: rgba(255, 252, 253, 0.96);
}

.example-card--other {
  --example-accent: #9aa8b6;
  --example-accent-strong: #596879;
  --example-glow: rgba(154, 168, 182, 0.22);
  --example-bg-start: rgba(244, 247, 250, 0.98);
  --example-bg-end: rgba(255, 255, 255, 0.96);
}

.example-card--myself {
  --example-accent: #8a9be0;
  --example-accent-strong: #4d5a9a;
  --example-glow: rgba(138, 155, 224, 0.24);
  --example-bg-start: rgba(241, 243, 255, 0.98);
  --example-bg-end: rgba(255, 255, 255, 0.96);
}

.example-card--placeholder {
  --example-accent: #b8c7d4;
  --example-accent-strong: #64748b;
  --example-glow: rgba(100, 116, 139, 0.16);
}

.example-card--placeholder::after {
  content: "Coming Soon";
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d4a5c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(1px);
}

.example-placeholder-inner {
  filter: blur(2px);
  opacity: 0.48;
  pointer-events: none;
  user-select: none;
}

.review-card-public,
.example-card,
.your-song-card {
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 22px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

.review-card-head-public {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.example-card h2,
.review-card-public h2,
.your-song-card h2,
.your-song-examples-section h2,
.your-song-example-link-card h3 {
  margin: 0 0 10px;
  color: #2d4a5c;
  font-family: Georgia, "Times New Roman", serif;
}

.your-song-card p,
.your-song-detail-card p,
.your-song-example-link-card p {
  color: #35495a;
  line-height: 1.6;
}

.your-song-ideas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
}

.your-song-ideas span {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--example-accent) 16%, rgba(255, 255, 255, 0.68));
  color: var(--example-accent-strong);
  font-size: 12px;
  font-weight: 700;
}

.your-song-card-foot {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  margin-top: 18px;
}

.your-song-card-player {
  margin: 6px 0 14px;
}

.your-song-category-player {
  margin: 16px 0 10px;
}

.review-card-player {
  margin: 18px 0 14px;
}

.public-example-detail-player {
  display: block;
  width: min(760px, 100%);
  max-width: 760px;
  margin: 28px auto 34px !important;
}

.public-example-detail-player .public-example-premium-player {
  padding: 18px;
  border-radius: 22px;
  box-shadow:
    0 18px 42px color-mix(in srgb, var(--example-accent) 28%, transparent),
    0 8px 18px rgba(45, 74, 92, 0.1);
}

.public-example-detail-player .public-example-play-btn--premium {
  width: 64px;
  height: 64px;
  font-size: 24px;
}

.review-card-player .public-example-premium-player {
  flex-wrap: wrap;
  gap: 10px 12px;
  padding: 13px;
}

.review-card-player .public-example-waveform-wrap {
  flex: 1 1 calc(100% - 66px);
}

.review-card-player .public-example-premium-player .public-example-like-row {
  flex: 1 0 100%;
  justify-content: center;
  padding-top: 2px;
}

.your-song-featured-label {
  margin: 14px 0 6px;
  color: var(--example-accent-strong);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.your-song-card-foot > .public-link-btn {
  align-self: center;
  background: linear-gradient(165deg, color-mix(in srgb, var(--example-accent) 46%, #ffffff) 0%, var(--example-accent) 48%, var(--example-accent-strong) 100%);
  box-shadow:
    0 8px 16px color-mix(in srgb, var(--example-accent) 24%, transparent),
    0 3px 7px rgba(45, 74, 92, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.your-song-card-foot > .public-link-btn:hover {
  background: linear-gradient(165deg, color-mix(in srgb, var(--example-accent) 34%, #ffffff) 0%, var(--example-accent) 48%, var(--example-accent-strong) 100%);
  text-decoration: none;
}

.your-song-detail-card {
  margin: 0 auto 36px;
}

.your-song-ideas--detail {
  justify-content: center;
  margin-top: 20px;
}

.your-song-content-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.your-song-content-section {
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--example-accent) 22%, #ffffff);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 10px 22px color-mix(in srgb, var(--example-accent) 14%, transparent);
}

.your-song-content-section h2 {
  margin: 0 0 12px;
  color: #2d4a5c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  text-align: center;
}

.your-song-content-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.your-song-content-tags span {
  display: inline-block;
  padding: 7px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--example-accent) 14%, rgba(255, 255, 255, 0.76));
  color: var(--example-accent-strong);
  font-size: 12px;
  font-weight: 700;
}

.your-song-examples-section {
  margin-top: 36px;
}

.your-song-examples-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

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

.your-song-example-link-card .public-link-btn {
  margin-top: 8px;
}

.your-song-example-link-card .public-card-actions {
  justify-content: center;
}

.example-card h2 {
  text-align: center;
  margin-bottom: 16px;
  color: #2d4a5c;
}

.example-card-topline {
  margin-bottom: 14px;
}

.example-card-head-public {
  align-items: center;
  margin-bottom: 16px;
}

.example-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
}

.example-meta-pill {
  border: 1px solid color-mix(in srgb, var(--example-accent) 28%, #ffffff);
  border-radius: 14px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.56);
  color: #334155;
  font-size: 13px;
  line-height: 1.25;
  box-shadow: 0 8px 18px rgba(45, 74, 92, 0.06);
}

.example-meta-pill span {
  display: block;
  margin-bottom: 3px;
  color: var(--example-accent-strong);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.example-meta-pill--delivery {
  background: color-mix(in srgb, var(--example-accent) 17%, rgba(255, 255, 255, 0.7));
  font-weight: 700;
}

.example-card-review {
  margin: 16px 0 0;
  padding: 18px 18px 16px;
  border-left: 2px solid color-mix(in srgb, var(--example-accent) 42%, #ffffff);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.28) 100%);
  color: #35495a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.example-card-review p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0.005em;
}

.example-card-review cite {
  display: block;
  margin-top: 10px;
  color: #5a6b78;
  font-style: normal;
  font-weight: 700;
}

.example-card-review--0 p {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.example-card-review--1 p {
  font-family: "Segoe Print", "Bradley Hand ITC", Georgia, serif;
  font-size: 15px;
}

.example-card-review--2 p {
  font-family: "Lucida Handwriting", "Segoe Script", Georgia, serif;
  font-size: 15px;
}

.example-card-review--3 p {
  font-family: "Trebuchet MS", Georgia, serif;
  font-size: 16px;
  font-style: italic;
}

.example-writeup {
  color: #334155;
  white-space: pre-wrap;
}

.example-detail-flow {
  max-width: 820px;
  margin: 0 auto;
}

.example-player {
  width: 100%;
  margin: 18px 0 10px;
}

.public-example-player {
  margin: 28px 0;
}

.public-example-card-player {
  margin: 18px 0 0;
}

.public-example-card-player .public-example-premium-player {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
  padding: 14px 14px;
  border: 1px solid color-mix(in srgb, var(--example-accent) 32%, #ffffff);
  border-radius: 18px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--example-accent) 12%, #ffffff) 0%, rgba(255, 255, 255, 0.94) 100%);
  box-shadow: 0 12px 26px color-mix(in srgb, var(--example-accent) 20%, transparent);
}

.home-player-panel {
  background: linear-gradient(135deg, #eef6fa 0%, #ffffff 100%);
  border-radius: 14px;
  padding: 16px 20px;
  border: 1px solid #d4e4f0;
  box-shadow: 0 10px 26px rgba(45, 74, 92, 0.15);
  margin-bottom: 14px;
}

.home-current-track-info {
  text-align: center;
  margin-bottom: 10px;
}

.home-current-track-info span {
  font-size: 13px;
  color: #5a6b78;
}

.public-example-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}

.public-example-controls--compact {
  justify-content: center;
  margin-bottom: 0;
}

.public-example-controls .public-example-like-row {
  flex: 0 0 auto;
  margin: 0 0 0 4px;
}

.public-example-premium-player .public-example-like-row {
  flex: 0 0 auto;
  margin: 0;
}

.home-player-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.home-audio-nav-btn {
  background: #e4f0f8;
  color: #4f6f86;
  border: 1px solid #d4e4f0;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.home-audio-nav-btn:hover {
  background: #dceef8;
}

.public-example-play-btn {
  background: var(--example-accent, #7eb4d4);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}

.public-example-play-btn:hover {
  background: var(--example-accent-strong, #6aa8c8);
}

.public-example-play-btn--premium {
  width: 54px;
  height: 54px;
  font-size: 20px;
  box-shadow: 0 10px 22px color-mix(in srgb, var(--example-accent) 36%, transparent);
}

.public-example-player.is-playing .public-example-play-btn--premium {
  box-shadow:
    0 0 0 6px color-mix(in srgb, var(--example-accent) 18%, transparent),
    0 12px 28px color-mix(in srgb, var(--example-accent) 42%, transparent);
}

.public-example-waveform-wrap {
  flex: 1 1 auto;
  min-width: 0;
}

.public-example-now-playing {
  margin: 0 0 4px;
  color: #4f6f86;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.public-example-player.is-playing .public-example-now-playing {
  opacity: 1;
  text-shadow: 0 0 12px color-mix(in srgb, var(--example-accent) 70%, transparent);
}

.public-example-waveform-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.public-example-time {
  flex: 0 0 auto;
  min-width: 32px;
  color: #64748b;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.public-example-waveform {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1 1 auto;
  min-width: 92px;
  height: 40px;
  gap: 3px;
}

.public-example-waveform span {
  width: 3px;
  height: var(--bar-height);
  min-height: 8px;
  border-radius: 999px;
  background: rgba(79, 111, 134, 0.2);
  transition: background 0.12s ease, transform 0.12s ease, opacity 0.12s ease;
}

.public-example-waveform span.is-active {
  background: linear-gradient(180deg, var(--example-accent, #7eb4d4) 0%, var(--example-accent-strong, #4f6f86) 100%);
  opacity: 1;
}

.public-example-player.is-playing .public-example-waveform span.is-active {
  animation: premium-wave-pulse 0.72s ease-in-out infinite alternate;
}

@keyframes premium-wave-pulse {
  from {
    transform: scaleY(0.82);
  }
  to {
    transform: scaleY(1.16);
  }
}

@media (max-width: 520px) {
  .public-example-card-player .public-example-premium-player {
    gap: 8px;
    padding: 12px;
  }

  .public-example-play-btn--premium {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .public-example-waveform {
    gap: 2px;
    min-width: 70px;
  }

  .public-example-waveform span {
    width: 2px;
  }

  .public-example-time {
    min-width: 28px;
    font-size: 11px;
  }
}

.home-progress-wrap {
  flex: 1;
  margin-left: 16px;
}

.public-example-progress {
  width: 100%;
  height: 6px;
  cursor: pointer;
  accent-color: #7eb4d4;
}

.home-playlist-panel {
  background: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  border: 1px solid #d4e4f0;
  box-shadow: 0 10px 26px rgba(45, 74, 92, 0.15);
}

.playlist-item {
  background: #f8fafc;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e8f0f8;
}

.playlist-item:hover,
.playlist-item.is-current {
  background: #dceef8;
  border-color: #b8d8e8;
}

.playlist-track-index {
  font-size: 18px;
  color: #5a6b78;
  width: 24px;
}

.playlist-track-title {
  flex: 1;
  font-size: 16px;
  color: #4a5a6a;
}

.playlist-track-duration {
  font-size: 14px;
  color: #5a6b78;
}

.playlist-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.public-example-like-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
}

.public-example-like-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(220, 38, 38, 0.22);
  border-radius: 999px;
  background: #fff;
  color: #94a3b8;
  cursor: pointer;
  transition: transform 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.public-example-like-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.public-example-like-btn:hover {
  color: #dc2626;
  border-color: rgba(220, 38, 38, 0.42);
  box-shadow: 0 8px 18px rgba(220, 38, 38, 0.12);
  transform: translateY(-1px);
}

.public-example-like-btn.is-liked {
  color: #dc2626;
  border-color: rgba(220, 38, 38, 0.5);
  background: #fff1f2;
}

.public-example-like-count {
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
}

.playlist-actions.public-example-like-row {
  margin: 0;
}

.public-review-quote {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-left: 4px solid #7eb4d4;
  background: #f8fafc;
  color: #334155;
}

.public-example-review {
  margin: 32px 0 0;
  background: transparent;
  border: 0;
  border-radius: 18px;
  padding: 13px 18px;
  box-shadow: none;
  box-sizing: border-box;
}

.home-review-topline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.home-review-verified,
.home-review-for {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.home-review-verified::before {
  content: "✓ ";
}

.home-review-verified {
  justify-self: end;
}

.home-review-for {
  width: fit-content;
  background: rgba(126, 180, 212, 0.16);
  color: #4f6f86;
}

.home-review-for.is-empty {
  visibility: hidden;
}

.home-review-stars {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 2px;
  white-space: nowrap;
  text-align: center;
}

.home-review-stars-mobile,
.home-review-for-mobile {
  display: none;
}

.public-example-review p {
  margin: 0;
  color: #35495a;
  line-height: 1.45;
}

.public-example-review cite {
  display: block;
  margin-top: 8px;
  color: #5a6b78;
  font-style: normal;
  font-weight: 700;
}

.home-review-country {
  display: block;
  margin-top: 2px;
  color: #718292;
  font-size: 13px;
  font-weight: 500;
}

.public-stars {
  color: #d97706;
  letter-spacing: 1px;
  font-size: 18px;
}

.public-card-meta {
  color: #64748b;
  font-size: 14px;
  margin-top: 8px;
}

.review-card-public .home-review-verified,
.public-review-quote .home-review-verified {
  display: inline-block;
  flex: 0 0 auto;
  margin-top: 0;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.review-card-public .home-review-verified::before,
.public-review-quote .home-review-verified::before {
  content: "✓ ";
}

.public-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.example-card .public-card-actions {
  justify-content: center;
}

.review-card-public .public-card-actions {
  justify-content: center;
}

.example-card .public-link-btn,
.public-page--example-detail .public-link-btn,
.public-page--your-song-detail .public-link-btn,
.review-card-public .public-link-btn {
  background: linear-gradient(165deg, color-mix(in srgb, var(--example-accent) 48%, #ffffff) 0%, var(--example-accent) 48%, var(--example-accent-strong) 100%);
  box-shadow:
    0 8px 16px color-mix(in srgb, var(--example-accent) 24%, transparent),
    0 3px 7px rgba(45, 74, 92, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.example-card .public-link-btn:hover,
.public-page--example-detail .public-link-btn:hover,
.public-page--your-song-detail .public-link-btn:hover,
.review-card-public .public-link-btn:hover {
  filter: brightness(1.05);
  text-decoration: none;
}

.home-section-cta {
  text-align: center;
  margin-top: 30px;
}

@keyframes home-cta-pulse {
  0%,
  100% {
    box-shadow:
      inset 0 0 0 2px #4f7a94,
      0 6px 20px rgba(45, 74, 92, 0.3), 0 2px 6px rgba(45, 74, 92, 0.15),
      0 0 32px 14px rgba(120, 190, 230, 0.2),
      0 0 56px 26px rgba(120, 195, 225, 0.1);
  }
  50% {
    box-shadow:
      inset 0 0 0 2px #4f7a94,
      0 8px 28px rgba(45, 74, 92, 0.38),
      0 4px 10px rgba(45, 74, 92, 0.22),
      0 0 48px 20px rgba(100, 210, 255, 0.32),
      0 0 88px 36px rgba(100, 210, 255, 0.16);
  }
}

a.home-cta-btn {
  display: inline-block;
  box-sizing: border-box;
  padding: 16px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff !important;
  text-decoration: none;
  border: none;
  border-radius: 16px;
  background: linear-gradient(165deg, #9ecce8 0%, #7eb4d4 45%, #5c96b4 100%);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-shadow:
    inset 0 0 0 2px #4f7a94,
    0 6px 20px rgba(45, 74, 92, 0.3), 0 2px 6px rgba(45, 74, 92, 0.15),
    0 0 32px 14px rgba(120, 190, 230, 0.2),
    0 0 56px 26px rgba(120, 195, 225, 0.1);
  transition: filter 0.2s ease;
  animation: home-cta-pulse 2.1s ease-in-out infinite;
}

a.home-cta-btn:hover {
  color: #fff !important;
  background: linear-gradient(165deg, #b0d6ee 0%, #8fc0dc 45%, #6ca4c4 100%);
  filter: brightness(1.04);
  text-decoration: none;
}

.public-page--example-detail a.home-cta-btn {
  background: linear-gradient(165deg, color-mix(in srgb, var(--example-accent) 55%, #ffffff) 0%, var(--example-accent) 48%, var(--example-accent-strong) 100%);
  box-shadow:
    inset 0 0 0 2px color-mix(in srgb, var(--example-accent-strong) 78%, #ffffff),
    0 6px 20px color-mix(in srgb, var(--example-accent) 30%, transparent),
    0 0 34px 14px color-mix(in srgb, var(--example-accent) 22%, transparent),
    0 0 58px 26px color-mix(in srgb, var(--example-accent) 12%, transparent);
  animation: example-detail-cta-pulse 2.1s ease-in-out infinite;
}

.public-page--example-detail a.home-cta-btn:hover {
  background: linear-gradient(165deg, color-mix(in srgb, var(--example-accent) 42%, #ffffff) 0%, var(--example-accent) 48%, var(--example-accent-strong) 100%);
}

@keyframes example-detail-cta-pulse {
  0%,
  100% {
    box-shadow:
      inset 0 0 0 2px color-mix(in srgb, var(--example-accent-strong) 78%, #ffffff),
      0 6px 20px color-mix(in srgb, var(--example-accent) 30%, transparent),
      0 0 34px 14px color-mix(in srgb, var(--example-accent) 22%, transparent),
      0 0 58px 26px color-mix(in srgb, var(--example-accent) 12%, transparent);
  }
  50% {
    box-shadow:
      inset 0 0 0 2px color-mix(in srgb, var(--example-accent-strong) 78%, #ffffff),
      0 8px 28px color-mix(in srgb, var(--example-accent) 38%, transparent),
      0 0 48px 20px color-mix(in srgb, var(--example-accent) 32%, transparent),
      0 0 88px 36px color-mix(in srgb, var(--example-accent) 16%, transparent);
  }
}

.your-song-detail-card a.your-song-themed-cta {
  background: linear-gradient(165deg, color-mix(in srgb, var(--example-accent) 55%, #ffffff) 0%, var(--example-accent) 48%, var(--example-accent-strong) 100%);
  box-shadow:
    inset 0 0 0 2px color-mix(in srgb, var(--example-accent-strong) 78%, #ffffff),
    0 6px 20px color-mix(in srgb, var(--example-accent) 30%, transparent),
    0 0 34px 14px color-mix(in srgb, var(--example-accent) 22%, transparent),
    0 0 58px 26px color-mix(in srgb, var(--example-accent) 12%, transparent);
  animation: example-detail-cta-pulse 2.1s ease-in-out infinite;
}

.your-song-detail-card a.your-song-themed-cta:hover {
  background: linear-gradient(165deg, color-mix(in srgb, var(--example-accent) 42%, #ffffff) 0%, var(--example-accent) 48%, var(--example-accent-strong) 100%);
}

.public-example-back-link {
  text-align: center;
  margin-top: 44px;
}

@media (prefers-reduced-motion: reduce) {
  a.home-cta-btn {
    animation: none;
  }
}

.public-link-btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: #2d4a5c;
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
}

.public-empty {
  text-align: center;
  color: #64748b;
  background: #fff;
  border: 1px solid #dbe4ee;
  border-radius: 16px;
  padding: 26px;
}

@media (max-width: 760px) {
  body.public-page-body {
    padding-top: 0;
  }

  body.public-page-body.has-discount-ribbon {
    padding-top: 0;
  }

  .home-header-nav {
    gap: 6px;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 8px;
  }

  .home-header-nav a {
    font-size: 13px;
  }

  .public-page {
    padding: 28px 14px 56px;
  }

  .reviews-masonry {
    column-count: 1;
  }

  .examples-masonry {
    column-count: 1;
  }

  .your-song-masonry {
    column-count: 1;
  }

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

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

  .site-map-grid {
    grid-template-columns: 1fr;
  }

  .example-meta-grid {
    grid-template-columns: 1fr;
  }

  .review-card-head-public {
    align-items: center;
  }

  .public-example-review {
    padding: 12px;
  }

  .home-review-topline {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    align-items: center;
  }

  .home-review-for {
    padding: 2px 7px;
    font-size: 11px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .home-review-for-desktop,
  .home-review-stars-desktop {
    display: none;
  }

  .home-review-for-mobile {
    display: inline;
  }

  .home-review-stars-mobile {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #f5a623;
    letter-spacing: 0;
    font-size: 30px;
    line-height: 1;
  }

  .home-review-stars-mobile span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -46%);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
  }

  .public-example-review .home-review-verified {
    width: 28px;
    height: 28px;
    padding: 0;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.14);
    color: #059669;
    font-size: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .public-example-review .home-review-verified::before {
    content: "";
    width: 17px;
    height: 19px;
    display: block;
    background: currentColor;
    clip-path: polygon(50% 0, 90% 14%, 85% 62%, 50% 100%, 15% 62%, 10% 14%);
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .reviews-masonry {
    column-count: 2;
  }
}

@media (min-width: 761px) and (max-width: 1280px) {
  .examples-masonry,
  .your-song-masonry {
    column-count: 2;
  }
}
