/* Background gradient inspired by CategoryListView */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #ebf2ff, #dbebfc, #f5e0ff);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.page {
  width: 100%;
  max-width: 720px;
}

.card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 45px rgba(122, 104, 163, 0.18);
  text-align: center;
}

.logo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  margin-bottom: 20px;
}

.app-name {
  margin: 0 0 12px;
  font-size: 32px;
  color: #2c2c3a;
  letter-spacing: 0.2px;
}

.description {
  margin: 0 auto 28px;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.6;
  color: #3d3d4f;
}

.support h2 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #2c2c3a;
}

.support p {
  margin: 0;
  font-size: 16px;
  color: #414154;
}

.support a {
  color: #5a5ae6;
  text-decoration: none;
  font-weight: 600;
}

.support a:hover {
  text-decoration: underline;
}

@media (max-width: 540px) {
  .card {
    padding: 24px;
  }
  .logo {
    width: 140px;
    height: 140px;
  }
  .app-name {
    font-size: 28px;
  }
  .description {
    font-size: 16px;
  }
}

