/* styles/presave.css */

.presave-header {
  text-align: center;
  margin: 15px auto 10px;
}

.presave-header h1 {
  font-size: 46px;
  margin: 8px 0;
  color: yellow;
  text-shadow: 2px 2px #660000;
}

.kicker {
  color: #00ffff;
  font-size: 13px;
  letter-spacing: 1px;
  margin: 0;
}

.lead {
  font-size: 20px;
  margin: 5px 0;
}

.date {
  color: white;
  font-size: 14px;
}

.blink {
  animation: blink 0.8s step-start infinite;
  color: yellow;
  font-weight: bold;
}

@keyframes blink {
  50% { opacity: 0; }
}

.presave-main {
  width: min(95%, 880px);
  padding: 18px;
}

.presave-top {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 20px;
  align-items: start;
}

.cover-wrap {
  text-align: center;
}

.single-cover {
  width: 100%;
  max-width: 320px;
  height: auto;
  border: 4px ridge white;
  background: #111;
}

.caption {
  font-size: 12px;
  color: white;
  margin: 6px 0 0;
}

.presave-info {
  text-align: left;
  line-height: 1.5;
}

.presave-info h2,
.instructions-box h2,
.single-details h2 {
  color: yellow;
  text-align: center;
  margin-top: 0;
}

.presave-button-wrap {
  border: 4px double #666;
  background: #111;
  text-align: center;
  padding: 14px;
  margin-top: 18px;
}

.presave-button {
  display: inline-block;
  color: #000;
  background: yellow;
  border: 5px outset #888;
  padding: 14px 22px;
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
  font-family: "Times New Roman", serif;
  animation: wobble 1.8s infinite ease-in-out;
}

.presave-button:hover {
  background: #00ffff;
  color: #000;
}

@keyframes wobble {
  0% { transform: rotate(-1deg) scale(1); }
  50% { transform: rotate(1deg) scale(1.03); }
  100% { transform: rotate(-1deg) scale(1); }
}

.button-note {
  color: white;
  font-size: 12px;
  margin: 8px 0 0;
}

.instructions-box {
  max-width: 640px;
  margin: 0 auto 24px;
  text-align: left;
  line-height: 1.6;
}

.instructions-box ol {
  padding-left: 28px;
}

.single-details {
  max-width: 620px;
  margin: 0 auto;
}

.details-table {
  width: 100%;
  border-collapse: collapse;
  background: #111;
  text-align: left;
}

.details-table th,
.details-table td {
  border: 2px ridge #666;
  padding: 10px;
}

.details-table th {
  color: yellow;
  width: 35%;
}

.details-table td {
  color: #ffcc99;
}

.official-stamp {
  width: fit-content;
  max-width: 90%;
  margin: 25px auto 5px;
  padding: 8px 14px;
  border: 4px double red;
  color: red;
  font-weight: bold;
  transform: rotate(-3deg);
  background: #111;
  font-size: 18px;
}

.return-link {
  margin-top: 20px;
}

@media (max-width: 760px) {
  .presave-top {
    grid-template-columns: 1fr;
  }

  .presave-info {
    text-align: center;
  }

  .presave-header h1 {
    font-size: 36px;
  }

  .presave-button {
    font-size: 19px;
    padding: 12px 16px;
  }
}
