@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  
  --bg-main: #f8fafc;
  --bg-surface: #ffffff;
  --bg-subtle: #f1f5f9;
  --bg-dark: #0f172a;
  --bg-dark-surface: #1e293b;
  
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  
  --primary: #c2410c;
  --primary-hover: #9a3412;
  --primary-light: #ffedd5;
  --primary-subtle: rgba(194, 65, 12, 0.08);
  
  --accent: #b45309;
  --accent-light: #fef3c7;
  
  --border-color: #e2e8f0;
  --border-subtle: #f1f5f9;
  --border-focus: #c2410c;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"], html.dark, body.dark {
  --bg-main: #0b0f19;
  --bg-surface: #111827;
  --bg-subtle: #1e293b;
  --bg-dark: #030712;
  --bg-dark-surface: #0f172a;
  
  --text-main: #f8fafc;
  --text-muted: #cbd5e1;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  
  --primary: #f97316;
  --primary-hover: #fb923c;
  --primary-light: rgba(249, 115, 22, 0.22);
  --primary-subtle: rgba(249, 115, 22, 0.15);
  
  --accent: #fbbf24;
  --accent-light: rgba(251, 191, 36, 0.20);
  
  --border-color: #243046;
  --border-subtle: #1a2336;
  --border-focus: #f97316;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 8px -1px rgba(0, 0, 0, 0.45), 0 2px 4px -2px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 18px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -4px rgba(0, 0, 0, 0.35);
  --shadow-xl: 0 20px 30px -5px rgba(0, 0, 0, 0.6), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] body {
  background-color: var(--bg-main);
  color: #f1f5f9;
}

[data-theme="dark"] .site-header {
  background-color: rgba(15, 23, 42, 0.95);
  border-bottom-color: var(--border-color);
}

[data-theme="dark"] .brand-logo {
  color: #ffffff;
}

[data-theme="dark"] .nav-link {
  color: #cbd5e1;
}

