body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
  overflow: hidden; /* Prevents the body's scrollbar */
}

body:before, body:after {
    content: "";
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, #000 10%, rgba(255, 255, 255, 0));
}

body:after {
    top: auto;
    bottom: 0;
    background: linear-gradient(to top, #000 50%, rgba(255, 255, 255, 0));
}

.scroll {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed; /* Ensures it's positioned relative to the viewport */
  top: 0;
  left: 0;
  z-index: 11;
  font-family: Roboto, sans-serif;
  letter-spacing: 0.2em;
  font-size: 11px;
  pointer-events: none; /* Allows clicks and scrolling to pass through */
}

.scroll span {
  display: block;
}

.scroll svg {
  margin-top: 10px;
  width: 18px;
  height: 18px;
  animation: scroll 0.95s ease-in-out alternate infinite;
  fill: none;
  stroke: #000000;
  stroke-linecap: round;
  stroke-miterlimit: 10;
  stroke-width: 1;
}

.circle {
  width: 20px;
  height: 20px;
  border-radius: 40%;
  opacity: 0;
  margin: -19px auto;
  will-change: opacity;
}

.slide {
  height: 100vh; /* Each slide takes full viewport height */
  display: flex;
  justify-content: center;
  align-items: center;
    color: #fff;
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 11; /* Ensure content is above overlay */
}

.slide-content {
  max-width: 800px;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 2rem;
  border-radius: 10px;
}

.scroll-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11;
  transform: translateZ(0);
  height: 100vh; /* Full viewport height */
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

.slide h1 {
  font-size: 3em;
  color: #00ffcc;
  margin-bottom: 1rem;
}

.slide h2 {
  font-size: 2.5em;
  color: #00ffcc;
  margin-bottom: 1rem;
}

.slide p {
  font-size: 1.2em;
  margin-bottom: 1.5rem;
}

.slide ul {
  list-style: none;
  padding: 0;
  font-size: 1.1em;
}

.slide ul li {
  margin-bottom: 0.5em;
}

.timeline {
  position: relative;
  margin: 2rem 0;
  padding: 1rem 0;
}

.timeline-item {
  background-color: rgba(26, 26, 26, 0.8);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #00ffcc20;
  margin-bottom: 1.5rem;
  text-align: left;
}

.timeline-item h3 {
  color: #00ffcc;
  margin-bottom: 0.5rem;
}

timeline-item .date {
  font-size: 0.9em;
  color: #ccc;
  margin-bottom: 0.5rem;
}

timeline-item .description {
  font-size: 1em;
  color: #fff;
}

a {
  color: #00ffcc;
  text-decoration: none;
}

a:hover {
  color: #00e6b8;
  text-decoration: underline;
}

