:root {
  --accent-color: #ffaf19;
  --text-dark: #1f1305;
  --color-center: #fff5e1;
  --color-mid: #ffb331;
  --color-edge: #943100;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  background: radial-gradient(circle at center, var(--color-center) 0%, var(--color-mid) 44%, var(--color-edge) 100%);
  min-height: 100vh;
}

a { color: inherit; }

.site-header {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 22px 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 900;
  text-decoration: none;
  font-size: 1.05rem;
}

.language-links,
.hero-actions,
.related div {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.language-select {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  border-radius: 999px;
  padding: 8px 12px 8px 16px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.58);
  font-weight: 900;
}

.language-select span {
  font-size: 0.9rem;
}

.language-select select {
  min-width: 160px;
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  background: white;
  color: var(--text-dark);
  font: inherit;
  font-weight: 800;
}

.related a,
.secondary,
.primary,
.download {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 800;
}

.related a,
.secondary {
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.primary,
.download {
  background: var(--text-dark);
  color: white;
}

main {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 22px 0 70px;
}

.hero {
  padding: clamp(34px, 7vw, 76px) 0 28px;
}

.eyebrow {
  margin: 0 0 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 980px;
  color: white;
  text-shadow: 4px 4px 0 var(--text-dark);
  font-size: clamp(2.1rem, 6vw, 4.6rem);
  line-height: 1;
}

.summary {
  max-width: 760px;
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.6;
}

.intro,
.related,
.ad-slot {
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 28px;
  padding: clamp(20px, 4vw, 34px);
  margin: 24px 0;
}

.intro p {
  max-width: 900px;
  line-height: 1.75;
  font-size: 1.04rem;
}

.keyword-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.keyword-list li {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  font-weight: 800;
}

.ad-slot {
  min-height: 280px;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 800;
}

.install-guide {
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 28px;
  padding: clamp(20px, 4vw, 34px);
  margin: 28px 0;
}

.install-guide h2,
.install-guide h3,
.install-guide p {
  margin-top: 0;
}

.guide-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.guide-columns article {
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.38);
}

.guide-columns ol {
  margin: 0;
  padding-left: 20px;
  line-height: 1.65;
}

body[dir="rtl"] .guide-columns ol {
  padding-left: 0;
  padding-right: 20px;
}

.guide-note {
  margin: 18px 0 0;
  font-weight: 800;
}

.sticker-grid,
.character-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.packs-area {
  display: grid;
  gap: 26px;
}

.pack-section {
  display: grid;
  gap: 14px;
}

.pack-heading {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.pack-heading h2 {
  margin: 0 0 6px;
}

.pack-heading p {
  margin: 0;
  font-weight: 800;
}

.sticker-card,
.character-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.65);
  padding: 18px;
  box-shadow: inset 0 -8px 0 color-mix(in srgb, var(--character-color, var(--accent-color)) 28%, transparent);
}

.sticker-card {
  content-visibility: auto;
  contain-intrinsic-size: 430px;
  position: relative;
}

.sticker-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.35);
}

.download-panel {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  min-height: 520px;
  margin: 24px 0;
  padding: clamp(20px, 4vw, 38px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 -10px 0 color-mix(in srgb, var(--character-color, var(--accent-color)) 30%, transparent);
}

.download-panel > img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 26px;
  padding: clamp(14px, 3vw, 24px);
  background: rgba(255, 255, 255, 0.42);
}

.soon-art {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 18px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.35);
  color: rgba(31, 19, 5, 0.74);
  font-weight: 900;
}

.sticker-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.sticker-description {
  min-height: 58px;
  margin: 0 0 12px;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(31, 19, 5, 0.82);
}

.sticker-state {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 12px;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  font-weight: 900;
}

.sticker-state-premium,
.dm-premium-badge {
  background: #e01818;
  color: #fff;
  border: 2px solid #fff7df;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.dm-premium-badge {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(224, 24, 24, 0.34), 0 0 0 3px rgba(224, 24, 24, 0.12);
}

