<!-- File: /breadcrumb/style.css (snippet) -->
body {
  background-color: #0f0f0f;
  color: #e0dfd5;
  font-family: 'IBM Plex Mono', monospace;
  margin: 0;
  padding: 2rem;
}
.terminal-container {
  text-align: center;
  margin-top: 35vh;
}
.glitchy {
  font-size: 2rem;
  animation: glitch 1s infinite;
}
.enter-link {
  color: #66ffcc;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid #66ffcc;
  transition: background 0.3s;
}
.enter-link:hover {
  background: rgba(102, 255, 204, 0.1);
}
/* Additional glitch animations, typewriter effect, and map image styling can go here */

/* === BACKGROUND IMAGE STYLES === */
body {
  background-image: url('/assets/images/hacienda-gate.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #e0dfdc; /* light text for dark background */
  font-family: 'Inconsolata', monospace;
  margin: 0;
  padding: 0;
}

/* === DARK OVERLAY FOR READABILITY === */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.6); /* semi-transparent dark overlay */
  z-index: -1;
}

.breadcrumb-page {
  background: #000 url('/assets/images/hacienda-gate.png') center center no-repeat;
  background-size: cover;
  font-family: 'Spectral', serif;
  line-height: 1.75;
  padding: 3rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  box-sizing: border-box;
}


.story-text p {
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.subtitle {
  font-style: italic;
  margin-bottom: 2rem;
  opacity: 0.75;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}

.act-one h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #e5ddc7;
  text-shadow: 1px 2px 6px rgba(255,255,255,0.2);
}

.subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #d1cbb5;
  font-style: italic;
}

.story-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #f0f0f0;
}

.story-text p {
  margin-bottom: 1.5rem;
}

footer .backlink {
  display: inline-block;
  margin-top: 3rem;
  color: #a3f9d3;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease;
}

footer .backlink:hover {
  color: #ffffff;
}


