/* Station Page Styles */
.station-page-content {
  width: 100%;
  animation: fadeIn 0.3s ease-in-out;
}

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

.station-card-large {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.back-btn-inline {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.back-btn-inline:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-2px);
}

.back-btn-inline svg {
  flex-shrink: 0;
}

.station-card-content {
  text-align: center;
  margin-top: 2rem;
}

.station-hero-icon {
  font-size: 5rem;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.station-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.station-category {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.station-description-short {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.station-play-btn-large {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: #fff;
  color: #1a1a2e;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.station-play-btn-large:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(255, 255, 255, 0.4);
}

.station-play-btn-large svg {
  flex-shrink: 0;
}

.station-play-btn-large svg path {
  fill: currentColor;
}

/* Responsive Design */
@media (max-width: 768px) {
  .station-card-large {
    padding: 1.5rem 1rem;
    max-width: 100%;
    margin: 0 0.5rem;
  }

  .back-btn-inline {
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
    gap: 0.25rem;
  }

  .back-btn-inline svg {
    width: 16px;
    height: 16px;
  }

  .station-card-content {
    margin-top: 1rem;
  }

  .station-hero-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
  }

  .station-title {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }

  .station-category {
    font-size: 0.75rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
  }

  .station-description-short {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
    padding: 0 0.5rem;
  }

  .station-play-btn-large {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    gap: 0.5rem;
  }

  .station-play-btn-large svg {
    width: 20px;
    height: 20px;
  }
}
