:root {
  --primary: #7557ff;
  --secondary: #ff8a3d;
  --accent: #23c483;
  --dark: #141028;
  --light: #ffffff;
  --body: #625f73;
  --muted: #f5f3ff;
  --line: rgba(20, 16, 40, 0.1);
  --shadow: 0 24px 80px rgba(55, 37, 137, 0.16);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark);
  background: #fbfaff;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 16%, rgba(117, 87, 255, 0.16), transparent 34%),
    radial-gradient(circle at 85% 12%, rgba(255, 138, 61, 0.15), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f4ff 45%, #ffffff 100%);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: relative;
  padding-bottom: 70px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 16px 35px rgba(117, 87, 255, 0.28);
  font-size: 0.8rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(14px);
}

.nav-links a {
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--body);
  font-size: 0.94rem;
  font-weight: 700;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: var(--dark);
  background: #fff;
  box-shadow: 0 8px 24px rgba(20, 16, 40, 0.08);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 10px;
  background: var(--dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 48px;
  min-height: 560px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(117, 87, 255, 0.1);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1,
.section-heading h2,
.why-section h2 {
  margin: 16px 0;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.hero p,
.why-section p,
.site-footer p {
  max-width: 640px;
  color: var(--body);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-search {
  display: flex;
  max-width: 680px;
  margin-top: 30px;
  padding: 8px;
  border: 1px solid rgba(117, 87, 255, 0.16);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 18px;
  color: var(--dark);
  background: transparent;
}

.hero-search button,
.primary-btn,
.hero-card button {
  border: 0;
  border-radius: 999px;
  padding: 15px 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(117, 87, 255, 0.26);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-search button:hover,
.primary-btn:hover,
.hero-card button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(117, 87, 255, 0.32);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 640px;
  margin-top: 24px;
}

.hero-stats div,
.hero-card,
.featured-card,
.newest-card,
.coupon-row,
.benefit-card,
.modal-panel {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  padding: 18px;
  border-radius: 20px;
}

.hero-stats strong {
  display: block;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.hero-stats span {
  display: block;
  margin-top: 4px;
  color: var(--body);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border-radius: 40px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(20, 16, 40, 0.15), rgba(20, 16, 40, 0.72)),
    linear-gradient(145deg, var(--primary), var(--secondary));
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.hero-card::before {
  width: 270px;
  height: 270px;
  top: -90px;
  right: -70px;
}

.hero-card::after {
  width: 190px;
  height: 190px;
  left: -60px;
  bottom: 42px;
}

.shine {
  position: absolute;
  inset: -20% auto auto -40%;
  width: 360px;
  height: 760px;
  transform: rotate(22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  animation: shine 4.8s ease-in-out infinite;
}

@keyframes shine {
  0%, 30% { transform: translateX(-15%) rotate(22deg); }
  65%, 100% { transform: translateX(175%) rotate(22deg); }
}

.hero-card p,
.hero-card h2,
.hero-card span,
.hero-card button {
  position: relative;
  z-index: 1;
}

.hero-card p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-card h2 {
  margin: 0;
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.hero-card span {
  margin: 16px 0 28px;
  color: rgba(255, 255, 255, 0.84);
}

.hero-card button {
  align-self: flex-start;
  background: #fff;
  color: var(--dark);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.section {
  padding: 68px 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.section-heading h2,
.why-section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.text-link {
  color: var(--primary);
  font-weight: 800;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.featured-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 410px;
  padding: 22px;
  border-radius: var(--radius-xl);
}

.card-art {
  position: relative;
  overflow: hidden;
  min-height: 168px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.card-art::before {
  content: attr(data-initials);
  position: absolute;
  right: 18px;
  bottom: 8px;
  color: rgba(255, 255, 255, 0.22);
  font-weight: 900;
  font-size: 5.6rem;
  letter-spacing: -0.08em;
}

.badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(35, 196, 131, 0.12);
  color: var(--accent);
  font-weight: 900;
  font-size: 0.76rem;
}

.card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
}

.featured-card h3,
.newest-card h3,
.coupon-row h3,
.benefit-card h3 {
  margin: 14px 0 8px;
  letter-spacing: -0.04em;
}

.featured-card p,
.newest-card p,
.coupon-row p,
.benefit-card p {
  margin: 0;
  color: var(--body);
  line-height: 1.6;
}

.deal-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 22px;
}

.discount {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

.discount small {
  color: var(--body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
}

.get-code-btn,
.ghost-btn,
.filter-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--dark);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.get-code-btn {
  min-width: 126px;
  padding: 13px 18px;
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.get-code-btn:hover,
.ghost-btn:hover,
.filter-btn:hover {
  transform: translateY(-2px);
}

.newest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.newest-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: var(--radius-lg);
}

.newest-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mini-logo,
.store-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  font-weight: 900;
  letter-spacing: -0.05em;
}

.newest-card .badge {
  margin: 14px 0 0;
}

.newest-card h3 {
  font-size: 1rem;
}

.compact-meta,
.coupon-meta,
.modal-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
  color: var(--body);
  font-size: 0.82rem;
  font-weight: 700;
}

.compact-meta span,
.coupon-meta span,
.modal-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(117, 87, 255, 0.08);
}

.masked-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
  padding: 8px;
  border: 1px dashed rgba(117, 87, 255, 0.35);
  border-radius: 16px;
  background: rgba(117, 87, 255, 0.06);
}

.masked-row code {
  color: var(--primary);
  font-weight: 900;
}

.masked-row button {
  padding: 11px 14px;
}

.stack-mobile {
  align-items: center;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-btn {
  padding: 10px 14px;
  color: var(--body);
}

.filter-btn.active {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.coupon-list {
  display: grid;
  gap: 18px;
}

.coupon-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px;
  border-radius: var(--radius-xl);
}

.coupon-art {
  min-height: 112px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(117, 87, 255, 0.9), rgba(255, 138, 61, 0.9));
  color: rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.coupon-content h3 {
  font-size: 1.28rem;
}

.store-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary);
  font-weight: 900;
  font-size: 0.9rem;
}

.coupon-side {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.coupons-left {
  color: var(--body);
  font-size: 0.84rem;
  font-weight: 700;
}

.empty-state {
  padding: 22px;
  border: 1px dashed rgba(117, 87, 255, 0.35);
  border-radius: var(--radius-lg);
  color: var(--body);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.why-section {
  padding: 72px 0;
  background: var(--dark);
  color: #fff;
}

.why-section .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.why-section p {
  color: rgba(255, 255, 255, 0.72);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.benefit-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.benefit-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: var(--dark);
  background: #fff;
  font-weight: 900;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
}

.site-footer {
  padding: 56px 0 28px;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer h3 {
  margin: 0 0 16px;
  font-size: 1rem;
}

.site-footer a:not(.brand),
.footer-tags span {
  display: block;
  margin: 10px 0;
  color: var(--body);
  font-weight: 700;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-tags span {
  margin: 0;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--body);
  font-size: 0.9rem;
  font-weight: 700;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 40, 0.68);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  width: min(560px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow-y: auto;
  padding: 26px;
  border-radius: 34px;
  animation: popIn 0.24s ease both;
}

@keyframes popIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--muted);
  color: var(--dark);
  font-size: 1.4rem;
  cursor: pointer;
}

.modal-store {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 38px;
}

.modal-store span {
  color: var(--primary);
  font-weight: 900;
  font-size: 0.9rem;
}

.modal-store h2 {
  margin: 4px 0 0;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  letter-spacing: -0.05em;
}

.modal-description {
  color: var(--body);
  line-height: 1.7;
}

.code-box {
  position: relative;
  overflow: hidden;
  margin: 20px 0;
  padding: 22px;
  border: 2px dashed rgba(117, 87, 255, 0.35);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(117, 87, 255, 0.08), rgba(255, 138, 61, 0.08));
  text-align: center;
}

.code-label {
  display: block;
  color: var(--body);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.code-box strong {
  display: block;
  margin: 8px 0;
  color: var(--primary);
  font-size: clamp(1.8rem, 7vw, 3rem);
  letter-spacing: 0.08em;
}

.code-box small {
  color: var(--body);
  font-weight: 700;
}

.code-box.revealed {
  border-color: rgba(35, 196, 131, 0.5);
  background: rgba(35, 196, 131, 0.08);
}

.progress-wrap {
  margin: 12px 0 20px;
}

.progress-bar {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(117, 87, 255, 0.12);
}

.progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.25s ease;
}

.progress-wrap p {
  margin: 8px 0 0;
  color: var(--body);
  font-size: 0.9rem;
  font-weight: 700;
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ghost-btn {
  padding: 14px 20px;
}

.ghost-btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.offer-link {
  display: block;
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  color: var(--primary);
  background: var(--muted);
  font-weight: 900;
  text-align: center;
}

@media (max-width: 1020px) {
  .hero,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 50px;
  }

  .hero-card {
    min-height: 360px;
  }

  .featured-grid,
  .newest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .nav {
    position: relative;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 15;
    display: none;
    flex-direction: column;
    align-items: stretch;
    min-width: 230px;
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 15vw, 4.4rem);
  }

  .hero-search {
    flex-direction: column;
    align-items: stretch;
    border-radius: 26px;
  }

  .hero-search input {
    padding: 15px 16px;
  }

  .hero-stats,
  .featured-grid,
  .newest-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .stack-mobile,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-row {
    justify-content: flex-start;
  }

  .coupon-row {
    grid-template-columns: 1fr;
  }

  .coupon-art {
    min-height: 140px;
  }

  .coupon-side {
    justify-items: stretch;
  }

  .coupon-side .get-code-btn {
    width: 100%;
  }

  .modal-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-bottom: 28px;
  }

  .section {
    padding: 48px 0;
  }

  .hero-card,
  .featured-card,
  .coupon-row,
  .modal-panel {
    border-radius: 24px;
  }
}

