?? 2. style.css
body {
  margin: 0;
  background: #0a0a0d;
  color: #f2f2f2;
  font-family: Arial, sans-serif;
}

/* COVER */
.cover {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cover h1 {
  font-size: 48px;
  margin: 0;
}

.cover h2 {
  font-weight: normal;
  opacity: 0.8;
  margin-top: 10px;
}

.subtitle {
  margin-top: 20px;
  opacity: 0.6;
  font-style: italic;
}

.hint {
  margin-top: 40px;
  opacity: 0.3;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 0.2; }
  50% { opacity: 0.8; }
  100% { opacity: 0.2; }
}

/* KITT */
.kitt {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.85;
}

/* JOURNEY */
#journey {
  display: flex;
  flex-direction: column;
}

.step {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  position: relative;
}

.step img {
  max-width: 80%;
  max-height: 70vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transform: scale(0.96);
  transition: all 0.6s ease;
}

.step.active img {
  transform: scale(1);
}

.step h2 {
  margin-top: 20px;
  font-weight: normal;
  opacity: 0.8;
}

/* LINE */
.step::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #444, transparent);
  left: 50%;
  opacity: 0.15;
}

/* END */
.end {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* AUTHOR */
.about-author {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  opacity: 0.75;
}

.soft-title {
  opacity: 0.5;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
}

.about-author p {
  max-width: 600px;
  line-height: 1.7;
}

.links {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.links a {
  color: #f2f2f2;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.links a:hover {
  border-bottom: 1px solid rgba(255,255,255,0.8);