[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active {
  color: #ffffff;
}

[data-theme="dark"] .header-search input {
  background-color: #1e293b;
  color: #f8fafc;
  border-color: #334155;
}

[data-theme="dark"] .header-search input::placeholder {
  color: #94a3b8;
}

[data-theme="dark"] .song-card {
  background-color: #111827;
  border-color: #243046;
}

[data-theme="dark"] .song-card-title {
  color: #ffffff !important;
}

[data-theme="dark"] .song-card-title a {
  color: #ffffff;
}

[data-theme="dark"] .song-card-title a:hover {
  color: #fdba74;
}

[data-theme="dark"] .song-card-excerpt {
  color: #cbd5e1 !important;
}

[data-theme="dark"] .song-card-meta {
  color: #94a3b8 !important;
  border-top-color: #1f293d;
}

[data-theme="dark"] .song-card-author,
[data-theme="dark"] .song-card-region {
  color: #fed7aa !important;
}

[data-theme="dark"] .artist-card {
  background-color: #111827;
  border-color: #243046;
}

[data-theme="dark"] .artist-name {
  color: #ffffff !important;
}

[data-theme="dark"] .artist-hometown {
  color: #cbd5e1 !important;
}

[data-theme="dark"] .category-card {
  background-color: #111827 !important;
  border-color: #243046 !important;
}

[data-theme="dark"] .category-name {
  color: #ffffff !important;
}

[data-theme="dark"] .category-count {
  color: #fed7aa !important;
}

[data-theme="dark"] .category-card p {
  color: #cbd5e1 !important;
}

[data-theme="dark"] .section-title-wrap h2 {
  color: #ffffff !important;
}

[data-theme="dark"] .section-title-wrap p {
  color: #cbd5e1 !important;
}

[data-theme="dark"] .section-link {
  color: #fdba74 !important;
}

[data-theme="dark"] section[style*="background-color: #f1f5f9"],
[data-theme="dark"] section[style*="background-color:#f1f5f9"],
[data-theme="dark"] section[style*="background-color: var(--bg-surface)"],
[data-theme="dark"] section[style*="background-color:var(--bg-surface)"] {
  background-color: #0b0f19 !important;
  border-top-color: #243046 !important;
  border-bottom-color: #243046 !important;
}

[data-theme="dark"] div[style*="background:#ffffff"],
[data-theme="dark"] div[style*="background: #ffffff"],
[data-theme="dark"] div[style*="background-color:#ffffff"],
[data-theme="dark"] div[style*="background-color: #ffffff"] {
  background-color: #111827 !important;
  border-color: #243046 !important;
}

[data-theme="dark"] .rich-story {
  color: #e2e8f0 !important;
}

[data-theme="dark"] .rich-story p {
  color: #e2e8f0 !important;
  line-height: 1.85;
}

[data-theme="dark"] .rich-story h2 {
  color: #fed7aa !important;
  border-bottom-color: #243046 !important;
}

[data-theme="dark"] .rich-story h3 {
  color: #ffffff !important;
}

[data-theme="dark"] .rich-story blockquote {
  background-color: #1e293b !important;
  border-left-color: #f97316 !important;
  color: #f8fafc !important;
}

[data-theme="dark"] .detail-title {
  color: #ffffff !important;
}

[data-theme="dark"] .detail-summary {
  color: #e2e8f0 !important;
  background-color: #111827 !important;
  border-left-color: #f97316 !important;
}

[data-theme="dark"] .lyrics-box {
  background-color: #111b2e !important;
  background-image: linear-gradient(135deg, rgba(17, 27, 46, 0.95) 0%, rgba(15, 23, 42, 0.92) 100%), url('/assets/images/lyrics-bg.webp') !important;
  border-color: #7c2d12 !important;
  border-left-color: #f97316 !important;
}

[data-theme="dark"] .lyrics-box h3 {
  color: #fed7aa !important;
}

[data-theme="dark"] .lyrics-text {
  color: #f8fafc !important;
  font-weight: 500;
}

[data-theme="dark"] .detail-meta-info {
  background-color: #1e293b;
  border-color: #334155;
  color: #e2e8f0 !important;
}

[data-theme="dark"] .detail-pill {
  background-color: #1e293b;
  border-color: #334155;
  color: #e2e8f0 !important;
}

[data-theme="dark"] .detail-pill.highlight {
  background-color: rgba(251, 191, 36, 0.2) !important;
  color: #fde68a !important;
  border-color: rgba(251, 191, 36, 0.45) !important;
}

[data-theme="dark"] .detail-pill:hover {
  background-color: #334155;
  color: #ffffff;
}

[data-theme="dark"] .sidebar-widget {
  background-color: #111827;
  border-color: #243046;
}

[data-theme="dark"] .sidebar-widget h3 {
  color: #ffffff !important;
  border-bottom-color: #243046;
}

[data-theme="dark"] .breadcrumbs a {
  color: #94a3b8;
}

[data-theme="dark"] .breadcrumbs a:hover {
  color: #ffffff;
}

[data-theme="dark"] .breadcrumbs .current {
  color: #f8fafc;
}

[data-theme="dark"] .search-dropdown {
  background-color: #111827;
  border-color: #243046;
}

[data-theme="dark"] .search-dropdown-item:hover {
  background-color: #1e293b;
}

[data-theme="dark"] .search-dropdown-info .title {
  color: #ffffff;
}

[data-theme="dark"] .search-dropdown-info .type {
  color: #94a3b8;
}

[data-theme="dark"] .site-footer {
  background-color: #050811;
  border-top-color: #243046;
}

[data-theme="dark"] .footer-brand p,
[data-theme="dark"] .footer-links a {
  color: #cbd5e1;
}

[data-theme="dark"] .footer-links a:hover {
  color: #ffffff;
}

[data-theme="dark"] .footer-col h4 {
  color: #ffffff;
}

[data-theme="dark"] .footer-bottom {
  color: #94a3b8;
  border-top-color: #1f293d;
}

.theme-toggle {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  position: relative;
  z-index: 150;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  touch-action: manipulation;
  user-select: none;
}

.theme-toggle * {
  pointer-events: none;
}

.theme-toggle:hover {
  background: var(--bg-surface);
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-1px);
}

.theme-toggle .sun-icon {
  display: none;
}

.theme-toggle .moon-icon {
  display: block;
}

[data-theme="dark"] .theme-toggle, html.dark .theme-toggle, body.dark .theme-toggle {
  background-color: #1e293b;
  border-color: #334155;
  color: #fbbf24;
}

