/* Reset default styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background-color: #b9b9b9;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}
.container {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 360px;
  text-align: center;
}
.logo {
  width: 120px;
  height: auto;
  margin-bottom: 24px;
}
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  padding: 14px 16px;
  margin: 10px 0;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 900;
  transition:
    transform 0.2s,
    background-color 0.3s;
}
.button .icon {
  width: 20px;
  height: auto;
  margin-right: 8px;
}
.button:hover {
  transform: translateY(-2px);
}
.website {
  background-color: #4a90e2;
}
.website:hover {
  background-color: #357abd;
}
.support {
  background-color: #25d366;
}
.support:hover {
  background-color: #1da851;
}
.download.ios {
  background-color: #000;
}
.download.ios:hover {
  background-color: #333;
}
.download.android {
  background-color: #e7651d;
}
.download.android:hover {
  background-color: #cf6327;
}
.hidden {
  display: none !important;
}
/* Additional spacing for register store button */
.button.register-store {
  margin-top: 20px;
}

/* Footer at bottom of the screen */
.footer {
  position: fixed;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: #666;
}
