:root {
  --primary-color: #7E57C2;
  --primary-hover: #5C3899;
  --highlight-color: #00BCD4;
  --secondary-color: #C0C0C0;
  --white: #fff;
  --font-base: "Arimo", sans-serif;
  --light-gray-bg: #f0f2f5;
  --unit-bg: var(--white);
  --border-color: #e0e0e0;
  --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  --border-radius-main: 14px;
  --navbar-height: 68px;
  --search-field-height: 46px;
  --filter-section-height: 55px;
  --fixed-top-margin: 10px;
  --scrollbar-track-line-color: rgba(126, 87, 194, 0.2);
  --sidebar-width: 200px;
  --sidebar-width-medium: 160px;
  --layout-gap: 25px;
  --layout-gap-medium: 15px;
  --main-content-min-width: 768px;
}

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

body {
  font-family: var(--font-base);
  max-width: 100%;
  overflow-x: hidden;
  line-height: 1.6;
  background-color: var(--light-gray-bg);
  padding-bottom: 60px;
}

main {
  padding: 0;
}

a {
  color: var(--primary-color);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

a:hover, a:active {
  color: var(--highlight-color);
}

::selection {
  background-color: var(--highlight-color);
  color: var(--white);
}

h1, h2, h3, h4, .get-title {
  font-family: var(--font-base);
  font-weight: 700;
}

h1 {
  font-size: 2.5em;
}

h2 {
  font-size: 2em;
}

h3 {
  margin-bottom: 20px;
  font-size: 1.75em;
  color: #212121;
}

h4 {
  font-size: 1.5em;
}

p {
  margin-bottom: 30px;
  font-size: 15px;
}

::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(to right, transparent 0px, transparent 6px, var(--scrollbar-track-line-color) 6px, var(--scrollbar-track-line-color) 8px, transparent 8px, transparent 14px);
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 10px;
  border: 3px solid transparent;
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary-hover);
}

::-webkit-scrollbar-button {
  display: none;
}

::-webkit-scrollbar-button:vertical:start:decrement {
  display: block;
  height: 15px;
  background-color: #f0f0f0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%237E57C2'><polygon points='5,0 10,10 0,10'/></svg>");
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 4px 4px 0 0;
  margin-bottom: 2px;
}

::-webkit-scrollbar-button:vertical:end:increment {
  display: block;
  height: 15px;
  background-color: #f0f0f0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%237E57C2'><polygon points='5,10 10,0 0,0'/></svg>");
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 0 0 4px 4px;
  margin-top: 2px;
}

