/* ===== GNAKRY224 — Inspired by Complex, HipHopDX, Pitchfork ===== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=DM+Serif+Display&display=swap');

:root {
  --bg:        #0d0d0d;
  --bg2:       #111111;
  --card:      #161616;
  --card2:     #1c1c1c;
  --border:    #242424;
  --border2:   #2e2e2e;
  --accent:    #e63946;
  --accent2:   #ff6b35;
  --text:      #f0f0f0;
  --muted:     #777777;
  --dim:       #444444;
  --white:     #ffffff;
  --tag-bg:    #1e1e1e;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 7px 0;
  font-size: 11px;
  letter-spacing: 0.4px;
}
.top-bar .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar .date { color: var(--muted); text-transform: uppercase; }
.top-bar .socials { display: flex; gap: 20px; }
.top-bar .socials a {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: color 0.15s;
}
.top-bar .socials a:hover { color: var(--white); }

/* ===== HEADER ===== */
header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: baseline; gap: 3px; }
.logo-name {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--white);
  line-height: 1;
}
.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-bottom: 6px;
  margin-left: 2px;
}
.logo-tag {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 4px;
}
.search-bar {
  display: flex;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  width: 260px;
}
.search-bar input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 9px 14px;
  font-size: 13px;
  color: var(--text);
  font-family: inherit;
}
.search-bar input::placeholder { color: var(--dim); }
.search-bar button {
  background: none;
  border: none;
  padding: 9px 13px;
  color: var(--muted);
  font-size: 14px;
  transition: color 0.15s;
}
.search-bar button:hover { color: var(--white); }

/* ===== NAV ===== */
nav {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}
nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav ul {
  display: flex;
  list-style: none;
}
nav ul li a {
  display: block;
  padding: 13px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  transition: color 0.15s;
  position: relative;
}
nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.2s;
}
nav ul li a:hover,
nav ul li a.active { color: var(--white); }
nav ul li a:hover::after,
nav ul li a.active::after { transform: scaleX(1); }

.nav-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-right: 4px;
}
.live-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* ===== TICKER ===== */
.ticker-bar {
  background: var(--accent);
  padding: 0;
  overflow: hidden;
  height: 34px;
  display: flex;
  align-items: center;
}
.ticker-bar .inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}
.ticker-label {
  background: rgba(0,0,0,0.25);
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
}
.ticker-wrap { overflow: hidden; flex: 1; height: 100%; display: flex; align-items: center; }
.ticker {
  display: flex;
  gap: 80px;
  animation: scroll-ticker 35s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.2px;
}
.ticker-item::before { content: '—  '; opacity: 0.6; }
@keyframes scroll-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SECTION HEADER ===== */
.sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sec-head h2 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-head h2::before {
  content: '';
  display: block;
  width: 3px; height: 16px;
  background: var(--accent);
  border-radius: 1px;
}
.see-all {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.15s;
}
.see-all:hover { color: var(--accent); }

