:root {
  --primary-color: #31bddf;
  --secondary-color: #333;
  --background-color: #212120;
  --text-color: #333;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  background-image: url('https://goo.su/9gbFc');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(243, 230, 200, 0.7);
  z-index: -1;
}

header {
  background: linear-gradient(to right, #1a1a1a, #333);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: all 0.3s;
  padding: 0.5rem 1rem;
}

.nav a:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.logo-image {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo h1 {
  font-size: 1.8rem;
  color: #51e2f4;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: all 0.3s;
  padding: 0.5rem 1rem;
}

nav a:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

main {
  margin-top: 80px;
  padding: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.player-container {
  position: relative;
  color: white;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 3rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
}

.player-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px);
  z-index: 0;
}

.player-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.now-playing, .controls {
  position: relative;
  z-index: 3;
}

.now-playing {
  text-align: center;
  margin-bottom: 1.5rem;
}

.now-playing h2 {
  margin-bottom: 0.5rem;
}

.now-playing p {
  font-size: 1.2rem;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  background-color: rgba(0, 0, 0, 0.4);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  display: inline-block;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.animation-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  height: 50px;
  margin-bottom: 1rem;
}

/* animation bars removed since player controls were removed */

/* player and volume control styles removed */

.live-indicator {
  display: none;  
  color: white;
  font-weight: bold;
  margin-top: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  background-color: rgba(0, 0, 0, 0.4);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.live-dot {
  width: 12px;
  height: 12px;
  background-color: red;
  border-radius: 50%;
  display: inline-block;
  animation: blink 1s infinite;
}

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

.embedded-player {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 110px;
  border: none;
  display: block;
  margin-top: 1rem;
  background: transparent;
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.whatsapp-button i {
  font-size: 24px;
}

.whatsapp-button span {
  font-size: 16px;
  font-weight: 500;
}

.share-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #31bddf;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  z-index: 1000;
}

.share-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  background-color: #2ba7c6;
}

.share-button i {
  font-size: 24px;
}

.share-button span {
  font-size: 16px;
  font-weight: 500;
}

.knob-background, .progress-ring, .knob {
  display: none;
}

.schedule {
  display: none;
}

.schedule-grid {
  display: none;
}

.news-grid {
  display: none;
}

.news-card {
  display: none;
}

.news-content {
  display: none;
}

.read-more {
  display: none;
}

.contact-container {
  display: none;
}

form {
  display: none;
}

input, textarea {
  display: none;
}

button[type="submit"] {
  display: none;
}

.social-links {
  display: none;
}

.social-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 24px;
  text-decoration: none;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon span {
  font-size: 16px;
  color: white;
}

.social-icon:hover {
  transform: scale(1.05);
}

.programs-heading {
  text-align: center;
  margin: 2rem 0;
  color: black;
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
  position: relative;
  padding: 1rem;
  background-color: rgba(243, 230, 200, 0.7);
  border-radius: 10px;
  display: inline-block;
}

.programs-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 2rem 0;
  gap: 2rem;
}

.recorded-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  margin: 2rem 0;
}

.recorded-button {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: #31bddf;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.15rem;
  /* New styles for real button feel */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
  transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.18), inset 0 0 0 1px rgba(255,255,255,0.08);
}

.recorded-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.22), inset 0 0 0 1px rgba(255,255,255,0.1);
}

.recorded-button:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2), inset 0 2px 10px rgba(0,0,0,0.15);
}

.recorded-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(49,189,223,0.35), 0 6px 14px rgba(0,0,0,0.22);
}

/* Subtle press ripple */
.recorded-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x,50%) var(--y,50%), rgba(255,255,255,0.25), transparent 40%);
  opacity: 0;
  transition: opacity 250ms ease;
}

.recorded-button:active::after {
  opacity: 1;
  transition: opacity 80ms ease;
}
/* Reduce motion if user prefers */
@media (prefers-reduced-motion: reduce) {
  .recorded-button,
  .recorded-button:hover,
  .recorded-button:active {
    transition: none;
    transform: none;
  }
  .recorded-button::after {
    display: none;
  }
}

