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

body {
  font-family: 'Nunito', sans-serif;
  background: #fdf6e8;
  color: #3d2e12;
  min-height: 100vh;
  padding: 24px 16px 48px;
}

.page {
  max-width: 720px;
  margin: 0 auto;
}

/* ── Top bar (back link + language switcher) ── */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

/* ── Back link ── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  color: #b09060;
  text-decoration: none;
  transition: color 0.15s;
}
.back-link:hover { color: #c0842a; }

/* ── Language switcher ── */
.lang-switch {
  display: flex;
  gap: 4px;
}
.lang-switch a {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #b09060;
  text-decoration: none;
  padding: 4px 9px;
  border-radius: 100px;
  transition: background 0.15s, color 0.15s;
}
.lang-switch a:hover { background: #fff3de; color: #c0842a; }
.lang-switch a[aria-current="true"] {
  background: #fff;
  color: #c0842a;
  border: 1px solid #f0ddb8;
}

/* ── Hero card ── */
.hero {
  background: #fff8ec;
  border-radius: 24px;
  border: 1px solid #f0ddb8;
  overflow: hidden;
  margin-bottom: 16px;
}

.banner {
  width: 100%;
  display: block;
  aspect-ratio: 1024 / 500;
  object-fit: cover;
}

.hero-body {
  padding: 32px 36px 36px;
}

.app-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.app-icon-img {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

.app-meta-text {}
.app-name {
  font-size: 24px;
  font-weight: 800;
  color: #3d2e12;
  line-height: 1.2;
  margin-bottom: 6px;
}
.app-by {
  font-size: 13px;
  color: #b09060;
  font-weight: 700;
}

.app-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 20px;
}
.tag {
  font-size: 12px;
  font-weight: 700;
  border-radius: 100px;
  padding: 4px 12px;
}
.tag--green  { background: #edf7ed; color: #3a7a3a; border: 1px solid #b5d9b5; }
.tag--warm   { background: #fff8ec; color: #c0842a; border: 1px solid #f0ddb8; }
.tag--blue   { background: #eef3fb; color: #4a6ea8; border: 1px solid #c0d0ea; }

.app-desc {
  font-size: 15px;
  color: #6b5432;
  line-height: 1.75;
  margin-bottom: 28px;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a1a2e;
  color: #fff;
  border-radius: 14px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  text-decoration: none;
  transition: background 0.15s, transform 0.12s;
}
.btn-play:hover { background: #2d2d4a; transform: translateY(-1px); }
.btn-play svg { flex-shrink: 0; }
.btn-play-text { display: flex; flex-direction: column; line-height: 1.2; }
.btn-play-sub { font-size: 10px; font-weight: 700; opacity: 0.65; text-transform: uppercase; letter-spacing: 0.06em; }
.btn-play-main { font-size: 15px; }

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #edf7ed;
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 800;
  color: #3a7a3a;
  border: 1px solid #b5d9b5;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4caf50;
}

/* ── Features ── */
.sec-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b09060;
  margin-bottom: 10px;
  padding-left: 2px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.feat-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #ecddb5;
  padding: 20px 16px;
}
.feat-icon { font-size: 24px; margin-bottom: 10px; }
.feat-title { font-size: 14px; font-weight: 800; color: #3d2e12; margin-bottom: 6px; }
.feat-text  { font-size: 13px; color: #8a7050; line-height: 1.55; }

/* ── FAQ ── */
.faq { margin-bottom: 16px; }
.faq-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #ecddb5;
  padding: 18px 20px;
  margin-bottom: 8px;
}
.faq-q {
  font-size: 14px;
  font-weight: 800;
  color: #3d2e12;
  margin-bottom: 6px;
}
.faq-a {
  font-size: 13px;
  color: #8a7050;
  line-height: 1.6;
}

/* ── Footer ── */
.footer {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #ecddb5;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.footer-copy { font-size: 12px; color: #b09060; }
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.footer-link {
  font-size: 13px;
  color: #c0842a;
  font-weight: 700;
  text-decoration: none;
}
.footer-link:hover { text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 560px) {
  .hero-body { padding: 24px 20px 28px; }
  .app-name { font-size: 20px; }
  .features { grid-template-columns: 1fr; }
  .app-meta { gap: 14px; }
  .app-icon-img { width: 64px; height: 64px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
