:root {
  --red: #ff1010;
  --dark: #060606;
  --dark2: #111111;
  --white: #ffffff;
  --muted: #b8b8b8;
  --card: rgba(255,255,255,0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--dark);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  padding-bottom: 105px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
}

.brand {
  color: white;
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 18px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

nav a:hover {
  color: var(--red);
}

.listen-top,
.main-btn,
.share-btn,
.contact-card button {
  border: none;
  background: var(--red);
  color: white;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 0 25px rgba(255,16,16,0.35);
  cursor: pointer;
}

.menu-btn {
  display: none;
  background: transparent;
  color: white;
  border: 0;
  font-size: 28px;
}

.hero {
  min-height: 720px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255,16,16,0.35), transparent 30%),
    linear-gradient(135deg, #080808, #150000 45%, #000);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 950px;
  padding: 40px 22px;
}

.hero-logo {
  width: min(300px, 70vw);
  filter: drop-shadow(0 0 35px rgba(255,16,16,0.4));
}

.eyebrow,
.section-title p {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 900;
}

h1 {
  font-size: clamp(50px, 9vw, 118px);
  line-height: 0.92;
  margin: 10px 0 18px;
  text-transform: uppercase;
}

.tagline {
  color: #ededed;
  font-size: clamp(18px, 2.4vw, 25px);
  line-height: 1.5;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.share-btn {
  background: #222;
  border: 1px solid rgba(255,255,255,0.2);
}

.live-section,
.grid-section,
.contact-section {
  padding: 80px 7%;
}

.section-title {
  text-align: center;
  margin-bottom: 36px;
}

.section-title h2,
.contact-section h2 {
  font-size: clamp(34px, 5vw, 60px);
  margin: 6px 0;
}

.player-card {
  max-width: 980px;
  margin: auto;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 30px;
  padding: 28px;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 30px;
  align-items: center;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

.player-card img {
  width: 100%;
  object-fit: contain;
}

.player-info h3 {
  font-size: 38px;
  margin: 0 0 8px;
}

.player-info p {
  color: var(--muted);
}

audio {
  width: 100%;
  margin-top: 16px;
}

.player-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.player-links a {
  color: white;
  background: rgba(255,255,255,0.08);
  padding: 10px 14px;
  border-radius: 14px;
  text-decoration: none;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card,
.news-list article,
.podcast-box,
.contact-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 28px;
}

.card span {
  font-size: 38px;
}

.card h3,
.news-list h3,
.podcast-box h3 {
  font-size: 25px;
}

.card p,
.news-list p,
.podcast-box p,
.contact-section p {
  color: var(--muted);
  line-height: 1.6;
}

.dark {
  background: #0d0d0d;
}

.news-list {
  display: grid;
  gap: 18px;
  max-width: 950px;
  margin: auto;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 35px;
  align-items: center;
}

.contact-card {
  display: grid;
  gap: 14px;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  background: #070707;
  border: 1px solid rgba(255,255,255,0.16);
  color: white;
  border-radius: 16px;
  padding: 15px;
  font-size: 16px;
}

.contact-card textarea {
  min-height: 130px;
  resize: vertical;
}

.bottom-player {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 15px;
  z-index: 30;
  background: rgba(10,10,10,0.96);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
}

.bottom-player span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 3px;
}

footer {
  padding: 45px 20px;
  text-align: center;
  background: #020202;
  color: var(--muted);
}

footer img {
  width: 110px;
  display: block;
  margin: 0 auto 15px;
}

@media (max-width: 860px) {
  .topbar {
    padding: 10px 16px;
  }

  .menu-btn {
    display: block;
  }

  nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #050505;
    display: none;
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  nav.open {
    display: flex;
  }

  .listen-top {
    display: none;
  }

  .player-card,
  .contact-section,
  .bottom-player {
    grid-template-columns: 1fr;
  }

  .player-card {
    text-align: center;
  }

  .player-card img {
    max-width: 220px;
    margin: auto;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .bottom-player {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}

.zelle-btn,
.whatsapp-btn,
.inline-whatsapp {
  display: inline-block;
  color: white;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

.zelle-btn {
  background: #6d1ed4;
  box-shadow: 0 0 25px rgba(109,30,212,0.35);
}

.whatsapp-btn,
.inline-whatsapp {
  background: #25D366;
  box-shadow: 0 0 25px rgba(37,211,102,0.25);
}

.donate-section {
  padding: 80px 7%;
  background:
    radial-gradient(circle at left, rgba(109,30,212,0.18), transparent 30%),
    radial-gradient(circle at right, rgba(37,211,102,0.14), transparent 28%),
    #080808;
}

.donate-card {
  max-width: 980px;
  margin: auto;
  background: linear-gradient(135deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 30px;
  padding: 30px;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 30px;
  align-items: center;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

.donate-card img {
  width: 100%;
  object-fit: contain;
}

.donate-card h3 {
  font-size: 36px;
  margin: 0 0 10px;
}

.donate-card p {
  color: var(--muted);
  line-height: 1.6;
}

.donate-number {
  display: inline-block;
  font-size: 30px;
  margin: 8px 0 20px;
  color: white;
}

.donate-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.donate-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.donate-steps span {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 900;
}

@media (max-width: 860px) {
  .donate-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .donate-card img {
    max-width: 220px;
    margin: auto;
  }

  .donate-actions {
    justify-content: center;
  }

  .donate-steps {
    grid-template-columns: 1fr;
  }
}


.slideshow-section {
  padding: 80px 7%;
  background:
    radial-gradient(circle at top, rgba(255,16,16,0.12), transparent 28%),
    linear-gradient(180deg, #0a0a0a, #070707);
}

.slideshow-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  gap: 16px;
}

.slideshow {
  position: relative;
  min-height: 340px;
}

.slide {
  display: none;
  animation: fadeSlide 0.5s ease;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  display: block;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.slide-nav {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: white;
  font-size: 26px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.slide-nav:hover {
  background: rgba(255,16,16,0.18);
  transform: scale(1.05);
}

.slide-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.dot {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.28);
  cursor: pointer;
}

.dot.active {
  background: var(--red);
  box-shadow: 0 0 14px rgba(255,16,16,0.45);
}

.slideshow-caption {
  text-align: center;
  max-width: 900px;
  margin: 26px auto 0;
}

.slideshow-caption h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.slideshow-caption p {
  color: var(--muted);
  line-height: 1.6;
}

@keyframes fadeSlide {
  from { opacity: .4; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 860px) {
  .slideshow-wrap {
    grid-template-columns: 1fr;
  }

  .slide-nav {
    width: 48px;
    height: 48px;
    margin: 0 auto;
  }

  .slideshow {
    min-height: 180px;
  }
}



/* ===== ENHANCED PROFESSIONAL ANIMATION PACK ===== */
body.enhanced-site {
  background:
    radial-gradient(circle at top left, rgba(255,20,20,0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(122,40,255,0.10), transparent 24%),
    linear-gradient(180deg, #040404, #090909 30%, #050505 100%);
  overflow-x: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  z-index: 9999;
  background: linear-gradient(90deg, #ff1010, #ffffff, #7b2cff, #25D366);
  box-shadow: 0 0 18px rgba(255,16,16,0.55);
}

.ambient-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.14;
  animation: floatOrb 16s ease-in-out infinite alternate;
}

.orb1 {
  width: 280px;
  height: 280px;
  left: -60px;
  top: 120px;
  background: #ff1010;
}

.orb2 {
  width: 220px;
  height: 220px;
  right: -40px;
  top: 360px;
  background: #6d1ed4;
  animation-duration: 18s;
}

.orb3 {
  width: 200px;
  height: 200px;
  left: 10%;
  bottom: 180px;
  background: #25D366;
  animation-duration: 20s;
}

.orb4 {
  width: 340px;
  height: 340px;
  right: 10%;
  bottom: -80px;
  background: #ff1010;
  animation-duration: 24s;
}

.grid-glow {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.65), transparent 80%);
  opacity: 0.35;
}

.top-alert {
  position: relative;
  z-index: 12;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(255,16,16,0.18), rgba(0,0,0,0.95), rgba(109,30,212,0.18));
  border-bottom: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
}

.ticker-track {
  white-space: nowrap;
  overflow: hidden;
  display: flex;
}

.ticker-track span {
  display: inline-block;
  padding: 10px 0;
  min-width: 100%;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  animation: tickerMove 22s linear infinite;
}

.topbar, .hero, .live-section, .grid-section, .contact-section, .donate-section, .slideshow-section, footer, .bottom-player {
  position: relative;
  z-index: 1;
}

.topbar {
  top: 0;
  background: rgba(0,0,0,0.76);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.topbar::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,16,16,0.9), transparent);
}

.brand img {
  animation: pulseGlow 3.5s ease-in-out infinite;
}

nav a {
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #ff1010, #ffffff);
  transition: width .25s ease;
}

nav a:hover::after {
  width: 100%;
}

.listen-top,
.main-btn,
.share-btn,
.contact-card button,
.zelle-btn,
.whatsapp-btn,
.player-links a {
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.listen-top:hover,
.main-btn:hover,
.share-btn:hover,
.contact-card button:hover,
.zelle-btn:hover,
.whatsapp-btn:hover,
.player-links a:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.07);
}

.main-btn {
  position: relative;
  overflow: hidden;
}

.main-btn::before,
.listen-top::before,
.contact-card button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-22deg);
}

.main-btn:hover::before,
.listen-top:hover::before,
.contact-card button:hover::before {
  animation: shineSweep .7s ease;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.06), transparent 12%),
    radial-gradient(circle at 80% 35%, rgba(255,16,16,0.08), transparent 14%);
  mix-blend-mode: screen;
}