.sticker-card.is-premium-whatsapp img {
  box-shadow: 0 0 0 4px rgba(224, 24, 24, 0.28);
}

.download {
  width: 100%;
  border: 0;
  font: inherit;
  text-align: center;
}

.download.disabled {
  background: rgba(31, 19, 5, 0.42);
  cursor: not-allowed;
  pointer-events: none;
}

.sticker-detail {
  padding: clamp(34px, 7vw, 76px) 0 28px;
}

.detail-card {
  display: grid;
  grid-template-columns: minmax(220px, 420px) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  margin-top: 28px;
  border-radius: 28px;
  padding: clamp(20px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 -10px 0 color-mix(in srgb, var(--character-color, var(--accent-color)) 30%, transparent);
}

.detail-image-wrap {
  border-radius: 26px;
  padding: clamp(16px, 4vw, 28px);
  background: rgba(255, 255, 255, 0.42);
}

.detail-image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.detail-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 4vw, 2.3rem);
  line-height: 1.08;
}

.detail-copy p {
  max-width: 620px;
  line-height: 1.7;
}

.detail-download,
.detail-back {
  width: min(100%, 360px);
  margin-top: 12px;
}

.detail-back {
  color: var(--text-dark);
}

.character-card {
  display: grid;
  min-height: 150px;
  text-decoration: none;
  align-content: end;
}

.character-card span {
  font-size: 1.35rem;
  font-weight: 900;
}

.character-card small {
  font-weight: 800;
}

@media (max-width: 640px) {
  .site-header,
  .hero-actions {
    align-items: stretch;
  }

  .language-select,
  .secondary,
  .primary {
    flex: 1 1 auto;
  }

  .language-select select {
    min-width: 0;
    width: 100%;
  }

  .detail-card {
    grid-template-columns: 1fr;
  }

  .download-panel {
    grid-template-columns: 1fr;
    min-height: 760px;
  }
}


.download-options {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.dm-unlock-panel {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.46);
  border: 1px solid rgba(255,255,255,.72);
}

.dm-unlock-message {
  margin: 0;
  font-weight: 800;
  line-height: 1.45;
}

.dm-launch-notice {
  max-width: 1100px;
  margin: -10px auto 18px;
  padding: 0 18px;
  color: rgba(31, 19, 5, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.dm-unlock-message[data-state="info"],
.dm-launch-notice {
  color: rgba(31, 19, 5, 0.76);
}

.dm-unlock-message[data-state="error"] {
  color: #7a1300;
}

.dm-unlock-message[data-state="success"] {
  color: #13501f;
}

.dm-ad-block {
  display: none;
}

.dm-ads-enabled .dm-ad-block {
  display: block;
}

.dm-download-paused {
  background: rgba(31, 19, 5, 0.42);
  cursor: not-allowed;
  pointer-events: none;
}

.dm-watch-ad:disabled {
  opacity: .78;
  cursor: default;
}

.download-choice {
  display: grid;
  gap: 8px;
}

.download-choice-text,
.download-format-note {
  margin: 0;
  line-height: 1.45;
}

.download-choice-primary {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.42);
  border: 1px solid rgba(255,255,255,.72);
}

.dm-premium-whatsapp-option {
  background: rgba(224, 24, 24, 0.08);
  border-color: rgba(224, 24, 24, 0.35);
}

.dm-premium-whatsapp-button {
  background: #e01818;
  color: #fff;
  box-shadow: 0 10px 22px rgba(224, 24, 24, 0.24);
}

.dm-premium-whatsapp-disabled {
  opacity: .65;
  cursor: not-allowed;
  pointer-events: auto;
}

.download-gif {
  font-size: 1.05rem;
}

.download-webp {
  width: 100%;
}

.download-format-note {
  font-weight: 800;
  opacity: .86;
}

.request-panel {
  margin: 26px 0;
  padding: clamp(20px, 4vw, 34px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.66);
}

.request-panel h2 {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 3vw, 1.9rem);
}

.request-panel p {
  max-width: 760px;
  line-height: 1.65;
}

.request-panel .secondary {
  width: min(100%, 360px);
}