::-webkit-scrollbar-button:vertical:hover {
  background-color: rgba(126, 87, 194, 0.1);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

.body-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: var(--layout-gap);
  padding: 0 var(--layout-gap);
  padding-top: calc(var(--navbar-height) + var(--filter-section-height) + var(--fixed-top-margin) + 1rem);
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.main-content-column {
  flex: 1 1 auto;
  min-width: var(--main-content-min-width);
  max-width: 1150px;
  width: 100%;
}

.ad-sidebar {
  display: none;
  width: var(--sidebar-width);
  flex-shrink: 0;
  position: sticky;
  top: calc(var(--navbar-height) + var(--filter-section-height) + var(--fixed-top-margin) + 1rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease-in-out;
}
.ad-sidebar.no-transition {
  transition: none;
}
.ad-sidebar.is-visible {
  opacity: 1;
  visibility: visible;
}
.ad-sidebar.is-faded {
  opacity: 0.45;
  visibility: visible;
}

.ad-banner {
  display: flex;
  width: 100%;
  background-color: transparent;
  border-radius: 12px;
  text-decoration: none;
  align-items: flex-start;
  justify-content: center;
}

.ad-banner img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.ad-banner.ad-cta {
  min-height: 480px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 25px;
  background-color: #3a255f;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
  background-size: 20px 20px;
  color: var(--white);
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 30px rgba(44, 30, 72, 0.4);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.ad-banner.ad-cta:hover {
  box-shadow: 0 12px 35px rgba(44, 30, 72, 0.5);
  transform: translateY(-5px);
}

.ad-cta-icon {
  font-size: 2.5em;
  margin-bottom: 20px;
  width: 70px;
  height: 70px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1;
}

.ad-banner.ad-cta:hover .ad-cta-icon {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1) rotate(15deg);
}

.ad-cta-title {
  font-size: 1.5em;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.ad-cta-text {
  font-size: 1em;
  line-height: 1.6;
  margin: 0 auto 25px auto;
  opacity: 0.9;
  max-width: 90%;
  z-index: 1;
}

.ad-cta-button {
  display: inline-block;
  background-color: var(--highlight-color);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
  border: none;
  z-index: 1;
}

.ad-banner.ad-cta:hover .ad-cta-button {
  background-color: #00d4ee;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
}

.fixed-header-wrapper {
  position: fixed;
  top: var(--fixed-top-margin);
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--layout-gap);
}

.header-content-unit {
  background-color: rgba(237, 231, 246, 0.98);
  border-radius: var(--border-radius-main);
  border: 1px solid rgba(224, 224, 224, 0.5);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 1200px;
  margin: 0 auto;
}

.top-navbar-section {
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 15px;
  border-bottom: 1px solid rgba(126, 87, 194, 0.2);
  color: var(--primary-color);
  justify-content: space-between;
}

.filters-section {
  min-height: var(--filter-section-height);
  padding: 8px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.content {
  padding: 1rem 0;
}

.fixed-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(240, 242, 245, 0.95);
  padding: 10px 0;
  text-align: center;
  z-index: 999;
  border-top: 1px solid rgba(224, 224, 224, 0.7);
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.04);
}

.fixed-bottom p {
  font-size: 15px;
  background-color: transparent;
  margin: 0;
  padding: 0;
  color: #333;
}

.fixed-bottom p a,
.fixed-bottom p button {
  display: inline-block;
  padding: 5px 12px;
  margin: 0 5px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  font-size: 0.9em;
  line-height: 1.4;
  vertical-align: baseline;
  background-color: rgba(126, 87, 194, 0.08);
  color: var(--primary-hover);
  border: 1px solid rgba(126, 87, 194, 0.2);
}

.fixed-bottom p a:hover,
.fixed-bottom p button:hover,
.fixed-bottom p a:focus,
.fixed-bottom p button:focus {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  box-shadow: 0 1px 3px rgba(126, 87, 194, 0.2);
  outline: none;
}

.fixed-bottom .helpButton {
  font-size: 0.9em;
  padding: 5px 12px;
}

.content-area {
  margin-top: 20px;
  padding: 0;
}

.main-columns {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  align-content: flex-start;
}

.artists-column, .songs-column {
  flex: 1;
  min-width: 280px;
  background: #fafafa;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
}

.artists-column h2, .songs-column h2, a.column-title-link {
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 25px;
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  background-color: rgba(126, 87, 194, 0.1);
  color: var(--primary-hover);
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

a.column-title-link:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.artists-column h2 i, .songs-column h2 i, a.column-title-link i {
  margin-left: 10px;
  font-size: 1em;
  opacity: 0.8;
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
  gap: 25px;
  text-align: center;
}

.songs-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.songs-column li {
  padding: 12px 8px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95em;
  display: flex;
  align-items: center;
  transition: color 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
  border-radius: 4px;
  margin-bottom: 2px;
}

.songs-column li:hover {
  color: var(--primary-hover);
  background-color: rgba(0, 0, 0, 0.03);
}

.songs-column li:last-child {
  border-bottom: none;
}

.songs-column li i.song-icon {
  margin-left: 12px;
  color: var(--primary-color);
  font-size: 1em;
  width: 20px;
  text-align: center;
  transition: color 0.2s ease;
}

.songs-column li:hover i.song-icon {
  color: var(--highlight-color);
}

.ad-section {
  margin-top: 30px;
  position: relative;
}

.promo-container {
  display: flex;
  gap: 0;
  justify-content: center;
  padding: 0;
  background-color: #fafafa;
  border-radius: var(--border-radius-main);
  box-shadow: var(--card-shadow);
  margin-bottom: 30px;
  flex-wrap: wrap;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.promo-container {
  gap: 1px;
  background-color: var(--border-color);
}

.top-navbar-section .logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
  cursor: pointer;
}

.top-navbar-section .logo-container img {
  width: 32px;
  height: auto;
}

.top-navbar-section .logo-container .site-title {
  font-size: 1.2em;
  font-weight: 800;
  white-space: nowrap;
  color: var(--primary-hover);
}

.top-navbar-section .search-bar {
  position: relative;
  display: flex;
  align-items: center;
  flex-grow: 1;
  background-color: var(--white);
  border-radius: 25px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 0 0.5rem 0 1rem;
  height: var(--search-field-height);
  border: 1px solid #dfe1e5;
  transition: border-radius 0.15s ease-in-out, border-color 0.15s ease-in-out;
  min-width: 200px;
  max-width: 500px;
  margin: 0 auto;
}

.top-navbar-section .search-bar:focus-within {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  border-color: #c0c0c0;
}

.top-navbar-section .search-input {
  flex-grow: 1;
  border: none;
  outline: none;
  background: none;
  font-size: 1em;
  padding: 8px 10px;
  font-family: var(--font-base);
  height: 100%;
  caret-color: var(--primary-color);
  color: #333;
}

.top-navbar-section .search-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
}

.top-navbar-section .search-icon-button {
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  padding: 0;
  font-size: 1.15em;
  margin-left: 0px;
  transition: color 0.2s;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-navbar-section .search-icon-button:hover {
  color: var(--highlight-color);
  background-color: #f0f0f0;
}

.top-navbar-section .icons-container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.top-navbar-section .icons-container a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  font-size: 1.2em;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition: background-color 0.2s;
  text-decoration: none;
  background: none;
  padding: 0;
  position: static;
  margin: 0;
}

.top-navbar-section .icons-container a:hover {
  background-color: rgba(126, 87, 194, 0.1);
}

.top-navbar-section .icons-container .nhlocal-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.top-navbar-section .icons-container .nhlocal-icon {
  display: block;
  border-radius: 50%;
  width: 24px;
  height: auto;
}

.top-navbar-section .icons-container .feedback-button i {
  font-size: 1em;
  width: auto;
  height: auto;
}

.filter-button {
  background-color: transparent;
  border: 1px solid #7E57C2;
  color: #7E57C2;
  padding: 8px 16px;
  margin: 0 5px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
  font-family: var(--font-base);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: background-color 0.2s, color 0.2s;
}

.filter-button:hover:not(.active) {
  background-color: rgba(126, 87, 194, 0.1);
}

.filter-button.active {
  background-color: #7E57C2;
  color: white;
}

.alert {
  border-radius: 10px;
  background-color: var(--primary-color);
  width: 70%;
  color: var(--white);
  padding: 25px;
  text-align: center;
  text-decoration: none;
  margin: auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin-bottom: 1rem;
  list-style: none;
  background-color: transparent;
  font-size: 0.9em;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.breadcrumb-item a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item::before {
  font-family: "Font Awesome 5 Free";
  content: "\f053";
  font-weight: 900;
  display: inline-block;
  padding: 0 0.7rem;
  color: var(--border-color);
  font-size: 0.8em;
}

.breadcrumb-item.active {
  color: var(--primary-hover);
  font-weight: 600;
}

table {
  width: 100%;
  border-spacing: 0;
  table-layout: auto;
}

th, td {
  text-align: right;
  padding: 8px;
}

th {
  border-bottom: 1px solid #ddd;
}

td {
  border-bottom: none;
}

#resultsTable {
  width: 100%;
  margin: 1rem 0 2rem 0;
  overflow-y: auto;
  padding: 10px;
  box-sizing: border-box;
}

#search-results-area {
  display: block;
}

