*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --bg-deep: #0d0820;
  --bg-primary: #151033;
  --bg-card: rgba(30, 27, 75, 0.62);
  --bg-card-solid: #1e1b4b;
  --border-subtle: rgba(99, 102, 241, 0.15);
  --text-primary: #ffffff;
  --text-secondary: #a5a3b8;
  --text-muted: #6b6880;
  --accent-green: #10b981;
  --accent-green-light: #34d399;
  --accent-gold: #f59e0b;
  --accent-orange: #f97316;
  --accent-pink: #ec4899;
  --gradient-balance: linear-gradient(135deg, #5b6deb 0%, #764ba2 50%, #8b5cf6 100%);
  --gradient-banner: linear-gradient(135deg, #059669 0%, #10b981 100%);
  --gradient-btn: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  --gradient-badge: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  background: #05030f;
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
}

.app-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: #05030f;
}

.phone-frame {
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  background: url('back.png') no-repeat center center / cover, linear-gradient(180deg, #1a1040 0%, #150d34 40%, #0f0a28 100%);
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(15, 10, 36, 0.15) 0%, rgba(21, 13, 52, 0.25) 50%, rgba(15, 10, 36, 0.35) 100%);
  pointer-events: none;
  z-index: 0;
}

.phone-frame > * {
  position: relative;
  z-index: 1;
}

/* ===== Status Bar ===== */
.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.status-time {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.status-icons {
  display: flex;
  gap: 5px;
  align-items: center;
  opacity: 0.9;
}

/* ===== Page Content ===== */
.page-content {
  padding: 4px 20px 20px;
}

/* ===== User Section ===== */
.user-section {
  margin-bottom: 18px;
  padding-top: 4px;
}

.user-info {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #ff9a56 0%, #ff6b35 100%);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.avatar svg {
  display: block;
}

.online-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 16px;
  height: 16px;
  background: var(--accent-green);
  border: 2.5px solid #1a1040;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.user-details {
  flex: 1;
  min-width: 0;
  padding-top: 2px;
}

.user-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.user-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.3px;
}

.level-badge {
  background: var(--gradient-badge);
  color: #1a1040;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 8px;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.user-id-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.user-id-label {
  font-size: 13px;
  color: var(--text-secondary);
}

.copy-btn {
  font-size: 12px;
  color: var(--accent-green-light);
  cursor: pointer;
  padding: 1px 6px;
  transition: opacity 0.2s;
}

.copy-btn:hover {
  opacity: 0.8;
}

.status-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
}

.status-badge.online {
  color: var(--accent-green-light);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
}

.switch-status {
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
}

.settings-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
}

.settings-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

/* ===== Balance Card ===== */
.balance-card {
  background: var(--gradient-balance);
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(91, 109, 235, 0.3);
}

.balance-decor {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.decor-symbol {
  position: absolute;
  color: rgba(255, 255, 255, 0.12);
  font-weight: 700;
  font-size: 80px;
  top: -20px;
  right: 40px;
  line-height: 1;
}

.decor-symbol.small {
  font-size: 40px;
  top: 40px;
  right: 140px;
  opacity: 0.6;
}

.decor-bar {
  position: absolute;
  bottom: 10px;
  right: 20px;
  width: 8px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

.decor-bar.short {
  right: 50px;
  height: 25px;
  background: rgba(255, 255, 255, 0.1);
}

.balance-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.balance-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.balance-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
}

.balance-amount {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
}

.amount-value {
  font-size: 30px;
}

.withdraw-btn {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 3px;
  transition: all 0.2s;
}

.withdraw-btn:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* ===== Order Section ===== */
.order-section {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 18px 16px 16px;
  margin-bottom: 14px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 4px;
}

.section-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
}

.view-all {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
}

.order-status-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.status-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 4px 0;
}

.status-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.status-item:active .status-icon-box {
  transform: scale(0.92);
}

.box-purple {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(99, 102, 241, 0.1));
  color: #a5b4fc;
}

.box-amber {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.25), rgba(251, 191, 36, 0.08));
  color: #fbbf24;
}

.box-green {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(16, 185, 129, 0.08));
  color: var(--accent-green-light);
}

.box-violet {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(139, 92, 246, 0.08));
  color: #c4b5fd;
}

.status-label {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ===== Quick Actions ===== */
.quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.quick-item {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.quick-item:active {
  transform: scale(0.97);
}

.quick-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-team {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.2));
  color: #a5b4fc;
}

.quick-deposit {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(217, 119, 6, 0.2));
  color: #fbbf24;
}

