:root {
  --bg: #f7f7f7;
  --card: #ffffff;
  --text: #151515;
  --muted: #989898;
  --line: #eeeeee;
  --accent: #ffcd00;
  --accent2: #1edc89;
  --pink: #ff3f78;
  --black: #080808;
  --radius: 22px;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: var(--bg); color: var(--text); }
button, input { font: inherit; }
button { -webkit-tap-highlight-color: transparent; }
body { display: block; }
.app-shell {
  width: 100%;
  max-width: 100%;
  min-height: 100dvh;
  background: var(--bg);
  position: relative;
  overflow-x: hidden;
}

.page { min-height: 100dvh; background: var(--bg); padding-bottom: calc(28px + env(safe-area-inset-bottom)); }
.safe-top { height: max(10px, env(safe-area-inset-top)); }
.topbar {
  display: grid;
  grid-template-columns: 44px 1fr 52px;
  align-items: center;
  gap: clamp(6px, 2vw, 8px);
  padding: calc(8px + env(safe-area-inset-top) * 0) clamp(12px, 3.8vw, 16px) 12px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
}
.back-btn, .circle-btn {
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 30px;
  cursor: pointer;
}
.circle-btn { background: rgba(0,0,0,.08); font-size: 15px; color: #fff; }
.search-wrap { display: flex; gap: 10px; align-items: center; }
.search-box {
  flex: 1;
  background: #f2f3f6;
  border-radius: 10px;
  height: clamp(42px, 11vw, 46px);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: clamp(6px, 2vw, 8px);
}
.search-box input {
  border: 0;
  outline: 0;
  background: transparent;
  width: 100%;
  color: #222;
  font-size: clamp(15px, 4.2vw, 17px);
}
.search-action {
  border: 0;
  background: transparent;
  font-weight: 700;
  font-size: clamp(15px, 4.2vw, 17px);
  padding: 0;
  cursor: pointer;
}
.brand-pill {
  justify-self: center;
  padding: 4px 12px;
  border-radius: 18px;
  background: #f3f3f3;
  font-weight: 700;
  color: #676767;
}
.content { padding: 0 clamp(12px, 3.8vw, 16px); }
.section-title { font-size: clamp(20px, 5.6vw, 22px); font-weight: 800; margin: 22px 0 14px; }
.discovery-tabs { display: flex; align-items: center; gap: clamp(18px, 6vw, 28px); padding: 18px 2px 12px; font-size: clamp(16px, 4.5vw, 18px); }
.discovery-refresh { margin-left: auto; color: #aaa; font-size: .88em; }
.discovery-tabs .active { font-weight: 800; }
.discovery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px clamp(14px, 5vw, 24px);
  padding: 6px 2px 22px;
}
.discovery-word { font-size: clamp(16px, 4.5vw, 18px); line-height: 1.45; }
.discovery-word.hot { color: #f24678; }
.hot-tabs {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 0 12px;
  white-space: nowrap;
  scrollbar-width: none;
}
.hot-tabs::-webkit-scrollbar { display: none; }
.hot-tabs span { color: #777; font-size: clamp(15px, 4.2vw, 17px); }
.hot-tabs .active { color: #111; font-weight: 800; }
.hot-list { background: #fff; border-radius: 14px; overflow: hidden; }
.hot-item {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: clamp(6px, 2vw, 8px);
  align-items: center;
  min-height: 58px;
  padding: 0 14px;
  border-bottom: 1px solid #f4f4f4;
}
.hot-item:last-child { border-bottom: 0; }
.rank { font-size: clamp(20px, 5vw, 22px); font-weight: 800; color: #a4b5c7; }
.rank.top { color: #ff6d3f; }
.hot-name { font-size: clamp(15px, 4.2vw, 17px); }
.hot-num { color: #999; font-size: 14px; }

.category-tabs {
  background: #fff;
  display: flex;
  justify-content: space-around;
  padding: 8px 6px 10px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 66px;
  z-index: 15;
}
.category-tabs span { font-size: clamp(15px, 4vw, 17px); color: #555; padding: 8px 4px; white-space: nowrap; }
.category-tabs .active { color: #111; font-weight: 800; border-bottom: 3px solid #111; }
.filter-row { display: flex; gap: 10px; overflow-x: auto; padding: 12px clamp(12px, 3.8vw, 16px); background: #fff; }
.filter-row span { background: #f5f5f5; border-radius: 7px; padding: 8px 14px; color: #666; white-space: nowrap; }
.filter-row .active { color: #111; font-weight: 700; }
.promo-banner {
  margin: 18px clamp(12px, 3.8vw, 16px);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffe95c, #fff0a7);
  position: relative;
  min-height: clamp(118px, 31vw, 140px);
  padding: clamp(16px, 4vw, 20px) clamp(120px, 34vw, 146px) clamp(16px, 4vw, 20px) clamp(16px, 4vw, 20px);
}
.promo-banner img { position: absolute; right: 6px; bottom: 0; width: clamp(112px, 31vw, 136px); height: clamp(96px, 27vw, 114px); object-fit: contain; }
.promo-banner h2 { margin: 0 0 8px; font-size: clamp(22px, 6vw, 26px); line-height: 1.18; }
.promo-banner p { margin: 0; color: #7a6a37; }
.promo-banner button {
  margin-top: 14px;
  border: 0;
  background: #000;
  color: #fff;
  border-radius: 26px;
  padding: 11px 24px;
  font-weight: 800;
}
.video-strip { display: flex; gap: 12px; overflow-x: auto; padding: 0 clamp(12px, 3.8vw, 16px) 18px; }
.video-card { min-width: clamp(128px, 36vw, 145px); height: clamp(188px, 52vw, 210px); border-radius: 13px; background: linear-gradient(160deg,#252525,#0f0f0f); color: #fff; padding: 14px; position: relative; overflow: hidden; }
.video-card img { width: 100%; height: 110px; object-fit: contain; margin-top: 18px; }
.video-card b { display: block; font-size: 15px; }
.video-card small { position: absolute; bottom: 12px; left: 14px; right: 14px; line-height: 1.4; }
.feed-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 10px; }
.feed-card { background: #fff; border-radius: 11px; overflow: hidden; }
.feed-card img { display: block; width: 100%; aspect-ratio: 0.76; height: auto; object-fit: cover; background: #f0f0f0; }
.feed-card div { padding: 10px; font-weight: 700; line-height: 1.35; }

.hero-yellow { background: linear-gradient(180deg,#ffd60a,#ffe779); padding: 14px clamp(12px, 3.8vw, 18px) 22px; position: relative; }
.hero-yellow .title-board { background: rgba(255,255,255,.9); border-radius: 22px; padding: clamp(16px, 4.2vw, 18px) clamp(16px, 4.2vw, 18px) 16px; margin-top: 8px; box-shadow: 0 5px 0 rgba(255,255,255,.5); }
.hero-yellow h1 { margin: 0; font-size: clamp(28px, 8vw, 34px); color: #ff5a21; text-shadow: 2px 2px 0 #fff; }
.hero-yellow h2 { margin: 6px 0 0; font-size: clamp(20px, 6vw, 24px); }
.prize-tabs { display: flex; gap: 10px; padding: 16px clamp(12px, 3.8vw, 16px) 12px; overflow-x: auto; background: #fff; border-radius: 28px 28px 0 0; margin-top: -8px; position: relative; z-index: 2; }
.prize-tabs span { white-space: nowrap; background: #f5f5f5; padding: 11px 18px; border-radius: 24px; }
.prize-tabs .active { background: #000; color: #fff; font-weight: 800; }
.prize-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(10px, 2.8vw, 12px); padding: 8px clamp(12px, 3.4vw, 14px) 22px; background: #fff; }
.prize-card { border: 0; background: #fff; border-radius: 18px; box-shadow: 0 2px 14px rgba(0,0,0,.07); padding: clamp(10px, 3vw, 12px); text-align: left; cursor: pointer; position: relative; min-width: 0; }
.prize-days { font-weight: 800; font-size: clamp(15px, 4vw, 16px); }
.free-tag { position: absolute; right: 8px; top: 52px; background: #ffef3d; color: #e93656; font-weight: 900; padding: 5px 7px; transform: rotate(-8deg); border-radius: 4px; }
.prize-card img { width: 100%; height: clamp(118px, 33vw, 142px); object-fit: contain; display: block; }
.prize-card h3 { margin: 6px 0 4px; font-size: clamp(17px, 4.6vw, 18px); line-height: 1.25; }
.prize-card p { margin: 0; color: #999; font-size: 13px; }
.grab-row { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; color: #ec3d69; font-weight: 700; }
.grab-badge { background: linear-gradient(90deg,#ffd882,#ff2d6a); color: #fff; border-radius: 24px 4px 4px 24px; padding: 9px 13px; }

.modal-mask { position: fixed; inset: 0; background: rgba(0,0,0,.72); z-index: 100; display: flex; align-items: flex-end; justify-content: center; }
.modal-card { width: min(100%, 430px); background: linear-gradient(180deg,#efffee,#fff 36%); border-radius: 34px 34px 0 0; padding: 40px 24px calc(26px + env(safe-area-inset-bottom)); position: relative; text-align: center; animation: rise .24s ease-out; }
@keyframes rise { from { transform: translateY(50px); opacity: .7; } to { transform: translateY(0); opacity: 1; } }
.modal-ribbon { position: absolute; left: 0; top: -60px; min-width: min(270px, 74vw); padding: 18px 24px; border-radius: 0 40px 0 0; background: linear-gradient(135deg,#eaff8b,#ffdf39); font-size: clamp(24px, 7vw, 30px); font-weight: 900; transform: rotate(-2deg); }
.modal-close { position: absolute; right: 18px; top: -76px; width: 44px; height: 44px; border-radius: 50%; border: 0; background: #eee; font-size: 27px; cursor: pointer; }
.modal-card h3 { font-size: 20px; margin: 4px 0 18px; }
.modal-card img { width: min(62vw, 230px); height: min(62vw, 230px); object-fit: contain; }
.modal-card h2 { font-size: 30px; margin: 8px 0 2px; }
.modal-card p { color: #777; }
.primary-btn { border: 0; background: #050505; color: #51f39d; border-radius: 42px; font-weight: 900; font-size: clamp(22px, 6vw, 24px); min-height: 64px; width: min(82%, 320px); cursor: pointer; }
.text-link { border: 0; background: transparent; color: #777; margin-top: 20px; font-size: 17px; }

.checkin-page { background: linear-gradient(150deg,#e9fff2 0,#fff7ea 22%,#f7f7f7 44%); }
.checkin-header { display: grid; grid-template-columns: 48px 1fr 48px; align-items: center; padding: 16px clamp(12px, 3.8vw, 18px) 10px; }
.checkin-header h1 { text-align: center; font-size: clamp(19px, 5.3vw, 21px); margin: 0; }
.overview { padding: 22px clamp(16px, 4.4vw, 22px) 6px; display: grid; grid-template-columns: minmax(0,1fr) clamp(120px, 34vw, 150px); gap: 12px; align-items: center; }
.overview h2 { font-size: clamp(23px, 7vw, 26px); margin: 0 0 18px; }
.day-counter { display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border-radius: 26px; background: linear-gradient(90deg,#47f0bb,#e7ff7e); font-size: clamp(18px, 5.2vw, 20px); font-weight: 800; }
.day-counter strong { font-size: clamp(40px, 12vw, 48px); line-height: .9; }
.progress-copy { color: #888; margin-top: 16px; }
.overview img { width: clamp(120px, 34vw, 150px); height: clamp(132px, 36vw, 160px); object-fit: contain; }
.coin-panel { margin: 14px clamp(12px, 3.8vw, 18px) 0; background: linear-gradient(100deg,#ffe91d,#ffec64); border-radius: 22px 22px 0 0; padding: 18px; }
.coin-panel h3 { margin: 0 0 4px; font-size: 24px; }
.coin-panel p { margin: 0; color: #867b4d; }
.task-card { margin: 0 0 18px; border-radius: 0 0 28px 28px; background: #fff; padding: 24px clamp(16px, 4.2vw, 22px); box-shadow: 0 10px 28px rgba(0,0,0,.04); }
.task-title { font-size: clamp(21px, 6vw, 23px); font-weight: 900; margin-bottom: 18px; }
.task-title b { color: #ff3d74; }
.task-row { display: grid; grid-template-columns: 58px 1fr auto; align-items: center; gap: 12px; }
.task-icon { width: 54px; height: 54px; border-radius: 18px; background: linear-gradient(135deg,#ddffb7,#fff); display: grid; place-items: center; font-size: 30px; }
.task-row h3 { margin: 0 0 6px; font-size: clamp(20px, 5.8vw, 22px); }
.task-row p { margin: 0; color: #bbb; }
.sign-btn { border: 0; border-radius: 28px; background: #000; color: #fff; padding: 14px 22px; font-size: clamp(17px, 4.7vw, 18px); font-weight: 800; cursor: pointer; }
.sign-btn.done { background: #f2f2f2; color: #d1d1d1; }
.calendar-card { margin: 18px clamp(12px, 3.8vw, 18px); background: #fff; border-radius: 26px; padding: 24px clamp(12px, 3.8vw, 18px); }
.reward-total { background: linear-gradient(90deg,#fff2ae,#fff); border-radius: 18px; padding: 14px 16px; color: #999; margin-bottom: 16px; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 8px 6px; }
.day-cell { min-height: clamp(56px, 15vw, 66px); border-radius: 14px; background: #f3f3f3; color: #bcbcbc; display: flex; flex-direction: column; align-items: center; justify-content: center; font-weight: 800; position: relative; font-size: clamp(13px, 3.8vw, 15px); padding: 4px 1px; text-align: center; word-break: break-all; }
.day-cell small { font-size: clamp(9px, 2.4vw, 10px); margin-top: 3px; color: #c4a300; }
.day-cell.signed { background: linear-gradient(145deg,#4be5bd,#b7ff71); color: #fff; box-shadow: inset 0 0 0 4px rgba(255,255,255,.25); }
.day-cell.claimable { background: linear-gradient(145deg,#ffe653,#ffb632); color: #7f4b00; }
.day-cell button { border: 0; background: transparent; color: inherit; font-weight: 900; cursor: pointer; padding: 0; }
.toast { position: fixed; left: 50%; top: 37%; transform: translateX(-50%); z-index: 120; background: linear-gradient(140deg,#51e5c1,#d7ff83); padding: 18px 26px; border-radius: 18px; font-size: 17px; font-weight: 800; box-shadow: 0 18px 42px rgba(0,0,0,.2); animation: toast .25s ease-out; }
@keyframes toast { from { transform: translate(-50%,10px); opacity: 0; } to { transform: translate(-50%,0); opacity: 1; } }

.complete-page { background: linear-gradient(165deg,#f2ffe3,#ffeec0 28%,#ffe7f4); min-height: 100vh; }
.complete-wrap { padding: 20px clamp(14px, 4.2vw, 24px) 36px; text-align: center; }
.complete-wrap h1 { font-size: clamp(22px, 6vw, 24px); margin: 8px 0 24px; }
.complete-card { background: rgba(255,255,255,.86); border-radius: 28px; padding: 24px 20px 30px; box-shadow: 0 18px 60px rgba(155,83,120,.12); }
.complete-card h2 { font-size: clamp(30px, 9vw, 34px); margin: 6px 0 10px; }
.complete-card p { color: #555; }
.complete-card img { width: 82%; max-height: 320px; object-fit: contain; margin: 14px auto; display: block; }
.complete-status { display: inline-block; margin-top: 12px; border-radius: 40px; background: linear-gradient(90deg,#f1296a,#ff0f83); color: #fff; padding: 16px 34px; font-size: clamp(20px, 5.5vw, 22px); font-weight: 900; }
.notice { text-align: center; color: #aaa; font-size: 12px; padding: 18px 24px 0; line-height: 1.5; }
@media (min-width: 700px) {
  body { display: flex; justify-content: center; background: #ececec; }
  .app-shell { max-width: 430px; min-height: 900px; margin: 20px 0; border-radius: 28px; overflow: hidden; box-shadow: 0 0 40px rgba(0,0,0,.08); }
}

@media (max-width: 390px) {
  .prize-grid { gap: 8px; padding-inline: 10px; }
  .prize-card { border-radius: 16px; }
  .free-tag { right: 6px; top: 48px; padding: 4px 6px; }
  .grab-row { margin-top: 10px; font-size: 14px; }
  .grab-badge { padding: 8px 11px; }
  .calendar-card { padding-inline: 10px; }
  .calendar-grid { gap: 6px 4px; }
}

/* Account/login additions */
.login-page { min-height: 100vh; padding: 24px; display: grid; place-items: center; background: linear-gradient(145deg,#fff8cf,#eafff4 48%,#f5efff); }
.login-card { width: 100%; background: rgba(255,255,255,.92); border-radius: 28px; padding: 34px 24px; text-align: center; box-shadow: 0 22px 70px rgba(80,70,40,.12); }
.login-logo { margin: 0 auto 14px; width: 72px; height: 72px; border-radius: 24px; display: grid; place-items: center; font-size: 40px; font-weight: 900; color: #111; background: linear-gradient(135deg,#ffe52f,#8bffb2); }
.login-card h1 { margin: 0 0 8px; font-size: 27px; }
.login-card p { margin: 0 0 22px; color: #888; line-height: 1.6; }
.login-input { width: 100%; height: 54px; border: 2px solid #efefef; border-radius: 16px; padding: 0 16px; outline: none; font-size: 18px; text-align: center; }
.login-input:focus { border-color: #ffdc26; }
.login-btn { width: 100%; height: 54px; border: 0; border-radius: 28px; margin-top: 14px; background: #111; color: #fff; font-size: 18px; font-weight: 800; cursor: pointer; }
.login-error { color: #e63c62; margin-top: 10px; font-size: 14px; }

/* “达人专属”页右上角更多菜单 */
.more-trigger { font-size: 14px; }
.more-menu-mask {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(0,0,0,.42);
  padding: 12px 12px calc(12px + env(safe-area-inset-bottom));
}
.more-menu-panel {
  width: min(100%, 430px);
  animation: rise .2s ease-out;
}
.more-menu-group {
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 14px 44px rgba(0,0,0,.14);
}
.more-menu-group button,
.more-menu-cancel {
  width: 100%;
  min-height: 58px;
  border: 0;
  background: #fff;
  color: #111;
  font-size: 18px;
  cursor: pointer;
}
.more-menu-group button + button { border-top: 1px solid #ededed; }
.more-menu-group button.danger { color: #ef315f; }
.more-menu-cancel {
  margin-top: 10px;
  border-radius: 18px;
  font-weight: 800;
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
}

.is-busy { cursor: progress; }
.is-busy button { pointer-events: none; opacity: .78; }

/* 添加到 iPhone 主屏幕后，以独立 App 模式打开时的适配 */
html.is-standalone,
html.is-standalone body {
  min-height: 100%;
  background: var(--bg);
  overscroll-behavior-y: none;
}
html.is-standalone body {
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
html.is-standalone input,
html.is-standalone textarea {
  -webkit-user-select: text;
}
@media (display-mode: standalone) {
  body { background: var(--bg); }
  .app-shell { min-height: 100svh; }
}


/* V8：搜索后仍在首屏展示活动区，不切到独立结果流 */
.search-active-page .topbar { border-bottom: 0; }
.promo-banner-inline {
  margin-top: 14px;
  margin-bottom: 6px;
  aspect-ratio: 3.45 / 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promo-banner-inline button {
  position: absolute;
  right: clamp(14px, 4vw, 20px);
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  min-width: 92px;
  min-height: 48px;
}
.promo-banner-inline img {
  left: 0;
  right: auto;
  width: clamp(98px, 27vw, 124px);
  height: 100%;
  opacity: .98;
}
.promo-banner-inline h2,
.promo-banner-inline p {
  position: relative;
  z-index: 1;
  margin-left: clamp(92px, 25vw, 118px);
  margin-right: clamp(94px, 27vw, 112px);
}
.promo-banner-inline h2 { font-size: clamp(18px, 5vw, 24px); }
.promo-banner-inline p { font-size: clamp(12px, 3.3vw, 15px); }

/* V8：奖品信息改为居中的步骤弹窗，无关闭叉号 */
.modal-mask-centered {
  align-items: center;
  padding: calc(22px + env(safe-area-inset-top)) 18px calc(22px + env(safe-area-inset-bottom));
  background: rgba(0,0,0,.58);
}
.modal-card-centered {
  width: min(82vw, 334px);
  max-height: min(78dvh, 620px);
  overflow: auto;
  border-radius: 26px;
  padding: 58px 22px 26px;
  background: linear-gradient(180deg,#f0fff0,#fff 40%);
  animation: modalPop .2s ease-out;
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
}
@keyframes modalPop {
  from { transform: scale(.94) translateY(10px); opacity: .5; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.modal-card-centered .modal-ribbon {
  top: 0;
  left: 0;
  width: 100%;
  min-width: 0;
  border-radius: 26px 26px 0 0;
  transform: none;
  padding: 15px 54px;
  font-size: clamp(21px, 6vw, 27px);
  text-align: center;
}
.modal-back {
  position: absolute;
  top: 9px;
  left: 10px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.08);
  color: #333;
  font-size: 30px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.modal-card-centered h3 { margin-top: 2px; }
.modal-card-centered img {
  width: min(48vw, 176px);
  height: min(48vw, 176px);
}
.modal-card-centered h2 { font-size: clamp(24px, 7vw, 30px); }
.modal-card-centered .primary-btn {
  width: 88%;
  min-height: 56px;
  font-size: clamp(20px, 5.5vw, 23px);
}

/* V8：签到格子保持小尺寸，3天不会撑满一整行 */
.calendar-grid {
  grid-template-columns: repeat(var(--day-cols, 7), clamp(42px, 11vw, 48px));
  justify-content: flex-start;
  align-items: start;
  gap: 8px 6px;
}
.day-cell {
  width: clamp(42px, 11vw, 48px);
  min-height: 0;
  aspect-ratio: 1 / 1.16;
  border-radius: 12px;
  font-size: clamp(12px, 3.5vw, 14px);
}
.day-cell button { line-height: 1.05; font-size: inherit; }

@media (max-width: 360px) {
  .promo-banner-inline h2,
  .promo-banner-inline p { margin-left: 82px; margin-right: 88px; }
  .promo-banner-inline button { min-width: 82px; padding-inline: 15px; }
  .calendar-grid { gap: 7px 4px; }
}


/* V9：搜索页活动横幅直接使用完整成品图，避免文字、插画和按钮被二次排版挤压 */
.promo-banner-exact {
  display: block;
  width: calc(100% - 2 * clamp(14px, 3.8vw, 18px));
  margin: 18px clamp(14px, 3.8vw, 18px) 10px;
  padding: 0;
  border: 0;
  border-radius: clamp(14px, 4vw, 18px);
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  line-height: 0;
  -webkit-tap-highlight-color: transparent;
}
.promo-banner-exact img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1176 / 348;
  object-fit: fill;
}
.promo-banner-exact:active { transform: scale(.995); }
@media (max-width: 360px) {
  .promo-banner-exact {
    width: calc(100% - 24px);
    margin-left: 12px;
    margin-right: 12px;
  }
}
