/* Basic page styling */
body {
  background-color: black;
  color: #FFFFFF;
  font-family: 'Rubik Pixels', sans-serif;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  position: relative;
}

/* Starry background container for landing page */
#starry-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

/* Individual stars for the pixelated starry effect */
.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #FFFFFF;
  box-shadow: 0 0 5px #FFFFFF;
}

/* Intro screen styling */
#intro-screen {
  text-align: center;
  z-index: 1; /* Ensure content appears above the background */
}

#story-text {
  font-size: 24px;
  white-space: pre-wrap;
}

/* Button styling */
#continue-button {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 18px;
  color: #00FF00;
  background: none;
  border: 2px solid #00FF00;
  cursor: pointer;
}

#continue-button:hover {
  background-color: #00FF00;
  color: black;
}

/* Social links and token address styling */
#links-section {
  margin-top: 20px;
  text-align: center;
}

#links-section p {
  margin: 5px 0;
}

#links-section a {
  color: #00FF00;
  text-decoration: none;
  font-weight: bold;
}

#links-section a:hover {
  text-decoration: underline;
}

#contract-address {
  font-size: 14px;
  color: #FFCC00;
}

/* Responsive Styles for Smaller Screens */
@media (max-width: 768px) {
  #story-text {
    font-size: 16px;
  }

  #continue-button {
    font-size: 16px;
    padding: 8px 16px;
  }

  #links-section {
    font-size: 12px;
  }
}