/* In-page coupon unlock popup */
.coupon-unlock-modal .modal-overlay {
  background: rgba(20, 16, 40, 0.72);
  backdrop-filter: blur(12px);
}

.unlock-panel {
  width: min(780px, 100%);
  padding: 0;
  overflow: hidden auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #f8f6fc;
  box-shadow: 0 30px 110px rgba(20, 16, 40, 0.34);
}

.unlock-topbar {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  padding: 13px 22px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: var(--body);
  font-size: 0.82rem;
  font-weight: 900;
}

.unlock-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 60px 18px;
  background: #fff;
  font-size: 1.25rem;
}

.unlock-hero {
  padding: 26px 28px 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #fbf9ff);
  text-align: center;
}

.coupons-left-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #fff;
  background: var(--dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.unlock-hero h2 {
  margin: 12px auto 8px;
  max-width: 620px;
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.unlock-hero p,
.unlock-offer-card p,
.remaining-line,
.unlock-about p {
  color: var(--body);
  font-weight: 700;
}

.unlock-offer-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.promo-tag {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(35, 196, 131, 0.11);
  font-size: 0.78rem;
  font-weight: 900;
}

.unlock-offer-card h3 {
  margin: 0 0 7px;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.small-show-btn {
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.unlock-code-box {
  margin: 0 20px 18px;
  padding: 24px 20px;
}

.unlock-code-box h3 {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 5vw, 2rem);
  letter-spacing: -0.04em;
}

.unlock-code-box strong[data-code-display] {
  display: inline-flex;
  justify-content: center;
  min-width: min(100%, 320px);
  margin: 12px 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(2rem, 8vw, 3.3rem);
  letter-spacing: 0.08em;
}

.unlock-panel .progress-wrap {
  margin: 0 20px 18px;
}

.reveal-code-btn {
  display: block;
  width: min(calc(100% - 40px), 360px);
  margin: 0 auto 22px;
  padding: 17px 24px;
  background: var(--dark);
  font-size: 1rem;
}

.unlock-about {
  padding: 22px 28px 28px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.unlock-about h3 {
  margin: 0 0 8px;
}

@media (max-width: 560px) {
  .unlock-panel {
    max-height: calc(100vh - 24px);
    border-radius: 20px;
  }

  .unlock-topbar {
    padding-right: 56px;
  }

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

  .small-show-btn {
    width: 100%;
  }
}
.card-art.has-image{background:#f3f4f8}.card-art.has-image::before{display:none}.card-art.has-image img{width:100%;height:100%;min-height:168px;object-fit:cover;display:block}.mini-logo.has-image,.store-avatar.has-image,.coupon-art.has-image{background:#f3f4f8;color:transparent;overflow:hidden;padding:0}.mini-logo.has-image img,.store-avatar.has-image img,.coupon-art.has-image img{width:100%;height:100%;object-fit:cover;display:block}.coupon-art.has-image{min-height:112px}.store-avatar.has-image{border:1px solid rgba(117,87,255,.18)}
