/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Patrick Hand", cursive;
  font-weight: 400;
  background-color: #000000;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

/* Landing Screen */
.landing-screen {
  height: 100vh;
  width: 100vw;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 0;
  left: 0;
}

/* Landing Box */
.landing-box {
  background-color: #ffffff;
  width: 400px;
  height: 350px;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 0 30px 8px rgba(255, 165, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  margin-top: 9vh; /* Position about 3/4 from top */
}

/* Top Text */
.top-text {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.top-text h1 {
  font-family: "Patrick Hand", cursive;
  font-weight: 400;
  font-size: 48px;
  color: #000000;
  margin: 0;
}

/* Main Content */
.main-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 85%;
}

.main-content h2 {
  font-family: "Patrick Hand", cursive;
  font-weight: 400;
  font-size: 28px;
  color: #000000;
  margin-bottom: 15px;
}

/* Divider Line */
.divider-line {
  width: 85%;
  height: 2px;
  background-color: #000000;
  margin: 0 auto 20px auto;
}

/* Enter Button */
.enter-button {
  background-color: #ff8c00;
  color: #000000;
  border: none;
  padding: 10px 30px;
  font-family: "Patrick Hand", cursive;
  font-weight: 400;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.enter-button:hover {
  background-color: #ff7700;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 140, 0, 0.3);
}

/* Bottom Content */
.bottom-content {
  position: absolute;
  bottom: 15px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom-left p {
  font-family: "Patrick Hand", cursive;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  margin: 0;
}

.bottom-right .bottom-image {
  height: 60px;
  width: auto;
  object-fit: contain;
}

/* Responsive Design */
@media (max-width: 480px) {
  .landing-box {
    width: 90%;
    max-width: 350px;
    height: 250px;
    padding: 15px;
  }

  .top-text h1 {
    font-size: 40px;
  }

  .main-content h2 {
    font-size: 24px;
  }

  .enter-button {
    font-size: 16px;
    padding: 8px 25px;
  }

  .bottom-left p {
    font-size: 12px;
  }

  .bottom-right .trademark {
    font-size: 16px;
  }
}
