* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg-primary: #f8f9fa;
  --bg-secondary: #ffffff;
  --bg-tertiary: #f0f9ff;
  --text-primary: #212529;
  --text-secondary: #495057;
  --text-tertiary: #6c757d;
  --border-color: #e0e7ff;
  --border-color-light: #e9ecef;
  --accent-color: #EC5800;
  --accent-hover: #ad4000;
  --secondary-accent: #06b6d4;
  --tertiary-accent: #3b82f6;
  --success-color: #10b981;
  --shadow-sm: rgba(14, 165, 233, 0.1);
  --shadow-md: rgba(14, 165, 233, 0.2);
  --hover-bg: #f0f9ff;
  --header-bg: #EC5800;
  --header-text: #ffffff;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary: #0f1419;
    --bg-secondary: #1a1f26;
    --bg-tertiary: #1e2530;
    --text-primary: #e9ecef;
    --text-secondary: #ced4da;
    --text-tertiary: #adb5bd;
    --border-color: #2d3748;
    --border-color-light: #374151;
    --accent-color:  #EC5800;
    --accent-hover: #ad4000;
    --secondary-accent: #22d3ee;
    --tertiary-accent: #60a5fa;
    --success-color: #34d399;
    --shadow-sm: rgba(56, 189, 248, 0.2);
    --shadow-md: rgba(56, 189, 248, 0.3);
    --hover-bg: #1e2937;
    --header-bg: #454545;
    --header-text: #f1f5f9;
  }
}
body {
  font-family: Arial, sans-serif;
  font-size: 15px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
}
a {
  text-decoration: none;
  color: var(--text-primary);
}
header {
  background: var(--header-bg);
  padding: 10px 10px;
  text-align: center;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
header h1 {
  font-size: 28px;
  color: var(--header-text);
  max-width: 1200px;
  margin: 0 auto;
  font-weight: 700;
  letter-spacing: 1px;
}
.top-menu {
  background-color: var(--bg-secondary);
  border-bottom: 0px solid var(--accent-color);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  box-shadow: 0 2px 8px var(--shadow-sm);
}
.top-menu .menu-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.top-menu ul {
  list-style: none;
  display: flex;
  margin: 0;
  gap: 5px;
  flex-wrap: wrap;
}
.top-menu ul li {
  position: relative;
}
.top-menu ul li a {
  display: block;
  padding: 18px 20px;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 8px 8px 0 0;
  transition: all 0.3s ease;
  position: relative;
}
.top-menu ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 3px;
  background: var(--accent-color);
  border-radius: 3px 3px 0 0;
  transition: transform 0.3s ease;
}
.top-menu ul li a:hover {
  color: var(--accent-color);
  background: var(--bg-tertiary);
}
.top-menu ul li a:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.top-menu ul li a.active {
  color: var(--accent-color);
  font-weight: 700;
}
.top-menu ul li a.active::after {
  transform: translateX(-50%) scaleX(1);
}
.search-box {
  margin: 0;
  flex-shrink: 0;
}
.search-box form {
  display: flex;
  border: 0px solid var(--border-color);
  border-radius: 25px;
  overflow: hidden;
  background: var(--bg-tertiary);
  transition: all 0.3s ease;
}
.search-box form:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px var(--shadow-sm);
}
.search-box input[type="text"] {
  padding: 10px 18px;
  border: none;
  width: 250px;
  outline: none;
  background: transparent;
  color: var(--text-primary);
  font-size: 14px;
  border: 1px solid var(--border-color);
}
.search-box input[type="text"]::placeholder {
  color: var(--text-tertiary);
}
.search-box button {
  padding: 10px 24px;
  background-color: var(--accent-color);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid var(--accent-color);
}
.search-box button:hover {
  background-color: var(--accent-hover);
  transform: scale(1.01);
}
.container {
  max-width: 1200px;
  margin: 20px auto;
 	padding: 15px;
    background: white;
    border: 1px solid #f1f1f1;
}
.main-content {
  width: 100%;
}

.content-box {
    background: var(--bg-container);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    padding: 0px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 15px;
    overflow: hidden;
    min-width: 0;
}

