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

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: linear-gradient(135deg, #1e1e1e, #2c2c2c);
  color: #f5f5f5;
  padding: 40px 20px;
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #c0392b;
  margin: 15px auto 0;
  border-radius: 3px;
}

.subtitle {
  font-size: 18px;
  color: #cccccc;
  margin-bottom: 40px;
}

.section-title {
  font-size: 26px;
  margin-bottom: 20px;
}

video {
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.examples {
  font-size: 28px;
  margin: 40px 0 25px;
  color: #4da6ff;
  transition: 0.3s ease;
}

.examples:hover {
  transform: translateX(6px);
}

.podcast {
  background: #ffffff;
  color: #333;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}

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

.podcast-name {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
}

audio {
  width: 100%;
}

.back-link {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 20px;
  background: #c0392b;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s ease;
}

.back-link:hover {
  background: #e74c3c;
}

@media (max-width: 600px) {
  .title {
    font-size: 32px;
  }

  .examples {
    font-size: 22px;
  }

  .section-title {
    font-size: 20px;
  }
}
