:root {
  --dark-bg: #0f0f0f;
  --dark-card: #171717;
  --dark-border: #2a2a2a;
  --dark-text: #f5f5f5;
  --dark-muted: #aaa;

  --light-bg: #ffffff;
  --light-card: #f3f3f3;
  --light-border: #ddd;
  --light-text: #111;
  --light-muted: #666;

  --accent: #e50914;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Ubuntu, sans-serif;
}

body {
  transition: background 0.3s ease, color 0.3s ease;
}

body[data-theme="dark"] {
  background: var(--dark-bg);
  color: var(--dark-text);
}

body[data-theme="light"] {
  background: var(--light-bg);
  color: var(--light-text);
}

img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 92%;
  max-width: 1250px;
  margin: auto;
}

/* HEADER (always dark like NJO) */
.header {
  position: sticky;
  top: 0;
  background: #000;
  border-bottom: 1px solid #222;
  z-index: 1000;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 20px;
  color: #fff;
}

.desktop-nav a {
  margin: 0 14px;
  font-size: 14px;
  font-weight: 600;
  color: #ddd;
}

.desktop-nav a:hover {
  color: #fff;
}

.menu-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.actions i,
.theme-btn {
  margin-left: 14px;
  font-size: 16px;
  cursor: pointer;
  color: #eee;
  background: none;
  border: none;
}

.actions i:hover,
.theme-btn:hover {
  color: #fff;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0 auto 0 0;
  width: 270px;
  background: #000;
  padding: 80px 20px 20px;
  transform: translateX(-100%);
  transition: 0.3s ease;
  z-index: 2000;
}

.mobile-menu.active {
  transform: translateX(0);
}

.close-menu {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #222;
  font-size: 15px;
  color: #fff;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  padding: 45px 0;
}

.tag {
  display: inline-block;
  font-size: 12px;
  border: 1px solid currentColor;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.hero-left img {
  width: 500px;
  height: 289px;
  object-fit: cover;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-left img {
    width: 100%;
    max-width: 100%;
    height: 289px;
  }
}



.hero-left h1 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-right h2 {
  font-size: 24px;
  margin-bottom: 20px;
  border-bottom: 3px solid;
  padding-bottom: 12px;
}

/* STORIES */
.story {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid;
  align-items: center;
}

.story img {
  width: 150px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.story h3 {
  font-size: 14px;
  line-height: 1.3;
}

.badge {
  display: inline-block;
  font-size: 11px;
  border: 1px solid currentColor;
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 6px;
}

/* SECTIONS */
.section {
  padding: 45px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  border-bottom: 1px solid;
  padding-bottom: 10px;
}

.section-header h2 {
  font-size: 26px;
  letter-spacing: 1px;
}

.section-header a {
  font-size: 13px;
}

.week {
  font-size: 14px;
}

/* BEST NEW MUSIC */
.music-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
}

.music-card {
  text-align: center;
}

.music-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin: auto;
  border: 4px solid;
}

.music-card .rank {
  display: block;
  margin-top: 10px;
  font-size: 22px;
  font-weight: 800;
}

.music-card h4 {
  margin-top: 6px;
  font-size: 14px;
}

.music-card p {
  font-size: 13px;
  color: var(--accent);
}

/* GRID CARDS */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 22px;
}

.card {
  padding: 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.2s ease;
  background: var(--dark-card);
}

body[data-theme="light"] .card {
  background: var(--light-card);
}

.card:hover {
  transform: translateY(-3px);
}

.card h3 {
  margin-top: 10px;
  font-size: 15px;
}

.text-card {
  padding: 18px;
}

/* FOOTER (always dark like NJO) */
.footer {
  background: #000;
  margin-top: 60px;
  border-top: 1px solid #222;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px;
  padding: 50px 0;
}

.footer-logo {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 10px;
}

.footer-socials i {
  margin-right: 12px;
  margin-top: 12px;
  font-size: 18px;
  cursor: pointer;
}

.footer-grid h4 {
  margin-bottom: 12px;
  font-size: 15px;
}

