/* Landing Page Styles */
body {
  background: #1a1919;
  color: #e8e8e8;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 20px;
  text-align: center;
}

h1 {
  font-size: 28px;
  margin-top: 80px;
  margin-bottom: 12px;
}

.site-logo {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 1000;
}

.site-logo img {
  width: clamp(30px, 6vw, 80px);
  height: clamp(30px, 6vw, 80px);
  cursor: pointer;
  opacity: 0.95;
}

.landing-menu {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.landing-menu button {
  padding: 14px 22px;
  font-size: 18px;
  border-radius: 8px;
  border: 1px solid #eee;
  background: #1a1919;
  color: white;
  cursor: pointer;
  width: 260px;
  max-width: 80%;
}

.landing-menu button:hover {
  background: #ddd;
  color: #1a1919;
}

.intro-text {
  max-width: 700px;
  margin: 40px auto 25px;
  color: #bbbbbb;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}

.credit {
  margin-top: 12px;
  margin-bottom: 30px;
  color: #888;
  font-size: 12px;
  text-align: center;
}

@media (max-width: 480px) {
  h1 {
    font-size: 20px;
  }
}
