* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.bbs-section {
  background: #16020d;
  padding: 4rem 2rem;
  font-family: "Fustat", sans-serif;
}
.bbs-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(174, 61, 125, 0.15);
  border: 1px solid rgba(174, 61, 125, 0.4);
  color: #ae3d7d;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.bbs-title {
  color: #f5f5f4;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.bbs-title span {
  color: #ae3d7d;
}
.bbs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1280px;
  width: 100%;
  margin: 2.5rem auto 0;
}
.iphone {
  width: 280px;
  height: 580px;
  background: #0d0d0d;
  border-radius: 40px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  margin: 0 auto;
}
.iphone-screen {
  background: #111118;
  border-radius: 32px;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.iphone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 24px;
  background: #0d0d0d;
  border-radius: 0 0 14px 14px;
  z-index: 10;
}
.iphone-notch::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  background: #1a1a1a;
  border-radius: 50%;
}
.pm-toast {
  position: absolute;
  top: 56px;
  left: 12px;
  right: 12px;
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(174, 61, 125, 0.3);
  border-radius: 12px;
  padding: 9px 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(-6px);
  transition: all 0.3s;
  z-index: 20;
  pointer-events: none;
}
.pm-toast.show {
  opacity: 1;
  transform: translateY(0);
}
.pm-toast-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.2s;
}
.pm-toast-text {
  font-size: 10px;
  color: #f5f5f4;
  font-weight: 500;
}
.app-header {
  padding: 32px 16px 18px;
  position: relative;
  overflow: hidden;
  background: #1b1b1b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.app-header::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: rgba(174, 61, 125, 0.2);
  border-radius: 50%;
  filter: blur(24px);
}
.app-header::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 10px;
  width: 70px;
  height: 70px;
  background: rgba(228, 110, 47, 0.15);
  border-radius: 50%;
  filter: blur(20px);
}
.app-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.app-logo {
  font-size: 13px;
  font-weight: 700;
  color: #f5f5f4;
  letter-spacing: 0.5px;
}
.app-logo span {
  color: #ae3d7d;
}
.app-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ae3d7d, #e46e2f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  font-weight: 700;
}
.balance-lbl {
  font-size: 10px;
  color: rgba(245, 245, 244, 0.45);
  margin-bottom: 3px;
  position: relative;
  z-index: 1;
}
.balance-val {
  font-size: 22px;
  font-weight: 700;
  color: #f5f5f4;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}
.balance-cur {
  font-size: 11px;
  color: rgba(245, 245, 244, 0.45);
  margin-top: 1px;
  position: relative;
  z-index: 1;
}
.app-body {
  flex: 1;
  background: #111118;
  padding: 12px 10px 0;
  overflow: hidden;
}
.app-section-title {
  font-size: 9px;
  font-weight: 700;
  color: rgba(245, 245, 244, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 9px;
}
.pay-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pay-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 11px;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  transition: all 0.15s;
  width: 100%;
  text-align: left;
}
.pay-item:hover,
.pay-item:focus {
  background: rgba(174, 61, 125, 0.08);
  border-color: rgba(174, 61, 125, 0.25);
  outline: none;
}
.pay-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.pay-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}
.pay-info {
  flex: 1;
  min-width: 0;
}
.pay-name {
  font-size: 11px;
  font-weight: 700;
  color: #f5f5f4;
  line-height: 1.1;
  margin-bottom: 1px;
}
.pay-sub {
  font-size: 9px;
  color: rgba(245, 245, 244, 0.4);
}
.tgl {
  width: 32px;
  height: 18px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  cursor: pointer;
  transition: background 0.25s;
  flex-shrink: 0;
}
.tgl.on {
  background: linear-gradient(90deg, #ae3d7d, #e46e2f);
}
.tgl-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.25s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.tgl.on .tgl-thumb {
  transform: translateX(14px);
}
.app-send {
  margin: 8px 10px 10px;
  background: linear-gradient(90deg, #ae3d7d, #e46e2f);
  border-radius: 11px;
  padding: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: opacity 0.2s;
  border: none;
  width: calc(100% - 20px);
}
.app-send:hover {
  opacity: 0.88;
}
.app-send svg {
  color: #fff;
}
.app-send span {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}
.secure-badge {
  position: absolute;
  bottom: -16px;
  right: -12px;
  background: #1b1b1b;
  border: 1px solid rgba(174, 61, 125, 0.35);
  border-radius: 20px;
  padding: 7px 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #f5f5f4;
}
.secure-badge svg {
  color: #e46e2f;
}
.pm-right {
  width: 100%;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.methods-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: rgba(245, 245, 244, 0.35);
  margin-bottom: 4px;
}
.method-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.2s;
}
.method-card:hover {
  border-color: rgba(174, 61, 125, 0.3);
}
.method-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}
.method-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 9px;
}
.method-info {
  flex: 1;
}
.method-name {
  font-size: 13px;
  font-weight: 600;
  color: #f5f5f4;
  margin-bottom: 2px;
}
.method-type {
  font-size: 11px;
  color: rgba(245, 245, 244, 0.4);
}
.method-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.method-badge.active {
  background: rgba(228, 110, 47, 0.18);
  color: #e46e2f;
  border: 1px solid rgba(228, 110, 47, 0.3);
}
.method-badge.inactive {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 245, 244, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 16px;
}
.stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
}
.stat-val {
  font-size: 16px;
  font-weight: 700;
  color: #f5f5f4;
  margin-bottom: 3px;
}
.stat-lbl {
  font-size: 10px;
  color: rgba(245, 245, 244, 0.4);
  line-height: 1.3;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
@media (max-width: 640px) {
  .bbs-grid {
    grid-template-columns: 1fr;
  }
  .pm-right {
    order: -1;
  }
}