.hero-content {
  animation: heroEnter .8s ease;
}

.hero h1 {
  background: linear-gradient(180deg, #ffffff 0%, #f3f3f3 42%, #c9c9c9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 18px rgba(255,255,255,0.06);
}

.tagline {
  max-width: 780px;
  margin: 0 auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 26px 0 10px;
}

.stat-pill {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .5px;
  backdrop-filter: blur(8px);
}

.live-pill {
  color: #fff;
  box-shadow: 0 0 18px rgba(255,16,16,0.16);
}

.live-dot, .mini-live-badge::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 999px;
  background: #ff1010;
  box-shadow: 0 0 0 0 rgba(255,16,16,0.75);
  animation: pulseDot 1.8s infinite;
  vertical-align: middle;
}

.mini-live-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  margin-left: 8px;
  font-size: 12px;
  border-radius: 999px;
  background: rgba(255,16,16,0.14);
  border: 1px solid rgba(255,16,16,0.35);
  color: #fff;
  vertical-align: middle;
}

.mini-live-badge::before {
  content: "";
}
.hero-eq span {
  width: 18px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, #ffffff, #ff1010);
  box-shadow: 0 0 16px rgba(255,16,16,0.18);
  animation: equalize 1.2s ease-in-out infinite alternate;
}

.hero-eq span:nth-child(odd) { animation-duration: 1.0s; }
.hero-eq span:nth-child(3n) { animation-duration: 1.35s; }
.hero-eq span:nth-child(4n) { animation-duration: 1.55s; }

.glow-frame {
  position: relative;
  overflow: hidden;
}

