body{
  background:#fff;
}
.app{
  min-height:100vh;
  max-width:430px;
  margin:0 auto;
}
.appTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 12px 6px;
  transform-origin:top center;
}
.appTop__user{
  width:32px;
  height:32px;
  border-radius:999px;
  border:0;
  background:#F3F5F7;
  display:flex;
  align-items:center;
  justify-content:center;
}
.appTop__logo{
  height:24px;
  width:auto;
}
.appTop__right{
  display:flex;
  align-items:center;
  gap:10px;
}
.appTop__icon{border:0;background:transparent;padding:0;}
.appTop__iconCircle{
  width:26px;
  height:26px;
  border-radius:999px;
  border:2px solid #2F8CFF;
  display:flex;
  align-items:center;
  justify-content:center;
}
.appTop__iconText{
  font-weight:800;
  font-size:13px;
  line-height:1;
  color:#2F8CFF;
}
.appTop__bellWrap{position:relative;}
.appTop__dot{
  position:absolute;
  right:-2px;
  top:-2px;
  width:7px;
  height:7px;
  border-radius:50%;
  background:#FF3B30;
}
.appMain{padding:0 12px 16px;}
.balance{margin-top:8px;}
.balance__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.balance__label{
  color:#9AA4B2;
  font-size:13px;
  font-weight:500;
  display:flex;
  align-items:center;
  gap:8px;
}
.balance__eye{border:0;background:transparent;padding:0;}
.balance__amount{
  display:flex;
  align-items:baseline;
  gap:12px;
  margin-top:6px;
}
.balance__num{
  font-size:44px;
  font-weight:800;
  letter-spacing:-1px;
  color:#111;
}
.balance__cur{
  border:0;
  background:transparent;
  color:#9AA4B2;
  font-size:17px;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:6px;
  padding:0;
}
.balance__chev{transform:translateY(2px);} 
.actions{
  margin-top:12px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
}
.action{display:flex;flex-direction:column;align-items:center;gap:6px;}
.action__btn{
  width:50px;
  height:50px;
  border-radius:999px;
  border:0;
  background:#F3F5F7;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}
.action__btn--primary{background:#1D4CFF;}
.action__plus{
  color:#fff;
  font-size:28px;
  font-weight:700;
  line-height:1;
  transform:translateY(-1px);
}
.action__label{
  font-size:11px;
  color:#8B95A5;
  font-weight:500;
}
.action__dot{
  position:absolute;
  right:16px;
  top:16px;
  width:10px;
  height:10px;
  border-radius:50%;
  background:#FF3B30;
}
.promo{
  margin-top:12px;
  background:#1D4CFF;
  border-radius:20px;
  padding:12px 14px;
  min-height:82px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  position:relative;
  overflow:hidden;
}
.promo__icon{
  width:38px;
  height:38px;
  border-radius:12px;
  background:rgba(255,255,255,0.22);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 14px;
}
.promo__text{
  text-align:center;
  color:#fff;
  font-weight:700;
  font-size:15px;
  line-height:1.25;
}
.promo__coin{
  display:inline-block;
  width:14px;
  height:14px;
  border-radius:999px;
  background:rgba(255,255,255,0.22);
  text-align:center;
  line-height:14px;
  font-size:10px;
  font-weight:800;
  transform:translateY(-2px);
}
.sheetOverlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.45);
  display:none;
  align-items:flex-end;
  justify-content:center;
  z-index:50;
}
.sheetOverlay[hidden]{ display:none; }
.sheetOverlay.isOpen{ display:flex; }
.sheet{
  width:min(430px,100%);
  background:#fff;
  border-top-left-radius:30px;
  border-top-right-radius:30px;
  padding:14px 18px 18px;
  box-shadow:0 -20px 50px rgba(0,0,0,0.18);
  animation:sheetUp .22s ease-out;
}
@keyframes sheetUp{from{transform:translateY(40px);}to{transform:translateY(0);}}
.sheet__handle{
  width:62px;
  height:6px;
  border-radius:999px;
  background:#E6E9EE;
  margin:0 auto 14px;
}
.sheet__title{
  font-size:34px;
  font-weight:800;
  color:#111;
}
.cardPreview{display:flex;justify-content:center;margin:18px 0 12px;}
.cardPreview__inner{
  width:210px;
  height:130px;
  border-radius:16px;
  border:2px solid #F1D867;
  position:relative;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,0.10);
}
.cardPreview__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.cardPreview__tap{
  position:absolute;
  right:12px;
  top:10px;
}
.sheet__subtitle{
  text-align:center;
  font-size:28px;
  font-weight:800;
  line-height:1.15;
  color:#111;
  margin:10px 0 16px;
}
.sheet__cta{
  width:100%;
  height:66px;
  border-radius:40px;
  border:0;
  background:#121212;
  color:#fff;
  font-size:24px;
  font-weight:700;
}