.sidebar {
    position: sticky;
    top: calc(var(--nav-h) + 20px);
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.category-section {
  margin-bottom: 50px;
}
.category-header {
 display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0px;
    border-bottom: 1px solid var(--border-color);
    background: #fff;
}
.category-header h2 {
  font-size: 22px;
  margin: 0;
  color: var(--accent-color);
  font-weight: 700;
}
.view-all-link {
      color: #f0f9ff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--accent-color);
    padding: 6px 8px;
    border-radius: 4px;
}
.view-all-link:hover {
  color: #f0f9ff;
  transform: translateX(3px);
}

/* Sidebar Styles */
.sidebar {
    flex: 1;
    max-width: 360px;
}

.sidebar-section {
    background: var(--card-bg, #fff);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.sidebar-title {
    margin: 15px 0 15px 0;
    font-size: 18px;
    color: var(--primary-color, #e91e63);
    border-bottom: 2px solid var(--primary-color, #e91e63);
    padding-bottom: 8px;
}

/* Trending Songs */
.trending-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trending-item {
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color, #eee);
}

.trending-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.trending-link {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.trending-link:hover {
    transform: translateX(5px);
}

.trending-cover img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 8px;
}

.trending-info h4 {
    margin: 0 0 5px 0;
    font-size: 0.96rem;
    line-height: 1.3;
}

.album-name {
    font-size: 0.85rem;
    color: #666;
    margin: 0 0 6px 0;
}

.play-count {
    font-size: 0.82rem;
    color: #e91e63;
    font-weight: 500;
}

.view-all-trending {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: var(--primary-color, #e91e63);
    font-weight: 600;
    text-decoration: none;
}

.left-section {
  flex: 1;
  min-width: 0;
}
.left-section h2,
.right-sidebar h2 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-primary);
  padding: 15px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 4px 4px 0 0;
  margin-bottom: 0;
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease;
}
.album-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-top: none;
  border-radius: 0 0 4px 4px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.album-item {
  border-bottom: 1px solid var(--border-color-light);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.album-item:last-child {
  border-bottom: none;
}
.album-item:hover {
  background: var(--hover-bg);
}
.album-item a {
  display: flex;
  align-items: center;
  padding: 12px;
}
.album-thumbnail {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  margin-right: 15px;
}
.album-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
}
.album-info h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text-primary);
  transition: color 0.3s ease;
}
.album-info .category {
  display: inline-block;
  padding: 4px 10px;
  background-color: var(--accent-color);
  color: #fff;
  font-size: 12px;
  border-radius: 3px;
  transition: background-color 0.3s ease;
}
.right-sidebar {
  width: 350px;
  flex-shrink: 0;
}
.trending-list {
  list-style: none;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-top: none;
  border-radius: 0 0 4px 4px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.trending-list li {
  padding: 12px 15px;
  border-bottom: 1px solid var(--border-color-light);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.trending-list li:last-child {
  border-bottom: none;
}
.trending-list li:hover {
  background: var(--hover-bg);
}
.trending-list li a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}
.trending-list li a:hover {
  color: var(--accent-color);
}
footer {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  border-top: 1px solid var(--border-color);
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease;
}
footer p {
  margin: 5px 0;
  font-size: 13px;
}
.footer-links {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
  transition: border-color 0.3s ease;
}
.footer-links a {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: #357abd;
  text-decoration: underline;
}
.footer-separator {
  margin: 0 10px;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}
.album-content {
  flex: 1;
  min-width: 0;
}
.album-header {
  background: var(--bg-secondary);
  padding: 20px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  margin-bottom: 20px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.album-page-title {
  font-size: 28px;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.album-header-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.album-cover {
  width: 240px;
  height: 240px;
  flex-shrink: 0;
}
.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.album-details {
  flex: 1;
}
.album-meta-info {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 12px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.meta-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color-light);
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 8px 12px;
  align-items: start;
  transition: border-color 0.3s ease;
}
.meta-item:last-child {
  border-bottom: none;
}
.meta-item strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 12px;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}
.meta-item .meta-value {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
  word-break: break-word;
  transition: color 0.3s ease;
}
.songs-section {
  background: var(--bg-secondary);
  padding: 20px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  margin-bottom: 15px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.songs-section h2 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--text-primary);
  transition: color 0.3s ease;
}
.songs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.song-item {
  display: flex;
  align-items: center;
  padding: 12px;
  background: var(--hover-bg);
  border-radius: 4px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.song-item:hover {
  background: var(--bg-secondary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.song-number {
  width: 35px;
  height: 35px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}
.song-info {
  flex: 1;
  margin-left: 15px;
}
.song-info h3 {
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}
.song-meta {
  font-size: 12px;
  color: var(--text-tertiary);
  margin: 0;
  transition: color 0.3s ease;
}
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background-color: var(--accent-color);
  color: #fff;
  border-radius: 3px;
  font-size: 13px;
  transition: background-color 0.3s ease;
}
.btn-download:hover {
  background-color: var(--accent-color);
  opacity: 0.8;
}
.download-all-section {
  text-align: center;
  padding: 20px;
  background: var(--bg-secondary);
  border-radius: 4px;
  border: 1px solid var(--border-color);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.btn-download-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 35px;
  background: #27ae60;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}
.btn-download-all:hover {
  background: #229954;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(39, 174, 96, 0.4);
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  margin: 0 auto 15px;
  padding: 10px 15px;
  max-width: 1200px;
}
.artist-header {
  background: var(--bg-secondary);
  padding: 30px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  margin-bottom: 25px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.artist-header h1 {
  font-size: 32px;
  color: var(--text-primary);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.artist-stats {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-tertiary);
  transition: color 0.3s ease;
}
.stat-item {
  color: var(--accent-color);
  font-weight: 600;
  transition: color 0.3s ease;
}
.stat-separator {
  color: var(--border-color);
  transition: color 0.3s ease;
}
.artist-albums-section {
  background: var(--bg-secondary);
  padding: 25px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  margin-top: 25px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.artist-albums-section h2 {
  font-size: 22px;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-color-light);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.no-results {
  text-align: center;
  padding: 40px 20px;
  color: #999;
  font-size: 15px;
}
.breadcrumb a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb .separator {
  color: #999;
}
.breadcrumb .current {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}
.song-page-container {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}
.song-content {
  flex: 1;
  min-width: 0;
}
.song-header {
  background: var(--bg-secondary);
  padding: 20px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  margin-bottom: 20px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.song-page-title {
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.song-header-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.song-cover {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
}
.song-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.song-details {
  flex: 1;
  min-width: 0;
}
.song-meta-info {
  margin-top: 0;
  background: var(--hover-bg);
  border: 1px solid var(--border-color-light);
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.meta-row {
  padding: 12px 15px;
  border-bottom: 1px solid var(--border-color-light);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: border-color 0.3s ease;
}
.meta-row:last-child {
  border-bottom: none;
}
.meta-row strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 11px;
  color: #888;
  font-weight: 600;
  min-width: 110px;
  flex-shrink: 0;
}
.artist-link {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
.artist-link:hover {
  color: var(--accent-color);
  opacity: 0.8;
  text-decoration: underline;
}
.meta-row .meta-value {
  display: block;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.5;
  word-break: break-word;
  flex: 1;
  font-size: 14px;
  transition: color 0.3s ease;
}
.listen-download-section {
  background: var(--bg-secondary);
  padding: 20px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  margin-bottom: 20px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.listen-download-section h2 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--text-primary);
  transition: color 0.3s ease;
}
.player-wrapper {
  background: var(--hover-bg);
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}
.player-wrapper audio {
  width: 100%;
  outline: none;
}
.download-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.simple-buttons a,
.simple-buttons button {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color-light);
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease;
  cursor: pointer;
  font-family: inherit;
}
.simple-buttons a:hover,
.simple-buttons button:hover:not(:disabled) {
  background: var(--bg-primary);
  border-color: var(--accent-color);
  transform: translateY(-1px);
}
.simple-buttons a.primary,
.simple-buttons button.primary {
  background: #27ae60;
  border-color: #27ae60;
  color: #fff;
}
.simple-buttons a.primary:hover,
.simple-buttons button.primary:hover:not(:disabled) {
  background: #229954;
  border-color: #229954;
}
.simple-buttons button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.simple-buttons a + a,
.simple-buttons button + button {
  margin-top: 8px;
}
.back-to-album {
  background: var(--bg-secondary);
  padding: 20px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 25px;
  background-color: #95a5a6;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
}
.btn-back:hover {
  background-color: #7f8c8d;
}
.more-songs-section {
  background: var(--bg-secondary);
  padding: 25px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  margin-top: 25px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.more-songs-section h2 {
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 15px;
  transition: color 0.3s ease;
}
.more-songs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}
.more-songs-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color-light);
  transition: border-color 0.3s ease;
}
.more-songs-list li:last-child {
  border-bottom: none;
}
.more-songs-list li a {
  color: var(--text-primary);
  font-size: 15px;
  transition: color 0.3s ease;
  display: block;
}
.more-songs-list li a:hover {
  color: var(--accent-color);
}
.more-songs-list .song-singer {
  color: var(--text-tertiary);
  font-size: 14px;
  transition: color 0.3s ease;
}
.btn-view-all-songs {
  display: inline-block;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s ease;
  margin-top: 10px;
}
.btn-view-all-songs:hover {
  color: var(--accent-color);
  opacity: 0.8;
  text-decoration: underline;
}
.comments-section {
  background: var(--bg-secondary);
  padding: 25px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  margin-top: 25px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.comments-section h2 {
  font-size: 22px;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-color-light);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.comment-alert {
  padding: 12px 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 14px;
}
.comment-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.comment-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.comment-form-container {
  margin-bottom: 30px;
}
.comment-form-container h3 {
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 15px;
  transition: color 0.3s ease;
}
.comment-form .form-group {
  margin-bottom: 15px;
}
.comment-form input[type="text"],
.comment-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  transition: border-color 0.3s, background-color 0.3s ease, color 0.3s ease;
}
.comment-form input[type="text"]:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}
.comment-form textarea {
  resize: vertical;
  min-height: 100px;
}
.btn-submit-comment {
  padding: 12px 30px;
  background-color: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}
.btn-submit-comment:hover {
  background-color: var(--accent-color);
  opacity: 0.8;
}
.comment-note {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #999;
}
.comments-list {
  margin-top: 20px;
}
.comment-item {
  padding: 20px;
  background: var(--hover-bg);
  border-radius: 6px;
  margin-bottom: 15px;
  border-left: 3px solid var(--accent-color);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.comment-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}
.comment-meta {
  flex: 1;
}
.comment-author {
  display: block;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 2px;
  transition: color 0.3s ease;
}
.comment-date {
  font-size: 12px;
  color: #999;
}
.comment-body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  transition: color 0.3s ease;
}
.comment-actions {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e8e8e8;
}
.btn-reply {
  background: transparent;
  border: none;
  color: var(--accent-color);
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 500;
}
.btn-reply:hover {
  background: var(--border-color-light);
  color: var(--accent-color);
  opacity: 0.8;
}
.btn-reply svg {
  flex-shrink: 0;
}
.reply-form {
  margin: 15px 0 0 50px;
  padding: 15px;
  background: var(--bg-secondary);
  border-radius: 6px;
  border: 2px solid var(--border-color-light);
  animation: slideDown 0.3s ease;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reply-form .form-group {
  margin-bottom: 12px;
}
.reply-form input,
.reply-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 14px;
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  transition: border-color 0.3s ease, background-color 0.3s ease,
    color 0.3s ease;
}
.reply-form textarea {
  min-height: 80px;
  resize: vertical;
}
.btn-cancel-reply {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  margin-left: 8px;
  transition: all 0.3s ease;
}
.btn-cancel-reply:hover {
  background: var(--border-color-light);
  color: var(--text-primary);
}
.comment-replies {
  margin-left: 50px;
  margin-top: 15px;
  padding-left: 15px;
  border-left: 2px solid #e8e8e8;
}
.comment-reply {
  padding: 15px;
  background: var(--bg-secondary);
  border-radius: 6px;
  margin-bottom: 12px;
  border-left: 3px solid #95c9f5;
  transition: background-color 0.3s ease;
}
.comment-reply .comment-avatar {
  width: 35px;
  height: 35px;
  font-size: 16px;
  background: var(--accent-color);
  opacity: 0.8;
  transition: background-color 0.3s ease;
}
.no-comments {
  text-align: center;
  padding: 40px 20px;
  color: #999;
  font-size: 15px;
}
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .content-box {
    display: block;
}
.sidebar {
    flex: 1;
    max-width: 100%;
}
.sidebar-section {
    padding: 0px;
}
  .left-section {
    width: 100%;
    flex: none;
  }
  .right-sidebar {
    width: 100%;
  }
  .top-menu .menu-wrapper {
    flex-direction: column;
    padding: 0;
  }
  .top-menu ul {
    width: 100%;
    justify-content: center;
  }
  .top-menu ul li a {
    padding: 12px 20px;
    font-size: 14px;
  }
  .search-box {
    margin: 10px 0;
  }
  .breadcrumb {
    font-size: 12px;
    gap: 6px;
    margin-bottom: 12px;
  }
  .album-thumbnail {
    width: 80px;
    height: 80px;
  }
  .album-content {
    width: 100%;
  }
  .song-content {
    width: 100%;
  }
  .song-header {
    padding: 15px;
  }
  .song-page-title {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .song-header-content {
    flex-direction: column;
    gap: 15px;
  }
  .song-cover {
    width: 160px;
    height: 160px;
    margin: 0 auto;
  }
  .song-cover img {
    width: 100%;
    height: 100%;
  }
  .song-details {
    width: 100%;
  }
  .song-meta-info {
    margin-top: 0;
  }
  .meta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 12px;
  }
  .meta-row strong {
    min-width: 0;
    font-size: 10px;
    color: var(--text-tertiary);
  }
  .meta-row .meta-value {
    font-size: 15px;
    font-weight: 600;
  }
  .download-option {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .album-header {
    padding: 15px;
  }
  .album-page-title {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .album-header-content {
    flex-direction: column;
    gap: 15px;
  }
  .album-cover {
    width: 180px;
    height: 180px;
    margin: 0 auto;
  }
  .album-cover img {
    width: 100%;
    height: 100%;
  }
  .song-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .song-info h3 {
    font-size: 14px;
  }
  .btn-download {
    padding: 7px 12px;
    font-size: 12px;
  }
  .more-songs-section {
    padding: 15px;
  }
  .more-songs-section h2 {
    font-size: 18px;
  }
  .more-songs-list li a {
    font-size: 14px;
  }
  .more-songs-list .song-singer {
    font-size: 13px;
  }
  .comments-section {
    padding: 15px;
  }
  .comments-section h2 {
    font-size: 20px;
  }
  .comment-item {
    padding: 15px;
  }
  .comment-avatar {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  .reply-form {
    margin-left: 20px;
  }
  .comment-replies {
    margin-left: 20px;
  }
}
@media (max-width: 480px) {
  header h1 {
    font-size: 22px;
  }
  .top-menu ul li a {
    padding: 10px 12px;
    font-size: 13px;
  }
  .search-box input[type="text"] {
    width: 150px;
  }
  .breadcrumb {
    font-size: 11px;
    gap: 5px;
    margin-bottom: 10px;
  }
  .song-header {
    padding: 12px;
  }
  .song-page-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .album-header {
    padding: 12px;
  }
  .album-page-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .album-thumbnail {
    width: 70px;
    height: 70px;
  }
  .album-info h3 {
    font-size: 14px;
  }
  .album-cover img {
    width: 150px;
    height: 150px;
  }
  .meta-item {
    font-size: 13px;
  }
  .meta-item strong {
    width: 70px;
  }
  .song-item {
    padding: 10px;
  }
  .song-number {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
  .song-info {
    margin-left: 10px;
  }
  .song-info h3 {
    font-size: 13px;
  }
  .song-meta {
    font-size: 11px;
  }
  .song-cover img {
    width: 140px;
    height: 140px;
  }
  .song-meta-info {
    padding: 0;
  }
  .meta-row {
    padding: 10px;
    gap: 4px;
  }
  .meta-row strong {
    font-size: 10px;
    color: var(--text-tertiary);
  }
  .meta-row .meta-value {
    font-size: 14px;
  }
}
.artist-page {
  max-width: 900px;
  margin: 0 auto;
}
.artist-content {
  width: 100%;
}
.artist-header-clean {
  text-align: center;
  padding: 40px 20px 30px;
  background: var(--bg-secondary);
  border-radius: 8px;
  margin-bottom: 30px;
  transition: background-color 0.3s ease;
}
.artist-header-clean h1 {
  font-size: 36px;
  color: var(--text-primary);
  margin: 0 0 15px 0;
  transition: color 0.3s ease;
}
.artist-stats-clean {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}
.artist-stats-clean .dot {
  color: #ccc;
}
.albums-songs-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.album-block {
  background: var(--bg-secondary);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: background-color 0.3s ease, border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.album-block:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.album-block-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.album-cover-small {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.album-cover-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.album-info-clean {
  flex: 1;
}
.album-info-clean h2 {
  margin: 0 0 8px 0;
  font-size: 22px;
  color: var(--text-primary);
  transition: color 0.3s ease;
}
.album-info-clean h2 a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}
.album-info-clean h2 a:hover {
  color: var(--accent-color);
}
.album-meta-clean {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}
.songs-in-album {
  padding: 10px 20px 20px;
}
.song-row-clean {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 10px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.song-row-clean:hover {
  background: var(--bg-primary);
}
.song-track {
  flex-shrink: 0;
  width: 30px;
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 600;
  transition: color 0.3s ease;
}
.song-title-clean {
  flex: 1;
  font-size: 15px;
}
.song-title-clean a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}
.song-title-clean a:hover {
  color: var(--accent-color);
}
.song-duration {
  flex-shrink: 0;
  font-size: 13px;
  color: var(--text-secondary);
  min-width: 50px;
  text-align: right;
  transition: color 0.3s ease;
}
.song-download-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.song-download-btn:hover {
  transform: scale(1.1);
  background: #357abd;
}
.song-download-btn svg {
  display: block;
}
@media (max-width: 768px) {
  .artist-header-clean h1 {
    font-size: 28px;
  }
  .artist-stats-clean {
    font-size: 14px;
  }
  .album-block-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .album-cover-small {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    max-width: 150px;
  }
  .song-row-clean {
    gap: 10px;
    padding: 10px 5px;
  }
  .song-duration {
    display: none;
  }
}
.all-songs-section {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 25px;
  border: 1px solid var(--border-color);
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease, border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.all-songs-section:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.unified-songs-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.unified-songs-list .song-row-clean {
  border-bottom: 1px solid var(--border-color);
  padding: 16px 12px;
  transition: all 0.2s ease;
}
.unified-songs-list .song-row-clean:last-child {
  border-bottom: none;
}
.unified-songs-list .song-row-clean:hover {
  background: var(--bg-primary);
  border-radius: 8px;
  padding-left: 16px;
  border-bottom-color: transparent;
}
.unified-songs-list .song-row-clean:hover + .song-row-clean {
  border-top-color: transparent;
}
.section-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 20px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent-color);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.song-album-info {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
  transition: color 0.3s ease;
}
.album-link-inline {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.album-link-inline:hover {
  color: #357abd;
  text-decoration: underline;
}
.unified-songs-list .song-title-clean {
  flex: 1;
  font-size: 15px;
  line-height: 1.4;
}
.unified-songs-list .song-title-clean a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.unified-songs-list .song-title-clean a:hover {
  color: var(--accent-color);
}
.single-songs-section {
  background: var(--bg-secondary);
  border-radius: 8px;
  padding: 20px;
  border: 1px solid var(--border-color);
  margin-bottom: 30px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.single-songs-list {
  display: flex;
  flex-direction: column;
}
.song-album-info {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
  transition: color 0.3s ease;
}
.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.album-card-link {
  text-decoration: none;
  display: block;
}
.album-card-simple {
  background: var(--bg-secondary);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #f7f7f7;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.3s ease, border-color 0.3s ease;
}
.album-card-simple:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 10px rgb(0 0 0 / 5%)
}
.album-cover-medium {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-primary);
}
.album-cover-medium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.album-card-simple:hover .album-cover-medium img {
  transform: scale(1.02);
}
.album-details-simple {
  padding: 15px;
}
.album-details-simple h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.3s ease;
}
.album-year {
  margin: 0 0 4px 0;
  font-size: 13px;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}
.album-songs-count {
  margin: 0;
  font-size: 12px;
  color: var(--accent-color);
  font-weight: 500;
}
@media (max-width: 768px) {
  .albums-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
  }
  .album-details-simple {
    padding: 12px;
  }
  .album-details-simple h3 {
    font-size: 14px;
  }
  .album-year {
    font-size: 12px;
  }
  .album-songs-count {
    font-size: 11px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .albums-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}
.static-page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
  line-height: 1.8;
}
.static-page-content h1 {
  font-size: 32px;
  color: var(--text-primary);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.static-page-content h2 {
  font-size: 24px;
  color: var(--text-primary);
  margin-top: 35px;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border-color);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.static-page-content h3 {
  font-size: 19px;
  color: var(--text-primary);
  margin-top: 25px;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.static-page-content p {
  color: var(--text-primary);
  margin-bottom: 15px;
  transition: color 0.3s ease;
}
.static-page-content ul,
.static-page-content ol {
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-left: 25px;
  transition: color 0.3s ease;
}
.static-page-content li {
  margin-bottom: 8px;
}
.static-page-content a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.2s ease;
}
.static-page-content a:hover {
  color: #357abd;
  text-decoration: underline;
}
.last-updated {
  color: var(--text-secondary);
  font-size: 14px;
  font-style: italic;
  margin-bottom: 25px;
  transition: color 0.3s ease;
}
.contact-form {
  background: var(--bg-secondary);
  padding: 25px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s ease, background-color 0.3s ease,
    color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.submit-btn {
  background: var(--accent-color);
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}
.submit-btn:hover {
  background: #357abd;
  transform: translateY(-1px);
}
.submit-btn:active {
  transform: translateY(0);
}
.contact-method {
  margin-bottom: 25px;
  padding: 15px;
  background: var(--bg-secondary);
  border-radius: 6px;
  border-left: 3px solid var(--accent-color);
  transition: background-color 0.3s ease;
}
.contact-method h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--accent-color);
  font-size: 17px;
}
.contact-method p {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}
.faq-item {
  margin-bottom: 25px;
  padding: 20px;
  background: var(--bg-secondary);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.faq-item h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--text-primary);
  font-size: 18px;
  transition: color 0.3s ease;
}
.faq-item p {
  margin-bottom: 0;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .static-page-content {
    padding: 20px 15px;
  }
  .static-page-content h1 {
    font-size: 26px;
  }
  .static-page-content h2 {
    font-size: 20px;
  }
  .contact-grid {
    grid-template-columns: 1fr !important;
  }
}
.related-songs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}
.related-song-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color-light);
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.related-song-item:hover {
  background: var(--hover-bg);
  border-color: var(--accent-color);
  transform: translateX(5px);
  box-shadow: 0 2px 8px var(--shadow-sm);
}
.related-song-thumb {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-primary);
}
.related-song-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-song-info {
  flex: 1;
  min-width: 0;
}
.related-song-title {
  margin: 0 0 4px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.3s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.related-song-item:hover .related-song-title {
  color: var(--accent-color);
}
.related-song-singer {
  margin: 0 0 2px 0;
  font-size: 13px;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.related-song-album {
  margin: 0;
  font-size: 12px;
  color: var(--text-tertiary);
  transition: color 0.3s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .related-song-thumb {
    width: 50px;
    height: 50px;
  }
  .related-song-title {
    font-size: 14px;
  }
  .related-song-singer {
    font-size: 12px;
  }
  .related-song-album {
    font-size: 11px;
  }
}