.glow-frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,16,16,0.9), rgba(255,255,255,0.3), rgba(109,30,212,0.6), rgba(37,211,102,0.55));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: .8;
  pointer-events: none;
}

.player-card,
.card,
.news-list article,
.podcast-box,
.contact-card,
.donate-card,
.slide img {
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
}

.card,
.news-list article,
.podcast-box,
.contact-card,
.player-card,
.donate-card {
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.card:hover,
.news-list article:hover,
.podcast-box:hover,
.contact-card:hover,
.player-card:hover,
.donate-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(255,16,16,0.10), 0 20px 45px rgba(0,0,0,0.30);
  background: rgba(255,255,255,0.08);
}

.card span {
  display: inline-flex;
  width: 68px;
  height: 68px;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: rgba(255,16,16,0.12);
  box-shadow: inset 0 0 25px rgba(255,16,16,0.12);
  margin-bottom: 12px;
}

.dark {
  position: relative;
}

.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,16,16,0.03), transparent 25%, transparent 75%, rgba(109,30,212,0.06));
  pointer-events: none;
}

.slideshow .slide img {
  transition: transform .45s ease, filter .45s ease;
}

.slide.active img {
  transform: scale(1.005);
  filter: saturate(1.05);
}

.slide-nav {
  backdrop-filter: blur(8px);
}

.bottom-player {
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(14px);
}

.bottom-player::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255,16,16,0.08), transparent 35%, rgba(109,30,212,0.08));
  pointer-events: none;
}

.floating-actions {
  position: fixed;
  right: 16px;
  bottom: 130px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: white;
  text-decoration: none;
  font-size: 24px;
  cursor: pointer;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  transition: transform .25s ease, box-shadow .25s ease;
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 34px rgba(0,0,0,0.45);
}

.whatsapp-float {
  background: linear-gradient(135deg, #25D366, #1aa951);
}

.zelle-float {
  background: linear-gradient(135deg, #6d1ed4, #8f4bff);
}

.top-float {
  background: linear-gradient(135deg, #ff1010, #7b2cff);
  color: #fff;
}

.reveal-up,
.reveal-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-up.visible,
.reveal-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.inline-whatsapp:hover {
  transform: translateY(-2px);
}

footer {
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 10%;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,16,16,0.08), transparent 70%);
  filter: blur(10px);
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@keyframes floatOrb {
  from { transform: translateY(0) translateX(0) scale(1); }
  to { transform: translateY(-28px) translateX(18px) scale(1.08); }
}

@keyframes shineSweep {
  0% { left: -120%; }
  100% { left: 140%; }
}

@keyframes pulseGlow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(255,16,16,0.22)); }
  50% { filter: drop-shadow(0 0 16px rgba(255,16,16,0.42)); }
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(255,16,16,0.75); }
  70% { box-shadow: 0 0 0 10px rgba(255,16,16,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,16,16,0); }
}

@keyframes heroEnter {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes equalize {
  0% { height: 18px; opacity: .7; }
  100% { height: 70px; opacity: 1; }
}

@media (max-width: 860px) {
  .top-alert { margin-top: 0; }
  .hero-stats {
    margin-top: 22px;
  }
  .hero-eq {
    height: 54px;
    gap: 5px;
  }
  .hero-eq span {
    width: 12px;
  }
  .floating-actions {
    right: 10px;
    bottom: 98px;
  }
  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}



/* ===== FINAL PRO ADD-ONS: LOADING SCREEN, LANGUAGES, SPONSORS ===== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(255,16,16,0.18), transparent 35%),
    #020202;
  transition: opacity .6s ease, visibility .6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-card {
  position: relative;
  text-align: center;
  padding: 28px;
}

.preloader-card img {
  width: min(220px, 60vw);
  filter: drop-shadow(0 0 28px rgba(255,16,16,0.45));
  animation: preloaderPulse 1.8s ease-in-out infinite;
}

.preloader-card h2 {
  margin: 18px 0 6px;
  font-size: 36px;
  text-transform: uppercase;
}

.preloader-card p {
  color: var(--muted);
  font-weight: 800;
}

.loader-ring {
  position: absolute;
  inset: 18px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.08);
  border-top-color: #ff1010;
  border-right-color: #ffffff;
  animation: ringSpin 1.2s linear infinite;
  pointer-events: none;
}

.lang-switcher {
  display: flex;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
}

.lang-btn {
  color: white;
  background: transparent;
  border: none;
  padding: 9px 11px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}

.lang-btn:hover,
.lang-btn.active {
  background: linear-gradient(135deg, #ff1010, #6d1ed4);
  transform: translateY(-1px);
}

.sponsors-section {
  padding: 80px 7%;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,16,16,0.15), transparent 28%),
    radial-gradient(circle at 90% 50%, rgba(109,30,212,0.12), transparent 26%),
    linear-gradient(180deg, #090909, #050505);
}

.sponsor-intro {
  max-width: 900px;
  margin: 0 auto 28px;
  text-align: center;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.sponsor-intro h3 {
  font-size: 32px;
  margin: 0 0 10px;
}

.sponsor-intro p {
  color: var(--muted);
  line-height: 1.6;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.sponsor-card {
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}

.sponsor-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(255,16,16,0.12);
}

.sponsor-icon {
  width: 66px;
  height: 66px;
  border-radius: 22px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  font-size: 32px;
  background: rgba(255,16,16,0.12);
  box-shadow: inset 0 0 28px rgba(255,16,16,0.12);
}

.sponsor-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.sponsor-card p {
  color: var(--muted);
  line-height: 1.5;
}

.sponsor-strip {
  max-width: 1120px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.sponsor-strip span {
  display: grid;
  place-items: center;
  min-height: 90px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255,16,16,0.12), rgba(255,255,255,0.04));
  border: 1px dashed rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.75);
  font-weight: 900;
  letter-spacing: 1px;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.045); }
}

@keyframes ringSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1100px) {
  .lang-switcher {
    order: 3;
  }
  .sponsor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sponsor-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .lang-switcher {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    order: 4;
  }
  .topbar {
    flex-wrap: wrap;
  }
  nav {
    top: 128px;
  }
  .sponsor-grid,
  .sponsor-strip {
    grid-template-columns: 1fr;
  }
}



/* ===== PLAYER UPGRADE + APP INSTALL PROMPT ===== */
.player-card {
  background:
    radial-gradient(circle at top left, rgba(255,16,16,0.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(109,30,212,0.12), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04));
}

.player-card::after {
  content: "";
  position: absolute;
  inset: auto 20px 12px 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,16,16,0.8), rgba(109,30,212,0.8), transparent);
  opacity: .95;
  border-radius: 999px;
}

