:root {
  --bg: #0a0a0a;
  --bg-soft: #131313;
  --bg-card: #1c1c1c;
  --border: #2a2a2a;
  --text: #ffffff;
  --text-soft: #c4c4c4;
  --text-muted: #777777;
  --primary: #e62229;
  --primary-soft: #ff3b42;
  --primary-dark: #b81920;
  --accent: #ffb748;
  --accent-soft: #ffd17a;
  --live-red: #ff2d4d;
  --green: #25d366;
  --shadow: 0 20px 60px rgba(0,0,0,.6);
  --shadow-red: 0 12px 40px rgba(230, 34, 41, .35);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1240px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ====== TOPBAR ====== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 12, 20, .85);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--primary);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-weight: 800; font-size: 20px; color: var(--text); }
.brand-tag { font-size: 11px; color: var(--accent); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

.nav-desktop {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-weight: 600;
  font-size: 14px;
}
.nav-desktop a {
  color: var(--text-soft);
  transition: color .2s;
}
.nav-desktop a:hover { color: var(--accent); }

/* Live player nel topbar */
.live-player {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 8px;
  background: linear-gradient(135deg, rgba(230, 34, 41, .15), rgba(230, 34, 41, .08));
  border: 1px solid rgba(230, 34, 41, .4);
  border-radius: 999px;
}
.live-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: white;
  transition: transform .15s, background .2s;
}
.live-btn:hover { background: var(--primary-soft); transform: scale(1.05); }
.live-btn svg { width: 18px; height: 18px; }
.live-info { line-height: 1.15; }
.live-status {
  font-size: 10px; font-weight: 800;
  color: var(--live-red);
  letter-spacing: 1.5px;
  display: flex; align-items: center; gap: 6px;
}
.live-dot {
  width: 8px; height: 8px;
  background: var(--live-red);
  border-radius: 50%;
  animation: pulse 1.4s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 45, 77, .6); }
  50% { opacity: .6; box-shadow: 0 0 0 6px rgba(255, 45, 77, 0); }
}
.live-track {
  font-size: 12px;
  color: var(--text);
  font-weight: 600;
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Menu mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
}
.menu-toggle span {
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 12px 24px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  color: var(--text-soft);
}

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(230, 34, 41, .35), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 183, 72, .2), transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(230, 34, 41, .2), transparent 60%),
    var(--bg);
  z-index: -1;
}
.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255, 183, 72, .15);
  border: 1px solid rgba(255, 183, 72, .35);
  border-radius: 999px;
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Bebas Neue', 'Manrope', sans-serif;
  font-size: clamp(64px, 11vw, 144px);
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 28px;
  font-weight: 700;
}
.accent { color: var(--accent); }
.hero-sub {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--text-soft);
  margin-bottom: 40px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  transition: transform .15s, box-shadow .2s;
}
.cta-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  color: white;
  box-shadow: 0 8px 30px rgba(229, 50, 90, .4);
}
.cta-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(229, 50, 90, .55); }
.cta-primary svg { width: 22px; height: 22px; }
.cta-primary.full { width: 100%; justify-content: center; }
.cta-secondary {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
}
.cta-secondary:hover { background: var(--bg-soft); transform: translateY(-2px); }
.cta-secondary svg { width: 22px; height: 22px; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  color: var(--accent);
  letter-spacing: 1px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ====== NOW PLAYING ====== */
.now-playing-section { padding: 60px 0; }
.now-playing-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.np-art {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: #000;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  background-image: linear-gradient(135deg, #2a1f30 0%, #060a18 100%);
}
.np-vinyl {
  width: 80%; height: 80%;
  border-radius: 50%;
  background: 
    radial-gradient(circle at center, var(--primary) 0 12%, transparent 12.1% 14%, #0a0a14 14%, #0a0a14 100%);
  border: 2px solid var(--primary-soft);
  animation: spin 12s linear infinite;
  animation-play-state: paused;
}
.now-playing-card.playing .np-vinyl { animation-play-state: running; }
@keyframes spin { to { transform: rotate(360deg); } }

.np-info { line-height: 1.3; }
.np-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--live-red);
  margin-bottom: 8px;
}
.np-title { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.np-artist { color: var(--text-soft); margin-bottom: 4px; }
.np-show { color: var(--accent); font-size: 13px; font-weight: 600; }

.np-play {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(229, 50, 90, .45);
  transition: transform .15s;
}
.np-play:hover { transform: scale(1.05); }
.np-play svg { width: 28px; height: 28px; }

/* ====== SECTIONS COMUNI ====== */
section { padding: 80px 0; }
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Bebas Neue', 'Manrope', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: 0px;
}
.section-sub {
  color: var(--text-soft);
  font-size: 17px;
  margin-bottom: 40px;
  max-width: 700px;
}

