body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #e0e0e0;
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 50%, #1a1a1a 100%);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-content .container {
  max-width: 860px;
}

.page-content {
  margin-top: 90px;
  min-height: calc(100vh - 200px);
  padding-bottom: 4rem;
}

.podcast-header {
  padding: 4rem 0 2.5rem;
  text-align: center;
}

.podcast-header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #ff9f80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.podcast-header p {
  color: #a0a0a0;
  font-size: 1.15rem;
  font-style: italic;
}

.podcast-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.podcast-card {
  background: linear-gradient(135deg, #272727 0%, #1c1c1c 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 159, 128, 0.25);
  padding: 1.75rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  animation: fadeInUp 0.55s ease-out both;
}

.podcast-card:nth-child(2) {
  animation-delay: 0.15s;
}

.podcast-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff9f80, #ff6b47);
  border-radius: 20px 20px 0 0;
}

.podcast-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55), 0 0 25px rgba(255, 107, 71, 0.12);
  border-color: rgba(255, 159, 128, 0.45);
}

footer {
  background: rgba(30, 30, 30, 0.9);
  color: #b0b0b0;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(138, 43, 226, 0.3);
  border-radius: 24px 24px 0 0;
  backdrop-filter: blur(20px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 159, 128, 0.2);
  color: #888;
  font-size: 0.9rem;
}

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

@media (max-width: 768px) {
  .podcast-header h1 { font-size: 2.5rem; }
  .podcast-card { padding: 1.25rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 15px; }
  .podcast-header { padding: 3rem 0 2rem; }
  .podcast-header h1 { font-size: 2rem; }
}