.footer-grid a {
  display: block;
  font-size: 13px;
  color: #ccc;
  margin-bottom: 8px;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #222;
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

.footer {
  color: white; /* for other footer text */
}
.footer a {
  color: white; /* for links outside this section, if needed */
}
.footer-links a {
  text-decoration: underline; /* only underlined in this section */
}

/* LIGHT MODE OVERRIDES */
body[data-theme="light"] .hero-right h2,
body[data-theme="light"] .story,
body[data-theme="light"] .section-header,
body[data-theme="light"] .music-card img {
  border-color: var(--light-border);
}

body[data-theme="light"] .week,
body[data-theme="light"] .section-header a {
  color: var(--light-muted);
}

/* DARK MODE OVERRIDES */
body[data-theme="dark"] .hero-right h2,
body[data-theme="dark"] .story,
body[data-theme="dark"] .section-header,
body[data-theme="dark"] .music-card img {
  border-color: var(--dark-border);
}

body[data-theme="dark"] .week,
body[data-theme="dark"] .section-header a {
  color: var(--dark-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .music-card img {
    width: 110px;
    height: 110px;
  }
}
/* ================= SONGS PAGE ================= */

.songs-hero h1 {
  font-size: 36px;
  margin-top: 40px;
}

.songs-hero hr {
  margin-top: 12px;
  border: none;
  border-top: 1px solid;
}

.songs-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  padding: 40px 0;
}

.songs-feature img {
  border-radius: 14px;
  margin-bottom: 14px;
}

.songs-feature h2 {
  font-size: 26px;
  line-height: 1.2;
}

.songs-latest {
  display: flex;
  flex-direction: column;
}

.song-row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid;
  align-items: center;
}

.song-row img {
  width: 100px;
  height: 65px;
  object-fit: cover;
  border-radius: 8px;
}

.song-row h3 {
  font-size: 14px;
  line-height: 1.3;
}

/* PAGINATION */
.pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.pagination button {
  padding: 8px 14px;
  background: none;
  border: 1px solid;
  color: inherit;
  border-radius: 6px;
  cursor: pointer;
}

.pagination button.active,
.pagination button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* LIGHT MODE FIXES */
body[data-theme="light"] .songs-hero hr,
body[data-theme="light"] .song-row,
body[data-theme="light"] .pagination button {
  border-color: var(--light-border);
}

/* DARK MODE FIXES */
body[data-theme="dark"] .songs-hero hr,
body[data-theme="dark"] .song-row,
body[data-theme="dark"] .pagination button {
  border-color: var(--dark-border);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .songs-top {
    grid-template-columns: 1fr;
  }

  .songs-feature h2 {
    font-size: 22px;
  }
}



.share-box {
  margin-top: 30px;
  padding-top: 5px;
  
  
}

.share-links a {
  font-size: 20px;
  margin-right: 12px;
  color: #444;
}

.share-links a:hover {
  color: #EA6508;
}

.notjustok-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
}

.notjustok-music {
  width: 150px;
  flex-shrink: 0;
}

.notjustok-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.notjustok-card img {
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
}

.text-grid .card img {
  height: 140px;
}

/* ========== NOTJUSTOK HERO MEDIA BLOCK ========== */
.media-hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  padding: 45px 0;
}

.media-left img {
  width: 100%;
  max-width: 520px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.media-left h1 {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.media-right h2 {
  font-size: 24px;
  margin-bottom: 20px;
  border-bottom: 3px solid;
  padding-bottom: 12px;
}

/* Mobile */
@media (max-width: 900px) {
  .media-hero {
    grid-template-columns: 1fr;
  }

  .media-left img {
    height: 260px;
  }
}

/* ================= ADVERTISE PAGE ================= */
.advertise-page {
  max-width: 900px;
}

.advertise-hero {
  text-align: center;
  margin-bottom: 20;
}

.advertise-hero h1 {
  font-size: 38px;
  margin: 16px 0;
  line-height: 1.2;
}

.advertise-sub {
  font-size: 16px;
  color: var(--dark-muted);
  max-width: 620px;
  margin: auto;
}

body[data-theme="light"] .advertise-sub {
  color: var(--light-muted);
}

.advertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.advertise-card {
  background: var(--dark-card);
  padding: 22px;
  border-radius: 14px;
  border: 1px solid var(--dark-border);
}

body[data-theme="light"] .advertise-card {
  background: var(--light-card);
  border-color: var(--light-border);
}

.advertise-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.advertise-card ul {
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.7;
}

.advertise-card li {
  margin-bottom: 6px;
}

.advertise-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--dark-muted);
}

body[data-theme="light"] .advertise-card p {
  color: var(--light-muted);
}

.small-muted {
  font-size: 12px;
  color: var(--dark-muted);
}

body[data-theme="light"] .small-muted {
  color: var(--light-muted);
}

.advertise-footer {
  margin-top: 50px;
  text-align: center;
  font-size: 14px;
  color: var(--dark-muted);
}

body[data-theme="light"] .advertise-footer {
  color: var(--light-muted);
}

.contact-form {
  width: 100%;
}

.contact-form .row {
  display: flex !important;
  gap: 12px;
}

.contact-form .row input {
  width: 50% !important;
}

.contact-form textarea,
.contact-form button {
  width: 100%;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .contact-form .row {
    flex-direction: column !important;
  }

  .contact-form .row input {
    width: 100% !important;
  }
}