.custom-player {
  margin-top: 16px;
  padding: 18px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,16,16,0.10), rgba(255,255,255,0.03), rgba(109,30,212,0.12));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 0 35px rgba(255,16,16,0.06);
}

.player-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.now-live-badge,
.session-timer-wrap {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .4px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.now-live-badge {
  color: #fff;
  background: linear-gradient(135deg, rgba(255,16,16,0.22), rgba(109,30,212,0.16));
}

.pulse-mini {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ff1010;
  margin-right: 8px;
  box-shadow: 0 0 0 0 rgba(255,16,16,0.75);
  animation: pulseDot 1.6s infinite;
}

.session-timer-wrap strong {
  margin-left: 6px;
  color: #fff;
  font-size: 16px;
}

.custom-player audio {
  width: 100%;
  margin-top: 4px;
  filter: hue-rotate(-6deg) saturate(1.25);
  border-radius: 16px;
}

.player-color-bar {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 52px;
  margin: 18px 0 14px;
}

.player-color-bar span {
  flex: 1;
  border-radius: 14px 14px 4px 4px;
  background: linear-gradient(180deg, #ffffff, #ff1010 45%, #6d1ed4);
  box-shadow: 0 0 16px rgba(255,16,16,0.20);
  animation: playerBounce 1.05s ease-in-out infinite alternate;
}

.player-color-bar span:nth-child(2n) { animation-duration: 1.2s; }
.player-color-bar span:nth-child(3n) { animation-duration: 1.35s; }
.player-color-bar span:nth-child(4n) { animation-duration: 1.5s; }

.player-meta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.meta-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  color: #f4f4f4;
  font-size: 14px;
  font-weight: 800;
}

.bottom-player-info small {
  display: block;
  color: #d6d6d6;
  margin-top: 6px;
  font-size: 12px;
}

.install-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 96px;
  z-index: 70;
  display: none;
  justify-content: center;
  pointer-events: none;
}

.install-banner.show {
  display: flex;
}

.install-banner-content {
  width: min(1060px, 100%);
  pointer-events: auto;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 16px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255,16,16,0.18), rgba(0,0,0,0.92), rgba(109,30,212,0.18));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 22px 60px rgba(0,0,0,0.42);
  border-radius: 24px;
  padding: 14px 16px;
  backdrop-filter: blur(14px);
}

.install-icon-wrap img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255,16,16,0.35));
}

.install-text strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.install-text span {
  color: #d8d8d8;
  line-height: 1.45;
}

.install-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.install-btn,
.install-close,
.install-modal-close {
  border: none;
  cursor: pointer;
}

.install-btn {
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #ff1010, #6d1ed4);
  box-shadow: 0 0 20px rgba(255,16,16,0.25);
}

.install-btn.secondary {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.10);
}

.install-close,
.install-modal-close {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,0.09);
}

.install-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 90;
  display: none;
  place-items: center;
  padding: 18px;
}

.install-modal.show {
  display: grid;
}

.install-modal-card {
  position: relative;
  width: min(460px, 100%);
  background:
    radial-gradient(circle at top, rgba(255,16,16,0.14), transparent 30%),
    #0b0b0b;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0,0,0,0.42);
}

.install-modal-card img {
  width: 130px;
  margin-bottom: 12px;
}

.install-modal-card h3 {
  margin: 4px 0 12px;
  font-size: 30px;
}

.install-modal-card p {
  color: #d1d1d1;
  line-height: 1.6;
}

.install-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
}

@keyframes playerBounce {
  0% { height: 18px; opacity: .78; }
  100% { height: 52px; opacity: 1; }
}