/* ====== DOWNLOAD ====== */
.download-section { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%); }
.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.download-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  border-radius: 16px;
  transition: transform .2s, box-shadow .25s, filter .2s;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}
.store-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transition: left .6s;
}
.store-btn:hover::before { left: 100%; }
.store-btn:hover { transform: translateY(-3px) scale(1.02); }
.store-btn svg { width: 36px; height: 36px; }
.store-btn div { display: flex; flex-direction: column; line-height: 1.2; }
.store-btn span { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; opacity: .85; }
.store-btn strong { font-size: 19px; font-weight: 800; }

/* Google Play - colore verde Google + gradient ufficiale */
.store-btn.google-play {
  background: linear-gradient(135deg, #00C853 0%, #1A73E8 50%, #FBBC04 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(26, 115, 232, .45);
  border: 2px solid rgba(255,255,255,.15);
}
.store-btn.google-play:hover {
  box-shadow: 0 15px 40px rgba(26, 115, 232, .65);
  filter: brightness(1.1);
}

/* App Store - nero brillante con bordo */
.store-btn.app-store {
  background: linear-gradient(135deg, #1d1d1f 0%, #2a2a2e 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(255, 255, 255, .12);
  border: 2px solid rgba(255,255,255,.25);
}
.store-btn.app-store:hover {
  box-shadow: 0 15px 40px rgba(255, 255, 255, .25);
  background: linear-gradient(135deg, #2a2a2e 0%, #1d1d1f 100%);
}

.store-btn.small svg { width: 22px; height: 22px; }
.store-btn.small { padding: 10px 16px; }
.store-btn.small.google-play { box-shadow: 0 4px 12px rgba(26, 115, 232, .3); }

.download-visual { display: flex; justify-content: center; }
.phone-frame {
  width: 280px;
  height: 560px;
  border-radius: 40px;
  background: linear-gradient(135deg, #1c1f2e, #0a0c14);
  padding: 8px;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  position: relative;
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: 
    linear-gradient(180deg, rgba(229, 50, 90, .18), rgba(255, 183, 72, .12) 50%, rgba(11, 13, 23, 1) 100%),
    url('assets/logo.png') center 30%/60% no-repeat;
  background-color: #0a0c14;
}

/* ====== PROGRAM ====== */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.schedule-card {
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .2s, border-color .2s;
}
.schedule-card.live {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(77, 214, 227, .1);
}
.schedule-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.schedule-time {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--accent);
  letter-spacing: 1px;
}
.schedule-name {
  font-size: 18px;
  font-weight: 700;
  margin: 4px 0 6px;
}
.schedule-desc {
  font-size: 13px;
  color: var(--text-muted);
}
.schedule-live-badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(77, 214, 227, .15);
  color: var(--teal);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-top: 10px;
}

/* ====== PODCASTS ====== */
.podcasts-section { background: var(--bg-soft); }
.podcast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.podcast-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s;
}
.podcast-card:hover { transform: translateY(-6px); }
.podcast-cover {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.podcast-play-overlay {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 6px 20px rgba(0,0,0,.4);
}
.podcast-play-overlay svg { width: 22px; height: 22px; }
.podcast-body { padding: 18px; }
.podcast-body h3 { font-size: 17px; margin-bottom: 6px; }
.podcast-body p { color: var(--text-muted); font-size: 13px; display: flex; gap: 12px; }

/* ====== TEAM ====== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.team-card {
  text-align: center;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .2s, border-color .2s;
}
.team-card:hover { transform: translateY(-6px); border-color: var(--primary); }
.team-photo {
  width: 140px; height: 140px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-soft);
  border: 3px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--accent);
  letter-spacing: 2px;
}
.team-photo.placeholder {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-soft));
}
.team-card h3 { font-size: 18px; margin-bottom: 4px; }
.team-card p { color: var(--accent); font-size: 13px; font-weight: 600; }

/* ====== NEWS ====== */
.news-section { background: var(--bg-soft); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s;
}
.news-card:hover { transform: translateY(-6px); }
.news-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}
.news-body { padding: 20px; }
.news-date { font-size: 12px; color: var(--accent); font-weight: 700; letter-spacing: 1px; }
.news-body h3 { font-size: 18px; margin: 8px 0 10px; line-height: 1.3; }
.news-body p { color: var(--text-soft); font-size: 14px; margin-bottom: 14px; }
.news-body a { color: var(--primary); font-weight: 700; font-size: 14px; }

/* News navigation highlight */
.nav-highlight {
  background: var(--primary);
  color: #fff !important;
  padding: 6px 14px !important;
  border-radius: 20px;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s;
}
.nav-highlight:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(230, 34, 41, 0.35);
}
@media (max-width: 900px) {
  .nav-mobile .nav-highlight {
    display: inline-block !important;
    margin: 8px 0;
    text-align: center;
  }
}