/* ===== Banner ===== */
.banner-card {
  background: var(--gradient-banner);
  border-radius: 18px;
  padding: 18px 20px;
  margin-bottom: 14px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.banner-bg-decor {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.banner-text {
  flex: 1;
  padding-right: 10px;
}

.banner-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.banner-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.banner-character {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.banner-character svg {
  width: 100%;
  height: 100%;
}

/* ===== Menu List ===== */
.menu-list {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  overflow: hidden;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item:active {
  background: rgba(255, 255, 255, 0.04);
}

.menu-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.mi-orange { background: linear-gradient(135deg, #fb923c, #f97316); }
.mi-purple { background: linear-gradient(135deg, #a78bfa, #8b5cf6); }
.mi-blue { background: linear-gradient(135deg, #60a5fa, #3b82f6); }
.mi-green { background: linear-gradient(135deg, #34d399, #10b981); }
.mi-pink { background: linear-gradient(135deg, #f472b6, #ec4899); }
.mi-amber { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.mi-cyan { background: linear-gradient(135deg, #22d3ee, #06b6d4); }
.mi-red { background: linear-gradient(135deg, #f87171, #ef4444); }

.menu-label {
  flex: 1;
  font-size: 15px;
  color: var(--text-primary);
}

.menu-arrow {
  color: var(--text-muted);
  flex-shrink: 0;
}

.bottom-space {
  height: 20px;
}

/* ===== Bottom Nav ===== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  height: 64px;
  background: rgba(15, 10, 36, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  padding: 4px 4px 0;
  z-index: 100;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 4px 6px;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.2s;
  background: none;
  border: none;
  flex: 1;
  font-family: inherit;
}

.nav-item.active {
  color: var(--accent-green-light);
}

.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9a56 0%, #ff6b35 100%);
  color: white;
}

.nav-label {
  font-size: 11px;
  font-weight: 500;
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  max-width: 280px;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ===== Page Header (sub pages) ===== */
.page-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(21, 13, 52, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.back-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.back-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.page-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

/* ===== Order Tabs ===== */
.order-tabs {
  display: flex;
  gap: 8px;
  padding: 16px 20px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.order-tab {
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  font-size: 13px;
  border-radius: 18px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.order-tab.active {
  background: var(--accent-green);
  color: white;
  border-color: var(--accent-green);
}

/* ===== Order List ===== */
.order-list {
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 16px;
}

.order-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.order-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.order-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-gold);
}

.order-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.5;
}

.order-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.order-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.order-action-btn {
  padding: 7px 16px;
  background: var(--gradient-btn);
  border: none;
  color: white;
  font-size: 13px;
  font-weight: 600;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.2s;
}

.order-action-btn:active {
  transform: scale(0.95);
}

.order-status-tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  border-radius: 8px;
  font-weight: 500;
}

.order-status-tag.pending_start { background: rgba(99, 102, 241, 0.2); color: #a5b4fc; }
.order-status-tag.in_progress { background: rgba(251, 191, 36, 0.2); color: #fbbf24; }
.order-status-tag.pending_settle { background: rgba(16, 185, 129, 0.2); color: var(--accent-green-light); }
.order-status-tag.completed { background: rgba(139, 92, 246, 0.2); color: #c4b5fd; }

/* ===== Hall ===== */
.hall-filters {
  display: flex;
  gap: 8px;
  padding: 16px 20px;
  overflow-x: auto;
}

.filter-chip {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-secondary);
  font-size: 13px;
  border-radius: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.filter-chip.active {
  background: var(--accent-green);
  color: white;
}

.hall-list {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hall-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 16px;
}

.hall-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.hall-reward {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-gold);
}

.hall-reward-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-right: 2px;
}

.hall-time {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted);
}

.hall-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.5;
}

.hall-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hall-tags {
  display: flex;
  gap: 6px;
}

.hall-tag {
  padding: 3px 10px;
  background: rgba(99, 102, 241, 0.2);
  color: #a5b4fc;
  font-size: 11px;
  border-radius: 8px;
}

.grab-btn {
  padding: 9px 20px;
  background: var(--gradient-btn);
  border: none;
  color: white;
  font-size: 14px;
  font-weight: 700;
  border-radius: 18px;
  cursor: pointer;
  transition: transform 0.2s;
}

.grab-btn:active {
  transform: scale(0.95);
}

/* ===== Messages ===== */
.message-list {
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.message-item {
  display: flex;
  gap: 12px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 14px;
  cursor: pointer;
}

.message-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.message-body {
  flex: 1;
  min-width: 0;
}

.message-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.message-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.message-time {
  font-size: 12px;
  color: var(--text-muted);
}

.message-preview {
  font-size: 13px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.unread-badge {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  margin-left: 6px;
  display: inline-block;
}

/* ===== Placeholder ===== */
.placeholder-content {
  padding: 40px 20px;
  text-align: center;
}

.placeholder-icon {
  font-size: 64px;
  margin-bottom: 16px;
}

.placeholder-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.placeholder-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ===== Withdraw ===== */
.withdraw-info {
  background: var(--gradient-balance);
  border-radius: 18px;
  padding: 24px;
  margin: 20px;
  text-align: center;
}

.withdraw-balance {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}

.withdraw-amount {
  font-size: 40px;
  font-weight: 700;
  color: white;
}

.withdraw-form {
  padding: 0 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}

.form-input:focus {
  border-color: var(--accent-green);
  background: rgba(255, 255, 255, 0.08);
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--gradient-btn);
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 700;
  border-radius: 14px;
  cursor: pointer;
  margin-top: 12px;
}

/* ===== Deposit ===== */
.deposit-summary {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 24px;
  margin: 20px;
  text-align: center;
}

.deposit-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.deposit-amount {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-gold);
}

.deposit-actions {
  display: flex;
  gap: 12px;
  padding: 0 20px;
  margin-bottom: 20px;
}

.deposit-btn {
  flex: 1;
  padding: 14px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  border-radius: 14px;
  cursor: pointer;
}

/* ===== Team ===== */
.team-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px;
}

.team-stat-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
}

.team-stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-green-light);
  margin-bottom: 4px;
}

.team-stat-label {
  font-size: 12px;
  color: var(--text-muted);
}

.team-list {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.team-member {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 14px;
}

.team-member-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.team-member-info {
  flex: 1;
}

.team-member-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-member-role {
  font-size: 12px;
  color: var(--text-muted);
}

.team-member-status {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.team-member-status.online {
  background: var(--accent-green);
}

.team-member-status.offline {
  background: var(--text-muted);
}

/* ===== Responsive ===== */
@media (max-width: 480px) {
  .phone-frame {
    min-height: 100vh;
    max-width: 100%;
  }
  
  .app-container {
    padding: 0;
  }
}

@media (min-width: 768px) {
  .phone-frame {
    border-radius: 24px;
    margin: 20px 0;
    min-height: calc(100vh - 40px);
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.5);
  }
}