[data-theme="dark"] .theme-toggle:hover, html.dark .theme-toggle:hover, body.dark .theme-toggle:hover {
  background-color: #243046;
  border-color: #fbbf24;
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.3);
  transform: translateY(-1px);
}

[data-theme="dark"] .theme-toggle .sun-icon, html.dark .theme-toggle .sun-icon, body.dark .theme-toggle .sun-icon {
  display: block;
  color: #fbbf24;
}

[data-theme="dark"] .theme-toggle .moon-icon, html.dark .theme-toggle .moon-icon, body.dark .theme-toggle .moon-icon {
  display: none;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  z-index: 9999;
  background-color: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(16px);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 20px 35px -5px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
  animation: slideUpCookie 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
  min-width: 280px;
}

.cookie-icon {
  color: #fbbf24;
  flex-shrink: 0;
  margin-top: 2px;
}

.cookie-text {
  font-size: 0.875rem;
  line-height: 1.55;
  color: #cbd5e1;
}

.cookie-text strong {
  color: #ffffff;
  display: block;
  margin-bottom: 0.2rem;
}

.cookie-text a {
  color: #fdba74;
  text-decoration: underline;
}

.cookie-text a:hover {
  color: #ffffff;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

.btn-secondary-outline {
  background: transparent;
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.brand-logo svg {
  color: var(--primary);
  flex-shrink: 0;
}

.brand-logo span.badge {
  font-size: 0.75rem;
  font-weight: 600;
  background-color: var(--primary-light);
  color: var(--primary);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.925rem;
  color: var(--text-muted);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-md);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background-color: var(--primary-subtle);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-search {
  position: relative;
  width: 280px;
}

.header-search input {
  width: 100%;
  height: 42px;
  padding: 0 1rem 0 2.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  background-color: var(--bg-subtle);
  font-size: 0.875rem;
  transition: var(--transition);
}

.header-search input:focus {
  outline: none;
  background-color: var(--bg-surface);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-subtle);
}

.header-search .search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
}

.search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-height: 380px;
  overflow-y: auto;
  z-index: 110;
  display: none;
}

.search-dropdown.active {
  display: block;
}

.search-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.search-dropdown-item:last-child {
  border-bottom: none;
}

.search-dropdown-item:hover {
  background-color: var(--bg-subtle);
}

.search-dropdown-item img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.search-dropdown-info .title {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-main);
}

.search-dropdown-info .type {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  color: var(--text-main);
  cursor: pointer;
}

.hero-section {
  background-color: #0b1120;
  color: var(--text-white);
  padding: 4.5rem 0 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(11, 17, 32, 0.70) 0%, rgba(11, 17, 32, 0.82) 55%, rgba(11, 17, 32, 0.95) 100%), url('/assets/images/hero-bg.webp');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  opacity: 0.32;
  pointer-events: none;
  z-index: 1;
}

