@font-face{
  font-family:'SFProDisplayMedium';
  src:url('/SFPRODISPLAYMEDIUM.OTF') format('opentype');
  font-weight:500;
}

@font-face{
  font-family:'SFProDisplayRegular';
  src:url('/SFPRODISPLAYREGULAR.OTF') format('opentype');
  font-weight:400;
}

#iosPhone,
#iosStatusBar {
  font-family:'SFProDisplayRegular', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-weight:400;
}

#iosTime {
  font-family:'SFProDisplayMedium', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-weight:500;
}

#iosCarrier{
  font-family:'SFProDisplayRegular', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-weight:400;
}

:root{
  --app-bg:#d9dce7;
  --card:#ffffff;
  --line:#e7e9ef;
  --text:#1c1c1e;
  --muted:#6f7682;
  --ios-bg:#eff2fa;
  --and-bg:#eff2fa;
  --blue:#0070ba;
  --green:#1ba33e;
  --danger:#d93025;
  --shadow:0 18px 50px rgba(0,0,0,.18);
  --radius:22px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--text);
  font-family:Arial,sans-serif;
}
.container-shell{
  width:min(1460px,100%);
  margin:0 auto;
}
.layout{
  display:grid;
  grid-template-columns:minmax(330px,420px) minmax(320px,1fr);
  gap:22px;
  align-items:start;
}
@media (max-width:991px){
  .layout{
    grid-template-columns:1fr;
  }
}
.options-col{
  display:flex;
  justify-content:center;
}
.options-box{
  width:100%;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.7);
  box-shadow:var(--shadow);
  border-radius:24px;
  overflow:hidden;
  backdrop-filter:blur(8px);
  position:sticky;
  top:18px;
  max-height:calc(100vh - 36px);
  display:flex;
  flex-direction:column;
}
@media (max-width:991px){
  .options-box{
    position:relative;
    top:auto;
    max-height:none;
  }
}
.options-head{
  padding:18px 18px 12px;
  border-bottom:1px solid var(--line);
  background:linear-gradient(180deg,#ffffff 0%,#f8faff 100%);
}
.options-title{
  margin:0;
  font-size:20px;
  font-weight:700;
}
.options-sub{
  margin:6px 0 0;
  font-size:13px;
  color:var(--muted);
}
.options-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}
.opt-tab{
  border:1px solid #d9deea;
  background:#fff;
  color:#495366;
  border-radius:999px;
  padding:8px 12px;
  font-size:12px;
  font-weight:600;
  line-height:1;
  cursor:pointer;
}
.opt-tab.active{
  background:#0d6efd;
  border-color:#0d6efd;
  color:#fff;
}
.options-body{
  padding:18px;
  overflow:auto;
}
.tab-pane-custom{
  display:none;
}
.tab-pane-custom.active{
  display:block;
}
.opt-section{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px;
  box-shadow:0 6px 20px rgba(0,0,0,.04);
  margin-bottom:14px;
}
.opt-section:last-child{margin-bottom:0}
.opt-section-title{
  font-size:12px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#7a8090;
  margin-bottom:10px;
}
.form-label{
  font-size:12px;
  font-weight:600;
  color:#5b6574;
  margin-bottom:4px;
}
.form-control,
.form-select{
  border-radius:12px;
  border-color:#d8ddea;
  min-height:38px;
}
.form-control:focus,
.form-select:focus{
  box-shadow:0 0 0 .2rem rgba(13,110,253,.12);
  border-color:#8ab4ff;
}
.form-range{
  margin-top:4px;
}
.stack-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.stack-3{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:10px;
}
@media (max-width:480px){
  .stack-2,.stack-3{
    grid-template-columns:1fr;
  }
}
.group-row,
.tx-row-ui{
  display:flex;
  gap:8px;
  align-items:center;
}
.group-row + .group-row,
.tx-row-ui + .tx-row-ui{
  margin-top:8px;
}
.tx-row-ui{
  justify-content:space-between;
  background:#f8f9fc;
  border:1px solid var(--line);
  border-radius:12px;
  padding:10px 12px;
}
.tx-ui-main{
  min-width:0;
}
.tx-ui-name{
  font-size:13px;
  font-weight:700;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.tx-ui-meta{
  font-size:11px;
  color:var(--muted);
}
.preview-col{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
}
.preview-topbar{
  width:100%;
  max-width:520px;
  display:flex;
  justify-content:center;
}
.preview-switch{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(255,255,255,.65);
  box-shadow:var(--shadow);
  border-radius:999px;
  padding:8px;
  display:flex;
  gap:8px;
  backdrop-filter:blur(8px);
}
.preview-switch button{
  border:none;
  background:#fff;
  color:#526074;
  border-radius:999px;
  padding:9px 18px;
  font-weight:700;
  font-size:13px;
}
.preview-switch button.active{
  background:#0d6efd;
  color:#fff;
}
.phone-stage{
  width:100%;
  display:flex;
  justify-content:center;
}
.phone-wrap{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
}
#phoneFrame{
  width:390px;
  height:760px;
  overflow:hidden;
  position:relative;
  box-shadow:0 24px 80px rgba(0,0,0,.28);
  transition:width .2s ease,height .2s ease,border-radius .2s ease;
}

