:root {
  color-scheme: light;
  --ink: #241a20;
  --ink-soft: rgba(36, 26, 32, 0.74);
  --pink: #e75480;
  --pink-deep: #c2185b;
  --glass-border: rgba(255, 255, 255, 0.5);
  --shadow: 0 10px 30px rgba(88, 39, 62, 0.12);
}

* { box-sizing: border-box; font-family: inherit; }

html {
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, #fff1f5 0%, rgba(255, 236, 240, 0.6) 30%, transparent 60%),
    radial-gradient(circle at 88% 20%, #eaf4ff 0%, rgba(234, 244, 255, 0.5) 35%, transparent 65%),
    linear-gradient(165deg, #fff6f8 0%, #ffeef2 40%, #f3f7ff 75%, #fff8f4 100%);
  background-attachment: fixed;
}

img { max-width: 100%; }

.container { width: min(820px, 100%); margin: 0 auto; padding: 0 22px; }

/* Nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  background: rgba(255, 249, 251, 0.8);
  border-bottom: 1px solid rgba(231, 84, 128, 0.14);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 22px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 1rem;
}

.nav-brand img { width: 32px; height: 32px; border-radius: 8px; }

.nav-links { display: flex; align-items: center; gap: 20px; }

.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 500;
}

.nav-links a:hover { color: var(--pink-deep); }

.nav-cta {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e75480, #c2185b);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(194, 24, 91, 0.32);
}

/* Article */
.breadcrumb {
  margin: 26px 0 6px;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.breadcrumb a { color: var(--pink-deep); text-decoration: none; font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }

article.guide { padding-bottom: 30px; }

.guide h1 {
  margin: 8px 0 14px;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.guide .lead {
  font-size: 1.04rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 26px;
}

.guide h2 {
  margin: 38px 0 12px;
  font-size: clamp(1.2rem, 2.6vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
}

.guide h3 { margin: 24px 0 8px; font-size: 1.05rem; font-weight: 600; }

.guide p, .guide li { font-size: 0.96rem; line-height: 1.78; color: rgba(36, 26, 32, 0.86); }

.guide ul, .guide ol { padding-left: 22px; }

.guide li { margin-bottom: 8px; }

.guide strong { color: var(--ink); }

.guide a { color: var(--pink-deep); font-weight: 600; text-decoration: none; }
.guide a:hover { text-decoration: underline; }

/* Cards / callouts */
.glass {
  border-radius: 18px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.32));
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), var(--shadow);
}

.callout {
  padding: 18px 20px;
  margin: 22px 0;
  border-left: 4px solid var(--pink);
}

.callout p { margin: 0; }

/* Steps */
.steps { list-style: none; padding: 0; margin: 18px 0; counter-reset: step; }

.steps li {
  position: relative;
  padding: 16px 18px 16px 62px;
  margin-bottom: 12px;
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
  background: linear-gradient(135deg, #e75480, #b3418f);
  box-shadow: 0 6px 14px rgba(194, 24, 91, 0.3);
}

.steps li strong { display: block; margin-bottom: 3px; }

/* Screenshot */
.guide-shot { text-align: center; margin: 30px 0; }

.guide-shot img {
  width: min(280px, 80%);
  height: auto;
  border-radius: 22px;
  filter: drop-shadow(0 16px 32px rgba(88, 39, 62, 0.18));
}

.guide-shot figcaption { margin-top: 10px; font-size: 0.82rem; color: var(--ink-soft); }

/* Mini FAQ */
.mini-faq details {
  margin-bottom: 10px;
  border-radius: 14px;
  overflow: hidden;
}

.mini-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 0.93rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.mini-faq summary::-webkit-details-marker { display: none; }

.mini-faq summary::after { content: "+"; color: var(--pink-deep); font-size: 1.2rem; }

.mini-faq details[open] summary::after { content: "–"; }

.mini-faq .answer { padding: 0 18px 16px; font-size: 0.9rem; line-height: 1.7; color: var(--ink-soft); }

/* CTA */
.guide-cta {
  text-align: center;
  padding: 34px 24px;
  margin: 40px 0 10px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 217, 228, 0.9), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(234, 244, 255, 0.9), transparent 55%),
    linear-gradient(140deg, #fff0f4, #f6f9ff);
  border: 1px solid rgba(231, 84, 128, 0.18);
  box-shadow: var(--shadow);
}

.guide-cta h2 { margin: 0 0 8px; font-size: 1.35rem; font-weight: 800; }

.guide-cta p { margin: 0 auto 18px; max-width: 460px; }

.store-buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 13px;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.store-button img { width: 18px; height: 18px; display: block; }

.store-button.playstore {
  background: #ffffff;
  color: #d32f2f !important;
  border: 1.5px solid #d32f2f;
}

.store-button.appstore {
  background: #1c1420;
  color: #ffffff !important;
  border: 1.5px solid #1c1420;
}

.store-button:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18); }

/* Related guides */
.related { margin: 34px 0 10px; }

.related h2 { margin-top: 0; }

.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }

.related-grid a {
  display: block;
  padding: 14px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink) !important;
  text-decoration: none !important;
  line-height: 1.45;
}

.related-grid a span { display: block; margin-top: 6px; font-size: 0.78rem; font-weight: 600; color: var(--pink-deep); }

.related-grid a:hover { transform: translateY(-3px); }

/* Footer */
.site-footer {
  margin-top: 40px;
  padding: 26px 0;
  background: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(231, 84, 128, 0.14);
  text-align: center;
  font-size: 0.84rem;
  color: var(--ink-soft);
}

.site-footer a { color: var(--ink-soft); text-decoration: none; margin: 0 8px; }

.site-footer a:hover { color: var(--pink-deep); text-decoration: underline; }

.site-footer .copyright { display: block; margin-top: 10px; font-size: 0.78rem; }

/* City picker grid */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  margin: 18px 0 8px;
}

.city-grid a {
  display: block;
  padding: 12px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink) !important;
  text-decoration: none !important;
  text-align: center;
  line-height: 1.35;
  transition: transform 0.15s ease;
}

.city-grid a:hover { transform: translateY(-2px); }

.city-grid a .city-region {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.category-grid .cat-card {
  padding: 16px 18px;
}

.category-grid .cat-card h3 {
  margin: 0 0 6px;
  font-size: 0.98rem;
}

.category-grid .cat-card p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}

.checklist li {
  padding: 14px 16px;
  margin-bottom: 10px;
}

.checklist li strong {
  display: block;
  margin-bottom: 4px;
  color: var(--pink-deep);
}

.guides-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.guides-hub-grid a {
  display: block;
  padding: 16px 18px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink) !important;
  text-decoration: none !important;
  line-height: 1.4;
}

.guides-hub-grid a span {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.region-label {
  margin: 28px 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pink-deep);
}

@media (max-width: 640px) {
  .nav-links a:not(.nav-cta) { display: none; }
}
