@import url('https://fonts.googleapis.com/css2?family=Zain:ital,wght@0,200;0,300;0,400;0,700;0,800;0,900;1,300;1,400&display=swap');

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Zain', sans-serif;
  background: linear-gradient(135deg, #5f6fff 0%, #a259ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.container {
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 60vw;
  width: 100%;
  text-align: left;
}
.logo {
  font-size: 4rem;
  font-weight: 400;
  background: linear-gradient(90deg, #5f6fff, #a259ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.3rem;
  text-align: center;
}
.headline {
  font-size: 2.5rem;
  font-weight: bold;
  color: #4b4b6b;
  margin-bottom: 1rem;
  text-align: center;
}
.headline.privacy {
  color: #4b4b6b;
}
.headline.main {
  font-size: 1.5rem;
  font-weight: 500;
  color: #4b4b6b;
}
.desc {
  color: #6a6a8b;
  font-size: 1.3rem;
  line-height: 1;
  margin-bottom: 1.5rem;
}
ul {
  color: #6a6a8b;
  font-size: 1.3rem;
  line-height: 1;
  margin-bottom: 1.5rem;
}
h2 {
  color: #4b4b6b;
  font-size: 1.5rem;
  line-height: 0.5;
}
.links {
  display: flex;
  justify-content: center;
}
a {
  color: #a259ff;
  text-decoration: underline;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
}
a.home-link {
  color: #5f6fff;
}
@media (max-width: 500px) {
  .container {
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    max-width: 90vw;
  }
  .logo {
    font-size: 2rem;
  }
} 