#resultsTable table {
  width: 100%;
  table-layout: fixed;
}

#resultsTable th, #resultsTable td {
  padding: 15px;
  text-align: right;
  vertical-align: middle;
  word-wrap: break-word;
}

#resultsTable th:nth-child(1),
#resultsTable td:nth-child(1) {
  width: 50%;
}

#resultsTable th:nth-child(2),
#resultsTable td:nth-child(2) {
  width: 20%;
}

#resultsTable th:nth-child(3),
#resultsTable td:nth-child(3) {
  width: 20%;
}

#resultsTable th:nth-child(4),
#resultsTable td:nth-child(4) {
  width: 10%;
  text-align: center;
}

.custom-table tbody.songs-list tr,
.custom-table tbody.songs-list tr td {
  cursor: default;
}

.custom-table tbody.songs-list td,
.custom-table tbody.songs-list th {
  border-radius: 0;
  padding: 10px;
}

.custom-table tbody.songs-list tr:hover:not(.inline-ad-row) {
  background-color: #e0e0e0;
  transition: background-color 0.15s ease-in-out;
}

.custom-table tbody.songs-list tr.downloading {
  background-color: #ede7f6;
  transition: background-color 0.4s ease;
}

.custom-table tbody.songs-list tr.downloading:hover {
  background-color: #d1c4e9;
}