/* ===== TAG PILLS ===== */
.tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 3px 8px;
  border-radius: 2px;
  line-height: 1;
}
.tag-rap      { background: var(--accent);  color: #fff; }
.tag-music    { background: #1d6e3d;         color: #fff; }
.tag-album    { background: #5a2d8f;         color: #fff; }
.tag-chart    { background: #c17900;         color: #fff; }
.tag-video    { background: #1a1a1a;         color: var(--muted); border: 1px solid var(--border2); }
.tag-news     { background: #1a2a3a;         color: #6ba3c8; border: 1px solid #2a3a4a; }
.tag-exclu    { background: var(--accent);   color: #fff; }
.tag-diaspora { background: #1a2a1a;         color: #6bc87a; border: 1px solid #2a3a2a; }

/* ===== HERO ===== */
.hero { padding: 28px 0 0; }
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.hero-main {
  background: var(--card);
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a0a0a 0%, #0d0d0d 50%, #0a0d12 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  opacity: 0.15;
  user-select: none;
}
.hero-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 75%;
  background: linear-gradient(to top, rgba(13,13,13,0.98) 0%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 28px;
}
.hero-content .tag { margin-bottom: 10px; }
.hero-content h1 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 12px;
}
.hero-meta {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  gap: 14px;
}
.hero-meta span { display: flex; align-items: center; gap: 4px; }

.hero-side {
  background: var(--card);
  display: flex;
  flex-direction: column;
  divide-y: var(--border);
}
.side-item {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.side-item:last-child { border-bottom: none; }
.side-item:hover { background: var(--card2); }
.side-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--border2);
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
}
.side-text .tag { margin-bottom: 6px; }
.side-text h3 {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 6px;
}
.side-text .meta { font-size: 11px; color: var(--muted); }

/* ===== NEWS GRID ===== */
.news-section { padding: 36px 0; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.news-card {
  background: var(--card);
  cursor: pointer;
  transition: background 0.15s;
}
.news-card:hover { background: var(--card2); }
.news-thumb {
  height: 172px;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  opacity: 0.6;
  position: relative;
}
.news-thumb .tag {
  position: absolute;
  top: 12px; left: 12px;
}
.news-body { padding: 16px; }
.news-body h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 10px;
}
.news-body .meta {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
}

/* ===== CONTENT + SIDEBAR ===== */
.page-body { padding: 0 0 48px; }
.page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
}

/* ===== CHARTS ===== */
.charts-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 36px;
}
.charts-top {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.charts-tabs {
  display: flex;
  gap: 4px;
}
.ctab {
  background: none;
  border: 1px solid var(--border2);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 12px;
  border-radius: 2px;
  transition: all 0.15s;
}
.ctab:hover, .ctab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.chart-update { font-size: 11px; color: var(--dim); }

.chart-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s;
}
.chart-row:last-child { border-bottom: none; }
.chart-row:hover { background: var(--card2); }

.c-rank {
  width: 28px;
  font-size: 15px;
  font-weight: 900;
  color: var(--dim);
  text-align: center;
  flex-shrink: 0;
}
.c-rank.gold { color: #c9a227; font-size: 18px; }
.c-rank.silver { color: #8a8a8a; font-size: 17px; }
.c-rank.bronze { color: #a0522d; font-size: 17px; }

.c-art {
  width: 46px; height: 46px;
  border-radius: 3px;
  background: var(--bg2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 1px solid var(--border);
}
.c-info { flex: 1; min-width: 0; }
.c-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.c-artist { font-size: 12px; color: var(--muted); margin-top: 2px; }
.c-stat {
  text-align: right;
  flex-shrink: 0;
}
.c-streams { font-size: 13px; font-weight: 700; color: var(--text); }
.c-plat { font-size: 10px; color: var(--dim); margin-top: 1px; }
.c-move { font-size: 12px; width: 20px; text-align: center; flex-shrink: 0; }
.up { color: #3cb371; }
.down { color: var(--accent); }
.same { color: var(--dim); }

/* ===== ARTISTS ===== */
.artists-section { margin-bottom: 36px; }
.artists-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.artist-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 18px 12px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.artist-card:hover {
  border-color: var(--accent);
  background: var(--card2);
}
.a-ava {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--bg2);
  border: 2px solid var(--border2);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: border-color 0.15s;
}
.artist-card:hover .a-ava { border-color: var(--accent); }
.a-name { font-size: 12px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.a-genre { font-size: 10px; color: var(--muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.a-stat { font-size: 11px; color: var(--text); font-weight: 600; }

/* ===== ALBUMS ===== */
.albums-section { margin-bottom: 36px; }
.albums-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.album-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s;
}
.album-card:hover { border-color: var(--border2); }
.alb-cover {
  aspect-ratio: 1;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  opacity: 0.7;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.alb-play {
  position: absolute;
  bottom: 8px; right: 8px;
  background: var(--accent);
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.15s;
}
.album-card:hover .alb-play { opacity: 1; }
.alb-info { padding: 12px; }
.alb-title { font-size: 12px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.alb-artist { font-size: 11px; color: var(--muted); margin-bottom: 5px; }
.alb-date { font-size: 10px; color: var(--dim); text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== VIDEOS ===== */
.videos-section { margin-bottom: 36px; }
.videos-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.vid-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s;
}
.vid-card:hover { border-color: var(--border2); }
.vid-thumb {
  aspect-ratio: 16/9;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  opacity: 0.5;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.vid-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  transition: background 0.15s;
}
.vid-card:hover .vid-overlay { background: rgba(230,57,70,0.15); }
.vid-play {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--accent);
}
.vid-info { padding: 12px; }
.vid-title { font-size: 12px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.vid-views { font-size: 10px; color: var(--muted); }

/* ===== SIDEBAR ===== */
.sidebar { display: flex; flex-direction: column; gap: 20px; }

.widget {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.w-head {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
}

/* Trending widget */
.trend-list { display: flex; flex-direction: column; }
.trend-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s;
}
.trend-item:last-child { border-bottom: none; }
.trend-item:hover { background: var(--card2); }
.t-num {
  font-size: 20px;
  font-weight: 900;
  color: var(--border2);
  line-height: 1;
  flex-shrink: 0;
  width: 22px;
}
.t-title { font-size: 12px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.t-sub { font-size: 10px; color: var(--muted); }

/* Stats widget */
.stats-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.s-box {
  padding: 16px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.s-box:nth-child(2), .s-box:nth-child(4) { border-right: none; }
.s-box:nth-child(3), .s-box:nth-child(4) { border-bottom: none; }
.s-num {
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  display: block;
  line-height: 1.1;
}
.s-lbl { font-size: 9px; color: var(--dim); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* Social widget */
.social-btns { display: flex; flex-direction: column; }
.s-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: background 0.15s;
  color: var(--text);
}
.s-btn:last-child { border-bottom: none; }
.s-btn:hover { background: var(--card2); }
.s-icon { width: 28px; height: 28px; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.s-icon.fb { background: #1877f2; }
.s-icon.ig { background: linear-gradient(135deg, #f09433, #dc2743, #bc1888); }
.s-icon.tt { background: #010101; border: 1px solid var(--border2); }
.s-count { margin-left: auto; font-size: 11px; color: var(--muted); font-weight: 400; }

/* Newsletter widget */
.nl-body { padding: 16px; }
.nl-body p { font-size: 12px; color: var(--muted); margin-bottom: 12px; line-height: 1.5; }
.nl-body input {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 3px;
  padding: 9px 12px;
  font-size: 12px;
  color: var(--text);
  font-family: inherit;
  outline: none;
  margin-bottom: 8px;
  transition: border-color 0.15s;
}
.nl-body input:focus { border-color: var(--accent); }
.nl-body input::placeholder { color: var(--dim); }
.nl-body button {
  width: 100%;
  background: var(--accent);
  border: none;
  border-radius: 3px;
  padding: 9px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: opacity 0.15s;
}
.nl-body button:hover { opacity: 0.85; }

/* Agenda widget */
.agenda-list { display: flex; flex-direction: column; }
.ag-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
}
.ag-item:last-child { border-bottom: none; }
.ag-date {
  background: var(--accent);
  color: #fff;
  min-width: 38px;
  border-radius: 3px;
  text-align: center;
  padding: 4px 6px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  flex-shrink: 0;
}
.ag-date .day { font-size: 16px; font-weight: 900; display: block; }
.ag-event { font-size: 11px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.ag-loc { font-size: 10px; color: var(--muted); }

/* ===== FOOTER ===== */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  margin-top: 12px;
}
.footer-main {
  padding: 40px 0 32px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  border-bottom: 1px solid var(--border);
}
.f-brand .logo-name { font-size: 26px; }
.f-brand p {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 260px;
}
.f-col h4 {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 14px;
}
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.f-col ul li {
  font-size: 12px;
  color: var(--dim);
  cursor: pointer;
  transition: color 0.15s;
}
.f-col ul li:hover { color: var(--white); }
.f-bottom {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--dim);
}
.f-bottom a { color: var(--dim); margin-left: 16px; transition: color 0.15s; }
.f-bottom a:hover { color: var(--muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-side { flex-direction: row; flex-wrap: wrap; }
  .side-item { width: 50%; }
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; }
  .artists-row { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
  .artists-row { grid-template-columns: repeat(3, 1fr); }
  .albums-row { grid-template-columns: 1fr 1fr; }
  .videos-row { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .sidebar { grid-template-columns: 1fr; }
  nav ul { overflow-x: auto; }
  .search-bar { display: none; }
}
@media (max-width: 540px) {
  .news-grid { grid-template-columns: 1fr; }
  .artists-row { grid-template-columns: 1fr 1fr; }
  .hero-side { flex-direction: column; }
  .side-item { width: 100%; }
  .footer-main { grid-template-columns: 1fr; }
}
