:root {
	--ua-blue: #0057b7;
	--ua-yellow: #ffd700;
	--bg-light: #f5f7fa;
}
* {
	box-sizing: border-box;
}
body {
	margin: 0;
	font-family: 'Segoe UI', sans-serif;
	background: var(--bg-light);
}
header {
	background: var(--ua-blue);
	color: white;
	padding: 10px 20px;
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
.left {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1;
}
.logo {
	font-size: 22px;
	white-space: nowrap;
}
.logo img {
	width: 34px;
	height: 34px;
	margin-top: 3px;
}
.search-container {
	flex: 1;
	display: flex;
}
form {
	width: 100%;
}
.search-container input {
	flex: 1;
	padding: 8px;
	border: none;
	border-radius: 6px 0 0 6px;
	font-size: 15px;
}
.search-container button {
	padding: 8px 12px;
	background: var(--ua-yellow);
	border: none;
	border-radius: 0 6px 6px 0;
	cursor: pointer;
	font-size: 16px;
}
.auth-button {
	background: white;
	color: var(--ua-blue);
	padding: 10px 14px;
	border: none;
	border-radius: 6px;
	font-weight: bold;
	cursor: pointer;
	font-size: 14px;
}
.auth-button:hover {
	background: var(--ua-yellow);
}
.hamburger {
	display: none;
	flex-direction: column;
	gap: 4px;
	cursor: pointer;
	margin-left: 8px;
}
.hamburger div {
	width: 25px;
	height: 3px;
	background: white;
}
main {
	display: flex;
	flex-wrap: wrap;
	padding: 20px;
	padding-bottom: 90px;
}
.content {
	flex: 3;
	min-width: 300px;
}
.sidebar {
	flex: 1;
	min-width: 260px;
	padding-left: 20px;
}

.sidebar-section ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.sidebar-section li {
	margin-bottom: 8px;
}
.sidebar-section a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	display: block;
	padding: 6px 10px;
	border-radius: 4px;
	transition: background 0.2s;
	border-bottom: 1px solid var(--ua-yellow);
}
.sidebar-section a:hover {
	background: var(--ua-yellow);
	color: var(--ua-blue);
}
.artistslist img {
    width: 33px;
    height: 33px;
    border-radius: 4px;
	object-fit: cover;
}
.artistslist a {
	display: flex;
	align-items: center;
	text-decoration: none;
	font-size: 16px;
	gap: 10px;
}
.artistslist span {
	display: block;
	font-size: 12px;
}
h1 {
	margin: 0 0 25px 0;
	background-color: var(--ua-yellow);
	line-height: 45px;
	font-size: 24px;
	padding-left: 10px;
	border-radius: 0 5px 5px 0;
	border-left: 5px solid var(--ua-blue);
	color: var(--ua-blue);
}

.trackinf {
	background: white;
	display: flex;
	align-items: center;
	padding: 10px;
	margin-bottom: 15px;
	border-radius: 6px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.track-info {
	flex: 1;
	padding-left: 15px;
}
.track-info a {
	color: var(--ua-blue);
	font-size: 21px;
}
.track-info a:hover {
	text-decoration: none;
}
.cover-wrap {
	position: relative;
	width: 60px;
	height: 60px;
}
.cover-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
	display: block;
}
.play-btn {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	color: white;
	font-size: 1.5rem;
	border: none;
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
	cursor: pointer;
	border-radius: 5px;
}
.cover-wrap:hover .play-btn {
	opacity: 1;
}
.download-btn {
	background: var(--ua-blue);
	color: white;
	border: none;
	padding: 8px 12px;
	border-radius: 4px;
	text-decoration: none;
}
.download-btn:hover {
	background: var(--ua-yellow);
	color: var(--ua-blue);
}
.pagination {
	margin-top: 20px;
	text-align: center;
}
.pagination a {
	margin: 0 5px;
	padding: 5px 10px;
	background: #ddd;
	color: black !important;
	text-decoration: none !important;
	border-radius: 3px;
}
.pagination a:hover {
	background: var(--ua-yellow);
}
.pagination a.current {
	background: #666;
	color: white !important;
}
a {
	color: var(--ua-blue);
}
a:hover {
	text-decoration: none;
}
.glist {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	padding: 0;
	margin: 0;
	list-style: none;
}
.glist li {
	margin-bottom: 0.25em;
	margin-left: 25px;
}
.artists img {
	width: 175px;
	height: 175px;
	border-radius: 8px;
}
.artists p {
	text-align: center;
}
.text {
	margin-top: 30px;
	border-top: 3px solid var(--ua-blue);
	border-left: 1px solid #999999;
	border-right: 1px solid #999999;
	border-bottom: 1px solid #999999;
	border-radius: 15px;
	padding: 20px;
	font-size: 12px;
	color: #111111;
}
.sidebar-section {
	background: white;
	border-left: 6px solid var(--ua-yellow);
	padding: 15px;
	margin-bottom: 15px;
	border-radius: 6px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.sidebar-section h3 {
	margin-top: 0;
	color: var(--ua-blue);
}
.sidebar-section ul {
	list-style: none;
	padding: 0;
}
.sidebar-section li {
	margin-bottom: 8px;
	display: block;
	align-items: center;
}

/* MOBILE MENU (выпадающее поверх контента) */
nav#mobileMenu {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--ua-blue);
  padding: 15px 20px;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  animation: fadeIn 0.2s ease-in-out;
}

