/* Shared styles for manage / profile / vip / recharge / points panels */
#managePanel.page-panel,
#profilePanel.page-panel,
#referralPanel.page-panel {
  background: #f7f8f7;
}
#managePanel .panel-topbar,
#profilePanel .panel-topbar,
#referralPanel .panel-topbar {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  padding: 8px 12px;
}
#managePanel .panel-topbar .panel-title,
#profilePanel .panel-topbar .panel-title,
#referralPanel .panel-topbar .panel-title {
  font-weight: 700;
  color: #355231;
}
.manage-page {
  background: #f7f8f7;
  min-height: auto;
  padding: 0 0 16px;
}
.manage-user-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 18px 8px;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.2s;
  border-bottom: none;
  margin-bottom: 0;
}
.manage-user-header:active { opacity: 0.72; }
.manage-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.manage-avatar.vip {
  background: linear-gradient(135deg, #d4a574 0%, #c9956b 100%);
  box-shadow: 0 2px 8px rgba(212, 165, 116, 0.4);
}
.manage-avatar.svip {
  background: linear-gradient(135deg, #c0c0c0 0%, #a0a0a0 50%, #d4d4d4 100%);
  box-shadow: 0 2px 8px rgba(192, 192, 192, 0.4);
}
.manage-avatar.zsvip {
  background: linear-gradient(135deg, #ffd700 0%, #ffb700 50%, #ff8c00 100%);
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}
.manage-avatar-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  border: 2px solid #fff;
}
.manage-avatar-badge.vip { background: #d4a574; }
.manage-avatar-badge.svip { background: #c0c0c0; }
.manage-avatar-badge.zsvip { background: #ffd700; }
.manage-user-info {
  flex: 1;
}
.manage-user-name {
  font-size: 17px;
  font-weight: 600;
  color: #1f1f1f;
  margin-bottom: 3px;
  letter-spacing: 0.01em;
}
.manage-user-sub {
  font-size: 13px;
  color: #9a9a9a;
}
.manage-arrow {
  font-size: 16px;
  color: #c8c8c8;
}
.manage-vip-card {
  margin: 12px 14px 14px;
  background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 6px 18px rgba(42, 42, 42, 0.18);
}
.manage-vip-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.manage-vip-icon {
  font-size: 24px;
}
.manage-vip-text {
  color: #f5e6c8;
}
.manage-vip-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}
.manage-vip-sub {
  font-size: 12px;
  opacity: 0.8;
}
.manage-vip-btn {
  background: #f5e6c8;
  color: #2a2a2a;
  border: none;
  border-radius: 16px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.manage-vip-btn:active { opacity: .8; }
.manage-menu-list {
  margin: 0 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}
.manage-menu-item {
  display: flex;
  align-items: center;
  padding: 13px 15px;
  background: #fff;
  border-radius: 14px;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.manage-menu-item:active {
  transform: scale(0.985);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}
.manage-menu-icon {
  font-size: 16px;
  margin-right: 12px;
  color: #4a6b4a;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: #f0f4f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
}
.manage-menu-text {
  flex: 1;
  font-size: 15px;
  color: #333;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.manage-menu-arrow {
  font-size: 13px;
  color: #d0d0d0;
}
.manage-signout-btn {
  width: calc(100% - 28px);
  margin: 10px 14px 0;
}
.manage-stats-card {
  margin: 14px;
  padding: 16px 18px;
  background: #fff;
  border: none;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.manage-stats-title {
  font-size: 13px;
  font-weight: 600;
  color: #6e8a68;
  margin-bottom: 10px;
  padding-bottom: 0;
  border-bottom: none;
  letter-spacing: 0.04em;
}
.manage-stats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  background: #f9faf9;
  border-radius: 10px;
  padding: 11px 12px;
}
.manage-stats-row:last-child { border-bottom: none; }
.manage-stats-label { color: #888; }
.manage-stats-value { color: #333; font-weight: 500; }
.manage-version {
  text-align: center;
  padding: 20px 0 8px;
  color: #b8b8b8;
  font-size: 12px;
}
.think-signout-btn {
  display: none;
  width: calc(100% - 28px);
  margin: 14px auto 0;
  padding: 13px 18px;
  border: 1.5px solid rgba(212, 92, 92, 0.28);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #fff8f8 100%);
  color: #cf5a5a;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 12px rgba(212, 92, 92, 0.08);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.think-signout-btn.is-visible {
  display: flex;
}
.think-signout-btn:hover {
  border-color: rgba(212, 92, 92, 0.45);
  box-shadow: 0 4px 16px rgba(212, 92, 92, 0.12);
}
.think-signout-btn:active {
  background: #fff0f0;
  border-color: rgba(212, 92, 92, 0.55);
  transform: scale(0.985);
}
.think-signout-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.think-signout-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.manage-logout {
  display: none;
  width: calc(100% - 28px);
  margin: 10px auto 0;
  padding: 12px;
  border: none;
  border-radius: 12px;
  background: #fff;
  color: #b0b0b0;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.manage-logout.is-visible {
  display: block;
}
.manage-logout:active { background: #f7f7f7; }

.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.auth-overlay.show { display: flex; }
.announcement-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 195;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.announcement-overlay.show { display: flex; }
.announcement-panel {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 360px;
  padding: 24px;
  animation: authSlideIn 0.3s ease;
}
.announcement-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.announcement-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}
.announcement-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.announcement-body {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 50vh;
  overflow-y: auto;
  margin-bottom: 18px;
}
.announcement-foot {
  display: flex;
  justify-content: center;
}
.announcement-ok {
  width: 100%;
  padding: 11px;
  border: none;
  border-radius: 8px;
  background: #000;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
.auth-panel {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 360px;
  padding: 24px;
  animation: authSlideIn 0.3s ease;
}
@keyframes authSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.auth-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.auth-title {
  font-size: 18px;
  font-weight: 700;
  color: #222;
}
.auth-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.auth-mode-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.auth-tab {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: #f0f0f0;
  color: #666;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  display: block;
  user-select: none;
}
#authModeLogin:checked ~ .auth-tabs label[for="authModeLogin"],
#authModeRegister:checked ~ .auth-tabs label[for="authModeRegister"] {
  background: #2a2a2a;
  color: #f5e6c8;
}
.auth-overlay .auth-form {
  display: none !important;
}
#authModeLogin:checked ~ #loginForm {
  display: block !important;
}
#authModeRegister:checked ~ #registerForm {
  display: block !important;
}
#forgotForm.is-forgot {
  display: block !important;
}
.auth-tab.active {
  background: #2a2a2a;
  color: #f5e6c8;
}
.auth-form { display: none; }
.auth-form.active { display: block; }
.auth-input-group {
  margin-bottom: 14px;
}
.auth-input-group label {
  display: block;
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
}
.auth-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.auth-input:focus { border-color: #2a2a2a; }
.auth-sms-group label {
  display: block;
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
}
.auth-sms-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.auth-sms-row .auth-input {
  flex: 1;
  min-width: 0;
  width: auto;
  margin: 0;
  height: 44px;
  padding: 0 14px;
  box-sizing: border-box;
}
.auth-sms-btn {
  flex-shrink: 0;
  height: 44px;
  min-width: 104px;
  padding: 0 12px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background: #fafafa;
  color: #333;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  box-sizing: border-box;
  transition: border-color 0.2s, background 0.2s;
}
.auth-sms-btn:hover:not(:disabled) {
  border-color: #2a2a2a;
  background: #fff;
}
.auth-sms-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  color: #999;
}
.auth-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: #2a2a2a;
  color: #f5e6c8;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
}
.auth-btn:active { opacity: .9; }
.auth-error {
  color: #ff4444;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}
.auth-error.show { display: block; }
.auth-extra-links {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
}
.auth-extra-links a {
  color: #64748b;
  text-decoration: none;
}
.auth-extra-links a:hover { color: #2a2a2a; }
.auth-points-display {
  text-align: center;
  padding: 12px;
  background: #f5e6c8;
  border-radius: 10px;
  margin-bottom: 16px;
}
.auth-points-display .points-num {
  font-size: 28px;
  font-weight: 700;
  color: #2a2a2a;
}
.auth-points-display .points-label {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
}

.points-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.points-overlay.show { display: flex; }
.points-panel {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 400px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 24px;
}
.points-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.points-title {
  font-size: 18px;
  font-weight: 700;
  color: #222;
}
.points-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
}
.points-balance {
  text-align: center;
  padding: 20px;
  background: #f5e6c8;
  border-radius: 12px;
  margin-bottom: 20px;
}
.points-balance-num {
  font-size: 36px;
  font-weight: 700;
  color: #2a2a2a;
}
.points-balance-label {
  font-size: 14px;
  color: #666;
  margin-top: 4px;
}
.points-add-section {
  margin-bottom: 20px;
}
.points-add-title {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
}
.points-add-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.points-add-input {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
}
.points-add-btn {
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  background: #2a2a2a;
  color: #f5e6c8;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.points-history {
  margin-top: 16px;
}
.points-history-title {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}
.points-history-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}
.points-history-item:last-child { border-bottom: none; }
.points-history-desc { color: #333; }
.points-history-amount { font-weight: 600; }
.points-history-amount.positive { color: #2e7d32; }
.points-history-amount.negative { color: #ff4444; }
.points-history-time {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}

.profile-page {
  background: #f7f8f7;
  min-height: 100%;
  padding: 0 0 28px;
}
.profile-header {
  padding: 22px 16px 20px;
  text-align: center;
  margin: 12px 14px 10px;
  background: #fff;
  border: none;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #fff;
  margin: 0 auto 12px;
  position: relative;
  overflow: hidden;
}
.profile-avatar.vip {
  background: linear-gradient(135deg, #d4a574 0%, #c9956b 100%);
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
}
.profile-avatar.svip {
  background: linear-gradient(135deg, #c0c0c0 0%, #a0a0a0 50%, #d4d4d4 100%);
  box-shadow: 0 4px 12px rgba(192, 192, 192, 0.4);
}
.profile-avatar.zsvip {
  background: linear-gradient(135deg, #ffd700 0%, #ffb700 50%, #ff8c00 100%);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}
.profile-avatar-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 2px solid #fff;
}
.profile-avatar-badge.vip { background: #d4a574; }
.profile-avatar-badge.svip { background: #c0c0c0; }
.profile-avatar-badge.zsvip { background: #ffd700; }
.profile-phone {
  font-size: 18px;
  font-weight: 600;
  color: #222;
}
.profile-section {
  margin: 0 14px 10px;
  padding: 16px 18px;
  background: #fff;
  border: none;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.profile-section-title {
  font-size: 13px;
  font-weight: 600;
  color: #6e8a68;
  margin-bottom: 14px;
  padding-bottom: 0;
  border-bottom: none;
  letter-spacing: 0.04em;
}
.profile-input-group {
  margin-bottom: 14px;
}
.profile-input-group label {
  display: block;
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
}
.profile-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ececec;
  border-radius: 12px;
  font-size: 15px;
  outline: none;
  background: #fafafa;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.profile-input:focus {
  border-color: #b8cdb8;
  background: #fff;
}
.profile-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: #2a2a2a;
  color: #f5e6c8;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 4px 12px rgba(42, 42, 42, 0.15);
}
.profile-btn:active { opacity: .9; }
.profile-error {
  color: #ff4444;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}
.profile-error.show { display: block; }
.profile-success {
  color: #2e7d32;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}
.profile-success.show { display: block; }

.profile-page-actions {
  margin: 8px 14px 24px;
}
.profile-page-actions .think-signout-btn {
  width: 100%;
  margin: 0;
}

.vip-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.vip-overlay.show { display: flex; }
.vip-panel {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 400px;
  padding: 24px;
}
.vip-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.vip-title {
  font-size: 18px;
  font-weight: 700;
  color: #222;
}
.vip-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
}
.vip-option {
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.vip-option:hover { border-color: #d4a574; }
.vip-option.selected {
  border-color: #d4a574;
  background: #fdf8f3;
}
.vip-option-name {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
}
.vip-option-price {
  font-size: 24px;
  font-weight: 700;
  color: #d4a574;
  margin-bottom: 4px;
}
.vip-option-price span {
  font-size: 14px;
  color: #999;
  font-weight: normal;
}
.vip-option-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}
.vip-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: #2a2a2a;
  color: #f5e6c8;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
}
.vip-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.recharge-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.recharge-overlay.show { display: flex; }

.profile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 210;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.profile-overlay.show { display: flex; }
.profile-modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 360px;
  padding: 20px 22px 22px;
  box-sizing: border-box;
}
.profile-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.profile-modal-title {
  font-size: 17px;
  font-weight: 700;
  color: #222;
}
.profile-modal-close {
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: #999;
  cursor: pointer;
  padding: 0 2px;
}
.profile-modal-body .profile-input-group {
  margin-bottom: 12px;
}
.profile-modal-body .profile-input-group label {
  display: block;
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
}
.profile-modal-body .profile-input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
}
.profile-modal-body .profile-btn {
  width: 100%;
  margin-top: 8px;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #1a1a1a;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.profile-modal-body .profile-error {
  color: #c62828;
  font-size: 12px;
  min-height: 16px;
  display: none;
  margin-bottom: 4px;
}
.profile-modal-body .profile-error.show { display: block; }
.profile-modal-body .profile-success {
  color: #2e7d32;
  font-size: 12px;
  min-height: 16px;
  display: none;
  margin-bottom: 4px;
}
.profile-modal-body .profile-success.show { display: block; }

.manage-hub-heading {
  padding: 16px 18px 4px;
  font-size: 18px;
  font-weight: 700;
  color: #222;
}
.recharge-panel {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 360px;
  padding: 24px;
}
.recharge-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.recharge-title {
  font-size: 18px;
  font-weight: 700;
  color: #222;
}
.recharge-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
}
.recharge-input-group {
  margin-bottom: 16px;
}
.recharge-input-group label {
  display: block;
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
}
.recharge-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
}
.recharge-input:focus { border-color: #2a2a2a; }
.recharge-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: #2a2a2a;
  color: #f5e6c8;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
}
.recharge-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* points panel markup aliases */
.points-balance-card {
  text-align: center;
  padding: 20px;
  background: #f5e6c8;
  border-radius: 12px;
  margin-bottom: 20px;
}
.points-balance-number {
  font-size: 36px;
  font-weight: 700;
  color: #2a2a2a;
}
.points-history-list {
  margin-top: 8px;
}
