:root {
  --bg: #fff7fb;
  --card: #ffffff;
  --text: #2f2a33;
  --muted: #6e6770;
  --accent: #d22b9c;
  --accent-strong: #c02090;
  --border: #f1e5ed;
  --shadow: 0 14px 40px rgba(210, 43, 156, 0.16);
  --radius: 12px;
  --max-width: 1200px;
  font-family: "Anek Bangla", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Anek Bangla", system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
}

a {
  color: var(--accent-strong);
  text-decoration: none;
}

.bg-glow {
  position: fixed;
  width: 680px;
  height: 680px;
  filter: blur(140px);
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
}

.glow-a {
  background: #ffc5df;
  top: -60px;
  left: -120px;
}
.glow-b {
  background: #e3baff;
  bottom: -100px;
  right: -80px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 5;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #f3e6f0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 28px;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-placeholder {
  width: 110px;
  height: 32px;
  border-radius: 16px;
  border: 1px dashed #d4c9d4;
  display: grid;
  place-items: center;
  color: #8d8390;
  font-weight: 600;
  font-size: 0.95rem;
  background: #fff;
}

.brand-logo {
  height: 28px;
  object-fit: contain;
  display: block;
}

.nav .brand-logo {
  height: 32px;
}

.footer-logo {
  height: 20px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: #5b5660;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
}

.nav-inner .btn.primary {
  margin-left: auto;
  flex-shrink: 0;
}

.btn {
  border: none;
  cursor: pointer;
  padding: 12px 22px;
  border-radius: 22px;
  font-weight: 600;
  font-size: 0.96rem;
  color: #fff;
}

.btn.primary {
  background: linear-gradient(135deg, #f02ea8, #d22b9c);
  box-shadow: 0 12px 28px rgba(240, 46, 168, 0.32);
}

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 20px 80px;
  position: relative;
  z-index: 1;
}

.hero {
  text-align: center;
  padding: 56px 0 56px;
  background: radial-gradient(120% 120% at 15% 10%, #ffe6f3, transparent 50%),
    radial-gradient(120% 120% at 85% 5%, #f7c3e8, transparent 50%),
    radial-gradient(160% 160% at 50% 20%, #ffeef7 0%, #ffedf7 45%, #ffe5f3 75%);
  border-bottom: 1px solid #f6dcec;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 12px;
}

.back-link:hover {
  text-decoration: underline;
}

.back-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}

.hero-card {
  background: transparent;
  border-radius: 20px;
  padding: 16px 24px 12px;
  box-shadow: none;
  border: none;
  max-width: 720px;
  margin: 0 auto;
}

.hero-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--accent);
  color: #f6dcec;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  font-weight: 800;
  border: 1px solid #f6dcec;
}

/* .hero-icon.image {
  background: linear-gradient(135deg, #ff4fa0, #ff71bc);
  border: none;
  padding: 12px;
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px rgba(255, 79, 160, 0.25);
} */

.hero-icon.image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

h1 {
  margin: 8px 0 10px;
  font-size: clamp(2.2rem, 3.6vw, 2.7rem);
  font-weight: 800;
  color: #2b242f;
}

.lead {
  color: #5a4f59;
  line-height: 1.7;
  max-width: 760px;
  margin: 10px auto;
}

.last-updated {
  color: #8a7e88;
  font-weight: 600;
  margin: 10px 0 0;
  font-size: 0.92rem;
}

.content-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 22px;
  margin-top: 28px;
}

.toc {
  position: sticky;
  top: 92px;
  align-self: start;
}

.toc-card {
  background: #fff;
  border: 1px solid #f0e3ee;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(210, 43, 156, 0.08);
}

.toc-title {
  font-weight: 700;
  margin: 0 0 10px;
}

.toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.toc li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5a5561;
  font-weight: 500;
}

.toc-icon {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: #ffe5f3;
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 0.72rem;
}

.toc a {
  color: #5a5561;
  text-decoration: none;
  font-weight: 500;
}

.toc a:hover {
  color: var(--accent-strong);
}

.policy {
  display: grid;
  gap: 16px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.card-header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
}

.section-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #ffe5f3;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  color: var(--accent);
  flex-shrink: 0;
}

/* .section-icon.image {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  padding: 6px;
} */

.section-icon.image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.card h2 {
  margin: 6px 0 0;
}

.card p {
  color: var(--muted);
  line-height: 1.7;
}

.card ul {
  margin: 8px 0 0 20px;
  color: var(--muted);
  line-height: 1.7;
}

.gdpr-wrapper {
  background: #fff;
  border: 1px solid #ffd8e7;
  border-radius: 18px;
  padding: 22px 22px 26px;
  box-shadow: 0 18px 40px rgba(210, 43, 156, 0.08);
}

.gdpr-lead {
  color: #fff;
  line-height: 1.65;
  margin: 6px 0 14px;
}

.gdpr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px 16px;
  margin-top: 14px;
}

.gdpr-card {
  background: #fff3f9;
  border: 1px solid #ffd6ea;
  border-radius: 14px;
  padding: 16px 18px;
  display: grid;
  gap: 8px;
  box-shadow: 0 10px 22px rgba(210, 43, 156, 0.06);
}

.gdpr-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffe5f3;
  color: var(--accent);
}

.gdpr-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 50%;
}

.gdpr-title {
  margin: 0;
  font-weight: 700;
}

.gdpr-card small {
  color: #6e6770;
  line-height: 1.6;
}

footer.footer {
  background: #281a23;
  background-color: #281a23;
  position: relative;
  z-index: 1;
  color: #f3e8ef;
  padding: 40px 22px 32px;
  margin-top: 60px;
}

.footer-top {
  max-width: var(--max-width);
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.4fr;
  gap: 32px;
}

.footer-brand {
  max-width: 380px;
}

.footer-blurb {
  color: #cbb8ca;
  line-height: 1.6;
  margin: 10px 0 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 12px 24px;
}

.footer-title {
  margin: 0 0 8px;
  font-weight: 700;
  color: #ffe5f3;
}

.footer-links a {
  display: block;
  color: #cbb8ca;
  text-decoration: none;
  margin: 4px 0;
  font-weight: 500;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #3a2c36;
  padding-top: 18px;
  font-weight: 600;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  color: #f3e8ef;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
}

.socials a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.socials img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}

.store-badges {
  display: flex;
  gap: 10px;
  margin: 14px 0 0;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.badge-apple {
  background: #36333b;
}

.badge-play {
  background: #3f3c45;
}

.badge-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  font-size: 0.9rem;
}

.badge-text small {
  display: block;
  font-weight: 500;
  font-size: 0.75rem;
  opacity: 0.8;
}

.badge-text strong {
  display: block;
  line-height: 1.1;
  font-size: 0.98rem;
}

@media (max-width: 960px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }
}

@media (max-width: 720px) {
  .nav {
    padding: 12px 16px;
  }

  .nav-links {
    display: none;
  }

  .content-grid {
    margin-top: 18px;
  }

  .hero-card {
    padding: 28px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}
