:root {
  --accent: #b40000;
  --ink: #111;
  --muted: #5d6774;
  --ring: #e1e4e8;
  --bg: #ffffff;
}

/* GLOBAL */
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, Segoe UI, Inter, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}
.wrapper { max-width: 1080px; margin: 0 auto; padding: 0 18px; }

/* HERO */
.hero {
  position: relative;
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--ring);
}

/* VIDEO BACKGROUND (optional) */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero-logo {
  width: 180px;
  margin-bottom: 10px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.3));
}
.hero h1 {
  color: #fff;
  font-size: 48px;
  margin: 10px 0 6px;
}
.hero p {
  color: #f2f6fb;
  font-size: 20px;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
}
.btn.primary {
  background: var(--accent);
  color: #fff;
}
.btn.secondary {
  border: 1px solid #fff;
  color: #fff;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
}
.btn.small-btn {
  margin-top: 12px;
  display: inline-block;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: -1;
}

/* CARDS */
.card {
  background: #fff;
  border: 1px solid var(--ring);
  border-left: 5px solid var(--accent);
  border-radius: 14px;
  padding: 20px;
  margin: 30px 0;
}

h2 {
  margin-top: 0;
  color: var(--accent);
  font-size: 26px;
}

.list {
  padding-left: 20px;
}
.list li {
  margin: 6px 0;
}

.lead {
  font-size: 18px;
  color: var(--ink);
}

/* ===== PREMIUM RADIO PLAYER / SPOTIFY STYLE ===== */

.player-box {
  background: #fafafa;
  border: 1px solid var(--ring);
  padding: 16px 18px;
  border-radius: 14px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.player-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.ps-art {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, #b40000, #ff6b6b);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.radio-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.radio-info strong {
  font-size: 18px;
  color: var(--ink);
}

.radio-info span {
  font-size: 14px;
  color: var(--muted);
}

.ps-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: #16a34a;
  padding: 2px 8px;
  border-radius: 999px;
}

/* buton mare Play/Pause */
.radio-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 24px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 12px rgba(180,0,0,0.3);
  transition: all .2s ease;
  flex-shrink: 0;
}

.radio-btn:hover {
  transform: scale(1.08);
}

/* ascundem elementul audio nativ */
#radioPlayer {
  display: none;
}

/* WIDGET LIVE NOW */
.np-widget {
  margin-top: 16px;
  border-radius: 12px;
  border: 1px dashed var(--ring);
  padding: 12px 14px;
  background: #fcfcfc;
}

.np-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin: 2px 0;
}

.np-label {
  color: var(--muted);
}

.np-value {
  font-weight: 600;
  color: var(--ink);
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--ring);
  text-align: center;
  padding: 20px 0;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 720px) {
  .hero-logo { width: 140px; }
  .hero h1 { font-size: 34px; }
  .hero p { font-size: 18px; }

  .player-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .radio-btn {
    align-self: flex-end;
  }
}
