:root{
  --red:#e11d2e;
  --red-dark:#be1020;
  --ink:#111;
  --muted:#6b7280;
  --line:#ececec;
  --bg:#fff;
  --card:#fff;
  --header:#fff;
  --header-ink:#111;
  --footer:#111111;
  --chip:#1a1a1a;
  --radius:14px;
  --shadow:0 8px 28px rgba(0,0,0,.08);
  --max:1120px;
  --font:"Sora",system-ui,-apple-system,"Segoe UI",sans-serif;
  --font-display:"Urbanist",system-ui,-apple-system,"Segoe UI",sans-serif;
}
html.dark{
  --ink:#f3f3f3;
  --muted:#a1a1aa;
  --line:#2a2a2e;
  --bg:#0c0c0e;
  --card:#161618;
  --header:#141416;
  --header-ink:#f3f3f3;
  --footer:#070708;
  --chip:#2a2a2e;
  --shadow:0 8px 28px rgba(0,0,0,.4);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:var(--font);
  background:var(--bg);
  color:var(--ink);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input,textarea,select{font:inherit}
.wrap{max-width:var(--max);margin:0 auto;padding:0 16px}
.admin-bar{
  position:fixed;top:0;left:0;right:0;z-index:120;height:40px;
  background:#111;color:#fff;display:flex;align-items:center;gap:14px;
  padding:0 14px;font-size:13px;font-weight:600;
}
.admin-bar a{color:#fff}
.admin-bar a:hover{color:#ffb4bb}
.admin-bar .ab-user{margin-left:auto;opacity:.7}
body.has-admin-bar{padding-top:40px}
body.has-admin-bar .site-header{top:40px}
.site-header{
  position:sticky;top:0;z-index:50;
  background:var(--header);
  border-bottom:1px solid var(--line);
}
.header-row{
  display:grid;
  grid-template-columns:44px 1fr 88px;
  align-items:center;
  height:62px;
  gap:8px;
}
.icon-btn{
  width:42px;height:42px;border:0;border-radius:12px;
  background:#f3f3f3;color:var(--ink);display:grid;place-items:center;cursor:pointer;
}
html.dark .icon-btn{background:#222}
.logo{
  display:flex;align-items:center;justify-content:center;gap:2px;
  font-family:var(--font-display);font-weight:800;letter-spacing:-.04em;font-size:22px;line-height:1;
}
.logo .play{
  width:22px;height:22px;border-radius:50%;background:var(--red);
  display:inline-grid;place-items:center;margin:0 1px 1px;
}
.logo .play svg{width:10px;height:10px;fill:#fff;margin-left:1px}
.logo .tld{font-size:11px;font-weight:700;margin-left:2px;opacity:.8;align-self:end;margin-bottom:2px}
.header-actions{display:flex;justify-content:flex-end;gap:6px}
.slide-nav{
  display:flex;gap:8px;overflow-x:auto;padding:0 16px 12px;
  scrollbar-width:none;
}
.slide-nav::-webkit-scrollbar{display:none}
.slide-nav a{
  flex:0 0 auto;padding:8px 16px;border-radius:999px;
  background:#f4f4f5;font-weight:600;font-size:14px;color:var(--ink);
  border:1px solid transparent;
}
html.dark .slide-nav a{background:#222}
.slide-nav a.active,.slide-nav a:hover{
  background:var(--red);color:#fff;
}
/* search overlay */
.search-panel{
  display:none;position:absolute;left:0;right:0;top:62px;
  background:var(--header);border-bottom:1px solid var(--line);padding:12px 16px 16px;
}
.search-panel.open{display:block}
.search-box{position:relative}
.search-box input{
  width:100%;padding:12px 44px 12px 14px;border-radius:999px;
  border:1px solid var(--line);background:var(--bg);color:var(--ink);
}
.search-box .go{
  position:absolute;right:4px;top:4px;width:36px;height:36px;border:0;border-radius:50%;
  background:var(--red);color:#fff;display:grid;place-items:center;cursor:pointer;
}
.live-results{margin-top:10px}
.live-item{display:flex;gap:10px;padding:8px 0;border-bottom:1px solid var(--line);align-items:center}
.live-item img{width:48px;height:48px;object-fit:cover;border-radius:8px}
.live-item strong{display:block;font-size:14px}
.live-item span{font-size:12px;color:var(--muted)}

.drawer{
  position:fixed;inset:0;background:rgba(0,0,0,.45);z-index:80;display:none;
}
.drawer.open{display:block}
.drawer-panel{
  width:min(86vw,320px);height:100%;background:var(--card);
  padding:18px 16px;overflow:auto;
}
.drawer a{display:block;padding:11px 8px;border-bottom:1px solid var(--line);font-weight:600}

.page-head{padding:22px 0 8px}
.page-head h1,.single-title,.section-head h2{font-family:var(--font-display)}
.page-head h1{margin:0;font-size:28px;letter-spacing:-.03em}
.page-date{color:var(--muted);margin:6px 0 10px;font-size:14px}
.page-desc{margin:0 0 14px;color:#333}
html.dark .page-desc{color:#ddd}
hr.sep{border:0;border-top:1px solid var(--line);margin:8px 0 4px}

.section{padding:18px 0 8px}
.section-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:10px}
.section-head h2{
  margin:0;font-size:22px;display:flex;align-items:center;gap:8px;letter-spacing:-.03em;
}
.section-head h2:before{content:"";width:5px;height:20px;background:var(--red);border-radius:4px;display:inline-block}
.view-more{color:var(--red);font-weight:700;font-size:14px}

.post-row{
  display:flex;gap:14px;padding:14px 0;border-bottom:1px solid var(--line);align-items:center;
}
.post-row img{
  width:92px;height:92px;object-fit:cover;border-radius:10px;flex:0 0 92px;background:#eee;
}
.post-row h3{margin:0 0 6px;font-size:16px;letter-spacing:-.02em;line-height:1.3}
.post-row .meta{color:var(--muted);font-size:13px;display:flex;align-items:center;gap:6px}

.load-more{
  display:block;width:100%;margin:16px 0 8px;padding:12px;
  border:1px solid var(--line);background:var(--card);border-radius:12px;
  font-weight:700;cursor:pointer;color:var(--ink);
}
.load-more:hover{border-color:var(--red);color:var(--red)}

/* sliders */
.h-scroll{display:flex;gap:12px;overflow-x:auto;padding:6px 0 12px;scroll-snap-type:x mandatory;scrollbar-width:none}
.h-scroll::-webkit-scrollbar{display:none}
.slide-card{flex:0 0 78%;scroll-snap-align:start}
@media(min-width:720px){.slide-card{flex-basis:32%}}
.slide-card img{width:100%;aspect-ratio:1;object-fit:cover;border-radius:12px}
.slide-card h3{margin:8px 0 0;font-size:15px}

.two-col{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.mini{display:flex;gap:10px;align-items:center;padding:8px 0;border-bottom:1px solid var(--line)}
.mini img{width:56px;height:56px;object-fit:cover;border-radius:8px;flex:0 0 56px}
.mini h3{margin:0;font-size:13px;line-height:1.3}

/* single */
.cat-pill{
  display:inline-block;background:var(--red);color:#fff;font-size:11px;font-weight:800;
  letter-spacing:.04em;padding:6px 12px;border-radius:999px;margin:16px 0 10px;
}
.single-title{font-size:28px;line-height:1.2;letter-spacing:-.035em;margin:0 0 12px}
.share-row{display:flex;gap:8px;flex-wrap:wrap;margin:10px 0 14px}
.share-row a,.share-row button{
  width:40px;height:40px;border-radius:50%;border:1px solid var(--line);
  background:var(--card);display:grid;place-items:center;cursor:pointer;color:var(--ink);
}
.author-row{display:flex;gap:12px;align-items:center;padding:12px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line);margin-bottom:16px}
.author-row img,.author-ph{width:48px;height:48px;border-radius:50%;object-fit:cover;background:#ddd}
.author-row strong{display:block}
.author-row span{color:var(--muted);font-size:13px}
.feat-wrap{margin:8px 0 8px}
.feat-wrap img{width:100%;border-radius:16px 16px 0 0;object-fit:cover}
.feat-cap{
  background:#f3f3f4;color:#666;text-align:center;padding:12px;border-radius:0 0 16px 16px;
  font-style:italic;
}
html.dark .feat-cap{background:#1c1c1f;color:#aaa}
.tg-btn{
  display:flex;align-items:center;justify-content:center;gap:8px;
  background:#2AABEE;color:#fff;font-weight:800;padding:12px;border-radius:12px;margin:14px 0;
}
.content{font-size:16.5px;line-height:1.7}
.content .lead-p{font-weight:700}
.content p{margin:0 0 14px}
.content a{color:var(--red);text-decoration:underline}
.player-box{
  margin:18px 0;padding:14px;border:1px solid var(--line);border-radius:16px;background:var(--card);
}
.tl-player{
  display:flex;gap:12px;align-items:center;margin:18px 0 10px;
  padding:12px;border:1px solid var(--line);border-radius:16px;background:var(--card);
}
.tl-cover{width:64px;height:64px;border-radius:10px;object-fit:cover;flex:0 0 64px}
.tl-main{flex:1;min-width:0}
.tl-title{font-weight:700;font-size:14px;margin-bottom:8px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.tl-controls{display:flex;align-items:center;gap:10px}
.tl-play{
  width:36px;height:36px;border:0;border-radius:50%;background:var(--red);color:#fff;
  display:grid;place-items:center;cursor:pointer;flex:0 0 36px;
}
.tl-bar{flex:1;height:6px;background:#e8e8e8;border-radius:99px;cursor:pointer;position:relative}
html.dark .tl-bar{background:#333}
.tl-fill{position:absolute;left:0;top:0;bottom:0;width:0;background:var(--red);border-radius:99px}
.tl-time{font-size:12px;color:var(--muted);min-width:34px}
.dl-mini{
  display:inline-flex;align-items:center;justify-content:center;
  background:var(--red);color:#fff!important;font-weight:800;font-size:14px;
  padding:8px 16px;border-radius:999px;text-decoration:none!important;margin:0 8px 12px 0;
}
.dl-btn{
  display:inline-block;text-align:center;margin-top:10px;background:var(--red);color:#fff!important;
  font-weight:800;padding:10px 16px;border-radius:12px;text-decoration:none!important;
}
.share-after{
  display:flex;align-items:center;gap:8px;flex-wrap:wrap;
  padding:16px 0;margin:8px 0 6px;border-top:1px solid var(--line);border-bottom:1px solid var(--line);
  font-weight:700;
}
.share-after a,.share-after button{
  width:38px;height:38px;border-radius:50%;border:1px solid var(--line);
  background:var(--card);display:grid;place-items:center;cursor:pointer;color:var(--ink);
}
.hot-wrap{position:relative;padding:0 8px 8px}
.hot-track{overflow:hidden}
.hot-page{display:none;grid-template-columns:1fr 1fr;gap:14px}
.hot-page.on{display:grid}
.hot-card img{width:100%;aspect-ratio:1;object-fit:cover;border-radius:16px}
.hot-card h3{margin:8px 2px 0;font-size:14px;line-height:1.3;font-weight:700}
.hot-nav{
  position:absolute;top:28%;width:36px;height:36px;border:0;border-radius:50%;
  background:#fff;box-shadow:0 4px 16px rgba(0,0,0,.18);cursor:pointer;z-index:2;font-size:16px;
}
html.dark .hot-nav{background:#222;color:#fff}
.hot-nav.prev{left:-2px}
.hot-nav.next{right:-2px}
.hot-dots{display:flex;justify-content:center;gap:6px;margin-top:14px}
.hot-dots button{width:8px;height:8px;border:0;border-radius:50%;background:#ddd;padding:0;cursor:pointer}
.hot-dots button.on{background:var(--red);width:18px;border-radius:99px}
.tags{display:flex;flex-wrap:wrap;gap:8px;margin:16px 0}
.tags a{
  border:1px solid var(--line);padding:6px 12px;border-radius:999px;font-size:13px;font-weight:600;
}
.tags a:hover{border-color:var(--red);color:var(--red)}

.comments{margin:24px 0}
.comments h2{font-size:20px}
.comment{padding:12px 0;border-bottom:1px solid var(--line)}
.comment .who{font-weight:700}
.comment .when{color:var(--muted);font-size:12px}
.comment-form input,.comment-form textarea{
  width:100%;margin:6px 0;padding:10px 12px;border:1px solid var(--line);border-radius:10px;background:var(--bg);color:var(--ink);
}
.comment-form button{background:var(--red);color:#fff;border:0;padding:10px 16px;border-radius:10px;font-weight:700;cursor:pointer}

.artists-row{display:flex;gap:14px;overflow-x:auto;padding:8px 0 16px;scrollbar-width:none}
.artists-row::-webkit-scrollbar{display:none}
.artist-chip{flex:0 0 auto;width:92px;text-align:center}
.artist-chip img{width:72px;height:72px;border-radius:50%;object-fit:cover;margin:0 auto 6px;border:2px solid var(--line)}
.artist-chip span{font-size:12px;font-weight:700}

.artists-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;padding:10px 0}
@media(min-width:800px){.artists-grid{grid-template-columns:repeat(6,1fr)}}
.artists-grid .artist-chip{width:auto}

.pagination{display:flex;gap:8px;flex-wrap:wrap;margin:18px 0}
.pagination a,.pagination span{
  min-width:36px;height:36px;display:grid;place-items:center;border:1px solid var(--line);border-radius:8px;padding:0 10px;font-weight:600;
}
.pagination .on{background:var(--red);color:#fff;border-color:var(--red)}

/* footer — matches uploaded screenshot */
.site-footer{background:var(--footer);color:#d7d7d7;padding:36px 0 22px;margin-top:12px}
.site-footer .wrap{max-width:var(--max)}
.soc{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:28px}
.soc a{
  width:46px;height:46px;border-radius:50%;background:#2a2a2a;display:grid;place-items:center;color:#fff;
}
.foot-links{display:flex;flex-wrap:wrap;gap:8px 18px;margin-bottom:28px}
.foot-links a{color:#cfcfcf;font-size:15px}
.foot-links a:hover{color:#fff}
.pop-title{color:#fff;font-weight:800;letter-spacing:.04em;margin:0 0 14px;font-size:16px}
.pop-tags{display:flex;flex-wrap:wrap;gap:10px}
.pop-tags a{
  border:1px solid #3a3a3a;color:#ddd;padding:8px 14px;border-radius:999px;font-size:13px;
}
.pop-tags a:hover{border-color:#fff;color:#fff}
.foot-copy{border-top:1px solid #2a2a2a;margin-top:28px;padding-top:18px;text-align:center;color:#9a9a9a;font-size:14px}

.toast{position:fixed;bottom:18px;left:50%;transform:translateX(-50%);background:#111;color:#fff;padding:8px 14px;border-radius:999px;font-size:13px;display:none;z-index:99}

@media(min-width:900px){
  .header-row{height:70px;grid-template-columns:48px 1fr 96px}
  .logo{font-size:26px}
  .post-row img{width:110px;height:110px;flex-basis:110px}
  .single-title{font-size:36px}
  .content{font-size:17.5px}
  .two-col{grid-template-columns:1fr 1fr}
}
.hidden{display:none!important}

/* Tunesloaded-matching after-content */
.single-title{font-family:var(--font-display);letter-spacing:-.04em}
.section-head h2{font-family:var(--font-display)}
.post-row h3,.hot-card h3,.album-card h3{font-family:var(--font-display)}
.dl-row{display:flex;justify-content:center;gap:10px;flex-wrap:wrap;margin:4px 0 16px}
.article-tags{margin-top:8px}
.share-after{gap:10px}
.share-label{font-weight:700;margin-right:4px}
.share-ic{
  width:42px;height:42px;border-radius:50%;border:1.5px solid var(--line);
  background:transparent;display:grid;place-items:center;cursor:pointer;color:var(--ink);
}
.share-after a.share-ic,.share-after button.share-ic{width:42px;height:42px;border:1.5px solid var(--line);background:transparent}
@media(min-width:900px){
  .hot-page{grid-template-columns:repeat(4,1fr)}
}
.album-slide{position:relative;padding:0 6px}
.album-track{display:flex;gap:14px;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;padding:4px 2px 12px}
.album-track::-webkit-scrollbar{display:none}
.album-card{flex:0 0 46%;scroll-snap-align:start}
@media(min-width:720px){.album-card{flex-basis:22%}}
.album-card img{width:100%;aspect-ratio:1;object-fit:cover;border-radius:16px}
.album-card h3{margin:8px 2px 0;font-size:14px;line-height:1.3;font-weight:700}
.hot-artists{padding-bottom:8px}
.hot-artists .artists-row{overflow:visible;flex-wrap:nowrap}
.tl-player{background:#111;border-color:#111;color:#fff}
.tl-player .tl-title{color:#fff}
.tl-player .tl-time{color:#bbb}
.tl-player .tl-bar{background:#333}
.back-top{
  position:fixed;right:16px;bottom:18px;width:44px;height:44px;border:0;border-radius:50%;
  background:var(--red);color:#fff;font-size:18px;cursor:pointer;z-index:40;display:none;
}
.back-top.show{display:grid;place-items:center}