#phonePreview{
  width:100%;
  height:100%;
  position:relative;
  overflow:hidden;
  background:#fff;
}
.phone-ui{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  overflow:hidden;
}
#iosPhone{background:var(--ios-bg)}
#androidPhone{background:var(--and-bg);display:none}
.status-bar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-shrink:0;
}
#iosStatusBar{
  background:var(--ios-bg);
  padding:15px 25px 10px 38px;
}
#androidStatusBar{
  background:var(--and-bg);
  padding:13px 25px 6px;
}
.ios-time{
  font-family:'SFProDisplayMedium',sans-serif;
  font-size:17px;
}
.android-time{
  font-family:Arial,sans-serif;
  font-size:16px;
  font-weight:700;
}
.status-right{
  display:flex;
  align-items:center;
  gap:4px;
}
.status-right img{
  display:block;
}
#iosCarrier{
  font-family:'SFProDisplayRegular',sans-serif;
  font-size:14px;
   margin-bottom: -2px;
}
#androidCarrier{
  font-family:Arial,sans-serif;
  font-size:11px;
}
.screen{
  flex:1;
  display:flex;
  flex-direction:column;
  overflow:hidden;
}
.top-bar{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:10px 16px;
  position:relative;
  flex-shrink:0;
}
.top-bar-ios{
  background:var(--ios-bg);
}
.top-bar-android{
  background:var(--and-bg);
}
.top-bar-white{
  background:#fff;
}
.top-bar-title{
  font-size:15px;
  font-weight:600;
  line-height:1;
}
.top-bar-back{
  position:absolute;
  left:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  width:17px;
  height:auto;
  cursor:pointer;
}
.top-bar-back img{
  max-width:100%;
  max-height:100%;
}
.scroll-area{
  flex:1;
  overflow:auto;
  overflow-x:hidden;
  padding-bottom:28px;
}
.scroll-area::-webkit-scrollbar{display:none}
.bottom-home{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:28px;
  z-index:30;
  display:flex;
  align-items:center;
  justify-content:center;
  background:transparent!important;
  pointer-events:none;
}
.bottom-home.ios-home,
.bottom-home.white-home{
  background:transparent!important;
}
.bottom-home::before{
  content:"";
  width:130px;
  height:4px;
  border-radius:999px;
  background:#1c1c1e;
}
.section-head{
  padding:6px 12px 2px;
}
.section-head-title{
  font-size:16px;
  font-weight:700;
}
.track-box{
  margin:10px 12px 8px;
  background:#fff;
  border-radius:8px;
  padding:20px 22px 20px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.track-left{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  font-weight:600;
}
.track-icon,
.search-icon,
.filter-icon,
.detail-inline-icon,
.action-icon{
  display:block;
}
.search-wrap{
  margin:0px 0px 10px 11px;
  display:flex;
  align-items:center;
  gap:2px;
}
.search-box{
  flex:1;
  background:#fff;
  border-radius:22px;
  padding:9px 14px;
  display:flex;
  align-items:center;
  gap:7px;
border: 1px solid #c2c2c2;
}
.search-text{
  font-size:12px;
  color:#8e8e93;
}
.search-filter{
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.group-label{
  padding:2px 12px 8px;
  font-size:12px;
  color:#666666;
}
.group-label.after{
  padding-top:12px;
  padding-bottom:5px;
}
.tx-card{
  margin:0 12px 10px;
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 1px 4px rgba(0,0,0,.06);
}
.tx-row{
  display:flex;
  align-items:center;
  padding:12px 13px;
  cursor:pointer;
  position:relative;
  transition:background .12s ease;
}
.tx-row:hover{
  background:#f8f9fb;
}
.tx-row + .tx-row::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:1px;
  background:#e5e5ea;
}
.tx-avatar{
  width:40px;
  height:40px;
  border-radius:50%;
  border:2px solid #3776f2;
  overflow:hidden;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-right:10px;
  margin-top:0;
  font-size:13px;
  font-weight:700;
  color:#fff;
}
.tx-avatar img,
.detail-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
      border: 2px solid #ffffff;
    border-radius: 50%;
}
.tx-info{
  flex:1;
  min-width:0;
}
.tx-name{
  font-size:14px;
  font-weight:700;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.tx-date,
.tx-status{
  font-size:12px;
  color:#8e8e93;
  line-height:1.35;
}
.tx-amount{
  margin-left:8px;
  margin-top:1px;
  align-self:flex-start;
  white-space:nowrap;
  font-size:14px;
  font-weight:700;
  flex-shrink:0;
}
.tx-amount.positive{
  color:var(--green);
}
.detail-screen{
  display:none;
  background:#fff;
}
.detail-screen.active{
  display:flex;
}
.detail-head{
  background:#fff;
  padding:14px 16px;
  display:flex;
  gap:12px;
}
.detail-avatar{
  width:50px;
  height:50px;
  border-radius:50%;
  border:2px solid var(--blue);
  overflow:hidden;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  font-weight:700;
  color:#fff;
}
.detail-head-body{
  flex:1;
  min-width:0;
}
.detail-head-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:8px;
}
.detail-name{
  font-size:17px;
  font-weight:700;
  min-width:0;
  flex:1;
  word-break:break-word;
}
.detail-amount{
  font-size:17px;
  font-weight:700;
  white-space:nowrap;
  flex-shrink:0;
}
.detail-amount.positive{
  color:var(--green);
}
.detail-date{
  font-size:13px;
  color:#8e8e93;
  margin-top:3px;
}
.detail-link{
  font-size:13px;
  color:var(--blue);
  margin-top:4px;
  display:inline-block;
  text-decoration:underline;
  text-underline-offset:2px;
}
.detail-actions{
  background:#fff;
  padding:14px 16px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
}
.detail-action{
  min-width:0;
  max-width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:5px;
}
.detail-action-circle{
  width:46px;
  height:46px;
  border-radius:50%;
  background:#f6f7fa;
  display:flex;
  align-items:center;
  justify-content:center;
}

