/* Premium Polish - Subtle Enhancements */

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Premium button hover effects */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  box-shadow: 0 4px 15px rgba(244,180,0,0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 25px rgba(244,180,0,0.5);
}

/* Card depth and glow */
.platform-card,
.site-card,
.host-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.platform-card:hover,
.host-card:hover {
  box-shadow: 0 8px 30px rgba(244,180,0,0.15);
}

/* Gradient text for headers */
h1 {
  background: linear-gradient(135deg, var(--accent) 0%, #ffcc33 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtle pulse on logo */
.logo img {
  animation: subtle-pulse 3s ease-in-out infinite;
}

@keyframes subtle-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Better episode card hover */
.episode:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244,180,0,0.2);
}

/* Smooth transitions on all interactive elements */
a, button {
  transition: all 0.2s ease;
}

/* Premium audio player styling */
audio {
  filter: drop-shadow(0 2px 8px rgba(244,180,0,0.15));
}

/* Better focus states for accessibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Subtle gradient overlay on hero */
.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(244,180,0,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

/* Better YouTube embed container */
iframe {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