@media (max-width: 860px) {
  .player-topline {
    flex-direction: column;
    align-items: stretch;
  }
  .install-banner {
    left: 10px;
    right: 10px;
    bottom: 88px;
  }
  .install-banner-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .install-icon-wrap {
    display: grid;
    place-items: center;
  }
  .install-actions {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .player-meta-row {
    flex-direction: column;
  }
}


/* Removed extra bottom equalizer */
.hero-eq { display: none !important; }



/* ===== CLEANER PLAYER BARS: MULTI-COLOR PRO STYLE ===== */
.player-color-bar {
  height: 44px;
  padding: 8px 4px 0;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
}

.player-color-bar span {
  background: linear-gradient(180deg, #ffffff 0%, #ff1010 38%, #ff8a00 62%, #6d1ed4 100%) !important;
  box-shadow:
    0 0 10px rgba(255,16,16,0.28),
    0 0 18px rgba(109,30,212,0.18);
}

.player-color-bar span:nth-child(2n) {
  background: linear-gradient(180deg, #ffffff 0%, #25D366 38%, #ff1010 72%, #6d1ed4 100%) !important;
}

.player-color-bar span:nth-child(3n) {
  background: linear-gradient(180deg, #ffffff 0%, #6d1ed4 42%, #ff1010 100%) !important;
}

.player-color-bar span:nth-child(4n) {
  background: linear-gradient(180deg, #ffffff 0%, #ffcc00 40%, #ff1010 75%, #6d1ed4 100%) !important;
}

.custom-player audio {
  accent-color: #ff1010;
}

.custom-player {
  background:
    radial-gradient(circle at 12% 15%, rgba(255,16,16,0.18), transparent 28%),
    radial-gradient(circle at 88% 80%, rgba(37,211,102,0.10), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(109,30,212,0.10), rgba(255,16,16,0.08));
}

/* PLAYER LINKS REMOVED CLEANUP */
.player-info .custom-player {
  margin-bottom: 0;
}



/* ===== HERO TITLE 3D STYLE ===== */
.hero-3d-title {
  margin: 12px 0 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  line-height: 0.9;
  perspective: 1000px;
}

.hero-3d-title span {
  display: block;
  text-transform: uppercase;
  font-weight: 1000;
  letter-spacing: 3px;
  transform: perspective(900px) rotateX(10deg);
  position: relative;
}

.title-boulva {
  font-size: clamp(54px, 10vw, 130px);
  background: linear-gradient(180deg, #ffffff 0%, #f6f6f6 28%, #d8d8d8 55%, #9b9b9b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 1px 0 #ffffff,
    0 2px 0 #ededed,
    0 3px 0 #dadada,
    0 4px 0 #c7c7c7,
    0 5px 0 #b4b4b4,
    0 10px 18px rgba(0,0,0,0.35),
    0 0 26px rgba(255,255,255,0.12);
  filter: drop-shadow(0 10px 16px rgba(0,0,0,0.28));
}

.title-radio {
  font-size: clamp(40px, 7vw, 92px);
  background: linear-gradient(180deg, #ff8a8a 0%, #ff2f2f 22%, #ff1010 42%, #b30000 78%, #6b0000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 1px 0 #ff9b9b,
    0 2px 0 #ff7777,
    0 3px 0 #f34a4a,
    0 4px 0 #db1b1b,
    0 5px 0 #b60000,
    0 10px 20px rgba(0,0,0,0.40),
    0 0 24px rgba(255,16,16,0.22);
  filter: drop-shadow(0 12px 18px rgba(0,0,0,0.34));
  letter-spacing: 4px;
}

.hero-3d-title .title-boulva::after,
.hero-3d-title .title-radio::after {
  content: attr(class);
  display: none;
}

.hero-3d-title::after {
  content: "";
  width: min(440px, 62vw);
  height: 14px;
  margin-top: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,16,16,0.28), rgba(255,16,16,0.06), transparent 72%);
  filter: blur(6px);
  opacity: 0.9;
}

@media (max-width: 860px) {
  .hero-3d-title {
    gap: 0;
  }

  .hero-3d-title span {
    letter-spacing: 2px;
  }
}



/* ===== HERO LOGO + TITLE HARMONY + SLOGAN ===== */
.hero-brand-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  padding: 14px;
  border-radius: 32px;
  background:
    radial-gradient(circle at center, rgba(255,16,16,0.12), transparent 58%),
    rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 18px 45px rgba(0,0,0,0.28),
    inset 0 0 30px rgba(255,16,16,0.08);
}

.hero-logo-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,16,16,0.7), rgba(255,255,255,0.18), rgba(109,30,212,0.48));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.hero-logo {
  width: min(260px, 56vw);
  margin: 0;
}

.hero-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-title-wrap .eyebrow {
  margin: 0 0 10px;
}

.hero-slogan {
  margin: 8px 0 0;
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 900;
  letter-spacing: .4px;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow:
    0 2px 10px rgba(0,0,0,0.35),
    0 0 16px rgba(255,16,16,0.12);
  opacity: 0.96;
}

.hero-3d-title {
  margin: 0;
}

.tagline {
  max-width: 820px;
  margin: 18px auto 0;
}

@media (max-width: 860px) {
  .hero-brand-lockup {
    gap: 16px;
  }

  .hero-logo {
    width: min(220px, 62vw);
  }

  .hero-slogan {
    font-size: 16px;
    line-height: 1.4;
  }
}



/* ===== EXTRA IMPACT SECTIONS: NOW PLAYING, REQUEST, DJS, SOCIAL, SPONSOR MARQUEE, PRO FOOTER ===== */
.now-playing-section,
.request-section,
.djs-section,
.social-section {
  padding: 80px 7%;
  position: relative;
  z-index: 1;
}

.now-playing-card {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: 220px 1fr 250px;
  gap: 28px;
  align-items: center;
  padding: 32px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 50%, rgba(255,16,16,0.18), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(109,30,212,0.14), transparent 26%),
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.12);
}

.vinyl-wrap {
  display: grid;
  place-items: center;
}

.vinyl-disc {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, #111 0 18%, #333 19% 21%, #050505 22% 38%, #1d1d1d 39% 41%, #070707 42% 100%);
  box-shadow:
    0 18px 45px rgba(0,0,0,0.45),
    0 0 35px rgba(255,16,16,0.18);
  animation: vinylSpin 9s linear infinite;
}

.vinyl-disc img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 6px;
}

.now-playing-info h2 {
  font-size: clamp(36px, 5vw, 62px);
  margin: 0 0 10px;
}

.now-playing-info p {
  color: var(--muted);
  line-height: 1.6;
}

.live-wave {
  height: 72px;
  display: flex;
  align-items: end;
  gap: 8px;
  margin-top: 18px;
}