.detail-action-pos-1{
  grid-column:1;
}

.detail-action-pos-2{
  grid-column:2;
}

.detail-action-pos-3{
  grid-column:3;
}
.detail-action-label{
  width:100%;
  max-width:86px;
  font-size:12px;
  text-align:center;
  line-height:1.25;
  overflow-wrap:anywhere;
  word-break:normal;
  color: #5b5a5a;
}
.detail-block,
.detail-share,
.detail-promo,
.detail-help,
.detail-you,
.detail-num,
.detail-report{
  background:#fff;
}
.detail-share{
  padding:14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:14px;
}
.detail-share-left {
    display: flex;
    align-items: center;
    gap: 10px;
    FONT-WEIGHT: 600;
    font-size: 12px;
}
.detail-promo{
  padding:14px 16px;
}
.detail-promo-title{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:700;
  margin-bottom:6px;
}
.detail-promo-text {
    font-size: 12px;
    color: #000000;
    line-height: 1.45;
    margin-bottom: 10px;
    margin-left: 28px;
}
.detail-promo-btn{
  background:#000;
  color:#fff;
  border:none;
  border-radius:22px;
  padding:9px 18px;
  font-size:11px;
  font-weight:700;
  margin-left: 30px;
}
.detail-sec-title{
  font-size:15px;
  font-weight:500;
  padding:14px 16px 6px;
}
.detail-sec-text{
  padding:0 16px 14px;
  white-space:pre-wrap;
  word-break:break-word;
  line-height:1.5;
  font-size:14px;
}
.detail-from-link{
  display:block;
  margin-top:4px;
  color:var(--blue);
  font-size:13px;
  text-decoration:underline;
  text-underline-offset:2px;
}
.detail-help{
  padding:14px 16px;
}
.detail-help-title{
  font-size:15px;
  font-weight:500;
  margin-bottom:8px;
}
.detail-help-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:5px 0;
  color:#000;
  font-size:14px;
}
.detail-help-text{
  font-size:12px;
  color:#000;
  line-height:1.5;
  margin-top:6px;
}
.detail-you{
  padding:14px 16px;
}
.detail-you-title{
  font-size:14px;
  font-weight:500;
  margin-bottom:8px;
}
.detail-you-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:8px 0;
  font-size:14px;
}
.detail-num{
  padding:14px 16px;
}
.detail-num-title{
  font-size:14px;
  font-weight:500;
  margin-bottom:6px;
}
.detail-num-value{
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    word-break: break-all;
    justify-content: space-between;
}


