:root {
  --bg-color: #ffffff;
  --text-main: #000000;
  --text-sub: #7a7a7a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-color: var(--bg-color);
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 15vh;
}

.container {
  text-align: center;
  padding: 0 20px;
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  margin-bottom: 24px;
  object-fit: contain;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
h1 {
  color: var(--text-main);
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px 0;
  letter-spacing: -0.8px;
  line-height: 1.2;
}

.subtitle {
  color: var(--text-sub);
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 32px 0;
  line-height: 1.5;
  letter-spacing: -0.2px;
}

.store-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  width: 100%;
}

.store-button {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
  user-select: none;
  -webkit-user-select: none;
}

.store-button:active {
  transform: scale(0.96);
  opacity: 0.8;
}

.apple img {
  height: 46px;
  width: auto;
  border-radius: 6px;
}

/* Scale up Google Play badge to match Apple badge due to built-in image padding */
.google img {
  height: 68px;
  margin: -11px 0;
  width: auto;
}

@media screen and (max-width: 360px) {
  h1 {
    font-size: 28px;
  }
  .store-buttons {
    gap: 8px;
  }
}