.live-wave span {
  width: 16px;
  border-radius: 14px 14px 4px 4px;
  background: linear-gradient(180deg, #ffffff, #ff1010, #6d1ed4);
  animation: waveRise 1.1s ease-in-out infinite alternate;
}

.live-wave span:nth-child(2n) { animation-duration: 1.35s; background: linear-gradient(180deg, #ffffff, #25D366, #ff1010); }
.live-wave span:nth-child(3n) { animation-duration: 1.55s; background: linear-gradient(180deg, #ffffff, #ffcc00, #6d1ed4); }

.next-show-box {
  padding: 24px;
  border-radius: 26px;
  text-align: center;
  background: rgba(0,0,0,0.32);
  border: 1px solid rgba(255,255,255,0.12);
}

.next-show-box span {
  display: block;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.next-show-box strong {
  display: block;
  font-size: 36px;
  margin: 8px 0;
  color: #fff;
  text-shadow: 0 0 16px rgba(255,16,16,0.30);
}

.next-show-box small {
  color: #cfcfcf;
}

.request-grid,
.dj-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 1000px;
  margin: auto;
}

.dj-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1120px;
}

.request-card,
.dj-card {
  padding: 30px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}

.request-card:hover,
.dj-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(255,16,16,0.13);
}

.request-icon,
.dj-avatar {
  width: 76px;
  height: 76px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  font-size: 36px;
  background: rgba(255,16,16,0.12);
  box-shadow: inset 0 0 28px rgba(255,16,16,0.10);
}

.dj-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 42px rgba(0,0,0,0.28);
}

.request-card h3,
.dj-card h3 {
  font-size: 28px;
  margin: 0 0 10px;
}

.request-card p,
.dj-card p {
  color: var(--muted);
  line-height: 1.6;
}

.request-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 13px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25D366, #0e8b40);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 0 22px rgba(37,211,102,0.25);
}

.request-btn.alt {
  background: linear-gradient(135deg, #ff1010, #6d1ed4);
  box-shadow: 0 0 22px rgba(255,16,16,0.25);
}

.dj-card span {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-weight: 900;
}

.social-grid {
  max-width: 980px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.social-grid a {
  min-height: 90px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 1000;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.10), transparent 40%),
    linear-gradient(135deg, rgba(255,16,16,0.35), rgba(109,30,212,0.35));
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform .3s ease, filter .3s ease;
}

.social-grid a:hover {
  transform: translateY(-6px) scale(1.02);
  filter: brightness(1.1);
}

.animated-sponsor-marquee {
  max-width: 1120px;
  margin: 28px auto 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
}

.sponsor-track {
  display: flex;
  width: max-content;
  animation: sponsorMove 26s linear infinite;
}

.sponsor-track span {
  display: grid;
  place-items: center;
  min-width: 190px;
  height: 82px;
  margin: 10px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,16,16,0.20), rgba(109,30,212,0.14));
  border: 1px dashed rgba(255,255,255,0.22);
  font-weight: 1000;
  color: #fff;
  letter-spacing: 1px;
}

.pro-footer {
  padding: 55px 7% 24px;
  background:
    radial-gradient(circle at top left, rgba(255,16,16,0.10), transparent 28%),
    #020202;
  color: #fff;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  max-width: 1120px;
  margin: auto;
}

.footer-brand img {
  width: 110px;
}

.footer-brand h3 {
  font-size: 30px;
  margin: 10px 0 5px;
}

.pro-footer h4 {
  font-size: 18px;
  margin: 0 0 14px;
  color: #fff;
}

.pro-footer a {
  display: block;
  color: #dcdcdc;
  text-decoration: none;
  margin: 9px 0;
}

.pro-footer p {
  color: var(--muted);
  line-height: 1.6;
}

.footer-bottom {
  max-width: 1120px;
  margin: 32px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@keyframes vinylSpin {
  to { transform: rotate(360deg); }
}

@keyframes waveRise {
  0% { height: 16px; opacity: .75; }
  100% { height: 72px; opacity: 1; }
}

@keyframes sponsorMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 980px) {
  .now-playing-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .live-wave {
    justify-content: center;
  }

  .dj-grid,
  .request-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .social-grid {
    grid-template-columns: 1fr;
  }

  .vinyl-disc {
    width: 160px;
    height: 160px;
  }
}








/* Footer powered by image - compact brand badge */
.footer-powered {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-powered img {
  max-width: 155px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.18));
  opacity: 1;
}

@media (max-width: 860px) {
  .footer-powered {
    justify-content: center;
  }

  .footer-powered img {
    max-width: 130px;
  }
}