.detail-report-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  font-size:14px;
  color:#000;
}
.detail-report-item:last-child{
  border-bottom:none;
}
.wm{
  position:absolute;
  z-index:60;
  font-size:36px;
  line-height:1;
  font-weight:800;
  color:rgba(255,0,0,.14);
  transform:rotate(-20deg);
  pointer-events:none;
  user-select:none;
  white-space:nowrap;
}
.download-box{
  width:min(460px,100%);
  background:rgba(255,255,255,.82);
  border:1px solid rgba(255,255,255,.8);
  box-shadow:0 18px 45px rgba(15,23,42,.16);
  border-radius:26px;
  padding:18px;
  backdrop-filter:blur(14px);
}
.download-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
@media (max-width:460px){
  .download-actions{
    grid-template-columns:1fr;
  }
}
#unlockCountdown{
  display:none;
  width:100%;
  text-align:center;
  color:var(--green);
  font-size:13px;
  font-weight:700;
  margin-top:10px;
}
#unlockCountdown:not(:empty){
  display:block;
}
.payment-box{
  display:none;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px;
  margin-top:12px;
}
.payment-title{
  font-size:13px;
  text-align:center;
  line-height:1.45;
  margin-bottom:12px;
}
.payment-title strong{
  font-weight:800;
}
.payment-info-toggle{
  color:var(--danger);
  cursor:pointer;
  margin-left:4px;
}
.payment-info{
  display:none;
  font-size:12px;
  color:#8a1f1f;
  line-height:1.45;
  background:#fff3f3;
  border:1px solid #ffd2d2;
  border-radius:12px;
  padding:10px 12px;
  margin-bottom:12px;
}
.stripe-button{
  width:100%;
  border:none;
  border-radius:12px;
  background:#635bff;
  color:#fff;
  font-weight:700;
  font-size:14px;
  min-height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
}
.stripe-button:hover{
  background:#5144e5;
}
.stripe-button img{
  height:18px;
}
.pay-separator{
  text-align:center;
  color:#9ca3af;
  font-size:12px;
  margin:10px 0;
}
.muted-small{
  color:var(--muted);
  font-size:11px;
}

.detail-separated{
  border-top:4px solid #f0f1fa;
}

#txListUI.tx-list-scroll{
  max-height:260px;
  overflow-y:auto;
  overflow-x:hidden;
  border:1px solid var(--line);
  border-radius:12px;
  padding:6px;
  background:#fff;
}

.tx-move-actions{
  display:flex;
  flex-direction:column;
  gap:4px;
  flex-shrink:0;
}

.tx-move-actions button{
  width:30px;
  height:27px;
  padding:0;
  line-height:1;
  border-radius:8px;
}

