/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  background: #fff;
  color: #111;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 560px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

/* Site title */
.site-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

/* Tagline */
.tagline {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 60px;
  line-height: 1.7;
}

/* Section headings */
h2 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Episode buttons */
.episodes {
  margin-bottom: 60px;
}

.link-block {
  display: block;
  padding: 18px 20px;
  margin-bottom: 10px;
  border: 1.5px solid #111;
  border-radius: 6px;
  text-decoration: none;
  color: #111;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.link-block:hover {
  background: #FC00F9;
  color: #fff;
  border-color: #FC00F9;
  transform: translateY(-1px);
}

/* Coming soon episodes */
.link-block.coming-soon {
  cursor: default;
}

.link-block.coming-soon:hover {
  background: #071EF6;
  color: #fff;
  border-color: #071EF6;
  transform: translateY(-1px);
}

.link-block.coming-soon .default-text {
  display: inline;
}

.link-block.coming-soon .hover-text {
  display: none;
}

.link-block.coming-soon:hover .default-text {
  display: none;
}

.link-block.coming-soon:hover .hover-text {
  display: inline;
}

/* Episode feedback page */
.episode-header {
  margin-bottom: 8px;
}

.episode-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.episode-prompt {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 16px;
  line-height: 1.7;
}

.episode-prompt + .feedback-form {
  margin-top: 24px;
}

/* Inline links */
.inline-link {
  color: #071EF6;
  text-decoration: underline;
}

.inline-link:hover {
  color: #FC00F9;
}

/* Feedback form */
.feedback-form {
  margin-bottom: 30px;
}

.feedback-form textarea {
  width: 100%;
  min-height: 180px;
  padding: 14px 16px;
  border: 1.5px solid #111;
  border-radius: 6px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  outline: none;
  resize: vertical;
  margin-bottom: 12px;
}

.feedback-form textarea:focus {
  border-color: #FC00F9;
}

.feedback-form button {
  padding: 14px 24px;
  background: #111;
  color: #fff;
  border: 1.5px solid #111;
  border-radius: 6px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.feedback-form button:hover {
  background: #FC00F9;
  border-color: #FC00F9;
}

.form-message {
  margin-top: 10px;
  font-size: 0.9rem;
}

/* Email signup */
.signup {
  margin-bottom: 40px;
}

.email-form {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.email-form input[type="email"] {
  flex: 1;
  padding: 14px 16px;
  border: 1.5px solid #111;
  border-radius: 6px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1rem;
  outline: none;
}

.email-form input[type="email"]:focus {
  border-color: #FC00F9;
}

.email-form button {
  padding: 14px 24px;
  background: #111;
  color: #fff;
  border: 1.5px solid #111;
  border-radius: 6px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.email-form button:hover {
  background: #FC00F9;
  border-color: #FC00F9;
}

/* Back link */
.back-link {
  display: inline-block;
  margin-top: 20px;
  color: #071EF6;
  text-decoration: underline;
  font-size: 1rem;
}

.back-link:hover {
  color: #FC00F9;
}

/* Responsive */
@media (min-width: 768px) {
  .container {
    max-width: 560px;
    padding: 80px 24px 100px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 600px;
    padding: 100px 24px 120px;
  }
}
