#landingOverlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom right, #1a1a1a, #2c2c2c);
  color: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  font-family: 'Noto Sans KR', sans-serif;
  font-display: swap;
}

#landingOverlay h1 {
  font-size: 2.4em;
  margin-bottom: 20px;
  font-weight: 600;
}

#landingOverlay p {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #ccc;
}

.landing-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 320px;
}

.landing-buttons button {
  width: 100%;
  padding: 14px 0;
  font-size: 1.05em;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-magazine {
  background-color: #28a745;
  color: white;
}
.btn-magazine:hover {
  background-color: #218838;
}

.btn-shop {
  background-color: #e83e8c;
  color: white;
}
.btn-shop:hover {
  background-color: #c7256e;
}

.btn-community {
  background-color: #007bff;
  color: white;
}
.btn-community:hover {
  background-color: #0056b3;
}