/* ===== ADVANCED PRO ADDITIONS: WELCOME, ABOUT, SCHEDULE, AD PLANS ===== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.install-top {
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(135deg, #25D366, #6d1ed4);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 1000;
  cursor: pointer;
  box-shadow: 0 0 22px rgba(37,211,102,0.20);
}

.welcome-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(10px);
}

.welcome-modal.show {
  display: grid;
}

.welcome-card {
  position: relative;
  width: min(560px, 100%);
  border-radius: 34px;
  padding: 32px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(255,16,16,0.20), transparent 32%),
    radial-gradient(circle at bottom right, rgba(109,30,212,0.18), transparent 28%),
    #090909;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 28px 80px rgba(0,0,0,0.55);
}

.welcome-card img {
  width: 145px;
  filter: drop-shadow(0 0 24px rgba(255,16,16,0.32));
}

.welcome-card h2 {
  font-size: clamp(34px, 5vw, 54px);
  margin: 8px 0 10px;
}

.welcome-card p {
  color: var(--muted);
  line-height: 1.6;
}

.welcome-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.welcome-close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.08);
  color: #fff;
  cursor: pointer;
}

.about-section,
.schedule-section,
.advertise-section {
  position: relative;
  z-index: 1;
  padding: 80px 7%;
}

.about-card {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,16,16,0.16), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.12);
}

.about-logo img {
  width: 100%;
  max-width: 250px;
  filter: drop-shadow(0 0 30px rgba(255,16,16,0.25));
}

.about-card h2 {
  font-size: clamp(38px, 5vw, 64px);
  margin: 0 0 12px;
}

.about-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 18px;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.about-points span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  font-weight: 900;
}

.schedule-grid,
.pricing-grid {
  max-width: 1120px;
  margin: auto;
  display: grid;
  gap: 18px;
}

.schedule-grid {
  grid-template-columns: repeat(4, 1fr);
}

.schedule-card,
.price-card {
  padding: 26px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform .3s ease, box-shadow .3s ease;
}

.schedule-card:hover,
.price-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(255,16,16,0.12);
}

.schedule-card span {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,16,16,0.16);
  font-weight: 1000;
  color: #fff;
}

.schedule-card h3,
.price-card h3 {
  font-size: 26px;
  margin: 16px 0 8px;
}

.schedule-card p,
.price-card p {
  color: var(--muted);
  line-height: 1.6;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  border-color: rgba(255,16,16,0.55);
  box-shadow: 0 0 45px rgba(255,16,16,0.13);
  transform: scale(1.02);
}

.price-badge {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff1010, #6d1ed4);
  font-weight: 1000;
}

.price-card ul {
  padding-left: 18px;
  color: #e8e8e8;
  line-height: 1.9;
  margin: 18px 0;
}

.price-card a {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25D366, #0f8f43);
  color: #fff;
  text-decoration: none;
  font-weight: 1000;
}

@media (max-width: 1080px) {
  .schedule-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .header-actions {
    width: 100%;
    justify-content: center;
    order: 5;
    margin-top: 10px;
  }

  .install-top,
  .listen-top {
    display: inline-flex;
  }

  .about-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-logo {
    display: grid;
    place-items: center;
  }

  .about-points {
    justify-content: center;
  }

  .schedule-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }
}



/* Compact language buttons */
.lang-switcher {
  gap: 4px;
  padding: 4px;
}

.lang-btn {
  min-width: 38px;
  padding: 8px 9px;
  font-size: 12px;
  letter-spacing: .7px;
}



/* Admin-controlled dynamic ads */
.dynamic-ads-area {
  max-width: 1120px;
  margin: 0 auto 28px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.dynamic-ads-area h3 {
  margin: 0 0 16px;
  font-size: 28px;
  text-align: center;
}

.dynamic-ads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.dynamic-ad-card {
  display: block;
  color: white;
  text-decoration: none;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform .3s ease, box-shadow .3s ease;
}

.dynamic-ad-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(255,16,16,0.13);
}

.dynamic-ad-card img {
  width: 100%;
  height: 155px;
  object-fit: cover;
  display: block;
}

.dynamic-ad-card div {
  padding: 16px;
}

.dynamic-ad-card h4 {
  margin: 0 0 8px;
  font-size: 20px;
}

.dynamic-ad-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .dynamic-ads-grid {
    grid-template-columns: 1fr;
  }
}





/* Real microphone hero background */
.hero-bg-logo {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(5,5,5,0.10) 0%, rgba(5,5,5,0.18) 35%, rgba(5,5,5,0.06) 100%),
    url("assets/hero-microphone.png");
  background-repeat: no-repeat, no-repeat;
  background-position: center, right center;
  background-size: cover, contain;
  opacity: 0.26;
  filter: saturate(1.05);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 50%, rgba(255,16,16,0.08), transparent 22%),
    linear-gradient(90deg, rgba(0,0,0,0.10), rgba(0,0,0,0.16));
  pointer-events: none;
}



/* Restored pro sections and popup */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.install-top {
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(135deg, #25D366, #6d1ed4);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 1000;
  cursor: pointer;
  box-shadow: 0 0 22px rgba(37,211,102,0.20);
}

.welcome-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(10px);
}

.welcome-modal.show { display: grid; }

.welcome-card {
  position: relative;
  width: min(560px, 100%);
  border-radius: 34px;
  padding: 32px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(255,16,16,0.20), transparent 32%),
    radial-gradient(circle at bottom right, rgba(109,30,212,0.18), transparent 28%),
    #090909;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 28px 80px rgba(0,0,0,0.55);
}

.welcome-card img {
  width: 145px;
  filter: drop-shadow(0 0 24px rgba(255,16,16,0.32));
}

.welcome-card h2 {
  font-size: clamp(34px, 5vw, 54px);
  margin: 8px 0 10px;
}

.welcome-card p { color: var(--muted); line-height: 1.6; }

.welcome-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.welcome-close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.08);
  color: #fff;
  cursor: pointer;
}

.about-section, .schedule-section, .advertise-section {
  position: relative;
  z-index: 1;
  padding: 80px 7%;
}

.about-card {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,16,16,0.16), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.12);
}

.about-logo img {
  width: 100%;
  max-width: 250px;
  filter: drop-shadow(0 0 30px rgba(255,16,16,0.25));
}

.about-card h2 {
  font-size: clamp(38px, 5vw, 64px);
  margin: 0 0 12px;
}

.about-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 18px;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.about-points span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  font-weight: 900;
}

.schedule-grid, .pricing-grid {
  max-width: 1120px;
  margin: auto;
  display: grid;
  gap: 18px;
}

.schedule-grid { grid-template-columns: repeat(4, 1fr); }

.schedule-card, .price-card {
  padding: 26px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform .3s ease, box-shadow .3s ease;
}

.schedule-card:hover, .price-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(255,16,16,0.12);
}

.schedule-card span {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,16,16,0.16);
  font-weight: 1000;
  color: #fff;
}

