/* === FIXED SPACING & CENTERING === */
.archive-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 3rem auto;
  max-width: 700px;
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.archive-box h2 {
  color: #00e0a8;
  margin-bottom: 1.5rem;
}

.archive-input {
  display: flex;
  width: 100%;
  max-width: 600px;
  gap: 0.75rem;
}

.archive-input input {
  flex: 1;
  padding: 0.8rem;
  border-radius: 8px;
  border: none;
  background: #111;
  color: #eee;
}

.archive-input button {
  background: linear-gradient(90deg, #00ffc8, #00c6ff);
  border: none;
  color: #000;
  font-weight: 700;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}


