* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f2f2f2;
    padding-bottom: 80px; /* место под плеер */
}

/* ================= HEADER ================= */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    color: white;
    padding: 10px 15px;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo {
    font-size: 22px;
    font-weight: bold;
}
.logo strong {
	font-size: 28px;
    background: linear-gradient(135deg, #ff006a, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.logo a {
	text-decoration: none;
	color: #fff;
}
.logo img {
	width: 32px;
	height: 32px;
	margin-right: 7px;
}
.search {
    padding: 7px 12px;
    border-radius: 4px;
    border: none;
    width: 220px;
}
.header-right button {
    padding: 7px 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #ff006a, #ff8c00);
    color: #fff;
    transition: 0.25s;
    box-shadow: 0 4px 14px rgba(255, 0, 106, 0.35);
}

.header-right button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 0, 106, 0.45);
}

.header-right button:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(255, 0, 106, 0.25);
}
.burger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
}

h1 {
    font-family: "Inter", "Roboto", "Segoe UI", sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px;
    padding: 0;

    /* Градиентный текст */
    background: linear-gradient(135deg, #ff006a, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Лёгкое свечение */
    text-shadow: 0 0 18px rgba(255, 60, 106, 0.35);

    /* Плавность */
    transition: 0.3s ease;
}

@media (max-width: 600px) {
    h1 {
        font-size: 28px;
        text-shadow: 0 0 12px rgba(255, 60, 106, 0.25);
    }
}
.genres{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:1.5rem;padding:0;margin:0;list-style:none}.ganres a{color:#fff;font-weight:700}
.page {
	margin-top: 20px;
	text-align: center;
}
.page a {
	margin: 0 5px;
	padding: 5px 10px;
	background: #ddd;
	color: #222 !important;
	text-decoration: none !important;
	border-radius: 3px;
}
.page a:hover, .page a.current {
	background: #ff8c00;
	color: #fff !important;
}
.text {
	padding-top: 25px;
	margin-top: 25px;
	font-size: 12px;
	border-top: 3px solid #ff8c00;
}
.text p, .text h2, .text h3 {
	padding: 5px 0;
}
.homepage-intro {
    padding: 40px 0;
    color: #111;
    text-align: center;
}

.homepage-intro .intro-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 0 18px rgba(255, 60, 106, 0.35);
}

.homepage-intro .lead {
    max-width: 720px;
    margin: 0 auto 25px;
    font-size: 14px;
    line-height: 1.7;
    color: #111;
}


.homepage-intro .in-text {
    color: #ff006a;
    text-decoration: underline;
}

.homepage-intro .cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 20px;
}

.artists{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:1.5rem;padding:0;margin:0;list-style:none}
.artists li{margin-bottom:.25em;margin-left:25px}
.artists img{width:180px;height:180px;border-radius:8px}
.artists p{text-align:center}