.schedule-card h3, .price-card h3 {
  font-size: 26px;
  margin: 16px 0 8px;
}

.schedule-card p, .price-card p {
  color: var(--muted);
  line-height: 1.6;
}

.pricing-grid { grid-template-columns: repeat(3, 1fr); }

.price-card {
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  border-color: rgba(255,16,16,0.55);
  box-shadow: 0 0 45px rgba(255,16,16,0.13);
  transform: scale(1.02);
}

.price-badge {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff1010, #6d1ed4);
  font-weight: 1000;
}

.price-card ul {
  padding-left: 18px;
  color: #e8e8e8;
  line-height: 1.9;
  margin: 18px 0;
}

.price-card a {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25D366, #0f8f43);
  color: #fff;
  text-decoration: none;
  font-weight: 1000;
}

@media (max-width: 1080px) {
  .schedule-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .header-actions {
    width: 100%;
    justify-content: center;
    order: 5;
    margin-top: 10px;
  }
  .about-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-logo { display: grid; place-items: center; }
  .about-points { justify-content: center; }
  .schedule-grid, .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}



/* Header brand without logo image */
.topbar .brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.topbar .brand span {
  font-weight: 1000;
  letter-spacing: 0.5px;
}



/* Hero title only layout after removing hero logo */
.hero-brand-lockup {
  justify-content: center !important;
}

.hero-title-wrap {
  width: 100%;
  text-align: center;
}

.hero-title-wrap .eyebrow,
.hero-title-wrap .hero-slogan {
  text-align: center;
}



/* Footer powered image full visibility fix */
.footer-bottom {
  align-items: center !important;
}

.footer-powered {
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  overflow: visible !important;
  min-width: 170px !important;
}

.footer-powered img {
  display: block !important;
  width: 150px !important;
  max-width: 150px !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  overflow: visible !important;
  clip-path: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.18));
}

@media (max-width: 860px) {
  .footer-bottom {
    justify-content: center !important;
    text-align: center !important;
  }

  .footer-powered {
    justify-content: center !important;
    min-width: 130px !important;
  }

  .footer-powered img {
    width: 130px !important;
    max-width: 130px !important;
  }
}



/* Language button click fix */
.lang-switcher {
  position: relative !important;
  z-index: 999 !important;
  pointer-events: auto !important;
}

.lang-btn {
  pointer-events: auto !important;
  cursor: pointer !important;
}


/* FINAL footer powered badge fix v1781845898 */
.footer-bottom {
  align-items: center !important;
  overflow: visible !important;
}

.footer-powered {
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  overflow: visible !important;
  min-width: 175px !important;
  flex: 0 0 auto !important;
}

.footer-powered img {
  display: block !important;
  width: 155px !important;
  max-width: 155px !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  overflow: visible !important;
  clip-path: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

@media (max-width: 860px) {
  .footer-bottom {
    justify-content: center !important;
    text-align: center !important;
  }
  .footer-powered {
    justify-content: center !important;
    min-width: 150px !important;
  }
  .footer-powered img {
    width: 140px !important;
    max-width: 140px !important;
  }
}



/* FINAL OVERRIDE FEDTECH BADGE FIX v1781846255 */
.footer-bottom {
  max-width: 1120px !important;
  margin: 32px auto 0 !important;
  padding-top: 18px !important;
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: center !important;
  gap: 18px !important;
  overflow: visible !important;
}

.footer-bottom > p:first-child {
  margin: 0 !important;
}

.footer-powered {
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  overflow: visible !important;
  width: auto !important;
  min-width: auto !important;
  flex: none !important;
}

.footer-powered img {
  display: block !important;
  width: 240px !important;
  max-width: 240px !important;
  min-width: 240px !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  overflow: visible !important;
  clip-path: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.18)) !important;
}

@media (max-width: 860px) {
  .footer-bottom {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
  }

  .footer-powered {
    justify-content: center !important;
  }

  .footer-powered img {
    width: 190px !important;
    max-width: 190px !important;
    min-width: 190px !important;
  }
}



/* Beautiful safe loading screen */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,16,16,0.22), transparent 34%),
    radial-gradient(circle at 70% 70%, rgba(109,30,212,0.16), transparent 30%),
    #020202;
  transition: opacity .65s ease, visibility .65s ease;
  pointer-events: auto;
}

.preloader.hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.preloader-card {
  position: relative;
  text-align: center;
  padding: 32px;
  border-radius: 34px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 70px rgba(0,0,0,0.45);
  backdrop-filter: blur(12px);
}

.preloader-card img {
  width: min(220px, 60vw);
  filter: drop-shadow(0 0 28px rgba(255,16,16,0.45));
  animation: preloaderPulse 1.8s ease-in-out infinite;
}

.preloader-card h2 {
  margin: 18px 0 6px;
  font-size: clamp(30px, 5vw, 44px);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.preloader-card p {
  color: #d6d6d6;
  font-weight: 900;
}

.loader-ring {
  position: absolute;
  inset: 18px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.08);
  border-top-color: #ff1010;
  border-right-color: #ffffff;
  animation: ringSpin 1.2s linear infinite;
  pointer-events: none;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.045); }
}

@keyframes ringSpin {
  to { transform: rotate(360deg); }
}



/* FINAL LOADING FIX: content always visible, loader cannot block */
.reveal-up,
.reveal-card,
.reveal-up.visible,
.reveal-card.visible {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

main,
header,
section,
footer,
.topbar,
.hero,
.hero-content,
.pro-footer {
  opacity: 1 !important;
  visibility: visible !important;
}

.preloader {
  pointer-events: none !important;
}

.preloader.hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.site-ready .preloader,
html.site-ready .preloader {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