.detail-share-icon-circle{
  width:36px;
  height:36px;
  border-radius:50%;
  background:var(--ios-bg);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.detail-share-icon-circle img{
  height:17px!important;
  width:auto;
}

.detail-share-icon-circle{
  width:30px;
  height:30px;
  border-radius:50%;
  background:#f6f7fa;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.detail-share-icon-circle img{
  height:14px!important;
  width:auto;
}

#downloadButton,
#openPaymentButton{
  min-height:50px;
  border:none;
  border-radius:18px;
  font-size:14px;
  font-weight:800;
  letter-spacing:-.2px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  box-shadow:0 10px 24px rgba(15,23,42,.14);
  transition:transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

#downloadButton:hover,
#openPaymentButton:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 30px rgba(15,23,42,.2);
  filter:brightness(1.02);
}

#downloadButton:active,
#openPaymentButton:active{
  transform:translateY(1px);
  box-shadow:0 7px 16px rgba(15,23,42,.16);
}

#downloadButton{
  background:linear-gradient(135deg,#0070ba 0%,#1546d8 100%);
  color:#fff;
}

#openPaymentButton{
  background:linear-gradient(135deg,#111827 0%,#000 100%);
  color:#fff;
}

#downloadButton i,
#openPaymentButton i{
  width:25px;
  height:25px;
  border-radius:50%;
  background:rgba(255,255,255,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  line-height:1;
}

#openPaymentButton small{
  font-size:10px;
  font-weight:800;
  line-height:1;
  padding:4px 7px;
  border-radius:999px;
  background:rgba(255,255,255,.18);
  color:#fff;
}

.download-progress{
  width:100%;
  height:9px;
  background:#eef1f7;
  border-radius:999px;
  overflow:hidden;
  margin-bottom:14px;
  box-shadow:inset 0 1px 3px rgba(15,23,42,.08);
}

.download-progress-bar{
  height:100%;
  width:0%;
  border-radius:999px;
  background:linear-gradient(90deg,#0070ba 0%,#00a8ff 50%,#1546d8 100%);
  box-shadow:0 0 16px rgba(0,112,186,.45);
  transition:width .22s ease;
  position:relative;
  overflow:hidden;
}

.download-progress-bar::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.5),transparent);
  transform:translateX(-100%);
  animation:downloadShine 1.1s linear infinite;
}

@keyframes downloadShine{
  to{
    transform:translateX(100%);
  }
}

.download-actions.single-button{
  grid-template-columns:1fr;
  justify-items:center;
}

.download-actions.single-button #downloadButton{
  width:min(260px,100%);
}

.buy-coffee-wrap{
  display:flex;
  justify-content:center;
  margin-top:22px;
}

.buy-coffee-btn{
  padding:.62rem 1.15rem;
  border-radius:999px;
  background:linear-gradient(135deg,#00c853 0%,#00e676 45%,#1de96f 100%);
  border:1px solid rgba(255,255,255,.55);
  color:#061b0d!important;
  font-weight:800;
  box-shadow:
    0 10px 26px rgba(0,200,83,.35),
    0 0 18px rgba(0,230,118,.38),
    inset 0 1px 0 rgba(255,255,255,.55);
  transition:transform .15s ease, box-shadow .15s ease, filter .15s ease;
  position:relative;
  overflow:hidden;
}

.buy-coffee-btn::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,transparent 0%,rgba(255,255,255,.45) 45%,transparent 70%);
  transform:translateX(-120%);
  transition:transform .55s ease;
}

.buy-coffee-btn:hover{
  transform:translateY(-2px);
  box-shadow:
    0 14px 34px rgba(0,200,83,.45),
    0 0 28px rgba(0,230,118,.58),
    inset 0 1px 0 rgba(255,255,255,.65);
  filter:brightness(1.05);
}

.buy-coffee-btn:hover::before{
  transform:translateX(120%);
}

.buy-coffee-btn i,
.buy-coffee-btn span{
  position:relative;
  z-index:1;
}

.btn-blog {
    background: linear-gradient(135deg, #6e6e6e, #0b2a55);
    color: #fff;
    border: 0;
    border-radius: 14px;
    padding: .5rem 1.1rem;
    font-weight: 700;
}
