/* Landing page styles for index.html */
body {
  background-size: 100px;
  background-image: url("assets/img/moon.png");
  background-color: #1C2321;
  margin: 0;
  color: #fceaff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-family: "dosfont", monospace;
}

#landing {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px;
}

#landing main {
  background: #1D3354;
  background-image: url("assets/img/carpet.png");
  border: 3px solid #C2F970;
  border-radius: 10px;
  padding: clamp(30px, 5vw, 60px);
  max-width: 900px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

#landing h3 {
  color: #34E5FF;
  font-size: clamp(28px, 5vw, 40px);
  margin-top: 0;
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

#landing p {
  color: #C2F970;
  font-size: clamp(14px, 2.2vw, 18px);
  line-height: 1.6;
  margin-bottom: 30px;
}

#landing a {
  display: inline-block;
  background: #C2F970;
  color: #1D3354;
  padding: clamp(10px, 2vw, 14px) clamp(30px, 5vw, 40px);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: clamp(16px, 2.5vw, 20px);
  cursor: url("assets/cursor/pointer.cur"), pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(52, 229, 255, 0.3);
}

#landing a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(52, 229, 255, 0.6);
}