body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

#loading {
  font-size: 16px;
  color: #888;
}

#main {
  display: none;
  text-align: center;
  max-width: 420px;
  width: 90%;
}

.card {
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 30px 24px;
}

#brand-logo {
  margin-bottom: 30px;
}

#brand-logo img {
  width: 140px;
  height: auto;
  border-radius: 24px;
}

h1 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}

p {
  font-size: 14px;
  color: #555;
  margin-bottom: 28px;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 14px;
  border: 1px solid #000;
  background-color: #fff;
  color: #111;
  transition: all 0.2s ease-in-out;
}

.btn img {
  height: 32px;
  margin-right: 10px;
}

.btn:hover {
  background-color: #f1f1f1;
}

.store-btn {
  font-weight: 600;
}

.web-btn {
  font-weight: 600;
}
