* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	font-family: Verdana, sans-serif;
	background: linear-gradient(to bottom, #e0f7ff, #ffffff);
	color: #003049;
	line-height: 1.6;
}
a {
	color: #005577;
	text-decoration: none;
}
.container {
	max-width: 1200px;
	margin: auto;
	padding: 15px;
}
header {
  background: #ffffffcc;
  backdrop-filter: blur(8px);
  padding: 20px 0;
  border-bottom: 1px solid #ccf1ff;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo {
  font-size: 1.7em;
  font-weight: 600;
  color: #0077b6;
}
.logo a {
  display: flex;
  align-items: center; 
  gap: 10px;
  text-decoration: none;
  color: #0077b6;
  font-size: 1.5em;
  font-weight: bold;
}
.logo img {
	width: 40px;
	height: 40px;
}
.navbar {
  display: flex;
  gap: 20px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.burger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}
ul {
list-style: none;
}
.hero {
  background: linear-gradient(to top right, #aee2ff, #ffffff);
  padding: 100px 15px;
  text-align: center;
}
.hero strong {
  font-size: 2.8em;
  color: #004e89;
}
.hero p {
  font-size: 1.2em;
  color: #2a6f97;
  margin-top: 10px;
}

.search {
  background: #f1fbff;
  padding: 20px 15px;
  text-align: center;
}
#searchInput {
  width: 100%;
  max-width: 500px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #bde0fe;
  font-size: 16px;
  background-color: #ffffff;
}

.tracks {
  background: #fafdff;
  padding: 60px 15px;
}
.tracks h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2em;
  color: #005f73;
}
.track-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.track-card {
  background: #ffffff;
  border: 1px solid #d0f0ff;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 128, 255, 0.08);
  transition: transform 0.2s;
}
.track-card:hover {
  transform: translateY(-5px);
}
.track-card img {
  max-width: 220px;
  border-radius: 10px;
}
.track-card h3 {
  margin: 15px 0;
  font-size: 1.1em;
}
.play-btn {
  background: #0077b6;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}
.play-btn:hover {
  background: #0096c7;
}
.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;
}
.pagination {
	margin-top: 20px;
	text-align: center;
}
.pagination a {
	margin: 0 5px;
	padding: 5px 10px;
	background: #0077b6;
	color: #ffffff !important;
	text-decoration: none !important;
	border-radius: 3px;
}
.pagination a:hover {
	background: #0096c7;
}
.pagination a.current {
	background: #666;
	color: white !important;
}

footer {
	background: #dff6ff;
	padding: 30px 15px;
	text-align: center;
	margin-bottom: 100px;
}
footer p {
  margin-bottom: 10px;
  color: #0077b6;
}
.socials a {
  margin: 0 10px;
  color: #005f73;
  font-weight: 500;
}
.socials a:hover {
  text-decoration: underline;
}

#globalPlayer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #caf0f8;
  border-top: 1px solid #90e0ef;
  z-index: 1000;
}
#globalPlayer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  flex-wrap: wrap;
}
#nowPlaying {
  font-size: 14px;
  margin-right: 10px;
  color: #023e8a;
}
#player {
  width: 100%;
  max-width: 300px;
}

/* Адаптивность */
@media (max-width: 768px) {
  .navbar {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
  .navbar.active {
    display: flex;
  }
  .burger {
    display: block;
  }
  #globalPlayer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
#globalPlayer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffffee;
  border-top: 1px solid #caf0f8;
  backdrop-filter: blur(12px);
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 120, 200, 0.1);
}

#globalPlayer .container {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 15px;
  flex-wrap: wrap;
}

#playerCover {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.player-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#nowPlaying {
  font-size: 14px;
  font-weight: 500;
  color: #023e8a;
  margin-bottom: 5px;
}

#player {
  width: 100%;
}

@media (max-width: 600px) {
  #globalPlayer .container {
    flex-direction: column;
    align-items: flex-start;
  }
  #playerCover {
    margin-bottom: 10px;
  }
  .player-info {
    width: 100%;
  }
}
.search-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 600px;
  margin: auto;
}

.search-form input {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #bde0fe;
  font-size: 16px;
  background-color: #ffffff;
  min-width: 200px;
}

.search-form button {
  background-color: #0077b6;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0, 119, 182, 0.2);
  transition: background 0.2s ease;
}

.search-form button:hover {
  background-color: #0096c7;
}