* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #1a1a2e, #0f0f14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.card {
  background: linear-gradient(180deg, #1b1b2f, #141421);
  border-radius: 24px;
  padding: 40px;
  width: 320px;
  text-align: center;
  box-shadow:
    0 0 40px rgba(124, 58, 237, 0.35),
    inset 0 0 20px rgba(167, 139, 250, 0.1);
}

.app-icon {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  margin-bottom: 24px;
  box-shadow:
    0 0 30px rgba(167, 139, 250, 0.6);
}

.app-name {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.app-description {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 28px;
}

.cta-btn {
  background: linear-gradient(135deg, #7C3AED, #A78BFA);
  border: none;
  padding: 14px 24px;
  border-radius: 999px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow:
    0 8px 30px rgba(124, 58, 237, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;

}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 40px rgba(124, 58, 237, 0.8);
}
/* ===== Privacy Policy Page ===== */

.privacy-page {
  min-height: 100vh;
  background: radial-gradient(circle at top, #1a1a2e, #0f0f14);
  display: flex;
  justify-content: center;
  padding: 40px 16px;
  color: white;
}

.privacy-card {
  max-width: 800px;
  background: linear-gradient(180deg, #1b1b2f, #141421);
  border-radius: 24px;
  padding: 40px;
  box-shadow:
    0 0 40px rgba(124, 58, 237, 0.25),
    inset 0 0 20px rgba(167, 139, 250, 0.08);
}

.privacy-card h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #A78BFA;
}

.privacy-card h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  color: #7C3AED;
}

.privacy-card p,
.privacy-card li {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
}

.privacy-card ul {
  padding-left: 20px;
}

.highlight {
  background: rgba(124, 58, 237, 0.12);
  border-left: 4px solid #7C3AED;
  padding: 16px;
  border-radius: 12px;
  margin-top: 12px;
}

.effective-date {
  margin-top: 20px;
  opacity: 0.7;
}
.privacy-app-icon {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  display: block;
  margin: 0 auto 20px;
  box-shadow:
    0 0 30px rgba(167, 139, 250, 0.6);
}
.privacy-app-name {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 24px;
  color: white;
  letter-spacing: 1px;
}
/* Additional Styles for Privacy Policy */

.contact-box {
  background: rgba(167, 139, 250, 0.05);
  border: 1px dashed rgba(167, 139, 250, 0.3);
  padding: 15px;
  border-radius: 10px;
  display: inline-block;
  margin-top: 10px;
}

.privacy-card strong {
  color: #A78BFA;
}

.privacy-card h3 {
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
  padding-bottom: 8px;
  display: inline-block;
}

/* Make lists look cleaner */
.privacy-card ul li {
  margin-bottom: 8px;
  list-style-type: none;
  position: relative;
  padding-left: 20px;
}

.privacy-card ul li::before {
  content: "•";
  color: #7C3AED;
  position: absolute;
  left: 0;
  font-weight: bold;
}