/* =========================================================
   SECRET PAGE
========================================================= */

* {
  box-sizing: border-box;
}

body{
    background: #050505;
  color: #f4f4f4;

  font-family: monospace;
}

.secret-page {
  
  display: flex;
  align-items: center;
  justify-content: center;

  background: #050505;
  color: #f4f4f4;

  font-family: monospace;
}

.secret-shell {
  width: 100%;
  padding: 24px;
}

.secret-panel {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;

  text-align: center;
}

.secret-kicker {
  margin: 0 0 16px;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
}

.secret-title {
  margin: 0 0 16px;
  font-size: clamp(2rem, 8vw, 4.5rem);
  line-height: 0.95;
  font-weight: 400;
}

.secret-description {
  max-width: 440px;
  margin: 0 auto 32px;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.72;
}

.secret-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.secret-input {
  width: 100%;
  padding: 14px 16px;

  background: transparent;
  color: #f4f4f4;

  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 0;

  font-family: "alphabet-soup-pro", monospace;
  font-size: clamp(1.6rem, 6vw, 2.6rem);
  text-align: center;

  outline: none;
}

.secret-input:focus {
  border-color: #ffffff;
  background: rgba(255,255,255,0.04);
}

.secret-button {
  margin-top: 12px;
  padding: 14px 18px;

  background: #f4f4f4;
  color: #050505;

  border: none;
  cursor: pointer;

  font-family: monospace;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.secret-button:hover {
  opacity: 0.82;
}

.secret-typewriter {
  margin-top: 34px;
  min-height: 1.2em;

  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.55;
}

.secret-typewriter span {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;

  border-right: 1px solid #f4f4f4;

  animation:
    typeEnter 4s steps(5) infinite,
    blinkCursor 0.7s step-end infinite;
}

.secret-message {
  min-height: 1.4em;
  margin-top: 18px;
  font-size: 0.85rem;
  opacity: 0.8;
}

@keyframes typeEnter {
  0% {
    width: 0;
  }

  40% {
    width: 7ch;
  }

  60% {
    width: 7ch;
  }

  100% {
    width: 0;
  }
}

@keyframes blinkCursor {
  50% {
    border-color: transparent;
  }
}



.site-header,
.site-footer {
  background: #050505 !important;
}

.nav-item {
  color: #ffffff !important;
}

.footer-socials img {
  filter: brightness(0) invert(1);
}