/* === BASE STYLES === */
body {
  margin: 0;
  padding: 40px 0;
  font-family: 'Share Tech Mono', monospace;
  background-color: #000;
  color: #fff;
  text-align: center;
  overflow-x: hidden;
  overflow-y: auto;
}

.container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.vault-sigil {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 12px #ff00ff90);
}

/* === TEXT EFFECTS === */
.glitch-title {
  font-size: 2.8em;
  color: #00ffff;
  text-shadow:
    0 0 5px #00ffff,
    0 0 10px #00ffff,
    0 0 20px #00ffff,
    0 0 40px #ff00ff;
  margin: 0 0 10px;
  animation: pulse 2.5s infinite;
}

.subtitle {
  font-size: 1em;
  color: #aaa;
  max-width: 600px;
  margin: 20px auto;
}

.subtitle strong {
  color: #fff;
  text-shadow: 0 0 3px #ff00ff;
}

/* === BUTTONS === */
.button-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.glitch-button,
.vault-button {
  padding: 12px 24px;
  font-size: 1em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s ease;
  box-shadow: 0 0 15px #00ffffaa;
}

.glitch-button {
  background: linear-gradient(135deg, #ff00ff, #ff55ff);
  color: #fff;
  box-shadow: 0 0 12px #ff00ff88;
}

.glitch-button:hover {
  transform: scale(1.08);
}

.vault-button {
  background: linear-gradient(135deg, #00ffff, #0088ff);
  color: #000;
  box-shadow: 0 0 12px #00ffff88;
}

.vault-button:hover {
  transform: scale(1.08);
}

/* === ANIMATIONS === */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    text-shadow:
      0 0 5px #00ffff,
      0 0 10px #00ffff,
      0 0 20px #00ffff,
      0 0 40px #ff00ff;
  }
  50% {
    opacity: 0.8;
    text-shadow:
      0 0 8px #00ffff,
      0 0 16px #00ffff,
      0 0 30px #00ffff,
      0 0 50px #ff00ff;
  }
}

/* === MOBILE === */
@media screen and (max-width: 480px) {
  .glitch-title {
    font-size: 2em;
  }

  .subtitle {
    font-size: 0.9em;
    padding: 0 10px;
  }

  .button-row {
    flex-direction: column;
    gap: 15px;
  }

  .vault-sigil {
    width: 90px;
  }
}