.quote-banner-section {
  position: relative;
  background-color: #0b1120;
  color: var(--text-white);
  padding: 4.5rem 0;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-banner-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(11, 17, 32, 0.85) 0%, rgba(11, 17, 32, 0.80) 50%, rgba(11, 17, 32, 0.92) 100%), url('/assets/images/cta-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

.quote-banner-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.quote-banner-text {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: #fdba74;
}

.quote-banner-sub {
  font-size: 1.05rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.quote-banner-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-secondary-light {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all var(--transition-fast);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary-light:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(194, 65, 12, 0.2);
  color: #fdba74;
  border: 1px solid rgba(253, 186, 116, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.25rem;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  color: #fdba74;
}

.hero-desc {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-search {
  position: relative;
  max-width: 540px;
  margin-bottom: 1.5rem;
}

.hero-search input {
  width: 100%;
  height: 56px;
  padding: 0 7rem 0 3.25rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  color: var(--text-white);
  font-size: 1rem;
  transition: var(--transition);
}

.hero-search input::placeholder {
  color: #94a3b8;
}

.hero-search input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #fb923c;
  box-shadow: 0 0 0 4px rgba(251, 146, 60, 0.2);
}

.hero-search .search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
}

.hero-search button {
  position: absolute;
  right: 6px;
  top: 6px;
  bottom: 6px;
  padding: 0 1.5rem;
  background-color: var(--primary);
  color: var(--text-white);
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.925rem;
  cursor: pointer;
  transition: var(--transition);
}

.hero-search button:hover {
  background-color: var(--primary-hover);
}

.hero-tags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hero-tags span {
  font-size: 0.825rem;
  color: #94a3b8;
}

.hero-tag-link {
  font-size: 0.825rem;
  color: #e2e8f0;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-tag-link:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--text-white);
}

.hero-featured-card {
  background: rgba(30, 41, 59, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
}

.hero-featured-card:hover {
  transform: translateY(-4px);
  border-color: rgba(251, 146, 60, 0.4);
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background-color: var(--primary);
  color: var(--text-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.hero-card-img {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  margin-bottom: 1.25rem;
}

.hero-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-white);
}

.hero-card-desc {
  font-size: 0.925rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.hero-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.825rem;
  color: #94a3b8;
}

.section {
  padding: 4.5rem 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.section-title-wrap h2 {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
}

.section-title-wrap p {
  color: var(--text-muted);
  font-size: 1rem;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.925rem;
  color: var(--primary);
}

.section-link:hover {
  color: var(--primary-hover);
  transform: translateX(4px);
}

.songs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.song-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.song-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #fdba74;
}

.song-card-thumb {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
  background-color: var(--bg-subtle);
}

.song-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.song-card:hover .song-card-thumb img {
  transform: scale(1.05);
}

.song-card-pill {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: var(--text-white);
  font-size: 0.725rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.song-card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.song-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.song-card-title:hover {
  color: var(--primary);
}

.song-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.song-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.card-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.category-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  background-color: #fffaf5;
}

.category-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.category-name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text-main);
}

.category-count {
  font-size: 0.825rem;
  color: var(--text-muted);
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
}

.artist-card {
  text-align: center;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  transition: var(--transition);
}

.artist-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.artist-avatar {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-full);
  margin: 0 auto 1rem auto;
  object-fit: cover;
  border: 3px solid var(--primary-light);
}

.artist-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--text-main);
}

