* { box-sizing: border-box; }
body {
  margin: 0;
  background: #f3f3f5;
  color: #222;
  font-family: Arial, "Microsoft YaHei", sans-serif;
  padding-bottom: 72px;
}
.top-tip {
  background: #fff;
  text-align: center;
  font-size: 12px;
  color: #666;
  padding: 8px 10px;
  border-bottom: 1px solid #eee;
}
.hero {
  background: linear-gradient(180deg, #ff5db1 0%, #c44dff 55%, #8f63ff 100%);
  padding: 12px 10px 16px;
}
.search-row {
  display: flex;
  gap: 8px;
  align-items: center;
}
.search-row input {
  flex: 1;
  height: 40px;
  border: none;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 14px;
}
.btn-orange, .btn-main {
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}
.btn-orange {
  height: 40px;
  padding: 0 12px;
  background: #ff8a00;
  color: #fff;
  white-space: nowrap;
}
.btn-main {
  height: 40px;
  padding: 0 16px;
  background: linear-gradient(90deg, #ff5db1, #8f63ff);
  color: #fff;
  width: 100%;
  margin-top: 10px;
}
.btn-outline {
  background: #fff;
  color: #ff5db1;
  border: 1px solid #ff5db1;
}
.cat-wrap {
  background: linear-gradient(180deg, #8f63ff 0%, #ff5db1 100%);
  padding: 10px 10px 14px;
  position: relative;
}
.cat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 120px;
  overflow: hidden;
}
.cat-grid.expanded { max-height: none; }
.cat-tag {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 13px;
  cursor: pointer;
}
.cat-tag.active {
  background: #ffe600;
  color: #d40000;
  font-weight: bold;
}
.more-cat {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(255,255,255,.25);
  color: #fff;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 16px;
  padding: 4px 12px;
  font-size: 12px;
  cursor: pointer;
}
.notice-bar {
  background: #ffd9c2;
  overflow: hidden;
  white-space: nowrap;
}
.notice-inner {
  display: inline-block;
  padding: 8px 0;
  animation: marquee 18s linear infinite;
  color: #a33;
  font-size: 13px;
}
@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
.content { padding: 10px; }
.panel { display: none; }
.panel.active { display: block; }
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  cursor: pointer;
}
.cover {
  aspect-ratio: 16 / 10;
  background: #ddd;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #ddd;
}
.duration {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(0,0,0,.65);
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
}
.views {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  color: #fff;
  font-size: 11px;
  padding: 16px 6px 4px;
}
.title {
  padding: 8px;
  font-size: 13px;
  line-height: 1.35;
  min-height: 52px;
  word-break: break-word;
}
.panel-tip, .muted {
  color: #888;
  font-size: 13px;
  text-align: center;
  padding: 12px 0;
}
.load-more {
  text-align: center;
  color: #999;
  font-size: 13px;
  padding: 16px 0 24px;
}
.load-more.loading { color: #ff5db1; }
.account-box {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.account-box label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}
.account-box input {
  width: 100%;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 10px;
}
.account-info {
  margin: 12px 0;
  padding: 10px;
  background: #f7f7fa;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.6;
}
.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96);
  border-top: 1px solid #eee;
  z-index: 10;
}
.nav-btn {
  height: 44px;
  border: none;
  border-radius: 22px;
  background: linear-gradient(90deg, #ff5db1, #8f63ff);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  opacity: .75;
}
.nav-btn.active { opacity: 1; font-weight: bold; }
.float-btn {
  position: fixed;
  right: 12px;
  border: none;
  cursor: pointer;
  z-index: 11;
  color: #fff;
}
.float-btn.complain {
  bottom: 88px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ff5db1;
  font-size: 13px;
}
.float-btn.top {
  bottom: 150px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #666;
  font-size: 12px;
}
.player, .modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(0,0,0,.88);
  padding: 12px;
  align-items: center;
  justify-content: center;
}
.modal.on { display: flex; }
#purchaseModal.on { z-index: 40; }
#payModal.on {
  z-index: 60;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  background: transparent;
  pointer-events: none;
}
#payModal.on .pay-sheet-mask,
#payModal.on .pay-sheet {
  pointer-events: auto;
}
body.pay-sheet-open { overflow: hidden; }
.modal-box {
  width: min(100%, 960px);
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  color: #222;
}
.modal-box { width: min(100%, 420px); }
body.playing {
  padding-bottom: 0;
  background: #ececec;
}
body.playing #siteShell { display: none; }
.play-page {
  display: none;
  min-height: 100vh;
  padding-bottom: 72px;
  background: #ececec;
}
body.playing .play-page { display: block; }
.play-video-wrap {
  background: #000;
  width: 100%;
}
.play-video-wrap video {
  display: block;
  width: 100%;
  max-height: 56vw;
  min-height: 210px;
  background: #000;
  border-radius: 0;
}
.play-lines {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px 10px;
  background: #fff;
}
.line-btn {
  height: 38px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  color: #333;
  font-size: 14px;
  cursor: pointer;
}
.line-btn.active {
  border: none;
  color: #fff;
  background: linear-gradient(90deg, #8f63ff, #4f8cff);
  font-weight: bold;
}
.play-token-card {
  margin: 10px;
  padding: 14px 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, #4b2d86 0%, #6b3f9e 100%);
  color: #fff;
}
.play-token-label {
  font-size: 14px;
  margin-bottom: 10px;
}
.play-token-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.play-token-code {
  font-size: 28px;
  font-weight: bold;
  color: #ffe566;
  letter-spacing: 3px;
}
.play-token-copy {
  border: none;
  border-radius: 6px;
  background: linear-gradient(90deg, #ff5db1, #c44dff);
  color: #fff;
  font-size: 14px;
  padding: 8px 16px;
  cursor: pointer;
  white-space: nowrap;
}
.play-token-hint {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,.92);
}
.play-promo {
  margin: 10px;
  padding: 10px;
  text-align: center;
  background: #fff3e0;
  border: 1px solid #ffd6a8;
  border-radius: 8px;
  color: #a64b00;
  font-size: 14px;
}
.play-rec-title {
  margin: 0 10px 8px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
.play-rec-grid {
  padding: 0 10px;
}
.play-home-btn {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  height: 48px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #ff8a00, #ff5a00);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  z-index: 12;
  box-shadow: 0 4px 12px rgba(255,90,0,.35);
}
.play-token-save-modal { z-index: 40; }
.play-token-save-box {
  width: min(100%, 360px);
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
}
.play-save-head {
  background: linear-gradient(90deg, #e60012, #ff6a00);
  color: #fff;
  text-align: center;
  font-size: 17px;
  font-weight: bold;
  padding: 14px 12px;
}
.play-save-body { padding: 14px; background: #fff; }
.play-save-warn {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 12px;
}
.play-save-card {
  background: linear-gradient(135deg, #2f2558 0%, #4a3278 100%);
  border-radius: 10px;
  padding: 14px 12px;
  color: #fff;
  margin-bottom: 12px;
}
.play-save-row { margin-bottom: 12px; font-size: 14px; }
.play-save-code-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
}
.play-save-code-row strong {
  font-size: 30px;
  color: #ffe566;
  letter-spacing: 3px;
}
.play-save-copy {
  border: none;
  border-radius: 6px;
  background: linear-gradient(90deg, #ff5db1, #c44dff);
  color: #fff;
  padding: 8px 14px;
  cursor: pointer;
  white-space: nowrap;
}
.play-save-account {
  border-top: 1px dashed rgba(255,255,255,.35);
  padding-top: 10px;
  font-size: 13px;
  line-height: 1.8;
}
.play-save-account strong { color: #fff; }
.play-save-expire {
  background: #f3f3f3;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  color: #444;
  margin-bottom: 14px;
}
.play-save-close-btn {
  width: 100%;
  height: 46px;
  border: none;
  border-radius: 8px;
  background: #e60012;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}
.purchase-modal { padding: 14px 10px; z-index: 35; }
.purchase-box {
  width: min(100%, 380px);
  padding: 12px;
  border: 3px solid #e60012;
  border-radius: 10px;
  max-height: 92vh;
  overflow-y: auto;
}
.purchase-previews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 10px;
}
.purchase-preview {
  aspect-ratio: 3 / 4;
  background: #ddd center / cover no-repeat;
  border-radius: 4px;
  overflow: hidden;
}
.purchase-title {
  font-size: 13px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 12px;
  max-height: 60px;
  overflow: hidden;
}
.purchase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}
.purchase-btn {
  min-height: 44px;
  border: none;
  border-radius: 6px;
  background: #e60012;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.35;
  padding: 8px 6px;
  cursor: pointer;
}
.purchase-think {
  width: 100%;
  height: 42px;
  border: none;
  border-radius: 6px;
  background: #555;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  margin-bottom: 10px;
}
.purchase-token-box {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 8px;
  padding: 10px 12px;
}
.purchase-token-row {
  font-size: 13px;
  color: #333;
  margin-bottom: 6px;
}
.purchase-token-code-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 6px;
}
.purchase-token-code-row strong {
  font-size: 22px;
  color: #e60012;
  letter-spacing: 2px;
}
.purchase-token-copy {
  border: none;
  border-radius: 4px;
  background: #00a854;
  color: #fff;
  font-size: 13px;
  padding: 6px 12px;
  cursor: pointer;
  white-space: nowrap;
}
.purchase-token-tip {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}
.close {
  float: right;
  border: none;
  background: #eee;
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
}
.package {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 8px;
  margin: 8px 0;
}
.package button {
  border: none;
  background: linear-gradient(90deg, #ff5db1, #8f63ff);
  color: #fff;
  border-radius: 6px;
  padding: 8px 14px;
  cursor: pointer;
}
.bookmark-modal { padding: 16px 12px; }
.bookmark-popup {
  position: relative;
  width: min(100%, 360px);
  padding: 22px 16px 16px;
  border: 4px solid #ff5db1;
  border-radius: 4px;
  text-align: center;
}
.bookmark-x {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: #ddd;
  color: #666;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}
.bookmark-title {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: bold;
  background: linear-gradient(180deg, #d4a017 0%, #8b6914 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bookmark-guide {
  margin: 0 0 14px;
  color: #e60000;
  font-size: 13px;
  line-height: 1.6;
  text-align: left;
}
.bookmark-site-row {
  margin-bottom: 10px;
  font-size: 15px;
}
.bookmark-label {
  color: #d4a017;
  font-weight: bold;
}
.bookmark-site {
  color: #00c800;
  font-weight: bold;
  font-size: 18px;
  word-break: break-all;
}
.bookmark-url-hidden {
  display: none;
}
.bookmark-qr-label {
  margin: 12px 0 8px;
  font-size: 14px;
  color: #222;
}
.bookmark-qr {
  margin: 0 auto 14px;
  padding: 8px;
  border: none;
  background: #fff;
}
.bookmark-qr img {
  width: 200px;
  height: 200px;
}
.bookmark-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.btn-copy, .btn-close-popup {
  height: 46px;
  border: none;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}
.btn-copy { background: #2f7cf6; }
.btn-close-popup { background: #f5c400; color: #333; }
.token-login-modal { padding: 20px 14px; }
.token-login-box {
  position: relative;
  width: min(100%, 360px);
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
}
.token-login-x {
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  color: #666;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.token-login-head {
  background: #e60012;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  padding: 14px 12px;
}
.token-login-body {
  background: #fff;
  padding: 16px 14px 18px;
}
.token-login-tip {
  margin: 0 0 12px;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
}
.token-login-icon { margin-right: 4px; }
.token-login-alert {
  background: #fff7d6;
  border: 1px solid #f0e2a0;
  color: #333;
  font-size: 13px;
  line-height: 1.6;
  padding: 10px 12px;
  margin-bottom: 14px;
  text-align: left;
}
.token-login-input {
  width: 100%;
  height: 42px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0 12px;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.token-login-btn {
  width: 100%;
  height: 44px;
  border: none;
  border-radius: 4px;
  background: #e60012;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}
.account-actions { display: grid; gap: 10px; margin-top: 14px; }
.account-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #fff;
}
.account-tab {
  border: none;
  background: #f5f5f5;
  color: #666;
  padding: 12px 6px;
  font-size: 14px;
  cursor: pointer;
}
.account-tab.active {
  background: #fff;
  color: #e60012;
  font-weight: bold;
}
.account-panel { display: none; }
.account-panel.active { display: block; }
.account-text-input { text-transform: none; letter-spacing: 0; }
.register-success-box {
  text-align: center;
  padding: 8px 0 4px;
}
.register-success-title {
  font-size: 16px;
  font-weight: bold;
  color: #e60012;
  margin-bottom: 10px;
}
.register-success-token {
  font-size: 32px;
  letter-spacing: 4px;
  color: #e60012;
  font-weight: bold;
  margin-bottom: 8px;
}
.register-success-tip {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 12px;
}
.pay-modal { padding: 20px 14px; }
.pay-box {
  position: relative;
  width: min(100%, 360px);
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}
.pay-head {
  background: #1677ff;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  padding: 14px 12px;
}
.pay-amount-row {
  padding: 16px 14px 8px;
  font-size: 16px;
  text-align: center;
}
.pay-amount-row strong { color: #e60012; font-size: 24px; }
.pay-order-tip {
  padding: 0 14px 12px;
  font-size: 13px;
  color: #666;
  text-align: center;
}
.pay-channel-list { padding: 0 14px 10px; }
.pay-channel-btn {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 6px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}
.pay-channel-alipay { background: #1677ff; }
.token-login-cancel {
  display: block;
  width: 100%;
  margin-top: 14px;
  border: none;
  background: none;
  color: #666;
  font-size: 14px;
  cursor: pointer;
}
.bookmark-url {
  background: #f7f7fa;
  border-radius: 6px;
  padding: 10px;
  word-break: break-all;
  font-size: 13px;
  margin: 10px 0;
}
.qr-wrap {
  margin-top: 14px;
  padding: 12px;
  border: 1px solid #eee;
  border-radius: 8px;
  text-align: center;
  background: #fff;
}
.qr-wrap img {
  display: block;
  margin: 0 auto;
  width: 180px;
  height: 180px;
  background: #fff;
}
.qr-tip {
  margin: 10px 0 0;
  color: #888;
  font-size: 13px;
}

.account-modal-box { padding: 0; overflow: hidden; }
.account-tabs-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(90deg, #ff4d6d, #c850c0);
  padding-top: 8px;
}
.account-tabs-head .account-tab {
  background: transparent;
  color: rgba(255,255,255,.75);
  border: none;
  border-bottom: 3px solid transparent;
  padding: 14px 8px 12px;
  font-size: 16px;
}
.account-tabs-head .account-tab.active {
  color: #fff;
  font-weight: bold;
  border-bottom-color: #fff;
  background: transparent;
}
.auth-mode-toggle {
  display: block;
  width: 100%;
  margin-top: 10px;
  border: none;
  background: none;
  color: #e60012;
  font-size: 14px;
  cursor: pointer;
}
.login-success-toast {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(-120%);
  z-index: 100010;
  background: rgba(76, 175, 80, .95);
  color: #fff;
  padding: 10px 18px;
  border-radius: 24px;
  font-size: 14px;
  transition: transform .25s ease;
  pointer-events: none;
}
.login-success-toast.on { transform: translateX(-50%) translateY(0); }
.login-success-modal { padding: 16px; }
.login-success-box {
  width: min(100%, 360px);
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.login-success-token-card {
  margin: 16px;
  padding: 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, #fff4d6, #ffe08a);
}
.login-success-token-label { font-size: 15px; font-weight: bold; color: #8a5a00; }
.login-success-token-code {
  font-size: 36px;
  letter-spacing: 6px;
  font-weight: bold;
  color: #111;
  margin: 10px 0;
}
.login-success-token-tip { font-size: 13px; line-height: 1.5; color: #6b4d00; }
.login-success-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 16px 16px;
}
.login-stat-item {
  background: #f7f7fa;
  border-radius: 8px;
  padding: 14px 10px;
  text-align: center;
}
.login-stat-item strong { display: block; font-size: 22px; color: #1677ff; margin-bottom: 4px; }
.login-stat-item span { font-size: 13px; color: #666; }
.login-success-close {
  display: block;
  width: calc(100% - 32px);
  margin: 0 16px 16px;
  height: 46px;
  border: none;
  border-radius: 24px;
  background: linear-gradient(90deg, #7b61ff, #b44dff);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}
.pay-sheet-modal {
  align-items: flex-end;
  padding: 0;
}
.pay-sheet-mask {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}
.pay-sheet {
  position: relative;
  z-index: 2;
  width: 100%;
  background: #fff;
  border-radius: 16px 16px 0 0;
  padding: 0 0 calc(12px + env(safe-area-inset-bottom));
}
.pay-sheet-head {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 16px 44px;
  font-size: 17px;
  font-weight: bold;
  border-bottom: 1px solid #f0f0f0;
}
.pay-sheet-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: none;
  background: #f2f2f2;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.pay-sheet-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px;
}
.pay-sheet-btn {
  position: relative;
  min-height: 92px;
  border: none;
  border-radius: 10px;
  background: #1677ff;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}
.pay-sheet-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #fff;
  color: #1677ff;
  font-size: 20px;
  font-weight: bold;
  display: grid;
  place-items: center;
}
.pay-sheet-name { font-size: 14px; font-weight: bold; }
.pay-rec-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #ff4d4f;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 0 10px 0 10px;
}
.account-actions { display: grid; gap: 10px; margin-top: 14px; }
