:root {
  --font: 'Inter', sans-serif;
  --gold: #b8860b;
  --gold-light: #daa520;
  --gold-dark: #8b6914;
  --green-dark: #00211c;
  --green-medium: #003d33;
  --green-soft: #0b5a4d;
  --bg: #faf8f3;
  --bg-alt: #f5f1e8;
  --card: rgba(255, 255, 255, 0.56);
  --card-strong: rgba(255, 255, 255, 0.72);
  --text: #00211c;
  --text-muted: rgba(0, 33, 28, 0.76);
  --border: rgba(0, 33, 28, 0.10);
  --shadow: 0 18px 42px rgba(0, 33, 28, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { min-height: 100%; -webkit-text-size-adjust: 100%; }
body {
  direction: ltr;
  min-height: 100dvh;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at top center, rgba(184, 134, 11, 0.10), transparent 34%),
    linear-gradient(180deg, #faf8f3 0%, #f8f5ee 48%, #faf8f3 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 60 60'%3E%3Cg fill='%2300211C'%3E%3Cpolygon points='30,0 34,26 60,30 34,34 30,60 26,34 0,30 26,26'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 72px 72px;
}

.nav-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  justify-content: flex-end;
  padding: 20px 22px 0;
  pointer-events: none;
}

.lang-switch {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 54px;
  padding: 10px 18px;
  border: 2px solid rgba(0, 33, 28, 0.92);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(8px);
  color: var(--green-dark);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  box-shadow: 0 10px 28px rgba(0, 33, 28, 0.08);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.lang-switch:hover,
.lang-switch:active {
  transform: translateY(-1px);
  background: var(--green-dark);
  color: #fff;
}

.main {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 112px 20px 36px;
}

.content {
  width: 100%;
  max-width: 780px;
  text-align: center;
}

.radio-logo {
  position: relative;
  width: 124px;
  height: 144px;
  margin: 0 auto 14px;
}

.logo-glow {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.16) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { opacity: 0.52; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.94; transform: translate(-50%, -50%) scale(1.08); }
}

.mic-icon { position: relative; width: 100%; height: 100%; }
.mic-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 10px 22px rgba(184, 134, 11, 0.18));
}

.wave { animation: waveMove 1.5s ease-in-out infinite; }
.wave-1 { animation-delay: 0s; }
.wave-2 { animation-delay: 0.2s; }

@keyframes waveMove {
  0%, 100% { opacity: 0.42; }
  50% { opacity: 1; }
}

.brand-name {
  margin: 0 auto 6px;
  font-size: clamp(2.35rem, 5.9vw, 4.6rem);
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #003d33 0%, #0e6657 50%, #00211c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 26px rgba(184, 134, 11, 0.08);
}

.brand-name span,
.footer-brand span {
  background: linear-gradient(180deg, #d0a224 0%, #8b6914 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sub-brand {
  margin-bottom: 18px;
  font-size: clamp(1.02rem, 2vw, 1.38rem);
  line-height: 1.7;
  font-weight: 500;
  color: var(--green-dark);
}

.coming-soon { margin-bottom: 8px; }

.live-toggle {
  width: min(204px, 62vw);
  height: 86px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-dark), var(--green-medium));
  box-shadow: 0 16px 36px rgba(0, 33, 28, 0.20), 0 0 70px rgba(184, 134, 11, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.live-toggle:hover,
.live-toggle:active {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 33, 28, 0.22), 0 0 70px rgba(184, 134, 11, 0.11);
}

.live-icon { width: 38px; height: 38px; fill: #fff; }
.live-icon-pause { display: none; }
.live-toggle.is-playing .live-icon-play { display: none; }
.live-toggle.is-playing .live-icon-pause { display: block; }

.listen-label {
  margin-top: 14px;
  font-size: clamp(1.08rem, 2.4vw, 1.4rem);
  font-weight: 500;
  color: var(--green-dark);
}

.status-wrap { min-height: 22px; }
.player-status {
  margin-top: 8px;
  min-height: 22px;
  font-size: 0.96rem;
  color: var(--text-muted);
}

.tagline {
  margin-top: 32px;
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 4vw, 2.95rem);
  line-height: 1.24;
  font-weight: 800;
  color: var(--green-dark);
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}

