@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
:root {
  --main-bg: #f8f6fa;
  --accent: #e44fad;
  --accent2: #a18cd1;
  --text: #3d2e4f;
  --card-bg: #fff8fb;
  --button-bg: linear-gradient(90deg, #e44fad 0%, #a18cd1 100%);
  --button-text: #fff;
  --border: #e7e2ed;
}
html, body {
  margin: 0; padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--main-bg);
  color: var(--text);
  min-height: 100vh;
  scroll-behavior: smooth;
}
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.2rem 1rem 1.1rem 1rem;
  background: #fff;
  border-bottom: 2px solid var(--border);
}
.header-logo {
  width: 62px;
  height: 62px;
  margin-bottom: 0.7rem;
}
.header-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 0.3rem 0;
  letter-spacing: 1px;
}
.header-desc {
  color: #7e5a8a;
  font-size: 1.08rem;
  margin-bottom: 0.7rem;
}
.main-card {
  max-width: 420px;
  margin: 2.2rem auto 2rem auto;
  background: var(--card-bg);
  border-radius: 24px;
  box-shadow: 0 4px 32px #e44fad1a;
  padding: 2.2rem 1.5rem 1.6rem 1.5rem;
  border: 1.5px solid var(--border);
  text-align: center;
}
.cta-btn {
  display: inline-block;
  background: var(--button-bg);
  color: var(--button-text);
  border: none;
  border-radius: 10px;
  font-size: 1.18rem;
  padding: 0.95rem 2.2rem;
  margin: 1.2rem 0 0.7rem 0;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px #e44fad44;
  transition: box-shadow 0.2s, transform 0.2s;
}
.cta-btn:hover {
  box-shadow: 0 6px 24px #a18cd133;
  transform: translateY(-2px) scale(1.03);
}
.keywords {
  margin: 1.1rem 0 0.6rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}
.keywords span {
  background: #f8e7f5;
  color: var(--accent);
  border-radius: 4px;
  padding: 0.32rem 0.85rem;
  font-size: 1rem;
  font-weight: 600;
}
.footer {
  margin-top: 2.5rem;
  padding: 1.4rem 0 0.8rem 0;
  background: #f8f6fa;
  border-top: 2px solid var(--border);
  text-align: center;
}
.footer-logo {
  width: 48px;
  height: 48px;
  margin: 0.6rem auto 0.2rem auto;
  display: block;
}
.footer-copy {
  color: #a18cd1;
  font-size: 0.98rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 600px) {
  .main-card { padding: 1.2rem 0.5rem; }
  .header-title { font-size: 1.18rem; }
  .cta-btn { font-size: 1rem; padding: 0.7rem 1.2rem; }
  .footer-logo { width: 36px; height: 36px; }
}