/* ===== Card share buttons (home page news) ===== */
.news-card { position: relative; }
.card-share {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .25s, transform .25s;
  z-index: 5;
}
.news-card:hover .card-share, .news-card:focus-within .card-share { opacity: 1; transform: translateY(0); }
@media (max-width: 768px) { .card-share { opacity: 1; transform: translateY(0); } }
.card-share-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.card-share-btn:hover { transform: scale(1.1); }
.card-share-btn.fb:hover { background: #1877F2; }
.card-share-btn.wa:hover { background: #25D366; }
.card-share-btn.cp:hover { background: var(--primary); }
.card-share-btn svg { width: 16px; height: 16px; }

/* ===== Sticky "Urmărește-ne" bar ===== */
.follow-bar {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: rgba(18, 18, 22, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 80;
  box-shadow: 0 12px 36px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04) inset;
  transition: opacity .4s, transform .4s;
}
.follow-bar.hidden { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(20px); }
.follow-bar .lbl {
  color: var(--text-muted, #9b9ba3);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-right: 6px;
  border-right: 1px solid rgba(255,255,255,0.1);
  margin-right: 4px;
}
.follow-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: transform .15s, box-shadow .2s, filter .2s;
  position: relative;
}
.follow-icon:hover { transform: translateY(-3px) scale(1.05); filter: brightness(1.15); }
.follow-icon.fb { background: #1877F2; }
.follow-icon.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.follow-icon.tt { background: #000; border: 1px solid #555; }
.follow-icon.wa { background: #25D366; }
.follow-icon.yt { background: #FF0000; }
.follow-icon svg { width: 18px; height: 18px; }
.follow-bar .close-btn {
  background: rgba(255,255,255,0.08);
  border: none;
  color: rgba(255,255,255,0.55);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 4px;
  font-size: 14px;
  line-height: 1;
}
.follow-bar .close-btn:hover { background: rgba(255,255,255,0.18); color: #fff; }
@media (max-width: 520px) {
  .follow-bar { bottom: 16px; padding: 8px 12px; gap: 6px; }
  .follow-bar .lbl { display: none; }
  .follow-icon { width: 34px; height: 34px; }
  .follow-icon svg { width: 16px; height: 16px; }
}

/* Skeleton placeholder while news load */
.news-skeleton { pointer-events: none; opacity: 0.55; }
.news-skeleton .news-img { background: linear-gradient(90deg, #1a1a1f 0%, #232328 50%, #1a1a1f 100%); background-size: 200% 100%; animation: shimmer 1.4s linear infinite; }
.news-skeleton h3, .news-skeleton p, .news-skeleton .news-date { background: #232328; color: transparent; border-radius: 4px; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.news-card[onclick]:hover { border-color: var(--primary); }

/* ====== BUSINESS ====== */
.business-section {
  background: linear-gradient(135deg, rgba(229,50,90,.08), rgba(255,183,72,.06));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.business-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.business-list {
  list-style: none;
  margin-top: 28px;
}
.business-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  color: var(--text-soft);
}
.business-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.business-form h3 { font-size: 24px; margin-bottom: 20px; }
.form-row { margin-bottom: 14px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color .2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-row textarea { resize: vertical; }
.form-success {
  display: none;
  margin-top: 14px;
  color: var(--green);
  font-weight: 700;
  text-align: center;
}
.form-success.show { display: block; }

/* ====== FOOTER ====== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-col h4 {
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-col a, .footer-col p {
  display: block;
  color: var(--text-soft);
  padding: 6px 0;
  font-size: 14px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--primary); }
.footer-logo { width: 70px; margin-bottom: 16px; }
.socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.socials a {
  width: 40px; height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, border-color .2s, background .2s;
}
.socials a:hover { transform: translateY(-3px); border-color: var(--primary); background: rgba(229,50,90,.1); }
.socials svg { width: 18px; height: 18px; color: var(--text); }

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-muted);
  font-size: 13px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--primary); }

/* ====== RESPONSIVE ====== */
@media (max-width: 980px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: flex; }
  .live-track { max-width: 100px; font-size: 11px; }
  .download-grid, .business-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .now-playing-card { grid-template-columns: 80px 1fr auto; }
  .np-art { width: 80px; height: 80px; }
  .np-title { font-size: 18px; }
}
@media (max-width: 600px) {
  .topbar-inner { gap: 12px; padding: 10px 16px; }
  .brand-tag { display: none; }
  .live-info { display: none; }
  .live-player { padding: 4px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .hero { padding-top: 100px; min-height: auto; }
}

/* ====== DESPRE NOI ====== */
.about-section { padding: 80px 0; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%); }
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-story p {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 14px;
}
.about-story strong { color: var(--text); font-weight: 700; }
.about-highlight {
  font-size: 18px !important;
  font-weight: 700;
  color: var(--accent) !important;
  border-left: 4px solid var(--primary);
  padding-left: 16px;
  margin: 20px 0 !important;
}
.about-quote {
  background: var(--bg-card);
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  margin: 24px 0;
}
.about-final {
  font-size: 17px !important;
  color: var(--text) !important;
  font-style: italic;
  margin-top: 24px !important;
  padding: 20px;
  border: 1px solid var(--primary);
  border-radius: 16px;
  background: rgba(230, 34, 41, 0.05);
  text-align: center;
}
.about-visual {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(230, 34, 41, 0.1), rgba(255, 183, 72, 0.05));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.about-logo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #fff;
  padding: 12px;
  margin: 0 auto 16px;
  border: 4px solid var(--primary);
  box-shadow: var(--shadow-red);
}
.about-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 2px;
  color: var(--accent);
}

/* ====== TEAM card extras ====== */
.team-card small {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 12px;
  font-style: italic;
}
.team-card.memorial {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(255,183,72,.08), var(--bg-card));
}
.team-card.memorial .team-photo {
  border-color: var(--accent);
}

/* ====== SCHEDULE extras ====== */
.schedule-host {
  font-weight: 700;
  font-size: 14px;
  color: var(--primary-soft);
  margin: 4px 0 6px;
}
.schedule-days {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ====== FRECVENȚE PARTNER ====== */
.partners-section { padding: 80px 0; background: var(--bg-soft); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.partner-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  transition: transform .2s, border-color .2s;
  display: block;
  color: inherit;
  text-decoration: none;
}
.partner-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.partner-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--accent);
  letter-spacing: 2px;
}
.partner-card h4 { font-size: 18px; margin-bottom: 6px; }
.partner-card p { color: var(--text-muted); font-size: 13px; }

/* ====== NEWSLETTER ====== */
.newsletter-section { padding: 60px 0; }
.newsletter-card {
  background: linear-gradient(135deg, rgba(230, 34, 41, .15), rgba(255, 183, 72, .08));
  border: 1px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}
.newsletter-card .section-title { font-size: clamp(28px, 4vw, 44px); margin-bottom: 12px; }
.newsletter-card .section-sub { font-size: 15px; margin-bottom: 0; }
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.newsletter-form input {
  width: 100%;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
}
.newsletter-form input:focus { outline: none; border-color: var(--primary); }

/* ====== SPONSORI ====== */
.sponsors-section { padding: 80px 0; background: var(--bg); }
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.sponsor-slot {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  text-decoration: none;
  transition: transform .2s, border-color .2s;
}
.sponsor-slot:hover { transform: translateY(-4px); border-color: var(--primary); }
.sponsor-slot img {
  max-width: 100%;
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

/* ====== WHATSAPP FLOATING ====== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(37, 211, 102, .65),
              0 0 0 8px rgba(37, 211, 102, .15);
  transition: transform .25s, box-shadow .25s;
  animation: bounce-wa 2s infinite;
  border: 3px solid white;
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(37, 211, 102, .3);
  animation: ripple 2s infinite;
  z-index: -1;
}
.whatsapp-float:hover {
  transform: scale(1.15);
  animation: none;
  box-shadow: 0 18px 50px rgba(37, 211, 102, .8),
              0 0 0 12px rgba(37, 211, 102, .25);
}
.whatsapp-float svg {
  width: 38px;
  height: 38px;
  color: white;
}
.whatsapp-tooltip {
  position: absolute;
  right: 82px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  transform: translateX(10px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}
@keyframes bounce-wa {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes ripple {
  0% { transform: scale(1); opacity: .4; }
  100% { transform: scale(1.8); opacity: 0; }
}

@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .newsletter-card { grid-template-columns: 1fr; }
  .whatsapp-float { width: 54px; height: 54px; bottom: 16px; right: 16px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
  .whatsapp-tooltip { display: none; }
}

/* Partner logo image */
.partner-logo-img {
  width: 140px;
  height: 140px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: #fff;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  overflow: hidden;
}
.partner-logo-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Hero CTA buttons - all enhanced */
.cta-glow {
  position: relative;
  animation: pulse-cta 2.5s ease-in-out infinite;
}
@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 8px 30px rgba(229, 50, 90, .4), 0 0 0 0 rgba(229, 50, 90, .5); }
  50% { box-shadow: 0 12px 40px rgba(229, 50, 90, .55), 0 0 0 14px rgba(229, 50, 90, 0); }
}

.cta-download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  background: linear-gradient(135deg, #00C853 0%, #1A73E8 50%, #FBBC04 100%);
  color: white;
  border: 2px solid rgba(255,255,255,.18);
  box-shadow: 0 8px 30px rgba(26, 115, 232, .4);
  transition: transform .15s, box-shadow .25s, filter .2s;
}
.cta-download:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(26, 115, 232, .6);
  filter: brightness(1.1);
}
.cta-download svg { width: 22px; height: 22px; }

.cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  border: 2px solid rgba(255,255,255,.18);
  box-shadow: 0 8px 30px rgba(37, 211, 102, .45);
  transition: transform .15s, box-shadow .25s, filter .2s;
}
.cta-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(37, 211, 102, .65);
  filter: brightness(1.1);
}
.cta-whatsapp svg { width: 22px; height: 22px; }