.divider span:first-child,
.divider span:last-child {
  width: min(96px, 18vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(184, 134, 11, 0.24);
}

.description {
  max-width: 720px;
  margin: 0 auto 24px;
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.95;
  font-weight: 500;
  color: var(--text-muted);
}

.info-card {
  width: min(100%, 760px);
  margin-inline: auto;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, var(--card-strong) 0%, var(--card) 100%);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.info-card {
  padding: 28px 24px;
}

.info-card h3 {
  margin-bottom: 14px;
  font-size: 1.18rem;
  color: var(--green-dark);
  line-height: 1.6;
}

.info-card p {
  font-size: clamp(1rem, 1.9vw, 1.1rem);
  line-height: 1.95;
  color: var(--text-muted);
}

.info-card p + p { margin-top: 14px; }

.contact-email {
  color: var(--green-soft);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid rgba(11, 90, 77, 0.35);
  word-break: break-word;
}

.footer {
  padding: 22px 20px 26px;
  text-align: center;
  border-top: 1px solid rgba(0, 33, 28, 0.08);
}

.footer-brand {
  font-size: 1rem;
  color: var(--green-dark);
  font-weight: 700;
  letter-spacing: 0.4px;
}

@media (max-width: 900px) {
  .main { padding-top: 104px; }
  .brand-name { font-size: clamp(2.15rem, 7vw, 3.6rem); }
}

@media (max-width: 600px) {
  .nav-bar {
    justify-content: flex-end;
    padding: 16px 16px 0;
  }

  .lang-switch {
    min-width: 64px;
    min-height: 44px;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.92rem;
  }

  .main {
    padding: 92px 20px 40px;
  }

  .radio-logo {
    width: 104px;
    height: 120px;
    margin-bottom: 12px;
  }

  .logo-glow {
    width: 150px;
    height: 150px;
  }

  .brand-name {
    width: 100%;
    margin-bottom: 10px;
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    line-height: 1.15;
  }

  .sub-brand {
    max-width: 92%;
    margin-inline: auto;
    margin-bottom: 16px;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .live-toggle {
    width: min(182px, 56vw);
    height: 76px;
  }

  .live-icon {
    width: 34px;
    height: 34px;
  }

  .listen-label {
    margin-top: 12px;
    font-size: 1rem;
  }

  .tagline {
    margin-top: 28px;
    margin-bottom: 16px;
    font-size: clamp(1.55rem, 7vw, 2.2rem);
    line-height: 1.35;
  }

  .divider {
    gap: 14px;
    margin-bottom: 16px;
  }

  .divider span:first-child,
  .divider span:last-child {
    width: min(76px, 20vw);
  }

  .divider .dot {
    width: 12px;
    height: 12px;
  }

  .description {
    margin-bottom: 20px;
    font-size: 0.98rem;
    line-height: 1.9;
  }

  .info-card {
    border-radius: 18px;
  }

  .info-card {
    padding: 22px 18px;
  }

  .info-card h3 {
    margin-bottom: 12px;
    font-size: 1.04rem;
  }

  .info-card p {
    font-size: 0.98rem;
    line-height: 1.9;
  }

  .footer {
    padding: 18px 16px 24px;
  }
}

@media (max-width: 390px) {
  .main {
    padding-top: 82px;
    padding-inline: 16px;
  }

  .brand-name {
    width: 100%;
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .sub-brand {
    font-size: 0.92rem;
  }

  .live-toggle {
    width: 164px;
    height: 70px;
  }

  .tagline {
    font-size: 1.46rem;
  }

  .description,
  .info-card p {
    font-size: 0.94rem;
  }
}

.info-card { text-align: left; }