.artist-hometown {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.breadcrumbs .sep {
  color: var(--text-light);
}

.breadcrumbs .current {
  color: var(--text-main);
  font-weight: 600;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}

.article-content {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.detail-header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.detail-meta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.detail-tags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.detail-meta-info {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--text-muted);
  background-color: var(--bg-subtle);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
}

.detail-meta-info .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.detail-meta-info .meta-sep {
  color: var(--border-color);
  font-size: 0.75rem;
}

.detail-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  background-color: var(--bg-subtle);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.detail-pill:hover {
  background-color: var(--bg-card);
  color: var(--text-main);
  border-color: var(--text-muted);
}

.detail-pill.highlight {
  background-color: #fef3c7;
  color: #b45309;
  border-color: #fde68a;
}

.detail-title {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.detail-summary {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.detail-hero-cover {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.rich-story {
  font-size: 1.1rem;
  line-height: 1.85;
  color: #334155;
  margin-bottom: 2.5rem;
}

.rich-story p {
  margin-bottom: 1.5rem;
}

.rich-story h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin: 2rem 0 1rem 0;
  color: var(--text-main);
}

.rich-story h3 {
  font-size: 1.35rem;
  margin: 1.75rem 0 0.75rem 0;
  color: var(--text-main);
}

.rich-story blockquote {
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  background-color: var(--bg-subtle);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.75rem 0;
  font-style: italic;
  color: var(--text-main);
}

.archive-banner {
  position: relative;
  background-color: #0b1120;
  color: var(--text-white);
  padding: 3.5rem 0 4rem 0;
  overflow: hidden;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.archive-banner-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(11, 17, 32, 0.72) 0%, rgba(11, 17, 32, 0.85) 60%, rgba(11, 17, 32, 0.95) 100%), url('/assets/images/archive-header-bg.webp');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

.archive-banner-content {
  position: relative;
  z-index: 2;
}

.archive-banner .breadcrumbs {
  margin-bottom: 1rem;
}

.archive-banner .breadcrumbs a {
  color: #94a3b8;
}

.archive-banner .breadcrumbs a:hover {
  color: #ffffff;
}

.archive-banner .breadcrumbs .sep {
  color: #64748b;
}

.archive-banner .breadcrumbs .current {
  color: #fdba74;
}

.archive-banner h1 {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.archive-banner p {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 700px;
}

.lyrics-box {
  position: relative;
  background-color: #fdfbf7;
  background-image: linear-gradient(135deg, rgba(253, 251, 247, 0.94) 0%, rgba(255, 255, 255, 0.90) 100%), url('/assets/images/lyrics-bg.webp');
  background-size: cover;
  background-position: center;
  border: 1px solid #fed7aa;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.04);
}

.lyrics-box h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-hover);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lyrics-text {
  font-size: 1.05rem;
  line-height: 1.9;
  white-space: pre-line;
  color: #1e293b;
  font-weight: 500;
}

.share-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.share-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
}

.share-buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: var(--bg-subtle);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  cursor: pointer;
}

.share-btn:hover {
  color: var(--text-white);
}

.share-btn.whatsapp:hover { background-color: #25d366; border-color: #25d366; }
.share-btn.twitter:hover { background-color: #000000; border-color: #000000; }
.share-btn.facebook:hover { background-color: #1877f2; border-color: #1877f2; }
.share-btn.telegram:hover { background-color: #229ed9; border-color: #229ed9; }
.share-btn.copy:hover { background-color: var(--primary); border-color: var(--primary); }

.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-widget {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.widget-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.meta-list-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  gap: 0.5rem;
}

.meta-label {
  color: var(--text-muted);
  font-weight: 500;
}

.meta-value {
  color: var(--text-main);
  font-weight: 600;
  text-align: right;
}

.pagination-nav {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.pagination-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
}

.pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background-color: var(--bg-surface);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
}

.pagination-link:hover, .pagination-link.active {
  background-color: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
}

.pagination-ellipsis {
  padding: 0 0.5rem;
  color: var(--text-light);
}

.site-footer {
  background-color: var(--bg-dark);
  color: #cbd5e1;
  padding: 4.5rem 0 2rem 0;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.925rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  transition: var(--transition);
}

.footer-social-link:hover {
  background-color: var(--primary);
  color: var(--text-white);
}

.footer-col h4 {
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--text-white);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.825rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 1rem;
}

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  font-size: 0.925rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.alert-success {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.alert-error {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background-color: var(--bg-surface);
  font-size: 0.925rem;
  transition: var(--transition);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-subtle);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.925rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-white);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
}

.error-page {
  text-align: center;
  padding: 4rem 1rem;
}

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

.hero-tag {
  animation: heroFadeUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-title {
  animation: heroFadeUp 0.45s 0.06s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-desc {
  animation: heroFadeUp 0.45s 0.12s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-search {
  animation: heroFadeUp 0.45s 0.18s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-tags {
  animation: heroFadeUp 0.45s 0.24s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-card-wrap {
  animation: heroFadeUp 0.5s 0.14s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reveal-item {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.42s cubic-bezier(0.16, 1, 0.3, 1), transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) {
  .song-card {
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s ease;
  }
  .song-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px -6px rgba(15, 23, 42, 0.09), 0 4px 8px -2px rgba(15, 23, 42, 0.04);
    border-color: #cbd5e1;
  }
  .song-card-img img {
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .song-card:hover .song-card-img img {
    transform: scale(1.038);
  }
  .artist-card {
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s ease;
  }
  .artist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -6px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
  }
  .artist-avatar {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .artist-card:hover .artist-avatar {
    transform: scale(1.06);
  }
  .category-card {
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s ease;
  }
  .category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.06);
    border-color: var(--primary);
  }
  .btn:hover {
    transform: translateY(-1px);
  }
  .share-btn {
    transition: transform 0.2s ease, background-color 0.2s ease;
  }
  .share-btn:hover {
    transform: translateY(-2px) scale(1.06);
  }
}

.btn:active, .share-btn:active {
  transform: scale(0.97) !important;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
  }
}

.error-code {
  font-size: 6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 1rem;
}

.error-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.error-desc {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 2rem auto;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background-color: var(--bg-surface);
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
  }
  .nav-menu.active {
    display: flex;
  }
  .header-search {
    display: none;
  }
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    touch-action: manipulation;
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .theme-toggle {
    width: 42px;
    height: 42px;
    touch-action: manipulation;
  }
  .hero-title {
    font-size: 2.25rem;
  }
  .detail-title {
    font-size: 2rem;
  }
  .article-content {
    padding: 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