.custom-table tbody.songs-list tr:hover:not(.inline-ad-row) td:first-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.custom-table tbody.songs-list tr:hover:not(.inline-ad-row) td:last-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.nhlocal-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.loading-container {
  display: flex;
  padding-top: 20px;
  align-items: baseline;
  justify-content: center;
}

.loading-image {
  width: 20px;
  padding-left: 10px;
}

.loading-text {
  font-size: 20px;
  color: #212121;
  font-weight: 600;
}

.overlay, .modal-overlay, .help-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.overlay.show, .modal-overlay.show, .help-overlay.show {
  display: flex;
}

.modal, .modal-content {
  max-width: 400px;
  padding: 40px;
  text-align: center;
  background-color: #F7F0FF;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 10001;
}

.modal h2, .modal-content h2, .help-modal h2 {
  font-size: 24px;
  color: #212121;
  margin-bottom: 20px;
  font-weight: 600;
}

.modal p, .modal-content p, .help-modal p {
  font-size: 16px;
  color: #607D8B;
  line-height: 1.6;
  margin-bottom: 5px;
}

.modal a, #modalOkButton {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  border: none;
}

.modal a:hover, #modalOkButton:hover {
  background-color: var(--primary-hover);
}

.modal-content {
  max-width: 400px;
  padding: 20px;
  text-align: center;
  background-color: #f1f1f1;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.help-modal img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 20px;
  font-family: var(--font-base);
  font-weight: 600;
  font-size: 1em;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  text-align: center;
  line-height: 1.4;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

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

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

.btn-secondary {
  background-color: rgba(126, 87, 194, 0.08);
  color: var(--primary-hover);
  border-color: rgba(126, 87, 194, 0.25);
}

.btn-secondary:hover {
  background-color: rgba(126, 87, 194, 0.15);
  color: var(--primary-color);
  border-color: rgba(126, 87, 194, 0.4);
}

.btn-text {
  background: rgba(126, 87, 194, 0.08);
  border: 1px solid rgba(126, 87, 194, 0.15);
  padding: 3px 10px;
  font-size: 0.9em;
  color: var(--primary-hover);
  border-radius: 20px;
  font-weight: 400;
}

.btn-text:hover {
  background-color: rgba(126, 87, 194, 0.15);
  color: var(--primary-color);
  border-color: rgba(126, 87, 194, 0.3);
  box-shadow: none;
  transform: none;
}

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: 200px 0;
  }
}
.loading-message {
  display: none;
  position: fixed;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 15px;
  border-radius: 10px;
  font-weight: bold;
  color: #212121;
  background-color: #F3F3F3;
  font-size: 16px;
  box-shadow: 2px 5px 15px rgba(126, 87, 194, 0.4);
  z-index: 9999;
  align-items: center;
}

.loading-message.show {
  display: flex;
}

.loading-message img {
  width: 16px;
  vertical-align: middle;
  margin-left: 6px;
}

.progress-bar-container {
  text-align: center;
  display: flex;
  align-items: center;
}

.progress-bar {
  width: 100px;
  background-color: #ccc;
  height: 10px;
  margin-top: 4px;
  margin-right: 12px;
  border-radius: 5px;
  overflow: hidden;
}

.progress {
  width: 0;
  height: 100%;
  border-radius: 5px 0 0 5px;
  background: linear-gradient(to right, var(--highlight-color), var(--primary-color));
  transition: width 0.3s ease-in-out;
}

#loadMoreButton {
  display: none;
  margin: 25px auto;
}

#loadMoreButton.show {
  display: block;
}

#prevSection, #nextSection {
  position: fixed;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #EDEDED;
  color: #555;
  font-size: 18px;
  cursor: pointer;
  z-index: 1000;
  transition: background 0.3s, color 0.3s;
  border: 2px solid var(--primary-color);
  bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#prevSection {
  left: 50%;
  margin-left: 45px;
}

#nextSection {
  right: 50%;
  margin-right: 45px;
}

#prevSection:hover, #nextSection:hover {
  background: var(--primary-hover);
  color: var(--white);
}

