body {
  margin: 0;
  background: #0b0b0b;
  color: white;
  font-family: system-ui, sans-serif;
}

main {
  max-width: 420px;
  margin: 0 auto;
  padding: 24px;
}

h1 {
  margin: 0 0 8px;
  font-size: 48px;
  font-weight: 800;
}

p {
  margin: 0;
  color: #aaa;
  line-height: 1.5;
}

.hidden {
  display: none !important;
}

#start-btn,
.manual-form button,
button {
  width: 100%;
  padding: 16px;
  border: 0;
  border-radius: 16px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.15s ease;
}

#start-btn {
  margin-top: 24px;
  padding: 18px;
  border-radius: 18px;
  background: white;
  color: black;
}

button:active {
  transform: scale(0.98);
}

.secondary-btn {
  margin-top: 12px;
  background: #2b2b2b;
  color: white;
}

#reader {
  margin-top: 24px;
  width: 100%;
  min-height: 280px;
  background: #111;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #222;
}

#reader:empty {
  display: none;
}

#reader video {
  width: 100% !important;
  height: auto !important;
  display: block;
  border-radius: 24px;
}

.manual-form {
  margin-top: 24px;
}

.manual-form label {
  display: block;
  margin-bottom: 8px;
  color: #aaa;
  font-size: 14px;
}

.manual-form input {
  width: 100%;
  box-sizing: border-box;
  padding: 16px;
  margin-bottom: 12px;
  border: 1px solid #333;
  border-radius: 16px;
  background: #111;
  color: white;
  font-size: 16px;
}

.card {
  margin-top: 24px;
  padding: 20px;
  background: #171717;
  border: 1px solid #2a2a2a;
  border-radius: 24px;
}

.podcast-card {
  margin-top: 0;
}

.cover {
  width: 100%;
  display: block;
  border-radius: 18px;
  margin-bottom: 16px;
}

.badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #1f7a3f;
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.card h2 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.2;
}

.description,
.card p {
  color: #ccc;
  margin-bottom: 20px;
  word-break: break-word;
}

.follow-btn {
  background: white;
  color: black;
}

.followed-btn {
  background: #1f7a3f;
  color: white;
}

.site-footer {
  margin-top: 32px;
  padding-bottom: 16px;
  color: #666;
  font-size: 13px;
  text-align: center;
}

.site-footer a {
  color: #777;
  text-decoration: none;
}

.site-footer a:hover {
  color: white;
  text-decoration: underline;
}

.site-footer span {
  margin: 0 4px;
}