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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #f6f6f6;
  color: #333;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 16px;
}

.container {
  width: 100%;
  max-width: 560px;
}

/* Header / Podcast Card */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 10px;
}

.podcast-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  margin-bottom: 32px;
  text-decoration: none;
  transition: box-shadow 0.15s;
}

a.podcast-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.podcast-card img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
}

.podcast-info h1 {
  font-size: 17px;
  font-weight: 600;
  color: #222;
}

.podcast-info p {
  font-size: 14px;
  color: #888;
  margin-top: 2px;
}

/* CTA Heading */
.cta-heading {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 14px;
  padding: 14px 0 2px;
  background: linear-gradient(135deg, #0bb5f4, #6c5ce7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* App List */
.app-list {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.app-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  text-decoration: none;
  color: #0bb5f4;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.15s;
}

.app-link:last-child {
  border-bottom: none;
}

.app-link:hover {
  background-color: #fafafa;
}

.app-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
}

/* Footer */
.footer {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #bbb;
}

.footer a {
  color: #0bb5f4;
  text-decoration: none;
}

/* ===== Guide Pages ===== */

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #0bb5f4;
  text-decoration: none;
  margin-bottom: 24px;
}

.back-link:hover {
  text-decoration: underline;
}

.guide-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  margin-bottom: 24px;
}

.guide-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  border-bottom: 1px solid #f0f0f0;
}

.guide-header img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.guide-header h2 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.guide-steps {
  padding: 24px;
}

.step {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0bb5f4;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-content h3 {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.step-content .highlight {
  background: #f0f7ff;
  border-left: 3px solid #0bb5f4;
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  margin-top: 10px;
  font-size: 13px;
  color: #555;
}

.step-content .note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff8e6;
  border-left: 3px solid #f5a623;
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  margin-top: 10px;
  font-size: 13px;
  color: #8a6d3b;
}

/* CTA Button */
.cta-button {
  display: block;
  width: 100%;
  padding: 16px;
  background: #2ecc71;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.2s;
  box-shadow: 0 2px 8px rgba(46, 204, 113, 0.3);
}

.cta-button:hover {
  background: #27ae60;
}

.choose-another {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: #0bb5f4;
  text-decoration: none;
}

.choose-another:hover {
  text-decoration: underline;
}

/* Rating Summary */
.rating-summary {
  text-align: center;
  margin-bottom: 20px;
}

.rating-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.star-display {
  font-size: 28px;
  color: #f5a623;
  letter-spacing: 2px;
}

.rating-number {
  font-size: 28px;
  font-weight: 700;
  color: #333;
}

.rating-count {
  font-size: 13px;
  color: #999;
  margin-top: 4px;
}

/* Reviews Carousel */
.reviews-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  margin-bottom: 28px;
}

.reviews-carousel::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.review-stars {
  font-size: 14px;
  color: #f5a623;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.review-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.review-text {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-author {
  font-size: 12px;
  color: #aaa;
}

/* Reviews List Page */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.review-full {
  background: #fff;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.review-full .review-stars {
  margin-bottom: 6px;
}

.review-full .review-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.review-text-full {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  color: #aaa;
}

.review-meta span:not(:last-child)::after {
  content: " \00B7";
  margin-left: 6px;
}

.see-all-reviews {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #0bb5f4;
  text-decoration: none;
  margin-top: 12px;
  margin-bottom: 28px;
}

.see-all-reviews:hover {
  text-decoration: underline;
}

/* Also Available On */
.also-on {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.also-on-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #fff;
  border-radius: 10px;
  text-decoration: none;
  color: #555;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: background-color 0.15s, box-shadow 0.15s;
}

.also-on-link:hover {
  background: #f9f9f9;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.also-on-link svg {
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 480px) {
  body {
    padding: 24px 12px;
  }

  .guide-steps {
    padding: 16px;
  }

  .step {
    gap: 12px;
  }
}
