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

html {
  overflow-x: hidden;
}

body {
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
}

::selection {
  background: #316AC5;
  color: #fff;
}

::-moz-selection {
  background: #316AC5;
  color: #fff;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  width: 100%;
  box-sizing: border-box;
}

.site-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.nav-row {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin-top: 5px;
  margin-bottom: 30px;
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #666;
  flex-shrink: 0;
}

.nav-link {
  color: #666;
  text-decoration: none;
  margin: 0;
  font-size: 14px;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #000;
}

#interviews {
  width: 100%;
}

.interview {
  margin-bottom: 60px;
}

.interview-header {
  margin-bottom: 20px;
}

.interview-title {
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.interview-title:hover {
  text-decoration: underline;
}

.interview-subtitle {
  font-size: 14px;
  color: #666;
  margin-top: 4px;
}

.divider-heavy {
  border: none;
  border-top: 1px solid #ccc;
  margin: 40px 0;
}

.divider-light {
  border: none;
  border-top: 1px solid #ccc;
  margin: 20px 0;
}

.message {
  margin-bottom: 24px;
}

.speaker {
  font-weight: bold;
  margin-bottom: 2px;
}

.speaker-red {
  color: #d32f2f;
}

.speaker-blue {
  color: #1976d2;
}

.message-text {
  color: #000;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.message-text a {
  color: #555;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
}

.message-text a:hover {
  color: #000;
  border-bottom-color: #000;
}

.site-footer {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: auto;
  padding-top: 60px;
  padding-bottom: 10px;
  width: 100%;
}

.footer-text {
  display: block;
  margin-top: 20px;
}

.subscribe-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.subscribe-button {
  padding: 6px 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  background: #1976d2;
  color: #fff;
  border: 1px solid #000;
  cursor: pointer;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  margin-top: 0;
}

.nominate-form .subscribe-button {
  margin-top: 24px;
}

.subscribe-button:hover {
  background: #1565c0;
}

.subscribe-button:active {
  background: #0d47a1;
}

.subscribe-input {
  padding: 6px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 12px;
  border: 1px solid #808080;
  background: #fff;
  color: #000;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  min-width: 260px;
}

.subscribe-input:focus {
  outline: none;
  border: 1px solid #000;
}

.subscribe-input::placeholder {
  color: #999;
}


.footer-link {
  color: #999;
  text-decoration: none;
  border-bottom: 1px solid #ddd;
  transition: color 0.2s, border-bottom-color 0.2s;
}

.footer-link:hover {
  color: #666;
  border-bottom-color: #999;
}

.page-content {
  width: 100%;
  max-width: 500px;
  margin-top: 40px;
}

.page-content p {
  margin-bottom: 16px;
  line-height: 1.5;
}

.page-content p:last-child {
  margin-bottom: 0;
}

.nominate-form {
  width: 100%;
  margin-top: 60px;
}

.form-label {
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  margin-top: 20px;
}

.form-label:first-child {
  margin-top: 0;
}

.retro-input,
.retro-textarea {
  width: 100%;
  padding: 8px;
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.retro-input:focus,
.retro-textarea:focus {
  outline: 1px solid #000;
  outline-offset: -1px;
}

.retro-textarea {
  resize: vertical;
  min-height: 120px;
}

.retro-button {
  margin-top: 24px;
  padding: 8px 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  background: #fff;
  color: #000;
  border: 1px solid #000;
  cursor: pointer;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.retro-button:hover {
  background: #000;
  color: #fff;
}

.retro-button:active {
  background: #333;
}

#interview {
  width: 100%;
}

.next-button {
  color: #555;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
  transition: color 0.2s, border-bottom-color 0.2s;
}

.next-button:hover {
  color: #000;
  border-bottom-color: #000;
}

.interview-list {
  margin-top: 30px;
}

.interview-link-item {
  margin-bottom: 12px;
}

.interview-link {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  transition: color 0.2s, border-bottom-color 0.2s;
}

.interview-link:hover {
  color: #555;
  border-bottom-color: #666;
}