#prevSection:active, #nextSection:active {
  background: var(--primary-color);
  color: var(--white);
}

.actions-cell {
  white-space: nowrap;
  text-align: center;
}

.actions-button-group {
  display: inline-flex;
  border: 1px solid rgba(126, 87, 194, 0.4);
  border-radius: 4px;
  overflow: hidden;
  vertical-align: middle;
}

.actions-button-group .download-button,
.actions-button-group .share-button,
.actions-button-group .download-button-new {
  margin: 0;
  border: none;
  border-radius: 0;
  padding: 6px 10px;
  background-color: transparent;
  color: var(--primary-color);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.actions-button-group .share-button::before {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background-color: rgba(126, 87, 194, 0.4);
}

.actions-button-group .download-button:hover,
.actions-button-group .share-button:hover,
.actions-button-group .download-button-new:hover {
  background-color: rgba(126, 87, 194, 0.1);
  color: var(--primary-hover);
}

.actions-button-group .download-button:active,
.actions-button-group .share-button:active,
.actions-button-group .download-button-new:active {
  background-color: rgba(126, 87, 194, 0.2);
}

.actions-button-group .share-button.copied i.fa-check {
  color: #4CAF50;
}

.actions-button-group .share-button.copied {
  cursor: default;
}

@keyframes colorTransition {
  0% {
    color: var(--primary-color);
  }
  50% {
    color: var(--highlight-color);
  }
  100% {
    color: #AED581;
  }
}
.autocomplete-suggestions-container {
  position: absolute;
  top: 100%;
  left: -1px;
  right: -1px;
  width: calc(100% + 2px);
  background-color: var(--white);
  border-left: 1px solid #c0c0c0;
  border-right: 1px solid #c0c0c0;
  border-bottom: 1px solid #c0c0c0;
  border-top: none;
  border-radius: 0 0 12px 12px;
  z-index: 1100;
  box-shadow: 0 4px 6px rgba(32, 33, 36, 0.28);
  display: none;
  margin-top: 0;
  box-sizing: border-box;
}

.search-bar {
  position: relative;
  transition: border-radius 0.15s ease-in-out, border-color 0.15s ease-in-out;
  box-sizing: border-box;
}

.search-bar.search-bar--suggestions-open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: var(--white);
}

.autocomplete-suggestion-item {
  padding: 8px 18px;
  cursor: pointer;
  font-size: 0.95em;
  color: #202124;
  border-bottom: none;
  transition: background-color 0.1s ease-in-out;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-top: 1px solid #ebebeb;
}

.autocomplete-suggestion-item:first-child {
  border-top: none;
}

.autocomplete-suggestion-item:hover,
.autocomplete-suggestion-item.active {
  background-color: #f8f9fa;
  color: var(--primary-hover);
}

.autocomplete-suggestion-item strong {
  font-weight: 600;
  color: var(--primary-color);
}

.autocomplete-suggestions-container > div {
  margin: 0;
}

.autocomplete-suggestion-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  overflow: hidden;
}

.autocomplete-suggestion-item.history-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.autocomplete-suggestion-item.history-item i.fa-history {
  color: var(--primary-color);
  opacity: 0.7;
}

.autocomplete-suggestion-item.clear-history-button {
  text-align: center;
  color: #d32f2f;
  font-weight: 500;
  font-size: 0.9em;
  border-top: 1px solid #e0e0e0;
}

.autocomplete-suggestion-item.clear-history-button:hover {
  background-color: #fbe9e7 !important;
  color: #c62828 !important;
}

.terms-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--unit-bg, #fff);
  color: #333;
  border-top: 1px solid var(--border-color, #e0e0e0);
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.07);
  padding: 12px 15px;
  font-size: 0.95em;
  gap: 15px;
}

.terms-banner-text {
  margin: 0;
}

