/* ============================================
   PGWC CLUB - 掼蛋俱乐部记分本
   Brand: 藏青 #1a2332 / 印章红 #c8252c
   ============================================ */

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { height: 100%; font-family: -apple-system, 'PingFang SC', 'Helvetica Neue', sans-serif; }
body { display: flex; justify-content: center; align-items: center; background: #e8e8e8; min-height: 100vh; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }
input { font-family: inherit; outline: none; }

/* Phone Frame */
#phone-frame {
  width: 375px;
  height: 812px;
  background: #f5f5f5;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
}
@media (max-width: 420px) {
  body { background: #f5f5f5; }
  #phone-frame { width: 100vw; height: 100vh; border-radius: 0; box-shadow: none; }
}

/* Status Bar */
#status-bar {
  height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background: #1a2332;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}
.status-time { letter-spacing: 1px; }
.status-icons { font-size: 12px; }

/* Nav Header */
#nav-header {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: #1a2332;
  color: #fff;
  flex-shrink: 0;
  position: relative;
}
.nav-back {
  width: 30px;
  font-size: 24px;
  cursor: pointer;
  text-align: center;
}
.nav-title {
  font-size: 17px;
  font-weight: 600;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-right { min-width: 30px; text-align: right; font-size: 14px; }

/* Content Area */
#app-content {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
}
#app-content::-webkit-scrollbar { display: none; }

