
:root{
  --bg:#161616;
  --bg2:#2A2E34;
  --card:#1C1C1C;
  --text:#E6E1DA;
  --muted:#8A8A84;
  --muted2:#7A7A74;
  --accent:#B8945E;
  --shadow: 0 12px 40px rgba(0,0,0,.55);
  --radius: 16px;
  --radius2: 22px;
  --border: 1px solid rgba(230,225,218,.12);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  background: radial-gradient(1200px 800px at 20% 0%, rgba(184,148,94,.06), transparent 60%),
              radial-gradient(900px 600px at 80% 10%, rgba(42,46,52,.45), transparent 55%),
              linear-gradient(180deg, var(--bg), #0f0f0f 70%);
  color: var(--text);
}

a{color:inherit; text-decoration:none}
.container{max-width:1100px; margin:0 auto; padding: 20px}

.site-header{position:relative}
.header-img{
  height:280px;
  background-size:cover;
  background-position:center;
  filter: saturate(0.9) contrast(1.05);
}
.header-overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(22,22,22,.88), rgba(22,22,22,.35));
  display:flex; align-items:flex-end;
}
.brand{padding:24px}
.brand-title{font-size:34px; letter-spacing:.04em}
.brand-sub{margin-top:6px; color:var(--muted); max-width:520px}

.nav{
  position:sticky; top:0; z-index:50;
  background: rgba(22,22,22,.92);
  border-bottom: 1px solid rgba(230,225,218,.10);
  backdrop-filter: blur(10px);
}
.nav-burger{
  display:none;
  background:none; border:none; color:var(--text);
  font-size:22px; padding:14px 18px; cursor:pointer;
}
.nav-links{display:flex; gap:10px; padding:10px 14px; flex-wrap:wrap}
.nav-link{
  border: 1px solid rgba(230,225,218,.14);
  border-radius: 999px;
  padding:10px 14px;
  color: var(--muted);
  transition: all .15s ease;
}
.nav-link:hover{
  color: var(--text);
  border-color: rgba(184,148,94,.55);
  box-shadow: 0 0 0 3px rgba(184,148,94,.12);
}
.nav-link.active{
  color: var(--text);
  border-color: rgba(184,148,94,.70);
  background: rgba(184,148,94,.10);
}

.card{
  background: linear-gradient(180deg, rgba(28,28,28,.95), rgba(16,16,16,.88));
  border: var(--border);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding:18px;
}
.grid{display:grid; gap:16px}
.grid-2{grid-template-columns: 1.2fr .8fr}
@media (max-width: 860px){
  .grid-2{grid-template-columns:1fr}
}

.h1{font-size:26px; margin: 8px 0 16px}
.h2{font-size:18px; margin: 0 0 10px}
.p{color: var(--muted); line-height:1.55}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  background: rgba(184,148,94,.16);
  border: 1px solid rgba(184,148,94,.60);
  color: var(--text);
  padding:10px 14px;
  border-radius: 12px;
  cursor:pointer;
  transition: all .15s ease;
}
.btn:hover{background: rgba(184,148,94,.22)}
.btn-ghost{
  background: transparent;
  border: 1px solid rgba(230,225,218,.18);
  color: var(--muted);
}
.btn-ghost:hover{color:var(--text); border-color: rgba(230,225,218,.30)}

.list-item{display:flex; gap:14px}
.thumb{
  width:140px; height:96px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(230,225,218,.10);
  overflow:hidden;
  flex: 0 0 auto;
}
.thumb img{width:100%; height:100%; object-fit:cover; display:block}

.meta{font-size:12px; color: var(--muted2)}
.sep{height:1px; background: rgba(230,225,218,.10); margin: 14px 0}

.song-card{display:flex; gap:16px}
.song-cover{width:160px; height:160px; border-radius: 18px; overflow:hidden; border: 1px solid rgba(230,225,218,.10); background: rgba(255,255,255,.06); flex:0 0 auto}
.song-cover img{width:100%; height:100%; object-fit:cover; display:block}
.song-links{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.icon-link{
  border: 1px solid rgba(230,225,218,.14);
  border-radius: 14px;
  padding:10px 12px;
  color: var(--muted);
}
.icon-link:hover{color:var(--text); border-color: rgba(184,148,94,.55)}

.pagination{display:flex; gap:10px; justify-content:center; margin-top:18px}
.pagination a{padding:10px 12px; border-radius: 12px; border:1px solid rgba(230,225,218,.16); color:var(--muted)}
.pagination a:hover{color:var(--text); border-color: rgba(184,148,94,.55)}
.pagination .current{color:var(--text); border-color: rgba(184,148,94,.70); background: rgba(184,148,94,.10)}

.footer{
  margin-top: 26px;
  border-top: 1px solid rgba(230,225,218,.10);
  background: rgba(10,10,10,.55);
}
.footer-inner{padding: 18px 20px}
.footer-social{display:flex; gap:12px; flex-wrap:wrap}
.social-link{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(230,225,218,.12);
  color: var(--muted);
}
.social-link:hover{color:var(--text); border-color: rgba(184,148,94,.55)}
.footer-stats{margin-top:12px; color:var(--muted); font-size:13px}

.cookie-gate{
  position:fixed; inset:0; z-index:1000;
  display:none;
  align-items:center; justify-content:center;
  background: rgba(0,0,0,.78);
  padding: 18px;
}
.cookie-card{
  width:min(640px, 96vw);
  background: rgba(28,28,28,.98);
  border: 1px solid rgba(230,225,218,.14);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 18px;
}
.cookie-card h2{margin: 6px 0 10px}
.cookie-card p{margin: 0 0 14px; color: var(--muted); line-height:1.5}
.cookie-actions{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}

.notice{
  border-left: 3px solid rgba(184,148,94,.75);
  background: rgba(184,148,94,.10);
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--muted);
}
.form-row{display:grid; gap:10px; margin-top:10px}
input, textarea, select{
  width:100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(230,225,218,.14);
  border-radius: 12px;
  color: var(--text);
  padding: 10px 12px;
}
textarea{min-height:140px; resize:vertical}
label{color: var(--muted); font-size: 13px}

@media (max-width: 820px){
  .nav-burger{display:block}
  .nav-links{display:none; flex-direction:column}
  .nav-links.open{display:flex}
  .nav-link{border-radius: 14px}
  .song-card{flex-direction:column}
  .song-cover{width:100%; height:220px}
}
