:root {
  --navy: #16365c;
  --navy-light: #234d7c;
  --gold: #8fa6b8;
  --gold-light: #c3d2dd;
  --cream: #f5f7f9;
  --text-dark: #1c2733;
  --text-light: #f5f7f9;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header */
header {
  background: var(--navy);
  color: var(--text-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo span {
  color: var(--gold-light);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

nav a {
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--text-light);
  text-align: center;
  padding: 90px 24px 110px;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.hero p.tagline {
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 40px;
}

/* Player */
.player-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(143, 166, 184, 0.4);
  border-radius: 16px;
  max-width: 420px;
  margin: 0 auto;
  padding: 28px 24px;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #a8432f;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.live-badge .dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.4s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  color: var(--navy);
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: transform 0.15s, background 0.2s;
}

.play-btn:hover {
  background: var(--gold-light);
  transform: scale(1.05);
}

.player-status {
  font-size: 0.9rem;
  color: var(--text-light);
  opacity: 0.85;
}

.volume-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  justify-content: center;
}

.volume-row input[type="range"] {
  width: 140px;
  accent-color: var(--gold);
}

.ios-volume-note {
  font-size: 0.8rem;
  color: var(--text-light);
  opacity: 0.75;
}

/* Sections */
section {
  padding: 70px 24px;
  max-width: 1000px;
  margin: 0 auto;
}

section h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 24px;
  text-align: center;
}

.section-alt {
  background: #eaeff3;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-content p {
  margin-bottom: 16px;
}

.about-badge {
  background: var(--navy);
  color: var(--text-light);
  border-radius: 14px;
  padding: 32px;
  text-align: center;
}

.about-badge .gold {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
  display: block;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.contact-card .icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact-card a {
  color: var(--navy-light);
  font-weight: 600;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.social-links a {
  background: var(--navy);
  color: var(--text-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.2s;
}

.social-links a:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Footer */
footer {
  background: var(--navy);
  color: var(--text-light);
  text-align: center;
  padding: 32px 24px;
  font-size: 0.85rem;
}

footer a {
  color: var(--gold-light);
}

footer .footer-links {
  margin-bottom: 10px;
}

footer .footer-links a {
  margin: 0 10px;
}

/* Legal page */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 90px;
}

.legal-page h1 {
  color: var(--navy);
  margin-bottom: 8px;
}

.legal-page .updated {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.legal-page h2 {
  color: var(--navy-light);
  font-size: 1.25rem;
  margin: 28px 0 10px;
}

.legal-page p,
.legal-page li {
  margin-bottom: 10px;
}

.legal-page ul {
  padding-left: 22px;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  nav ul.open {
    max-height: 300px;
  }

  nav li {
    padding: 14px 0;
    width: 100%;
    text-align: center;
  }

  .nav-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2rem;
  }
}