/* Bottom Tab Bar */
#tab-bar {
  height: 60px;
  display: flex;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  flex-shrink: 0;
  padding-bottom: env(safe-area-inset-bottom);
}
.tab-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #999;
  transition: color 0.2s;
}
.tab-item.active { color: #c8252c; }
.tab-icon { font-size: 22px; }
.tab-label { font-size: 11px; }

/* ============ Common Components ============ */
.card {
  background: #fff;
  border-radius: 12px;
  margin: 12px 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.card-title {
  font-size: 15px;
  font-weight: 600;
  color: #1a2332;
  padding: 14px 16px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.btn-primary {
  background: #c8252c;
  color: #fff;
  border-radius: 24px;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  transition: opacity 0.2s;
}
.btn-primary:active { opacity: 0.8; }
.btn-primary:disabled { background: #ccc; }
.btn-secondary {
  background: #fff;
  color: #1a2332;
  border: 1px solid #1a2332;
  border-radius: 24px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
}
.btn-ghost {
  background: transparent;
  color: #c8252c;
  border: 1px solid #c8252c;
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 14px;
}
.section-gap { height: 12px; }
.text-muted { color: #999; font-size: 13px; }
.text-accent { color: #c8252c; }
.text-navy { color: #1a2332; }
.tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
}
.tag-red { background: #fde8e8; color: #c8252c; }
.tag-green { background: #e8f5e9; color: #2e7d32; }
.tag-gray { background: #f0f0f0; color: #999; }
.tag-navy { background: #e8eaf6; color: #1a2332; }

/* ============ Login Page ============ */
.login-page {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: linear-gradient(180deg, #1a2332 0%, #2d3e50 100%);
  color: #fff;
  padding: 40px;
}
.login-logo {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: #c8252c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 16px;
}
.login-title { font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.login-subtitle { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 48px; }
.login-btn {
  background: #07c160;
  color: #fff;
  border-radius: 24px;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.login-policy { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 20px; text-align: center; line-height: 1.6; }

/* ============ Ranking Page ============ */
.ranking-tabs {
  display: flex;
  background: #fff;
  padding: 0 16px;
  border-bottom: 1px solid #f0f0f0;
}
.ranking-tab {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  font-size: 15px;
  color: #999;
  position: relative;
  font-weight: 500;
}
.ranking-tab.active {
  color: #1a2332;
  font-weight: 600;
}
.ranking-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 3px;
  background: #c8252c;
  border-radius: 2px;
}
.ranking-list { padding-bottom: 16px; }
.rank-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #f5f5f5;
  gap: 12px;
}
.rank-item.me {
  background: #f2f4f8;
  border-left: 3px solid #1a2332;
}
.rank-item.me .rank-name { color: #1a2332; font-weight: 700; }
.rank-item.me .rank-score { color: #c8252c; }
.rank-num {
  width: 28px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #999;
}
.rank-num.top-1 { color: #ffb800; font-size: 18px; }
.rank-num.top-2 { color: #aaa; font-size: 18px; }
.rank-num.top-3 { color: #cd7f32; font-size: 18px; }
.rank-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.rank-info { flex: 1; min-width: 0; }
.rank-name { font-size: 15px; font-weight: 500; color: #333; }
.rank-sub { font-size: 12px; color: #999; margin-top: 2px; }
.rank-score { font-size: 18px; font-weight: 700; color: #1a2332; }
.rank-arrow { font-size: 14px; margin-left: 4px; }
.rank-arrow.up { color: #c8252c; }
.rank-arrow.down { color: #2e7d32; }
.rank-arrow.flat { color: #ccc; }

/* ============ Scoring Page ============ */
.scoring-section { margin-bottom: 8px; }
.scoring-section .card-title { padding-bottom: 12px; }
.pending-item {
  padding: 12px 16px;
  border-top: 1px solid #f5f5f5;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pending-item:first-child { border-top: none; }
.pending-info { flex: 1; }
.pending-players { font-size: 14px; color: #333; }
.pending-result { font-size: 12px; color: #999; margin-top: 3px; }
.pending-countdown { font-size: 12px; color: #c8252c; margin-top: 2px; }
.pending-action {
  background: #c8252c;
  color: #fff;
  border-radius: 16px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

/* ============ Game Entry Page ============ */
.entry-section { margin-bottom: 8px; }
.entry-players {
  padding: 8px 16px 16px;
}
.player-pick {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
  gap: 12px;
}
.player-pick:last-child { border-bottom: none; }
.player-slot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.player-slot.empty { border: 2px dashed #ccc; background: transparent; }
.player-slot.winner { border: 2px solid #c8252c; }
.player-slot.loser { border: 2px solid #999; }
.player-name { flex: 1; font-size: 15px; color: #333; }
.player-tag { font-size: 12px; color: #999; }
.pick-btn {
  background: #f0f0f0;
  color: #666;
  border-radius: 16px;
  padding: 6px 14px;
  font-size: 13px;
}
.result-options {
  display: flex;
  gap: 8px;
  padding: 8px 16px 16px;
}
.result-option {
  flex: 1;
  text-align: center;
  padding: 14px 0;
  border-radius: 10px;
  border: 2px solid #e0e0e0;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  transition: all 0.2s;
}
.result-option.selected {
  border-color: #c8252c;
  background: #fde8e8;
  color: #c8252c;
}
.result-option .delta { font-size: 12px; margin-top: 4px; }
.photo-upload {
  margin: 0 16px 16px;
  height: 120px;
  border: 2px dashed #ccc;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #999;
  font-size: 14px;
}
.photo-upload.uploaded { border-style: solid; border-color: #c8252c; }
.photo-upload .icon { font-size: 32px; }

/* ============ Profile Page ============ */
.profile-header {
  background: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
  padding: 24px 20px 20px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
}
.profile-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.profile-name { font-size: 19px; font-weight: 600; }
.profile-status { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 3px; }
.profile-points {
  font-size: 28px;
  font-weight: 700;
  margin-top: 4px;
}
.profile-stats {
  display: flex;
  background: #fff;
  margin: -12px 16px 0;
  border-radius: 12px;
  padding: 16px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: relative;
  z-index: 1;
}
.stat-item { flex: 1; text-align: center; }
.stat-value { font-size: 20px; font-weight: 700; color: #1a2332; }
.stat-label { font-size: 12px; color: #999; margin-top: 4px; }
.menu-list { margin-top: 12px; }
.menu-item {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #f5f5f5;
  gap: 12px;
}
.menu-item:last-child { border-bottom: none; }
.menu-icon { font-size: 20px; width: 24px; text-align: center; }
.menu-label { flex: 1; font-size: 15px; color: #333; }
.menu-arrow { color: #ccc; font-size: 14px; }

/* ============ Career Page ============ */
.career-chart {
  margin: 0 16px 16px;
  height: 160px;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.career-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #f0f0f0;
  margin: 0 16px;
  border-radius: 12px;
  overflow: hidden;
}
.career-stat {
  background: #fff;
  padding: 14px 16px;
  text-align: center;
}
.career-stat .value { font-size: 22px; font-weight: 700; color: #1a2332; }
.career-stat .label { font-size: 12px; color: #999; margin-top: 4px; }

/* ============ Ledger Page ============ */
.ledger-item {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #f5f5f5;
  gap: 12px;
}
.ledger-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.ledger-icon.plus { background: #fde8e8; color: #c8252c; }
.ledger-icon.minus { background: #e8f5e9; color: #2e7d32; }
.ledger-icon.issue { background: #e8eaf6; color: #1a2332; }
.ledger-info { flex: 1; }
.ledger-desc { font-size: 14px; color: #333; }
.ledger-time { font-size: 12px; color: #999; margin-top: 2px; }
.ledger-delta { font-size: 16px; font-weight: 600; }
.ledger-delta.plus { color: #c8252c; }
.ledger-delta.minus { color: #2e7d32; }

/* ============ Game Detail ============ */
.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #f5f5f5;
}
.detail-label { font-size: 14px; color: #999; }
.detail-value { font-size: 14px; color: #333; font-weight: 500; }
.game-players {
  display: flex;
  justify-content: space-around;
  padding: 20px 16px;
}
.game-player {
  text-align: center;
}
.game-player .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 6px;
}
.game-player.winner .avatar { border: 3px solid #c8252c; }
.game-player.loser .avatar { border: 3px solid #999; }
.game-player .name { font-size: 13px; color: #333; }
.game-player .delta { font-size: 14px; font-weight: 600; margin-top: 2px; }
.game-player.winner .delta { color: #c8252c; }
.game-player.loser .delta { color: #2e7d32; }

/* ============ Payment Page ============ */
.payment-page {
  padding: 20px 16px;
}
.payment-amount {
  text-align: center;
  padding: 30px 0 20px;
}
.payment-amount .currency { font-size: 20px; color: #333; }
.payment-amount .number { font-size: 48px; font-weight: 700; color: #1a2332; }
.payment-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}
.payment-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #f5f5f5;
  font-size: 14px;
}
.payment-row:last-child { border-bottom: none; }
.payment-row .label { color: #999; }
.payment-row .value { color: #333; font-weight: 500; }
.payment-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 16px 0;
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}
.payment-checkbox input { margin-top: 2px; }
.payment-checkbox a { color: #c8252c; }

/* ============ Payment Success ============ */
.success-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 40px;
  text-align: center;
}
.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #2e7d32;
  color: #fff;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  animation: pop 0.4s ease;
}
@keyframes pop {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.success-title { font-size: 20px; font-weight: 600; color: #333; margin-bottom: 8px; }
.success-desc { font-size: 14px; color: #999; margin-bottom: 24px; }
.success-points {
  background: #fde8e8;
  border-radius: 12px;
  padding: 16px 32px;
  margin-bottom: 32px;
}
.success-points .label { font-size: 14px; color: #999; }
.success-points .value { font-size: 32px; font-weight: 700; color: #c8252c; }

/* ============ Settings Page ============ */
.settings-group { margin-bottom: 8px; }

/* ============ Modal ============ */
.modal-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal {
  background: #fff;
  border-radius: 16px;
  width: 300px;
  overflow: hidden;
}
.modal-title {
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  padding: 20px 16px 8px;
}
.modal-body { padding: 8px 16px 20px; font-size: 14px; color: #666; line-height: 1.6; }
.modal-actions { display: flex; border-top: 1px solid #f0f0f0; }
.modal-btn {
  flex: 1;
  padding: 14px 0;
  font-size: 16px;
  text-align: center;
}
.modal-btn.cancel { color: #999; border-right: 1px solid #f0f0f0; }
.modal-btn.confirm { color: #c8252c; font-weight: 600; }

/* ============ WeChat Native Auth Dialog ============ */
.wx-auth-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.wx-auth {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 300px;
  padding: 22px 18px 16px;
  text-align: center;
}
.wx-auth-icon {
  width: 48px; height: 48px;
  margin: 0 auto 10px;
  border-radius: 12px;
  background: #07c160;
  color: #fff;
  font-size: 26px;
  display: flex; align-items: center; justify-content: center;
}
.wx-auth-title { font-size: 15px; font-weight: 600; color: #333; line-height: 1.5; margin-bottom: 14px; }
.wx-auth-body { margin-bottom: 16px; }
.wx-auth-user {
  display: flex; align-items: center; gap: 12px;
  background: #f7f7f7; border-radius: 10px;
  padding: 12px; text-align: left;
}
.wx-avatar {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 8px;
  background: #e0e0e0;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.wx-auth-user-info .name { font-size: 15px; font-weight: 600; color: #333; }
.wx-auth-user-info .sub { font-size: 12px; color: #999; margin-top: 2px; }
.wx-auth-actions { display: flex; gap: 10px; }
.wx-auth-btn {
  flex: 1;
  padding: 10px 0;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  user-select: none;
}
.wx-auth-btn.deny { background: #f2f2f2; color: #666; }
.wx-auth-btn.allow { background: #07c160; color: #fff; font-weight: 600; }

/* ============ Player Picker Modal ============ */
.picker-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 100;
  display: flex;
  align-items: flex-end;
}
.picker {
  background: #fff;
  border-radius: 16px 16px 0 0;
  width: 100%;
  max-height: 60%;
  display: flex;
  flex-direction: column;
}
.picker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #f0f0f0;
}
.picker-title { font-size: 16px; font-weight: 600; }
.picker-close { font-size: 20px; color: #999; }
.picker-search {
  padding: 8px 16px;
  border-bottom: 1px solid #f5f5f5;
}
.picker-search input {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
}
.picker-list { overflow-y: auto; flex: 1; }
.picker-item {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid #f5f5f5;
  gap: 12px;
}
.picker-item.selected { background: #fde8e8; }
.picker-item .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: #e0e0e0; display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.picker-item .name { flex: 1; font-size: 15px; }
.picker-item .check { color: #c8252c; font-size: 18px; }

/* ============ Toast ============ */
.toast {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.8);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  z-index: 200;
  animation: fadeIn 0.2s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============ Browsing Prompt ============ */
.browsing-prompt {
  text-align: center;
  padding: 40px 24px;
}
.browsing-prompt .icon { font-size: 48px; margin-bottom: 16px; }
.browsing-prompt .title { font-size: 18px; font-weight: 600; color: #333; margin-bottom: 8px; }
.browsing-prompt .desc { font-size: 14px; color: #999; margin-bottom: 24px; line-height: 1.6; }

/* ============ Empty State ============ */
.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: #ccc;
}
.empty-state .icon { font-size: 40px; margin-bottom: 12px; }
.empty-state .text { font-size: 14px; }

/* ============ Loading ============ */
.loading { text-align: center; padding: 40px; color: #999; font-size: 14px; }

/* ============ Misc ============ */
.divider { height: 1px; background: #f0f0f0; margin: 0 16px; }
.fab {
  position: absolute;
  bottom: 76px;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #c8252c;
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(200,37,44,0.4);
  z-index: 10;
}

/* ===== Recharge Guide (first visit to scoring) ===== */
.recharge-guide {
  padding: 64px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.recharge-guide .guide-icon { font-size: 48px; margin-bottom: 16px; }
.recharge-guide .guide-title { font-size: 19px; font-weight: 700; color: #1a2332; margin-bottom: 8px; }
.recharge-guide .guide-desc { font-size: 14px; color: #888; line-height: 1.7; margin-bottom: 20px; }
.recharge-guide .guide-card {
  width: 100%;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 4px 16px;
  margin-bottom: 16px;
  text-align: left;
}
.recharge-guide .guide-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  font-size: 13px;
  border-bottom: 1px solid #f5f5f5;
}
.recharge-guide .guide-row:last-child { border-bottom: none; }
.recharge-guide .guide-row span:first-child { color: #555; }
.recharge-guide .guide-row span:last-child { color: #1a2332; font-weight: 600; }
.recharge-guide .guide-teaser {
  width: 100%;
  background: #fdf3f3;
  border: 1px solid #f3d9da;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  color: #8a4a4d;
  line-height: 1.6;
  margin-bottom: 24px;
}
.recharge-guide .guide-teaser strong { color: #c8252c; }

/* ===== Build badge (cache diagnosis) ===== */
.login-build {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 10px;
  color: #bbb;
  letter-spacing: 0.5px;
}
