:root {
  --bg-main: #0b0b1a;
  --bg-card: #12132b;
  --bg-card-hover: #1c1d3d;
  --pink-accent: #ff2d75;
  --purple-accent: #7c3aed;
  --gradient-brand: linear-gradient(135deg, #7c3aed 0%, #ff2d75 100%);
  --text-main: #ffffff;
  --text-muted: #94a3b8;
  --border-soft: rgba(255, 255, 255, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', system-ui, sans-serif; }
body { background-color: var(--bg-main); color: var(--text-main); overflow-x: hidden; }
a { text-decoration: none; }
h1, h2, h3, h4 { letter-spacing: 0.3px; }

/* NAVBAR */
.navbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 4%; background: rgba(11, 11, 26, 0.95);
  position: sticky; top: 0; z-index: 100; backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: bold; font-size: 1.15rem; line-height: 1.1; }
.logo-icon {
  width: 38px; height: 38px; border-radius: 10px; background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem;
}
.brand-name { text-transform: uppercase; }
.brand-name small { color: var(--pink-accent); font-size: 0.7rem; letter-spacing: 2px; }

.nav-links { display: flex; gap: 22px; }
.nav-links a { color: var(--text-muted); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px; transition: 0.25s; display: flex; align-items: center; gap: 6px; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.dot-live { width: 7px; height: 7px; border-radius: 50%; background: var(--pink-accent); box-shadow: 0 0 8px var(--pink-accent); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.icon-btn { background: none; border: none; color: #fff; font-size: 1.05rem; cursor: pointer; }
.btn-live-header {
  background: var(--gradient-brand); color: #fff; border: none; padding: 10px 18px;
  border-radius: 24px; font-weight: bold; font-size: 0.78rem; letter-spacing: 0.5px;
  cursor: pointer; display: flex; align-items: center; gap: 8px; transition: 0.25s;
}
.btn-live-header:hover { filter: brightness(1.1); transform: translateY(-1px); }
.hamburger { display: none; background: none; border: none; color: #fff; font-size: 1.4rem; cursor: pointer; }

/* HERO */
.hero-section {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px;
  padding: 3.5rem 4%; align-items: center;
  background: radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.18), transparent 55%),
              radial-gradient(circle at 80% 30%, rgba(255, 45, 117, 0.14), transparent 50%);
}
.badge-live {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 45, 117, 0.15);
  color: var(--pink-accent); font-size: 0.72rem; font-weight: 700; letter-spacing: 1px;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 1rem;
}
.badge-live i { font-size: 0.5rem; }
.hero-left h1 { font-size: 2.8rem; margin-bottom: 0.4rem; }
.host-subtitle { color: var(--text-muted); font-size: 1rem; margin-bottom: 1rem; }
.host-subtitle span { color: #fff; font-weight: 600; }
.show-desc { color: var(--text-muted); max-width: 480px; margin-bottom: 1.6rem; line-height: 1.5; }
.btn-primary {
  background: transparent; border: 1.5px solid #fff; color: #fff; padding: 12px 28px;
  border-radius: 24px; font-weight: 700; font-size: 0.8rem; letter-spacing: 1px;
  cursor: pointer; transition: 0.25s;
}
.btn-primary:hover { background: #fff; color: var(--bg-main); }

.player-card {
  background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: 20px;
  padding: 1.4rem; box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.player-header { color: var(--pink-accent); font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; margin-bottom: 1rem; }
.player-body { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.track-details h3 { font-size: 1.25rem; margin-bottom: 4px; }
.track-details p { color: var(--text-muted); font-size: 0.9rem; }
.album-cover { width: 76px; height: 76px; border-radius: 12px; object-fit: cover; }

.waveform { display: flex; align-items: flex-end; gap: 2px; height: 30px; margin-bottom: 1.2rem; }
.waveform span { flex: 1; background: var(--gradient-brand); border-radius: 2px; opacity: 0.85; }

.player-controls { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.volume-container { display: flex; align-items: center; gap: 8px; color: var(--text-muted); flex: 1; }
.volume-container input[type="range"] { width: 90px; accent-color: var(--pink-accent); }
.transport-controls { display: flex; align-items: center; gap: 14px; }
.btn-skip { background: none; border: none; color: var(--text-muted); font-size: 1rem; cursor: pointer; }
.btn-play {
  width: 52px; height: 52px; border-radius: 50%; border: none; background: var(--gradient-brand);
  color: #fff; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(255, 45, 117, 0.35);
}
.btn-cast { background: none; border: none; color: var(--text-muted); font-size: 1.1rem; cursor: pointer; flex: 1; text-align: right; }

/* UPCOMING */
.upcoming-section { padding: 1rem 4% 2.5rem; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; }
.section-header h2, .col-header h2 { font-size: 0.95rem; letter-spacing: 2px; color: #fff; }
.btn-outline {
  background: none; border: 1px solid var(--border-soft); color: var(--text-muted);
  padding: 8px 18px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; cursor: pointer;
}
.upcoming-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.upcoming-card {
  background: var(--bg-card); border-radius: 14px; padding: 1rem; position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 12px; border: 1px solid var(--border-soft);
}
.upcoming-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--gradient-brand); }
.upcoming-card img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.upcoming-card .time { color: var(--pink-accent); font-size: 0.7rem; font-weight: 700; display: block; margin-bottom: 2px; }
.upcoming-card .title { font-size: 0.88rem; font-weight: 600; display: block; }
.upcoming-card .host { color: var(--text-muted); font-size: 0.75rem; }

/* MAIN GRID */
.main-content-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 1.5rem; padding: 1rem 4% 2.5rem; }
.col-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; }
.link-see-all { color: var(--pink-accent); font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; }

.news-list { display: flex; flex-direction: column; gap: 1rem; }
.news-hero-card { background: var(--bg-card); border-radius: 16px; overflow: hidden; border: 1px solid var(--border-soft); }
.news-hero-card img { width: 100%; height: 190px; object-fit: cover; }
.news-hero-card .news-body { padding: 1rem 1.2rem 1.3rem; }
.news-tag { color: var(--pink-accent); font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; }
.news-date { color: var(--text-muted); font-size: 0.7rem; margin-left: 8px; }
.news-hero-card h3 { font-size: 1.15rem; margin: 0.4rem 0 0.5rem; line-height: 1.3; }
.news-excerpt { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; margin-bottom: 0.6rem; }
.read-more { color: var(--pink-accent); font-size: 0.78rem; font-weight: 700; }

.news-mini-list { display: flex; flex-direction: column; gap: 0.9rem; }
.news-mini-item { display: flex; gap: 12px; background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: 12px; padding: 0.7rem; align-items: center; }
.news-mini-item img { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.news-mini-item .news-tag { display: block; }
.news-mini-item h4 { font-size: 0.85rem; margin-top: 3px; line-height: 1.3; font-weight: 600; }

.podcasts-list { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.6rem; }
.podcast-item {
  display: flex; align-items: center; gap: 12px; background: var(--bg-card);
  border: 1px solid var(--border-soft); border-radius: 12px; padding: 0.7rem 0.9rem;
}
.podcast-item img { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; }
.podcast-info { flex: 1; }
.podcast-info h4 { font-size: 0.85rem; font-weight: 600; }
.podcast-info span { color: var(--text-muted); font-size: 0.72rem; }
.btn-podcast-play {
  width: 34px; height: 34px; border-radius: 50%; border: none; background: var(--gradient-brand);
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.social-widget { background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: 14px; padding: 1.2rem; }
.social-widget h3 { font-size: 0.78rem; letter-spacing: 1.5px; margin-bottom: 1rem; color: var(--text-muted); }
.social-list { display: flex; flex-direction: column; gap: 0.7rem; }
.social-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; font-weight: 600; }
.social-item i { width: 20px; text-align: center; }
.social-item span { margin-left: auto; color: var(--text-muted); font-weight: 400; }
.social-item.fb i { color: #1877f2; }
.social-item.insta i { color: #e1306c; }
.social-item.twitter i { color: #fff; }
.social-item.yt i { color: #ff0000; }
.social-item.tiktok i { color: #fff; }

/* NEWSLETTER */
.newsletter-banner {
  margin: 0 4% 3rem; background: var(--gradient-brand); border-radius: 20px;
  padding: 2rem 2.5rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.newsletter-icon {
  width: 56px; height: 56px; background: rgba(255,255,255,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0;
}
.newsletter-text h3 { font-size: 1.1rem; letter-spacing: 1px; }
.newsletter-text p { font-size: 0.85rem; opacity: 0.9; }
.newsletter-form { display: flex; gap: 10px; margin-left: auto; flex-wrap: wrap; }
.newsletter-form input {
  padding: 12px 16px; border-radius: 24px; border: none; background: rgba(255,255,255,0.15);
  color: #fff; font-size: 0.85rem; min-width: 180px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.7); }
.newsletter-form button {
  background: #0b0b1a; color: #fff; border: none; padding: 12px 24px; border-radius: 24px;
  font-weight: 700; font-size: 0.78rem; letter-spacing: 1px; cursor: pointer;
}
.newsletter-feedback { width: 100%; font-size: 0.8rem; margin-top: 0.6rem; }

/* FOOTER */
footer { padding: 2.5rem 4% 1.5rem; border-top: 1px solid var(--border-soft); }
footer { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 2rem; }
.footer-col p { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.8rem; line-height: 1.5; }
.footer-col h4 { font-size: 0.8rem; letter-spacing: 1.5px; margin-bottom: 1rem; color: #fff; }
.footer-col a { display: block; color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.6rem; }
.app-badges { display: flex; flex-direction: column; gap: 10px; }
.app-badge {
  display: flex; align-items: center; gap: 10px; background: var(--bg-card); border: 1px solid var(--border-soft);
  border-radius: 10px; padding: 8px 14px; font-size: 0.75rem; color: var(--text-muted);
}
.app-badge i { font-size: 1.4rem; color: #fff; }
.footer-bottom { grid-column: 1 / -1; text-align: center; color: var(--text-muted); font-size: 0.78rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-soft); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-section { grid-template-columns: 1fr; }
  .main-content-grid { grid-template-columns: 1fr; }
  .upcoming-grid { grid-template-columns: repeat(2, 1fr); }
  footer { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .btn-live-header span { display: none; }
  .hero-left h1 { font-size: 2rem; }
  .upcoming-grid { grid-template-columns: 1fr; }
  .newsletter-banner { flex-direction: column; align-items: flex-start; }
  .newsletter-form { margin-left: 0; width: 100%; }
  .newsletter-form input { flex: 1; }
  footer { grid-template-columns: 1fr; }
}