.form textarea,.form input[type="text"],.form input[type="email"]{width:100%;padding:10px;border-radius:5px;border:1px solid #ccc;margin-bottom:10px}
.form button{padding:10px 20px;background:#ff006a;color:#fff;border:none;border-radius:5px;cursor:pointer}.form button:hover{opacity:.9}


/* ================= LAYOUT ================= */

.layout {
    display: flex;
}

/* ================= BEAUTIFUL SIDEBAR ================= */

.sidebar {
    width: 300px;
    background: rgba(20, 20, 20, 0.92);
    backdrop-filter: blur(12px);
    color: #fff;
    padding: 20px 15px;
    min-height: calc(100vh - 60px);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-title {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
	color: #fff;
	font-weight: bold;
	border-bottom: 1px solid #ff8c00;
}

/* MENU ITEMS */

.menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #ddd;
    text-decoration: none;
    font-size: 16px;
    background: transparent;
    transition: 0.25s;
}

.menu-item svg {
    width: 22px;
    height: 22px;
    fill: #ccc;
    transition: 0.25s;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.menu-item:hover svg {
    fill: #fff;
}

.menu-item.active {
    background: linear-gradient(135deg, #ff006a, #ff8c00);
    color: #fff;
    font-weight: bold;
}
a {
	color: #ff006a;
	text-decoration: none;
}
.menu-item.active svg {
    fill: white;
}

/* MOBILE SIDEBAR */

@media (max-width: 900px) {
    .sidebar {
        position: fixed;
        top: 60px;
        bottom: 0;
        left: 0;
        z-index: 1000;
        transform: translateX(-100%);
        transition: 0.3s ease;
    }

    .sidebar.open {
        transform: translateX(0);
    }
}
@media (max-width: 560px) {
    .header-right button, .logo img, .logo span {
		display: none;
	}
}
/* ================= CONTENT BLOCKS ================= */

.block {
    margin-bottom: 40px;
}
.block a {
	color: #fff;
}
.block li, .text li {
	margin-left: 20px;
	padding: 5px;
}
.block h2 {
    font-size: 16px;
    margin-bottom: 15px;
	margin-top: 20px;
	border-bottom: 1px solid #ff8c00;
}

/* ARTISTS GRID */

.artists-grid {
    display: grid;
    gap: 10px;
}
.artists-grid a {
	color: #fff;
	text-decoration: none;
}
.artists-grid a:hover {
	color: #eee;
	text-decoration: underline;
}
.artist-card {
    background: #111;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.25s;
    display: flex;
    align-items: center;
    gap: 10px;  
}

.artist-card:hover {
    transform: translateY(-5px);
}

.artist-card img {
    width: 30px;
	height: 30px;
    border-radius: 6px;
    margin-bottom: 8px;
}

/* NEW TRACKS */

.tracks-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.track-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #111;
    padding: 12px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.track-item .track-cover img {
    width: 50px;
    height: 50px;
    background: #ccc;
    border-radius: 8px;
}

.track-info span {
    display: block;
    opacity: 0.7;
}

.tracks-list a {
	color: #ff8c00;
	line-height: 25px;
}
.tracks-list a:hover {
	color: #fff;
	text-decoration: none;
}

/* CONTENT */

.content {
    flex: 1;
    padding: 20px;
}

.track-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: #181818;
    border-radius: 12px;
    margin-bottom: 12px;
    transition: 0.25s;
    border: 1px solid rgba(255,255,255,0.05);
}

.track-item:hover {
    background: #1f1f1f;
    border-color: rgba(255,255,255,0.12);
}

/* COVER */
.track-cover {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.track-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.track-play {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg,#ff006a,#ff8c00);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(4px);
    transition: 0.25s;
}

.track-cover:hover .track-play {
    opacity: 1;
    transform: translateY(0);
}

/* META */
.track-meta {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

.track-title a {
    font-size: 17px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s;
}

.track-title a:hover {
    color: #ff8c00;
}

.track-artist {
    font-size: 14px;
    color: #aaa;
}

/* DOWNLOAD BUTTON */
.track-buttons {
    display: flex;
    align-items: center;
}
.track-buttons span {
	color: #ccc;
	margin-right: 15px;
}
.btn-download {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #222;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: 0.25s;
}

.btn-download:hover {
    background: linear-gradient(135deg,#ff006a,#ff8c00);
    box-shadow: 0 0 10px rgba(255,60,106,0.5);
}



/* ================= PLAYER ================= */

.player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    border-top: 1px solid #333;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    z-index: 9999;
    color: #fff;
}

.player-cover img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 6px;
}

.player-info {
    flex-grow: 1;
}

#player-title {
    font-weight: bold;
    font-size: 15px;
}

#player-artist {
    font-size: 13px;
    opacity: .7;
}

.player-controls button {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.player-progress {
    display: flex;
    align-items: center;
    gap: 8px;
}

#seek-bar {
    width: 140px;
}

.player-volume input {
    width: 80px;
}

.track-item.playing {
    background: linear-gradient(135deg, rgba(255,0,106,0.15), rgba(255,140,0,0.15));
    border-color: rgba(255,140,0,0.4);
    box-shadow: 0 0 12px rgba(255,80,0,0.25);
}

.track-item.playing .track-title a {
    color: #ff8c00;
    font-weight: 700;
}

.track-item.playing .track-cover img {
    opacity: 0.9;
}

.track-item.playing .track-play {
    opacity: 1 !important;
    transform: scale(1.05);
}

/* Контейнер */
.track-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}


/* Основной блок трека */
.track-section {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: #eee;
  border-radius: 6px;
  padding: 20px;
  border: 1px solid #666;
}

.ti { list-style: none; padding: 0; margin: 0 0 20px; }
.ti li { display: flex; margin-bottom: 6px; font-size: 0.95rem; }
.ti .label { width: 140px; opacity: .7; }

/* Кнопки */
.buttons { display: flex; gap: 12px; }

.btn-play {
  background: #999;
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255,152,0,.3);
}
.btn-play:hover {
  background: #666;
}

/* Кнопка скачивания — специально НЕяркая */
.btn-down {
  font-size: 0.85rem;
  padding: 10px 14px;
  border-radius: 8px;
  background: #333;
  border: 1px solid #111;
  text-decoration: none;
  color: #fff;
}
.btn-down:hover {
  border-color: #999;
  color: #111;
}

/* Текст */
.songtext {
  margin-top: 28px;
  line-height: 1.55;
  font-size: 1rem;
}
.songtext p {
  margin-bottom: 14px;
}

/* Адаптив */
@media (max-width: 780px) {
  .track-section {
    flex-direction: column;
    padding: 14px;
  }
  .track-cover { width: 100%; }
  .btn-play { width: 100%; text-align: center; }
  .btn-download { width: 100%; text-align: center; }
}


/* ================= MOBILE ================= */

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 998;
}

@media (max-width: 900px) {

    .burger {
        display: block;
    }

    .sidebar {
        position: fixed;
        top: 60px;
        left: 0;
        bottom: 0;
        transform: translateX(-100%);
        z-index: 1000;
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .overlay.show {
        display: block;
    }

    .search {
        width: 140px;
    }

    .layout {
        flex-direction: column;
    }
}

.footer {
    background: #111;
    color: #ccc;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 25px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: .2s;
}

.footer-links a:hover {
    color: #fff;
}

/* SHARE BUTTONS */

.fstxt {
    opacity: .7;
    font-size: 14px;
	margin-bottom: 5px;
}

.footer-share {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.share-btn {
    display: flex;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff006a, #ff8c00);
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: .25s;
	cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 14px rgba(255, 0, 106, 0.45);
}

.share-btn svg {
    width: 18px;
    height: 18px;
}

/* COPYRIGHT */
.footer-copy {
    font-size: 14px;
    line-height: 1.5;
    opacity: .7;
}
.footer-copy a {
	color: #fff;
	font-size: 12px;
	opacity: 1;
}
@media (max-width: 600px) {
    .footer-share {
        flex-wrap: wrap;
    }
}