:root {
  --green: #39ff14;
  --font-xl: 64px;
  --font-md: 14px;
  --font-sm: 12px;
}




/* BODY + LAYOUT */
body {
  margin: 0;
  background: #000;
  color: var(--green);
  font-family: 'Orbitron', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.sign {
  text-align: center;
  border: 3px solid var(--green);
  padding: 2rem;
  box-shadow: 0 0 20px var(--green), inset 0 0 20px var(--green);
  animation: neonPulse 3s infinite alternate ease-in-out;
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
}

@keyframes neonPulse {
  0% { box-shadow: 0 0 15px var(--green), inset 0 0 15px var(--green); }
  50% { box-shadow: 0 0 25px var(--green), inset 0 0 25px var(--green); }
  100% { box-shadow: 0 0 15px var(--green), inset 0 0 15px var(--green); }
}

/* HEADER */
.top {
  font-size: var(--font-md);
  opacity: 0.8;
  margin-bottom: 1rem;
}

.main {
  font-size: var(--font-xl);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.d-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  position: relative;
}

.d-letter {
  font-size: 1em;
  font-weight: 800;
  line-height: 1;
  color: var(--green);
  animation: showD 4s infinite, twitch 3s infinite ease-in-out;
}

.d-cross {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: showCross 4s infinite;
  top: 0;
  left: 0;
}

.d-cross::before,
.d-cross::after {
  content: "";
  position: absolute;
  background: var(--green);
  box-shadow: 0 0 10px var(--green), 0 0 20px var(--green), 0 0 40px var(--green);
}

.d-cross::before {
  width: 20px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.d-cross::after {
  width: 100%;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes showD {
  0%,70% { opacity: 1; }
  75%,85% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes showCross {
  0%,70% { opacity: 0; }
  75%,80% { opacity: 1; }
  82%,85% { opacity: 0; }
}

@keyframes twitch {
  0%,100% { transform: translate(0,0) skew(0); }
  10% { transform: translate(-1px,1px) skew(-2deg); }
  20% { transform: translate(2px,-1px) skew(2deg); }
  30% { transform: translate(-1px,-2px) skew(1deg); }
  50% { transform: translate(1px,2px) skew(-1deg); }
  70% { transform: translate(-2px,1px) skew(0); }
}

.bottom {
  margin-top: 1rem;
  font-size: var(--font-md);
  opacity: 0.7;
}

/* LINKS */
.links {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.links a {
  color: var(--green);
  border: 2px solid var(--green);
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-size: var(--font-sm);
}

.links a:hover {
  background: var(--green);
  color: #000;
}

.coming-soon {
  position: relative;
}

.coming-soon::after {
  content: "COMING SOON";
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: var(--green);
  border: 1px solid var(--green);
  padding: 4px 8px;
  font-size: 10px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.coming-soon:hover::after {
  opacity: 1;
}

/* TICKER */
.ticker {
  margin-top: 1rem;
  border-top: 2px solid var(--green);
  padding-top: 0.5rem;
  overflow: hidden;
}

.ticker-track {
  display: inline-block;
  white-space: nowrap;
  animation: scrollTicker 18s linear infinite;
}

@keyframes scrollTicker {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* BUTTON */
button {
  margin-top: 1.5rem;
  padding: 0.9rem 1.4rem;
  border: 2px solid var(--green);
  background: rgba(57,255,20,0.03);
  color: var(--green);
  cursor: pointer;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.2s ease;
  box-shadow: 0 0 10px rgba(57,255,20,0.15);
}

button:hover {
  background: var(--green);
  color: #000;
  transform: scale(1.03);
}

/* TICKET */
.ticket {
  margin-top: 1.5rem;
  border: 1px dashed var(--green);
  background: rgba(57,255,20,0.04);
  padding: 1rem;
  font-size: var(--font-sm);
  white-space: pre-line;
  text-align: left;
  font-family: monospace;
  box-shadow: inset 0 0 10px rgba(57,255,20,0.08);
  position: relative;
  animation: ticketFlicker 4s infinite alternate;
}

.ticket::before {
  content: "METRO D ARCHIVE TICKET";
  position: absolute;
  top: -10px;
  left: 12px;
  background: #000;
  padding: 0 6px;
  font-size: 9px;
  letter-spacing: 2px;
  opacity: 0.7;
}

@keyframes ticketFlicker {
  0% { opacity: 0.92; }
  100% { opacity: 1; }
}

/* LORE */
.lore {
  margin: 2rem auto 0;
  padding: 1.5rem;
  max-width: 760px;
  width: 100%;
  box-sizing: border-box;
  border: 2px solid var(--green);
  box-shadow: inset 0 0 12px var(--green);
  text-align: left;
}

.lore-kicker {
  text-align: center;
  font-size: 10px;
  letter-spacing: 2px;
  opacity: 0.75;
  margin-bottom: 1rem;
}

.lore h1 {
  text-align: center;
  font-size: 2rem;
  margin: 0;
}

.lore-subtitle,
.quote {
  text-align: center;
  font-style: italic;
}

.quote {
  margin: 1.5rem auto;
  max-width: 520px;
}

.lore-grid {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
  border: 1px solid rgba(57,255,20,0.35);
}

.lore article {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(57,255,20,0.25);
  background: rgba(57,255,20,0.02);
  transition: background 0.2s ease;
}

.lore article:last-child {
  border-bottom: none;
}

.lore article:hover {
  background: rgba(57,255,20,0.06);
}

.lore h2 {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 1px;
  opacity: 0.9;
}

.lore p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.7;
  opacity: 0.85;
}

.gift-btn {
  display: block;
  width: fit-content;
  margin: 1.5rem auto 0;
  color: var(--green);
  border: 2px solid var(--green);
  padding: .7rem 1rem;
  text-decoration: none;
}

.gift-btn:hover {
  background: var(--green);
  color: #000;
}

/* FOOTER + BUNNY TERMINAL */
.site-footer {
  margin: 2.5rem auto 0;
  max-width: 700px;
  width: 100%;
  text-align: center;
  border-top: 1px dashed rgba(57,255,20,0.3);
  padding-top: 1.5rem;
  box-sizing: border-box;
}

.disclaimer {
  font-size: 10px;
  letter-spacing: 1px;
  opacity: 0.55;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.made-terminal {
  margin-top: 2rem;
  text-align: center;
}

.terminal-line {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.bunny-ears {
  margin: 0;
  padding: 2px 8px;
  height: 24px;
  border: 1px solid var(--green);
  background: none;
  color: var(--green);
  font-family: monospace !important;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0 !important;
  text-transform: none !important;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: rabbitPulse 1.5s infinite alternate;
}

.bunny-ears:hover {
  background: var(--green);
  color: #000;
}

.rabbit-message {
  display: none;
  margin: 1rem auto 0;
  max-width: 520px;
  padding: 1rem;
  border: 1px dashed rgba(57,255,20,0.35);
  background: rgba(57,255,20,0.03);
  text-align: center;
  box-sizing: border-box;
}

.rabbit-message.show {
  display: block;
}

.rabbit-ascii {
  font-family: monospace !important;
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: 0 !important;
  margin-bottom: 1rem;
  text-align: center;
}

.rabbit-message p {
  margin: 0.7rem auto;
  font-size: 10px;
  line-height: 1.7;
  letter-spacing: 1px;
}

.contact-terminal {
  margin-top: 1rem;
  text-align: center;
}

.contact-link {
  display: inline-block;
  color: var(--green);
  border: 1px solid var(--green);
  padding: 0.7rem 1rem;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.contact-link:hover {
  background: var(--green);
  color: #000;
}

@keyframes rabbitPulse {
  from { box-shadow: 0 0 4px rgba(57,255,20,0.2); }
  to { box-shadow: 0 0 12px rgba(57,255,20,0.7); }
}


/* MADE WITH HUMOR SCROLL BAR */
.humor-bar {
  margin-top: 2rem;
  background: var(--green);
  color: #000;
  overflow: hidden;
  border-top: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  padding: 0.5rem 0;
  box-shadow: 0 0 12px var(--green);
}

.humor-track {
  display: inline-block;
  white-space: nowrap;
  font-weight: 800;
  letter-spacing: 3px;
  animation: humorScroll 20s linear infinite;
}

@keyframes humorScroll {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}



/* MOBILE */
@media (max-width: 600px) {
  body {
    align-items: flex-start;
  }

  .sign {
    padding: 1rem;
  }

  .main {
    font-size: 2rem;
  }

  .d-container {
    width: 45px;
    height: 45px;
  }

  .ticker-track {
    animation-duration: 30s;
  }

  .terminal-line {
    flex-wrap: wrap;
  }
}