nav#mobileMenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav#mobileMenu li {
  margin: 10px 0;
}

nav#mobileMenu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

/* Показывать при активации */
nav#mobileMenu.active {
  display: block;
}

/* ПК: отключаем мобильное меню */
@media (min-width: 769px) {
  nav#mobileMenu {
    display: none !important;
  }
}

/* Анимация */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}








    footer {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #1c2a40;
      color: white;
      padding: 8px 12px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      z-index: 1000;
      font-size: 13px;
    }

    .player-container {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      max-width: 1200px;
      gap: 10px;
    }
    .controls button {
      background: transparent;
      border: none;
      color: white;
      font-size: 18px;
      cursor: pointer;
      margin: 0 3px;
    }
    .progress-container, .volume-container {
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .progress-bar, .volume-bar {
      height: 4px;
      appearance: none;
      background: var(--ua-yellow);
      border-radius: 4px;
      outline: none;
    }
    .progress-bar {
      width: 100px;
    }
    .volume-bar {
      width: 60px;
    }
    input[type="range"]::-webkit-slider-thumb {
      appearance: none;
      width: 10px;
      height: 10px;
      background: #fff;
      border-radius: 50%;
      cursor: pointer;
    }
    input[type="range"]::-webkit-slider-runnable-track {
      height: 4px;
    }

    /* Mobile styles */
@media (max-width: 768px) {
	.left {
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-between;
	}
	.hamburger {
		display: flex;
	}

	.logo b, .auth-button {
		display: none;
	}
	.search-container {
		flex: 1;
	}
	.mobhdn {
		display: none;
	}


      .player-container {
        flex-direction: column;
        gap: 4px;
      }
      .progress-container, .volume-container {
        justify-content: center;
        width: 100%;
      }
      .progress-bar, .volume-bar {
        width: 100%;
      }
      footer {
        font-size: 12px;
        padding: 6px 10px;
      }
    }
.track-card {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  margin-bottom: 24px;
}

.track-card__image img {
	width: 200px;
	height: 200px;
	object-fit: cover;
	border-right: 1px solid #eee;
	margin: 15px;
	border-radius: 8px;
}

.track-card__content {
  padding: 16px;
  flex: 1;
  min-width: 250px;
}

.track-card__title {
  font-size: 22px;
  margin-bottom: 12px;
  color: #222;
}

.track-card__info {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.track-card__info li {
  margin: 4px 0;
  font-size: 15px;
  color: #555;
}

.track-card__info strong {
  color: #000;
}

.track-card__buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  transition: background 0.3s;
}

.btn.download {
  background-color: #0077cc;
}

.btn.download:hover {
  background-color: #005fa3;
}

.btn.play {
  background-color: #28a745;
}

.btn.play:hover {
  background-color: #1e7e34;
}

.track-card__description {
  background: #f9f9f9;
  padding: 16px;
  border-radius: 12px;
  font-size: 15px;
  color: #333;
}
.breadcrumbs {
	margin-bottom: 10px;
}
#downfile {
  font-size: 20px;
  color: #333;
  margin-top: 20px;
}

#downloadLink {
  color: #007bff;
  font-weight: bold;
  text-decoration: underline;
}

#downloadLink:hover {
  text-decoration: none;
}

.progressbar {
  width: 100%;
  height: 10px;
  background: #eee;
  border-radius: 5px;
  overflow: hidden;
  margin: 20px 0;
}

.bar {
  height: 100%;
  background: #28a745;
  width: 0%;
  transition: width 1s linear;
}
.artist-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  gap: 20px;
}

.artist-card__info {
  flex: 1;
  min-width: 260px;
}

.artist-card__name {
  font-size: 28px;
  margin-bottom: 16px;
  color: #222;
}

.artist-card__stats {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  font-size: 16px;
}

.artist-card__stats li {
  margin-bottom: 8px;
  color: #444;
}

.artist-card__stats strong {
  color: #000;
}

.artist-card__text p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.artist-card__cover img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}