* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0f2156;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.download-container {
  text-align: center;
  padding: 40px 24px;
  max-width: 480px;
  width: 100%;
}

.app-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.app-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  line-height: 1.5;
}

.platform-label {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 16px;
  font-weight: 500;
}

.manual-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.btn-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.1s ease;
  margin-bottom: 14px;
  border: none;
  cursor: pointer;
}

.btn-download:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  text-decoration: none;
  color: #08117e;
}

.btn-download:active {
  transform: translateY(0);
}

.btn-ios {
  background-color: #ffffff;
  color: #0f2156;
}

.btn-android {
  background-color: #34a853;
  color: #ffffff;
}

.btn-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.footer-note {
  margin-top: 36px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
}

.footer-note a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.footer-note a:hover {
  color: rgba(255, 255, 255, 0.8);
}
