body {
  margin: 0;
  font-family: 'Special Elite', monospace;
  background-color: #0b0b0c;
  color: #e0dede;
}

.landing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

/* Index / Rose Landing Page */
.rose-container img.rose {
  width: 120px;
  animation: pulse 2s infinite ease-in-out;
  cursor: pointer;
  transition: transform 0.3s;
}

.rose-container img.rose:hover {
  transform: scale(1.1);
}

.click-text {
  margin-top: 20px;
  font-size: 14px;
  color: #aaa;
  font-style: italic;
  opacity: 0.7;
}

/* Arrow Indicator (used on Why page) */
.arrow-indicator {
  text-align: center;
  margin: 20px 0 40px 0;
}

.arrow-indicator img {
  width: 60px;
  height: auto;
  filter: drop-shadow(0 0 5px crimson);
  animation: pulse 2s infinite ease-in-out;
}

/* Shared Pulse Animation */
@keyframes pulse {
  0% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 0.8; transform: scale(1); }
}

/* Fade-In + Reveal Effect */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Letter Page */
.letter .content {
  max-width: 600px;
  margin: auto;
  padding: 40px;
}

/* Shatter Effect */
.shatter {
  animation: shatterText 2s ease-in-out forwards;
  color: crimson;
}

@keyframes shatterText {
  0% { letter-spacing: 0; opacity: 1; }
  50% { letter-spacing: 0.5em; opacity: 0.6; }
  100% { letter-spacing: 0.1em; opacity: 1; }
}

/* Glitch Text */
.glitch {
  animation: glitchText 1s infinite;
}

@keyframes glitchText {
  0% { transform: translate(0); }
  20% { transform: translate(-2px, 1px); }
  40% { transform: translate(1px, -1px); }
  60% { transform: translate(-1px, 2px); }
  80% { transform: translate(1px, -2px); }
  100% { transform: translate(0); }
}

/* Navigation Menu */
.menu {
  text-align: center;
  padding-top: 50px;
}

.nav-icons {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}

.icon img {
  width: 60px;
  transition: transform 0.3s;
}

.icon img:hover {
  transform: scale(1.1);
}

.icon p {
  margin-top: 8px;
  font-size: 14px;
  color: #ddd;
  text-transform: lowercase;
  letter-spacing: 1px;
}

/* Touchstarved Page */
.touchstarved-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}

.touchstarved-title {
  font-size: 24px;
  color: #e0dede;
  z-index: 10;
  pointer-events: none;
}

.floating-word {
  position: absolute;
  font-size: 18px;
  color: #e0dede;
  transition: transform 0.3s ease-out;
  pointer-events: auto;
}