* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: #1c1e24;
  color: #fff;
  display: flex;
  justify-content: center;
}

.page {
  width: 100%;
  max-width: 1000px;
  padding: 40px 24px 60px;
  text-align: center;
}

h1 {
  margin: 0 0 28px;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
}

.hero {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 34px;
}

.downloads {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 30px;
  border-radius: 8px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  transition: transform .15s ease, opacity .15s ease;
}

.download:hover {
  transform: translateY(-1px);
  opacity: .85;
}

.windows-icon,
.android-icon {
  width: 26px;
  height: 26px;
  display: block;
  fill: currentColor;
}