.terms-link {
  color: var(--primary-color, #7E57C2);
  text-decoration: underline;
  font-weight: 600;
}

.terms-banner-btn {
  background: var(--primary-color, #7E57C2);
  color: var(--white, #fff);
  border: none;
  border-radius: 6px;
  padding: 6px 18px;
  font-size: 0.95em;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}

.inline-ad-row:hover {
  background-color: transparent;
}

.inline-ad-cell {
  padding: 8px 0 !important;
  border-bottom: none;
}

.inline-ad-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.inline-ad-link:hover {
  box-shadow: 0 5px 12px rgba(126, 87, 194, 0.1);
  transform: translateY(-2px);
}

.inline-ad-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.inline-ad-icon {
  flex-shrink: 0;
}
.inline-ad-icon i {
  font-size: 24px;
  color: var(--primary-color);
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background-color: rgba(126, 87, 194, 0.1);
  border-radius: 50%;
}

.inline-ad-content {
  flex-grow: 1;
  text-align: right;
}
.inline-ad-content .ad-title {
  font-weight: 700;
  font-size: 1.1em;
  color: var(--primary-hover);
  margin: 0 0 4px 0;
}
.inline-ad-content .ad-text {
  font-size: 0.95em;
  color: #444;
  margin: 0;
  line-height: 1.5;
}

.inline-ad-cta {
  flex-shrink: 0;
  margin-right: auto;
  padding: 7px 16px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: 600;
  transition: background-color 0.2s ease-in-out;
}

.inline-ad-link:hover .inline-ad-cta {
  background-color: var(--primary-hover);
}

.inline-ad-link.inline-ad-link--image {
  padding: 0;
  overflow: hidden;
  background-color: transparent;
  border: none;
  box-shadow: none;
}
.inline-ad-link.inline-ad-link--image:hover {
  box-shadow: none;
  transform: translateY(-2px);
}
.inline-ad-link.inline-ad-link--image .inline-ad-image {
  border-radius: 10px;
}

.top-navbar-section .search-bar.highlight-animation {
  animation: search-glow 1.5s ease-out;
}

@keyframes search-glow {
  0% {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border-color: #dfe1e5;
  }
  50% {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12), 0 0 10px 3px rgba(126, 87, 194, 0.4);
    border-color: var(--primary-color);
  }
  100% {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border-color: #dfe1e5;
  }
}
.ad-text, .title-song-list {
  margin-bottom: 5px;
}

.ad-text {
  font-size: 15px;
}

.title-song-list {
  font-weight: bold;
  font-size: 13px;
}

.song-list {
  font-size: 12px;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
}

.error-page {
  background-color: var(--light-gray-bg);
  color: #212121;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px;
}

.error-page h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.error-page h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.error-page p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.error-page .btn, .artists-list a {
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.error-page .btn {
  color: var(--white);
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  text-decoration: none;
}

.error-page .btn:hover {
  transform: translateY(-2px);
}

.artists-list {
  padding: 0.5rem 0 60px 0;
  background-color: transparent;
}

.archive-year-group h2 {
  font-size: 1.4em;
  padding: 10px;
  margin: 20px auto 10px auto;
  background-color: #f0f0f0;
  border-radius: 6px;
  max-width: 200px;
  text-align: center;
}

.artists-list ul, .archive-year-group ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.artists-list li {
  width: 200px;
}

.artists-list a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  text-align: center;
  font-size: 1.05em;
  font-weight: 500;
  color: var(--primary-color);
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.artists-list a:hover,
.artists-list a:focus {
  color: var(--white);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 4px 8px rgba(126, 87, 194, 0.2);
  transform: translateY(-2px);
  outline: none;
}

.page-main-title {
  background-color: #F8F5FD;
  color: var(--primary-hover);
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(126, 87, 194, 0.05);
  text-align: center;
  font-size: 1.7em;
  font-weight: 600;
  border: none;
  display: block;
  width: 100%;
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
}

.page-summary {
  text-align: center;
  font-size: 1.1em;
  color: #555;
  margin: -1rem auto 1.5rem auto;
}

.artist-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.artist-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 10px;
  transition: all 0.2s ease;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

a.artist-circle:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.artist-name {
  font-size: 0.9em;
  color: #333;
  font-weight: 500;
}

.ad-placeholder {
  background-color: transparent;
  color: #333;
  border: none;
  padding: 0;
  text-align: center;
  margin: 40px auto 20px auto;
}

.ad-placeholder h2 {
  font-size: 1.5em;
  color: var(--primary-hover);
  margin-top: 0;
  margin-bottom: 25px;
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  background-color: rgba(126, 87, 194, 0.1);
  border-radius: 6px;
  font-weight: 600;
}

.loading-placeholder {
  color: #999;
  padding: 20px;
  text-align: center;
  font-style: italic;
}

.feature-item {
  flex: 1;
  min-width: 260px;
  max-width: 33.33%;
  text-align: center;
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-item {
  background-color: #fafafa;
}

.feature-icon {
  font-size: 2.2em;
  color: var(--primary-color);
  margin-bottom: 15px;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item h3 {
  font-size: 1.2em;
  color: var(--primary-hover);
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-item p {
  font-size: 0.9em;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.feature-item .btn {
  margin-top: auto;
}

.feature-item .feature-item-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: auto;
  width: 100%;
}

.feature-item .feature-item-buttons .btn {
  margin-top: 0;
  flex-grow: 1;
  flex-basis: 120px;
}

.navigation-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.nav-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 25px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.nav-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(126, 87, 194, 0.1);
}

.nav-card-icon {
  font-size: 2.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.nav-card-title {
  font-size: 1.4em;
  color: var(--primary-hover);
  margin: 0 0 10px 0;
}

.nav-card-description {
  font-size: 1em;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 1120px) {
  .body-wrapper {
    gap: var(--layout-gap-medium);
    padding-left: var(--layout-gap-medium);
    padding-right: var(--layout-gap-medium);
  }
  .ad-sidebar {
    display: block;
    width: var(--sidebar-width-medium);
  }
}
@media (min-width: 1600px) {
  .body-wrapper {
    gap: var(--layout-gap);
    padding-left: var(--layout-gap);
    padding-right: var(--layout-gap);
  }
  .ad-sidebar {
    width: var(--sidebar-width);
  }
}
@media (max-width: 1400px) and (min-width: 1120px) {
  .ad-banner.ad-cta {
    padding: 20px;
  }
  .ad-cta-icon {
    width: 60px;
    height: 60px;
    font-size: 2.1em;
    margin-bottom: 15px;
  }
  .ad-cta-title {
    font-size: 1.3em;
  }
  .ad-cta-text {
    font-size: 0.95em;
    margin-bottom: 20px;
  }
  .ad-cta-button {
    padding: 10px 25px;
    font-size: 0.95em;
  }
}
@media (max-width: 1399px) {
  .fixed-header-wrapper {
    padding: 0 15px;
  }
}
@media (max-width: 1024px) {
  .top-navbar-section .site-title {
    display: none;
  }
}
@media (max-width: 900px) {
  .features-container {
    flex-direction: column;
    padding: 0;
  }
  .feature-item {
    max-width: 100%;
    width: 100%;
    padding: 25px 20px;
  }
  .feature-item p {
    flex-grow: 0;
  }
}
@media (max-width: 768px) {
  :root {
    --navbar-height: 60px;
    --search-field-height: 44px;
    --filter-section-height: 50px;
    --fixed-top-margin: 5px;
  }
  .body-wrapper {
    padding-top: calc(var(--navbar-height) + var(--filter-section-height) + var(--fixed-top-margin) + 0.5rem);
    padding-left: 1rem;
    padding-right: 1rem;
    gap: 0;
  }
  .main-content-column {
    min-width: 0;
  }
  .fixed-header-wrapper {
    left: 10px;
    right: 10px;
    padding: 0;
  }
  .header-content-unit {
    border-radius: 10px;
  }
  .top-navbar-section {
    padding: 0 15px;
    gap: 10px;
  }
  .top-navbar-section .search-bar {
    margin: 0 auto;
  }
  .top-navbar-section .search-input {
    font-size: 0.95em;
  }
  .top-navbar-section .search-icon-button {
    width: 34px;
    height: 34px;
    font-size: 1.1em;
  }
  .top-navbar-section .icons-container {
    gap: 5px;
  }
  .top-navbar-section .icons-container a {
    width: 34px;
    height: 34px;
    font-size: 1.15em;
  }
  .filters-section {
    gap: 8px;
    min-height: var(--filter-section-height);
    padding: 5px 10px;
  }
  .filter-button {
    padding: 6px 14px;
    font-size: 0.9em;
  }
}
@media (max-width: 680px) {
  .main-columns {
    flex-direction: column;
    gap: 30px;
  }
  .artists-column, .songs-column {
    min-width: unset;
    padding: 20px;
    flex: initial;
  }
  .artists-column h2, .songs-column h2, a.column-title-link {
    font-size: 1.3em;
  }
}
@media (max-width: 600px) {
  :root {
    --navbar-height: 55px;
    --search-field-height: 40px;
    --filter-section-height: 45px;
  }
  .body-wrapper {
    padding-top: calc(var(--navbar-height) + var(--filter-section-height) + var(--fixed-top-margin) + 0.5rem);
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .fixed-header-wrapper {
    left: 5px;
    right: 5px;
  }
  .header-content-unit {
    border-radius: 8px;
  }
  .top-navbar-section {
    padding: 0 8px;
    gap: 0px;
  }
  .top-navbar-section .icons-container .feedback-button {
    display: none;
  }
  .top-navbar-section .search-bar {
    margin: 0 auto;
    padding: 0 0.5rem 0 0.8rem;
    min-width: 0;
  }
  .top-navbar-section .search-input {
    font-size: 0.9em;
  }
  .top-navbar-section .search-icons {
    display: none;
  }
  .top-navbar-section .search-icon-button {
    width: 32px;
    height: 32px;
    font-size: 1em;
  }
  .top-navbar-section .icons-container {
    gap: 5px;
    margin-right: 0;
  }
  .top-navbar-section .icons-container a {
    width: 32px;
    height: 32px;
    font-size: 1.1em;
  }
  .top-navbar-section .icons-container a[href^="https://nhlocal"] {
    display: none;
  }
  .filters-section {
    padding: 5px 8px;
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }
  .filters-section::-webkit-scrollbar {
    height: 0;
  }
  .filter-button {
    padding: 5px 10px;
    font-size: 0.85em;
    flex-shrink: 0;
  }
  .constrained-content-area {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .constrained-content-area > #resultsTable {
    margin-top: 0;
  }
  #resultsTable {
    margin-top: 0 !important;
    padding: 0;
  }
  #resultsTable thead {
    display: none;
  }
  #resultsTable tr:not(.inline-ad-row) {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 12px;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  }
  #resultsTable td {
    display: block;
    width: auto;
    border: none;
    padding: 0;
    position: static;
    text-align: right;
  }
  #resultsTable td::before {
    content: none;
  }
  #resultsTable td:nth-of-type(1) {
    flex-basis: 100%;
    order: 1;
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
  }
  #resultsTable td:nth-of-type(2),
  #resultsTable td:nth-of-type(3) {
    order: 2;
    margin: 0;
    min-width: 0;
    flex: 1 1 calc(50% - 10px);
  }
  #resultsTable td:nth-of-type(4) {
    order: 3;
    margin: 0;
    flex: 1 1 100%;
    width: 100%;
  }
  #resultsTable td:nth-of-type(2) {
    margin-left: 0;
  }
  #resultsTable td.actions-cell {
    margin-top: 4px;
    white-space: normal;
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }
  #resultsTable td.actions-cell .actions-button-group {
    max-width: 100%;
    overflow: visible;
  }
  #resultsTable .btn-text {
    display: inline-block;
    padding: 4px 10px;
    background-color: #f1f3f5;
    border: 1px solid transparent;
    border-radius: 16px;
    font-size: 0.8em;
    font-weight: 500;
    color: var(--primary-hover);
    transition: background-color 0.2s, color 0.2s;
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
  }
  #resultsTable .btn-text:hover {
    background-color: #e9ecef;
    text-decoration: none;
  }
  .inline-ad-row {
    display: flex;
    width: 100%;
    margin-bottom: 12px;
  }
  #resultsTable .inline-ad-row .inline-ad-cell {
    width: 100%;
  }
  a {
    padding: 7px 10px;
  }
  .fixed-bottom {
    padding-top: 10px;
  }
  .fixed-bottom p {
    font-size: 11px;
    padding: 4px 10px;
  }
  .artists-list ul {
    gap: 10px;
  }
  .artists-list li {
    width: 140px;
  }
  .artists-list a {
    padding: 10px;
    font-size: 0.95em;
  }
  .terms-modal {
    font-size: 0.95em;
    padding: 10px 2vw 8px 2vw;
  }
  .terms-modal-btn {
    padding: 6px 10px;
    font-size: 0.98em;
  }
}
@media (max-width: 768px) and (min-width: 601px) {
  .artists-list li {
    width: 160px;
  }
}
@media (min-width: 769px) {
  .page-main-title {
    width: 70%;
    max-width: 500px;
  }
}

/*# sourceMappingURL=main.css.map */