body {
  background-image: url('../img/og-image.jpg');
  background-size: cover;
  position: relative;
  /* background: linear-gradient(145deg, #fff9e6, #f6f1e0); */
  font-family: 'Montserrat', sans-serif;
  background-color: rgba(0, 0, 0, 0.5);
  ;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

main {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 10px;
  max-width: 400px;
  width: 80%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
}

#logo {
  width: 120px;
  height: auto;
  margin-bottom: 25px;
}

h2 {
  color: #c91818;
  font-size: 2rem;
  margin: 0 0 15px;
}

p {
  font-size: 1rem;
  margin: 0 0 20px;
  line-height: 1.6;
}

.btn {
  background-color: #c91818;
  color: #fff;
  font-size: 2rem;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
}


.btn:hover {
  background-color: #a31111;
  transform: translateY(-2px);
}

.terms {
  font-size: 0.85rem;
  color: #666;
}

.terms a {
  color: #c91818;
  text-decoration: none;
}

.terms a:hover {
  text-decoration: underline;
}

#app img {
  width: 160px;
  margin-top: 20px;
}

footer {
  margin-top: 20px;
  font-size: 0.75rem;
  color: #5e5555;
}

@media (max-width: 480px) {
  h2 {
    font-size: 1.5rem;
  }

  .btn {
    font-size: 1rem;
    padding: 12px 20px;
  }
}