.program-card {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 15px;
  padding: 1.5rem;
  width: 100%;
  max-width: 530px;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.program-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.program-image.full-image {
  height: auto;
  max-height: 500px;
  object-fit: contain;
  background: rgba(0,0,0,0.1);
  padding: 6px;
}

.program-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.schedule-info, .host-info {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.schedule-info i, .host-info i {
  color: white;
  font-size: 1.2rem;
}

footer {
  text-align: center;
  padding: 2rem;
  background: transparent;
  margin-top: 3rem;
  color: black;
}

.title-highlight {
  color: #51e2f4;
}

.download-app-button {
  display: block;
  width: auto;
  margin: 0 auto;
  padding: 12px 24px;
  background-color: #31bddf;
  color: white;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.download-app-button:hover {
  background-color: #2ba7c6;
}

.app-update-announcement {
  text-align: center;
  margin: 1.5rem auto 1rem auto;
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  max-width: 700px;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.app-update-text {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #ccc;
}

.app-update-text .highlight-update {
  font-size: 1.5rem;
  font-weight: bold;
  color: #51e2f4;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.promo-section {
  text-align: center;
  margin: 3rem auto;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 15px;
  max-width: 800px;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.promo-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #51e2f4;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.promo-cta {
  background: #25d366;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.promo-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  background-color: #1fbd5a;
}

.voices-section {
  text-align: center;
  margin: 3rem auto;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 15px;
  max-width: 800px;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.voices-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #51e2f4;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.voices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 1rem;
  margin: 0 auto;
  max-width: 1400px;
}

.voice-card {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  padding: 1.5rem;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.voice-card:hover {
  transform: translateY(-5px);
}

.voice-image {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
  border: 3px solid #51e2f4;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.voice-name {
  font-size: 1.5rem;
  color: #51e2f4;
  margin-bottom: 0.5rem;
}

.voice-role {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.voice-description {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.4;
}

@media (max-width: 320px) {
  .logo h1 {
    font-size: 1rem;
  }

  main {
    margin-top: 220px;
  }

  .programs-heading {
    font-size: 1.4rem;
  }

  .volume-control {
    width: 200px;
  }
}

@media (max-width: 480px) {
  .schedule-info, .host-info {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
  .logo h1 {
    font-size: 1.1rem;
    padding: 0 0.5rem;
  }

  main {
    margin-top: 200px;
  }

  .now-playing h2 {
    font-size: 1.2rem;
  }

  .programs-heading {
    font-size: 1.6rem;
  }

  .program-card {
    margin: 0 0.5rem;
    padding: 1rem;
  }

  .program-card img {
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0 auto 1rem auto;
    max-width: 100%;
  }

  .program-info {
    font-size: 0.8rem;
  }

  .logo-image {
    width: 60px;
    height: 60px;
  }

  .promo-title {
    font-size: 1.3rem;
  }

  .promo-cta {
    font-size: 0.8rem;
    padding: 0.8rem 1rem;
  }

  .whatsapp-button, .share-button {
    padding: 8px;
    width: 40px;
    height: 40px;
    justify-content: center;
  }

  .whatsapp-button i, .share-button i {
    font-size: 18px;
    margin: 0;
  }

  .voice-image {
    width: 220px;
    height: 220px;
  }
  
  .voices-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .radio-group {
    font-size: 0.9rem;
  }

  .app-update-announcement {
    margin: 1rem auto 0.5rem auto;
    padding: 0.8rem 1rem;
  }
  .app-update-text {
    font-size: 1rem;
  }
  .app-update-text .highlight-update {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    text-align: center;
  }
  
  .logo {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .logo h1 {
    font-size: 1.4rem;
    text-align: center;
  }
  
  .social-icon {
    position: relative;
    margin: 1rem auto;
    justify-content: center;
  }

  .social-icon span {
    display: inline;
    font-size: 0.9rem;
  }

  main {
    margin-top: 180px;
    padding: 1rem;
  }
  
  .player-container {
    padding: 1rem;
  }

  .now-playing h2 {
    font-size: 1.5rem;
  }
  
  .controls {
    flex-direction: column;
  }
  
  .volume-control {
    width: 240px;
  }
  
  .whatsapp-button, .share-button {
    padding: 8px 16px;
  }

  .whatsapp-button i, .share-button i {
    font-size: 20px;
  }

  .whatsapp-button span, .share-button span {
    display: none;
  }

  .program-card {
    margin: 0 0.5rem;
    padding: 1rem;
  }

  .program-card img {
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0 auto 1rem auto;
    max-width: 100%;
  }

  .programs-heading {
    font-size: 2rem;
    padding: 0.8rem;
    width: 90%;
    margin: 1.5rem auto;
  }

  .promo-section {
    margin: 2rem 1rem;
    padding: 1.5rem;
  }

  .promo-title {
    font-size: 1.5rem;
  }

  .promo-cta {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    white-space: normal;
    text-align: center;
  }

  .voices-section {
    margin: 2rem 1rem;
    padding: 1.5rem;
  }

  .voices-title {
    font-size: 2rem;
  }

  .voices-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  
  .voice-image {
    width: 200px;
    height: 200px;
  }

  .app-update-announcement {
    max-width: 90%;
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  nav {
    padding: 1rem;
  }

  .logo h1 {
    font-size: 1.5rem;
  }

  .social-icon {
    margin-top: 1rem;
  }

  main {
    margin-top: 160px;
  }
}

@media (min-width: 1025px) {
  .programs-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
  }

  .programs-heading {
    grid-column: 1 / -1;
  }
}

@media (prefers-color-scheme: dark) {
  .programs-heading {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
  }

  footer {
    color: white;
  }
}