﻿/* TokenZY Global - Deep Blue Neon Theme (matching reference) */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@500;600;700&display=swap');

:root {
  --primary: #1a2a6e;
  --primary-dark: #0d1b42;
  --primary-light: #2d4a9e;
  --primary-glow: #3b5fc8;
  --gold: #f0c840;
  --gold-light: #ffe066;
  --gold-dark: #c9a020;
  --neon-green: #00ffaa;
  --neon-cyan: #4dffdd;
  --bg-dark: #080f24;
  --bg-card: rgba(18, 38, 78, 0.65);
  --bg-card-hover: rgba(26, 52, 100, 0.7);
  --text-primary: #ffffff;
  --text-secondary: #7a94c4;
  --text-gold: #f0c840;
  --success: #22c55e;
  --danger: #ef4444;
  --warning: #f59e0b;
  --border: rgba(100, 140, 200, 0.12);
  --blue-light: #87CEEB;
  --blue-mid: #4A90C2;
  --blue-sea: #2d6a9f;
  --blue-dark: #1a4a7a;
  --blue-highlight: #ADD8E6;
  --blue-glow: rgba(135,206,235,0.3);
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --glass-border: rgba(100, 160, 255, 0.15);
  --radius: 14px;
  --radius-sm: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  height: 100%;
  font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  background: linear-gradient(rgba(0,0,10,0.65), rgba(5,5,25,0.75)), url('../images/bg-new.jpg') center center / cover no-repeat fixed;
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

#app {
  min-height: 100vh;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  background: transparent;
  overflow: hidden;
}

/* ===== STARFIELD CANVAS BACKGROUND ===== */
#starfield-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background: transparent;
}
  50% { opacity: 0.8; transform: scale(1.05); }
}
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* ===== AUTH ===== */
.auth-page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 16px 24px 80px;
  background: transparent;
  margin-top: 0;
}
.auth-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top center, rgba(240, 200, 64, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.auth-logo {
  width: 84px;
  height: 84px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  margin-bottom: 18px;
  box-shadow: 0 0 36px rgba(240, 200, 64, 0.35), 0 0 12px rgba(240, 200, 64, 0.2);
  position: relative;
}
.auth-logo::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  opacity: 0.3;
  filter: blur(8px);
  z-index: -1;
}
/* ===== USER AUTH (Login/Register) ===== */
.auth-form {
  width: 100%;
  max-width: 380px;
  background: linear-gradient(145deg, rgba(18, 38, 78, 0.75), rgba(12, 26, 58, 0.68));
  border: 1px solid rgba(240, 200, 64, 0.12);
  border-radius: 20px;
  padding: 32px 28px 28px;
  backdrop-filter: blur(16px);
  box-shadow: 
    0 12px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(100, 180, 255, 0.04) inset,
    0 1px 0 0 rgba(240, 200, 64, 0.08) inset;
  position: relative;
  z-index: 2;
}
.auth-form::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 200, 64, 0.25), transparent);
  border-radius: 20px 20px 0 0;
}

/* Form group - base */
.form-group {
  margin-bottom: 18px;
}
.form-group > label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(240, 200, 64, 0.7);
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Rajdhani', sans-serif;
}

/* Input field - base */
.form-input {
  width: 100%;
  padding: 13px 16px;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(100, 160, 255, 0.12);
  border-radius: 12px;
  color: #ffffff;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
}
.form-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
  font-weight: 400;
}
.form-input:focus {
  border-color: rgba(240, 200, 64, 0.35);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(240, 200, 64, 0.06), 0 0 16px rgba(240, 200, 64, 0.08);
}

/* Code row (verify code input + send button) */
.code-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.code-row .form-input {
  flex: 1;
}

/* Buttons */
.btn-code {
  padding: 11px 16px;
  background: rgba(77, 255, 221, 0.08);
  border: 1px solid rgba(77, 255, 221, 0.2);
  border-radius: 12px;
  color: var(--neon-cyan);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.5px;
}
.btn-code:hover {
  background: rgba(77, 255, 221, 0.15);
  border-color: rgba(77, 255, 221, 0.35);
  box-shadow: 0 0 14px rgba(77, 255, 221, 0.12);
}

.btn-primary {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #f0c840, #d4a830);
  border: none;
  border-radius: 14px;
  color: #0a1628;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 6px;
  box-sizing: border-box;
  box-shadow: 0 4px 20px rgba(240, 200, 64, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(240, 200, 64, 0.4);
  filter: brightness(1.05);
}
.btn-primary:active {
  transform: translateY(0);
}

/* Auth switch (login <-> register) */
.auth-switch {
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
}
.auth-switch a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  margin-left: 6px;
  transition: all 0.2s;
}
.auth-switch a:hover {
  text-shadow: 0 0 12px rgba(240, 200, 64, 0.4);
}

/* Privacy row for register */
.privacy-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}
.privacy-row input[type="checkbox"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
}
.privacy-row label {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
}

/* ===== MAIN LAYOUT ===== */
.main-layout { 
  min-height: 100vh; 
  padding-bottom: 70px; 
  background: transparent;
  position: relative;
}
.main-layout::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, 
    rgba(10, 20, 45, 0.3) 0%, 
    rgba(10, 20, 45, 0) 20%,
    rgba(10, 20, 45, 0) 80%,
    rgba(10, 20, 45, 0.5) 100%);
  pointer-events: none;
  z-index: 0;
}

.top-header {
  background: transparent;
  padding: 16px 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-row { display: flex; justify-content: space-between; align-items: center; padding-bottom: 12px; }/* ===== HERO (Home Top Card) ===== */
.hero-section {
  background:
    linear-gradient(135deg, rgba(20, 40, 90, 0.65) 0%, rgba(40, 70, 140, 0.45) 50%, rgba(20, 40, 90, 0.55) 100%)
  background-size: cover;
  border: 1px solid rgba(240, 200, 64, 0.15);
  border-radius: var(--radius);
  padding: 18px 16px;
  margin-bottom: 12px;
  position: relative;
  overflow: visible;
  backdrop-filter: blur(12px);
  text-align: center;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(100, 180, 255, 0.05) inset,
    0 2px 0 0 rgba(240, 200, 64, 0.1) inset;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 200, 64, 0.3), transparent);
}

/* ===== HERO GLOBE (地球仪动画容器) ===== */
.hero-globe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

/* ===== FIVE ELEMENTS (��ľˮ����) ORBITING PLANETS ===== */
.five-elements {
  position: absolute;
  width: 180px;
  height: 180px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 6;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(100, 180, 255, 0.08);
}/* ===== TIMEZONE / CONTINENTS ===== */
.timezone-section {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  backdrop-filter: blur(6px);
}
.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-title i { font-size: 15px; color: var(--gold); }
.timezone-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.tz-card {
  background: rgba(45, 90, 158, 0.08);
  border: 1px solid rgba(45, 90, 158, 0.15);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}
.tz-card:hover {
  background: rgba(45, 90, 158, 0.18);
  border-color: rgba(77, 255, 221, 0.3);
  transform: translateY(-2px);
}
.tz-card .tz-icon { font-size: 24px; margin-bottom: 6px; }
.tz-card .tz-name { font-size: 12px; color: var(--text-primary); font-weight: 700; }
.tz-card .tz-name-en { font-size: 10px; color: var(--text-secondary); margin-top: 2px; }

.region-detail { margin-top: 12px; }
.region-country {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 20px;
  margin: 4px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}
.region-country:hover { background: rgba(240, 200, 64, 0.08); border-color: var(--gold-dark); }
.region-country.locked { color: var(--text-secondary); cursor: not-allowed; opacity: 0.55; }
.region-country.china { color: var(--text-gold); border-color: var(--gold-dark); background: rgba(240, 200, 64, 0.08); font-weight: 700; }

/* ===== DATA CARDS (Data Page Grid) ===== */
.data-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.data-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 18px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
}
.data-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.data-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
  border-color: var(--gold-dark);
}
.data-card:hover::before { opacity: 1; }
.data-card .card-icon { font-size: 26px; filter: drop-shadow(0 0 6px rgba(240, 200, 64, 0.3)); }
.data-card .card-title { font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.data-card .card-subtitle { font-size: 11px; color: var(--text-secondary); }

/* ===== TIER LIST (Purchase Levels) ===== */
#tier-list { margin-top: 16px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.tier-card {
  background: linear-gradient(145deg, rgba(13,27,66,0.95), rgba(8,16,42,0.98));
  border: 1px solid rgba(240,200,64,0.15);
  border-radius: 14px;
  padding: 10px 12px 10px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.tier-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
  opacity: 0.6;
}
.tier-card:hover { border-color: rgba(240,200,64,0.4); box-shadow: 0 6px 24px rgba(0,0,0,0.4), 0 0 20px rgba(240,200,64,0.08); transform: translateY(-2px); }
/* Badge row: agent title + gift percentage */
.tier-badges {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
  min-height: 16px;
}

.tier-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
  gap: 6px;
}
.tier-level {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  padding: 3px 10px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 800;
  color: #0d1b42;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.4;
}
.tier-price {
  text-align: right;
  line-height: 1.15;
  min-width: 0;
  flex-shrink: 0;
}
.tier-price .price-usd {
  font-family: 'Orbitron', sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: var(--text-gold);
  text-shadow: 0 0 10px rgba(240, 200, 64, 0.25);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tier-price .price-cny { font-size: 10px; color: var(--text-muted); margin-top: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tier-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 8px;
  font-size: 10px;
  color: var(--text-secondary);
  line-height: 1.5;
  padding: 6px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.tier-detail .detail-label { color: var(--text-muted); white-space: nowrap; }
.tier-detail .detail-value { color: var(--neon-green); font-weight: 700; text-align: right; word-break: break-all; }
.tier-action { margin-top: 6px; }
/* Agent badge for proxy identity */
.agent-badge {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  font-size: 10px;
  padding: 0px 4px;
  border-radius: 6px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #1a1a2e;
  font-weight: 700;
  vertical-align: middle;
  margin-left: 2px;
  box-shadow: 0 0 5px rgba(255,215,0,0.45), inset 0 0 2px rgba(255,255,255,0.3);
  animation: agentGlow 2s ease-in-out infinite alternate;
  line-height: 1.4;
  max-width: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Gift percentage badge for tier cards */
.gift-percent-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 6px;
  background: linear-gradient(135deg, #00c9ff, #92fe9d);
  color: #1a1a2e;
  font-weight: 700;
  vertical-align: middle;
  margin-left: 3px;
  box-shadow: 0 0 5px rgba(0,201,255,0.35);
}

@keyframes agentGlow {
  from { box-shadow: 0 0 6px rgba(255,215,0,0.5), inset 0 0 3px rgba(255,255,255,0.3); }
  to   { box-shadow: 0 0 12px rgba(255,215,0,0.8), inset 0 0 5px rgba(255,255,255,0.5); }
}
.tier-agent {
  border-color: rgba(224,64,251,0.3);
}
.tier-agent::before {
  background: linear-gradient(90deg, transparent, #E040FB, transparent) !important;
}
.btn-buy {
  width: 100%;
  padding: 8px 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  border: none;
  border-radius: 20px;
  color: #0d1b42;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 2px;
  transition: all 0.3s;
}
.btn-buy:hover { box-shadow: 0 4px 16px rgba(240, 200, 64, 0.5); transform: scale(1.02); }

/* ===== TRADE PANEL ===== */
.trade-panel {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  backdrop-filter: blur(6px);
}
.trade-panel h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-gold);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.trade-info { font-size: 12px; color: var(--text-secondary); margin-top: 12px; line-height: 1.8; font-weight: 500; }
.trade-info span { color: var(--neon-green); font-weight: 700; }

/* ===== STORAGE CARD ===== */
.storage-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 18px;
  backdrop-filter: blur(6px);
}
.storage-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.storage-level {
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--neon-green);
  text-shadow: 0 0 10px rgba(0, 255, 170, 0.25);
}
.storage-yield {
  font-size: 12px;
  padding: 4px 12px;
  background: rgba(0, 255, 170, 0.1);
  color: var(--neon-green);
  border-radius: 14px;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
}
.storage-detail { font-size: 12px; color: var(--text-secondary); line-height: 1.8; font-weight: 500; }
.storage-detail .highlight { color: var(--neon-green); font-weight: 700; }

/* ===== TASK PANEL ===== */
.task-panel {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  backdrop-filter: blur(6px);
}
.task-item { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.task-item:last-child { border-bottom: none; }
.task-left { display: flex; align-items: center; gap: 12px; }
.task-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(240, 200, 64, 0.08);
  border: 1px solid rgba(240, 200, 64, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--text-gold);
}
.task-name { font-size: 14px; font-weight: 600; }
.btn-task {
  padding: 7px 18px;
  border-radius: 18px;
  border: none;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Rajdhani', sans-serif;
}
.btn-task.done { background: rgba(0, 255, 170, 0.12); color: var(--neon-green); }
.btn-task.todo { background: linear-gradient(135deg, var(--gold-dark), var(--gold-light)); color: #0d1b42; }

.btn-exchange-tk1 {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  border: none;
  border-radius: var(--radius);
  color: #0d1b42;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  margin-top: 12px;
  transition: all 0.3s;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 1px;
}
.btn-exchange-tk1:hover { box-shadow: 0 6px 24px rgba(240, 200, 64, 0.45); }
.btn-exchange-tk1:disabled { opacity: 0.45; cursor: not-allowed; }

.task-token-box {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 16px;
  backdrop-filter: blur(6px);
}
.task-token-title { font-size: 14px; font-weight: 700; margin-bottom: 12px; color: var(--text-gold); }
.task-token-row { display: flex; gap: 12px; }
.task-token-item { flex: 1; text-align: center; }
.task-token-label { font-size: 11px; color: var(--text-secondary); margin-bottom: 4px; }
.task-token-value { font-size: 16px; font-weight: 700; color: var(--text-gold); font-family: 'Rajdhani', sans-serif; }
.task-token-progress { background: rgba(255,255,255,0.06); border-radius: 6px; height: 8px; overflow: hidden; }
.task-token-progress-bar { height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); border-radius: 6px; transition: width 0.5s ease; }

/* ===== CHART ===== */
.chart-container {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 16px;
  backdrop-filter: blur(6px);
}
.chart-container canvas { max-height: 220px; }

/* ===== KLINE CHARTS ===== */
.kline-row { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.kline-card { flex: 1; min-width: 160px; background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: var(--radius); overflow: hidden; backdrop-filter: blur(6px); }
.kline-title { font-family: 'Rajdhani', sans-serif; font-size: 12px; font-weight: 700; color: var(--text-gold); padding: 6px 14px 4px; border-bottom: 1px solid var(--glass-border); display: flex; align-items: center; gap: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.kline-title i { font-size: 12px; color: var(--gold); }
.kline-body { padding: 6px; }
.kline-body canvas { max-height: 80px; display: block; margin: 0 auto 8px; }
.kline-table-wrap { max-height: 100px; overflow-y: auto; }
.kline-table { width: 100%; border-collapse: collapse; font-size: 10px; }
.kline-table th { padding: 4px 6px; text-align: left; color: var(--text-secondary); font-weight: 700; font-family: 'Rajdhani', sans-serif; border-bottom: 1px solid var(--glass-border); white-space: nowrap; }
.kline-table td { padding: 3px 6px; border-bottom: 1px solid rgba(255,255,255,0.03); color: var(--text-primary); font-weight: 500; white-space: nowrap; }
.rate-up { color: var(--danger) !important; }
.rate-down { color: var(--neon-green) !important; }

/* ===== NEWS & ANNOUNCEMENTS ===== */
.news-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
  backdrop-filter: blur(6px);
  transition: all 0.3s;
}
.news-card:hover { border-color: var(--gold-dark); }
.news-card .news-header {
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.news-card .news-title { font-size: 13px; font-weight: 700; color: var(--text-primary); line-height: 1.5; flex: 1; }
.news-card .news-toggle-icon { 
  font-size: 12px; 
  color: var(--text-gold); 
  margin-left: 10px;
  transition: transform 0.3s;
}
.news-card .news-body { padding: 0 14px 14px; }
.news-card .news-body img { width: 100%; height: auto; border-radius: 8px; }
.news-card .news-body video { width: 100%; border-radius: 8px; }

.announcement-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 12px;
  backdrop-filter: blur(6px);
}
.announcement-card .ann-title {
  font-size: 14px;
  font-weight: 700;
  color: #e040fb;
  margin-bottom: 8px;
  font-family: 'Rajdhani', sans-serif;
}
.announcement-card .ann-content { font-size: 12px; color: #ce93d8; line-height: 1.7; }

/* ===== PROFILE / MY PAGE ===== */
/* ===== Profile Header (Mine Page) ===== */
.profile-header {
  background: linear-gradient(135deg, #12204a 0%, #0a162e 50%, #0d1f3c 100%);
  padding: 14px 20px 12px;
  text-align: center;
  border-radius: 0 0 18px 18px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(100,160,255,0.08);
}
.profile-header::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(240, 200, 64, 0.08), transparent 70%);
  border-radius: 50%;
}
.profile-header::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(40,120,255,0.06), transparent 70%);
  border-radius: 50%;
}
.profile-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--gold-dark), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
  font-size: 18px;
  border: 2px solid rgba(240,200,64,0.5);
  box-shadow: 0 0 24px rgba(240, 200, 64, 0.25), 0 2px 8px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}
.profile-name { 
  font-size: 14px; 
  font-weight: 800; 
  color: var(--text-primary); 
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}
.profile-level { 
  font-size: 10px; 
  color: var(--text-gold); 
  margin-top: 2px; 
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.profile-edit-btn {
  position: absolute;
  bottom: -2px; right: -4px;
  width: 20px; height: 20px;
  background: rgba(15,30,60,0.9);
  border: 1px solid rgba(240,200,64,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: all 0.2s ease;
  z-index: 2;
}
.profile-edit-btn:hover {
  background: rgba(240,200,64,0.2);
  transform: scale(1.15);
}
.profile-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 3px;
  padding-top: 3px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-item { text-align: center; }
.stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--text-gold);
  text-shadow: 0 0 12px rgba(240, 200, 64, 0.2);
}
.stat-label { font-size: 11px; color: var(--text-secondary); margin-top: 3px; }

.profile-menu { padding: 16px 20px; }
.menu-group {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
  backdrop-filter: blur(6px);
}
.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  cursor: pointer;
  transition: all 0.25s;
}
.menu-item:hover { background: rgba(255,255,255,0.03); }
.menu-item:last-child { border-bottom: none; }
.menu-left { display: flex; align-items: center; gap: 12px; }
.menu-left i { width: 20px; text-align: center; color: var(--text-gold); font-size: 15px; }
.menu-left span { font-size: 14px; font-weight: 600; }
.menu-right { color: var(--text-secondary); font-size: 13px; display: flex; align-items: center; gap: 4px; }

.referral-code-box {
  background: var(--bg-card);
  border: 2px dashed var(--gold-dark);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  margin-bottom: 16px;
  backdrop-filter: blur(6px);
}
.referral-code {
  font-family: 'Orbitron', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--text-gold);
  letter-spacing: 5px;
  margin: 14px 0;
  text-shadow: 0 0 16px rgba(240, 200, 64, 0.25);
}
.btn-share {
  padding: 10px 28px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  border: none;
  border-radius: 22px;
  color: #0d1b42;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 1px;
}

.milestone-list { margin-top: 12px; }
.milestone-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 13px; }
.milestone-item .amount { color: var(--text-secondary); }
.milestone-item .reward { color: var(--neon-green); font-weight: 700; }

.income-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.income-type { font-size: 13px; color: var(--text-primary); font-weight: 500; }
.income-amount { font-size: 14px; font-weight: 700; font-family: 'Rajdhani', sans-serif; }
.income-amount.positive { color: var(--neon-green); }
.income-amount.negative { color: var(--danger); }
.income-date { font-size: 11px; color: var(--text-secondary); }

/* ===== BOTTOM NAV ===== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  display: flex;
  background: linear-gradient(180deg, rgba(8, 15, 36, 0.95), rgba(8, 15, 36, 1));
  border-top: 1px solid var(--glass-border);
  z-index: 200;
  backdrop-filter: blur(16px);
}
.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 9px 0;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 10px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
}
.nav-item i { font-size: 19px; margin-bottom: 3px; }
.nav-item.active { color: var(--text-gold); }

/* ============================================================
   ADMIN FULL DESKTOP LAYOUT
   ============================================================ */
.admin-root { max-width: 100% !important; min-height: 100vh; display: flex; flex-direction: column; background: linear-gradient(135deg, #1a2a4a 0%, #0d1b3a 50%, #0a1528 100%); }
.admin-layout { display: flex; flex: 1; min-height: 100vh; }

/* Sidebar */
.admin-sidebar {
  width: 260px;
  background: linear-gradient(180deg, rgba(15, 26, 50, 0.95) 0%, rgba(8, 15, 32, 0.98) 50%, rgba(5, 10, 24, 1) 100%);
  border-right: 1px solid rgba(100, 180, 255, 0.08);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.2);
  position: relative;
}
.admin-sidebar::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, 
    rgba(240, 200, 64, 0.15) 0%, 
    rgba(240, 200, 64, 0.05) 50%,
    rgba(240, 200, 64, 0.1) 100%);
}
/* ===== Admin Sidebar Brand ===== */
.admin-sidebar-brand {
  padding: 28px 20px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(240, 200, 64, 0.08);
  position: relative;
}
.admin-sidebar-brand::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 200, 64, 0.2), transparent);
}
.brand-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: none;
  box-shadow: none;
}
.brand-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #f0c840;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(240, 200, 64, 0.3);
  margin-bottom: 4px;
}
.brand-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Rajdhani', sans-serif;
}

/* ===== Admin Sidebar Nav ===== */
.admin-sidebar-nav {
  padding: 12px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 400;
  position: relative;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.5px;
}
.admin-nav-item i {
  width: 20px;
  text-align: center;
  font-size: 15px;
  opacity: 0.7;
  transition: all 0.25s ease;
}
.admin-nav-item span { flex: 1; }
.admin-nav-item:hover {
  background: rgba(240, 200, 64, 0.06);
  color: rgba(255, 255, 255, 0.85);
}
.admin-nav-item:hover i { opacity: 1; color: #f0c840; }
.admin-nav-item.active {
  background: linear-gradient(135deg, rgba(240, 200, 64, 0.12), rgba(240, 200, 64, 0.04));
  color: #f0c840;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(240, 200, 64, 0.15);
}
.admin-nav-item.active i {
  color: #f0c840;
  opacity: 1;
  text-shadow: 0 0 12px rgba(240, 200, 64, 0.4);
}
.pending-badge {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

/* ===== Admin Sidebar Footer ===== */
.admin-sidebar-footer {
  padding: 12px 16px 20px;
  border-top: 1px solid rgba(100, 180, 255, 0.06);
}
.admin-logout-btn {
  width: 100%;
  padding: 12px 16px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: 12px;
  color: rgba(239, 68, 68, 0.7);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
}
.admin-logout-btn:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* ===== Admin Topbar Enhancement ===== */
.admin-topbar-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 2px;
}
.admin-topbar-time {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  color: rgba(240, 200, 64, 0.6);
  letter-spacing: 2px;
}

/* ===== Admin Quick Card Enhancement ===== */
.admin-quick-card {
  background: linear-gradient(145deg, rgba(15, 28, 58, 0.85), rgba(10, 20, 45, 0.75));
  border: 1px solid rgba(100, 180, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.admin-quick-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 200, 64, 0.12), transparent);
}
.admin-quick-card:hover {
  border-color: rgba(240, 200, 64, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 30px rgba(240, 200, 64, 0.05);
}
.admin-quick-card .quick-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.admin-quick-card .quick-title {
  font-size: 16px;
  font-weight: 700;
  color: #e8edf5;
  margin-bottom: 6px;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.5px;
}
.admin-quick-card .quick-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
}
.admin-quick-card .quick-action input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(100, 180, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  padding: 10px 14px;
  transition: all 0.25s ease;
}
.admin-quick-card .quick-action input:focus {
  border-color: rgba(240, 200, 64, 0.3);
  outline: none;
  box-shadow: 0 0 0 3px rgba(240, 200, 64, 0.08);
}
.admin-quick-card .quick-action .btn-primary {
  background: linear-gradient(135deg, rgba(240, 200, 64, 0.9), #d4a830);
  color: #0a1628;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 1px;
  padding: 10px 22px;
  font-size: 13px;
  box-shadow: 0 4px 16px rgba(240, 200, 64, 0.2);
  transition: all 0.25s ease;
}
.admin-quick-card .quick-action .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(240, 200, 64, 0.35);
}

/* Main content area */
.admin-main { 
  flex: 1; 
  min-width: 0; 
  display: flex; 
  flex-direction: column;
  position: relative;
}

.admin-topbar {
  height: 64px;
  background: linear-gradient(180deg, rgba(8, 15, 36, 0.92) 0%, rgba(8, 15, 32, 0.88) 100%);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(100, 180, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.admin-topbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 200, 64, 0.2), transparent);
}/* Admin cards */
.admin-page { padding: 0; }
.admin-card {
  background: linear-gradient(135deg, rgba(18, 38, 78, 0.7) 0%, rgba(12, 26, 58, 0.65) 100%);
  border: 1px solid rgba(100, 180, 255, 0.1);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
.admin-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 200, 64, 0.15), transparent);
}
.admin-card:hover {
  border-color: rgba(240, 200, 64, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}/* Admin table */
.admin-table { 
  width: 100%; 
  border-collapse: collapse; 
  font-size: 13px;
  position: relative;
}
.admin-table::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(240, 200, 64, 0.1) 50%, 
    transparent 100%);
}
.admin-table th {
  padding: 14px 16px;
  text-align: left;
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-bottom: 2px solid rgba(100, 180, 255, 0.12);
  white-space: nowrap;
  font-family: 'Rajdhani', sans-serif;
  background: rgba(0, 0, 0, 0.1);
}
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  vertical-align: middle;
  font-weight: 500;
  transition: background 0.2s;
}
.admin-table tr:hover td { 
  background: rgba(240, 200, 64, 0.04); 
}/* Form grid */
.admin-form-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
  gap: 16px;
  position: relative;
}
.admin-form-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(240, 200, 64, 0.1) 50%, transparent 100%);
}/* Classified settings sections */
.admin-settings-section {
  margin-bottom: 28px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
}
.admin-settings-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 16px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(240,200,64,0.2);
  letter-spacing: 0.5px;
}
.admin-settings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.admin-settings-grid .form-group { margin-bottom: 0; }
.admin-settings-grid .form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.admin-settings-grid .form-input {
  width: 100%;
  padding: 9px 12px;
  font-size: 13px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text);
  transition: border-color 0.2s;
}
.admin-settings-grid .form-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(0,0,0,0.5);
}

/* Action buttons */
.admin-actions { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.admin-actions .btn-primary { width: auto; padding: 11px 30px; font-size: 14px; }

/* Quick action cards */
.admin-quick-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-bottom: 24px; }
.admin-quick-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 22px;
  transition: all 0.25s;
  backdrop-filter: blur(6px);
}
.admin-quick-card:hover { border-color: var(--gold-dark); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.35); }
.admin-quick-card .quick-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.admin-quick-card .quick-title { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 5px; font-family: 'Rajdhani', sans-serif; }
.admin-quick-card .quick-desc { font-size: 12px; color: var(--text-secondary); }
.admin-quick-card .quick-action { margin-top: 14px; }
.admin-quick-card .quick-action .btn-primary { width: auto; padding: 9px 22px; font-size: 13px; }

/* Status badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
}
.status-badge.pending { background: rgba(245, 158, 11, 0.15); color: var(--warning); }
.status-badge.approved { background: rgba(0, 255, 170, 0.12); color: var(--neon-green); }
.status-badge.rejected { background: rgba(239, 68, 68, 0.15); color: var(--danger); }
.status-badge.frozen { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.status-badge.active { background: rgba(0, 255, 170, 0.12); color: var(--neon-green); }

.btn-sm {
  padding: 7px 16px;
  border-radius: 8px;
  border: none;
  font-size: 12px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s;
  font-family: 'Rajdhani', sans-serif;
}
.btn-sm:hover { filter: brightness(1.2); }
.btn-approve { background: rgba(0, 255, 170, 0.15); color: var(--neon-green); }
.btn-reject { background: rgba(239, 68, 68, 0.15); color: var(--danger); }
.btn-freeze { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }

/* Admin login page */
.admin-login-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 24px 80px;
  background: transparent;
  position: relative;
  overflow: hidden;
}
.admin-login-page::before {
  content: '';
  position: absolute;
  top: -220px;
  right: -220px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(240, 200, 64, 0.05), transparent 70%);
  border-radius: 50%;
}
.admin-login-page::after {
  content: '';
  position: absolute;
  bottom: -160px;
  left: -160px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(45, 74, 158, 0.06), transparent 70%);
  border-radius: 50%;
}
.admin-login-box { width: 100%; max-width: 380px; position: relative; z-index: 1; margin-top: 16px; display: flex; flex-direction: column; align-items: center; }
.admin-login-logo { text-align: center; margin-bottom: 16px; }
.admin-login-logo .logo-icon {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 18px;
  box-shadow: 0 10px 40px rgba(240, 200, 64, 0.35);
}
.admin-login-logo .logo-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--text-gold);
  letter-spacing: 4px;
  text-shadow: 0 0 24px rgba(240, 200, 64, 0.3);
}
.admin-login-logo .logo-sub { font-size: 13px; color: var(--text-secondary); margin-top: 7px; letter-spacing: 2px; }
.admin-login-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 34px;
  backdrop-filter: blur(10px);
}
.admin-login-card .form-group label { font-size: 13px; color: rgba(240, 200, 64, 0.7); font-weight: 400; letter-spacing: 1px; display: block; }
.admin-login-card .form-input { padding: 14px 16px; font-size: 15px; background: rgba(255,255,255,0.06); border: 1px solid rgba(240, 200, 64, 0.12); border-radius: 12px; color: #fff; outline: none; transition: all 0.3s ease; width: 100%; box-sizing: border-box; }
.admin-login-card .btn-primary { padding: 14px; font-size: 15px; margin-top: 20px; border-radius: 12px; background: linear-gradient(135deg, #f0c840, #d4a830) !important; color: #0a1628 !important; font-weight: 600; letter-spacing: 3px; border: none; cursor: pointer; transition: all 0.3s ease; width: 100%; box-sizing: border-box; }
.admin-login-error { color: var(--danger); text-align: center; margin-top: 14px; font-size: 13px; display: none; font-weight: 600; }
.admin-login-footer { text-align: center; margin-top: 22px; }
.admin-login-footer a { color: var(--text-secondary); font-size: 13px; text-decoration: none; transition: color 0.2s; font-weight: 500; }
.admin-login-footer a:hover { color: var(--text-gold); }

/* ===== MODAL & TOAST ===== */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 26px;
  width: 100%;
  max-width: 380px;
  max-height: 82vh;
  overflow-y: auto;
  backdrop-filter: blur(10px);
}
.modal h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-gold);
  margin-bottom: 18px;
  text-align: center;
}
.modal-actions { display: flex; gap: 10px; margin-top: 18px; }
.modal-actions button {
  flex: 1;
  padding: 11px;
  border-radius: var(--radius-sm);
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
}
.btn-cancel { background: rgba(255,255,255,0.06); color: var(--text-secondary); }
.btn-confirm { background: linear-gradient(135deg, var(--gold-dark), var(--gold-light)); color: #0d1b42; }

.toast {
  position: fixed;
  top: 44px;
  left: 50%;
  transform: translateX(-50%);
  padding: 11px 28px;
  border-radius: 22px;
  font-size: 13px;
  font-weight: 600;
  z-index: 9999;
  animation: fadeInOut 2.5s ease;
  font-family: 'Rajdhani', sans-serif;
}
.toast-success { background: rgba(0, 255, 170, 0.92); color: #0d1b42; }
.toast-error { background: rgba(239, 68, 68, 0.92); color: white; }
.toast-info { background: rgba(59, 130, 246, 0.92); color: white; }

@keyframes fadeInOut {
  0% { opacity: 0; transform: translateX(-50%) translateY(-12px); }
  15% { opacity: 1; transform: translateX(-50%) translateY(0); }
  85% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(-12px); }
}

.fade-in { animation: fadeIn 0.35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.pulse { animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.65; } }

.btn-back {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 16px;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}
.btn-back span { font-size: 13px; }
.warehouse-countdown { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-secondary); font-weight: 500; }
.warehouse-countdown .days-left { color: var(--gold); font-weight: 800; font-size: 17px; font-family: 'Orbitron', sans-serif; }

@media (min-width: 481px) { #app { border-left: 1px solid var(--glass-border); border-right: 1px solid var(--glass-border); } }
/* === Floating Language Switch Button (Bottom Right) === */
.floating-lang-btn {
  position: fixed;
  top: calc(18px + env(safe-area-inset-top));
  right: calc(18px + env(safe-area-inset-right));
  height: 28px;
  min-width: 56px;
  padding: 0 10px;
  border-radius: 14px;
  background: linear-gradient(135deg, #c9a800, #f0d060);
  color: #0a1628;
  border: 1.5px solid rgba(255,255,255,0.3);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(240, 200, 64, 0.5), 0 0 20px rgba(240, 200, 64, 0.3);
  transition: all 0.3s ease;
  animation: floatPulse 3s ease-in-out infinite;
}
.floating-lang-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(240, 200, 64, 0.7), 0 0 30px rgba(240, 200, 64, 0.4);
  background: linear-gradient(135deg, #f0d060, #ffe680);
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(240,200,64,0.5), 0 0 20px rgba(240,200,64,0.3); }
  50% { box-shadow: 0 6px 20px rgba(240,200,64,0.7), 0 0 30px rgba(240,200,64,0.5); }
}

/* ===== BLUE BLOCK BUTTONS ===== */
.blue-grid-4 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 10px 0; }
.stat-card { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 12px 10px 12px 12px; border-radius: 10px; background: linear-gradient(145deg, var(--blue-light), var(--blue-sea)); border: 1px solid rgba(255,255,255,0.15); color: #fff; box-shadow: 0 2px 8px rgba(20,80,180,0.25), inset 0 1px 0 rgba(255,255,255,0.15); min-height: 70px; }
.stat-card .stat-icon { font-size: 18px; margin-bottom: 4px; color: var(--gold); }
.stat-card .stat-label { font-size: 10px; color: rgba(255,255,255,0.8); text-align: left; margin-bottom: 2px; }
.stat-card .stat-value { font-size: 14px; font-weight: 700; color: #fff; text-align: left; }
.stat-card .stat-sub { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 2px; text-align: left; }

/* ===== 等级卡片重新设计 ===== */
#level-stat-card.level-card {
  background: linear-gradient(135deg, rgba(0,80,180,0.9) 0%, rgba(20,40,100,0.95) 50%, rgba(60,20,120,0.9) 100%) !important;
  border: 1px solid rgba(255,215,0,0.25);
  position: relative;
  overflow: hidden;
  min-height: 85px;
}
#level-stat-card.level-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
#level-stat-card.has-title {
  background: linear-gradient(135deg, rgba(180,120,0,0.92) 0%, rgba(140,60,20,0.93) 40%, rgba(90,15,90,0.92) 100%) !important;
  border-color: rgba(255,200,50,0.4);
  box-shadow: 0 4px 20px rgba(255,170,0,0.2), inset 0 1px 0 rgba(255,255,255,0.12);
}
#level-stat-card.has-title::before {
  background: radial-gradient(circle at 70% 30%, rgba(255,230,150,0.18) 0%, transparent 55%);
}
.level-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.level-card-icon {
  font-size: 26px;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  flex-shrink: 0;
}
.level-card-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.level-card-name {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  font-family: 'Rajdhani', sans-serif;
  line-height: 1.15;
}
.level-card-title {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, #FFE066, #FFB300, #FF8C00);
  color: #2a1600;
  margin-top: 4px;
  box-shadow: 0 2px 10px rgba(255,180,0,0.35), inset 0 1px 0 rgba(255,255,255,0.45);
  animation: titleShine 3s ease-in-out infinite alternate;
  letter-spacing: 1px;
  white-space: nowrap;
}
@keyframes titleShine {
  from { box-shadow: 0 2px 10px rgba(255,180,0,0.35), inset 0 1px 0 rgba(255,255,255,0.45); }
  to   { box-shadow: 0 2px 16px rgba(255,200,50,0.55), inset 0 1px 0 rgba(255,255,255,0.6), 0 0 20px rgba(255,180,0,0.15); }
}
.blue-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 12px 0; }
/* ===== Mine Page Tab Navigation (blue-grid-5) ===== */
.blue-grid-5 {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  margin: 12px 2px 10px;
}
.blue-grid-5 .block-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 2px 8px;
  min-height: 60px;
  border-radius: 14px;
  background: linear-gradient(145deg, #6eb5e8, #4a9cd4);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.3);
  transition: all 0.28s ease;
  position: relative;
  overflow: hidden;
}
.blue-grid-5 .block-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 50%);
  pointer-events: none;
}
.blue-grid-5 .block-btn:hover {
  background: linear-gradient(145deg, #82c4f0, #5aadde);
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 4px 14px rgba(74,125,199,0.2);
  transform: translateY(-1px);
}
.blue-grid-5 .block-btn.active {
  background: linear-gradient(145deg, #4a7dc7, #2d5aa0) !important;
  border-color: rgba(130,175,255,0.45) !important;
  box-shadow: 0 0 20px rgba(74,125,199,0.4), inset 0 1px 0 rgba(255,255,255,0.15) !important;
  transform: scale(1.05);
}
.blue-grid-5 .block-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 18%; right: 18%;
  height: 2.5px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.65), transparent);
  border-radius: 2px;
}
.blue-grid-5 .block-btn .b-icon {
  font-size: 21px;
  margin-bottom: 5px;
  color: rgba(20,50,90,0.75);
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25));
  transition: all 0.28s ease;
}
.blue-grid-5 .block-btn:hover .b-icon {
  color: #1a4070;
  transform: scale(1.08);
}
.blue-grid-5 .block-btn.active .b-icon {
  color: #fff;
  filter: drop-shadow(0 0 8px rgba(150,195,255,0.55));
}
.blue-grid-5 .block-btn .b-label {
  font-size: 10.5px;
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
  color: rgba(20,55,95,0.7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  padding: 0 2px;
  text-shadow: 0 1px 1px rgba(255,255,255,0.3);
}
.blue-grid-5 .block-btn.active .b-label {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.blue-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 12px 0; }

/* ===== Timezone Region Cards Enhancement ===== */
.timezone-section .blue-grid-5 { gap: 8px; }
.timezone-section .block-btn {
  background: linear-gradient(145deg, #6eb5e8, #4a9cd4);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  min-height: 64px;
  padding: 10px 4px;
  position: relative;
  overflow: hidden;
}
.timezone-section .block-btn::before {
  content: '';
  position: absolute; top:0; left:0; right:0; bottom:0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(240,200,64,0.06), transparent 70%);
  opacity: 0; transition: opacity 0.3s;
}
.timezone-section .block-btn:hover::before { opacity: 1; }
.timezone-section .block-btn:hover {
  background: linear-gradient(145deg, #82c4f0, #5aadde);
  border-color: rgba(255,255,255,0.4);
  box-shadow: 0 4px 16px rgba(74,150,220,0.25);
  transform: translateY(-2px);
}
.timezone-section .block-btn .b-icon {
  font-size: 22px;
  margin-bottom: 5px;
  color: rgba(20,50,90,0.7);
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
  transition: transform 0.3s;
}
.timezone-section .block-btn:hover .b-icon { transform: scale(1.15); }
.timezone-section .block-btn .b-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(20,55,95,0.75);
}
.timezone-section .block-btn .b-sub {
  font-size: 9px;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* Active state - gold theme */
.timezone-section .block-btn.active {
  background: linear-gradient(145deg, rgba(240,200,64,0.15), rgba(180,150,40,0.08)) !important;
  border: 1px solid rgba(240,200,64,0.5) !important;
  box-shadow: 0 0 20px rgba(240,200,64,0.15), inset 0 0 20px rgba(240,200,64,0.05) !important;
  transform: scale(1.04) translateY(-1px) !important;
}
.timezone-section .block-btn.active .b-icon {
  color: #f0c840;
  filter: drop-shadow(0 0 8px rgba(240,200,64,0.5));
}
.timezone-section .block-btn.active .b-label {
  color: #f0c840;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(240,200,64,0.3);
}
.timezone-section .block-btn.active .b-sub {
  color: rgba(240,200,64,0.7);
}

/* Region sub-buttons (country list) */
.timezone-section .region-btn-grid { gap: 8px; }

/* Timezone region icon colors - each region gets a unique color */
.tz-icon-asia   { color: #e63946 !important; }  /* 红色 - 亚洲 */
.tz-icon-africa { color: #f4a023 !important; } /* 橙色 - 非洲 */
.tz-icon-europe { color: #2a9d8f !important; } /* 青绿 - 欧洲 */
.tz-icon-america{ color: #4361ee !important; } /* 蓝紫 - 美洲 */
.tz-icon-oceania{ color: #9b5de5 !important; } /* 紫色 - 大洋洲 */
.timezone-section .region-btn {
  background: linear-gradient(145deg, rgba(20,50,100,0.4), rgba(13,27,66,0.3));
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 11px;
  padding: 10px 8px;
  border-radius: 10px;
  transition: all 0.25s;
}
.timezone-section .region-btn:hover {
  background: linear-gradient(145deg, rgba(240,200,64,0.1), rgba(180,150,40,0.05));
  border-color: rgba(240,200,64,0.3);
  box-shadow: 0 2px 10px rgba(240,200,64,0.1);
}
.timezone-section .region-btn.locked {
  opacity: 0.45;
  background: linear-gradient(145deg, rgba(30,30,50,0.3), rgba(20,20,35,0.2));
  border-color: rgba(255,255,255,0.05);
}
\-items: center\ border-radius: 10px; cursor: pointer; text-decoration: none; background: linear-gradient(145deg, var(--blue-light), var(--blue-mid)); border: 1px solid rgba(255,255,255,0.15); color: #fff; box-shadow: 0 2px 8px rgba(30,100,200,0.25), inset 0 1px 0 rgba(255,255,255,0.2); transition: all 0.25s ease; min-height: 60px; }
.block-btn:active { transform: scale(0.96); }
.block-btn:hover { background: linear-gradient(145deg, var(--blue-highlight), var(--blue-mid)); box-shadow: 0 4px 14px rgba(30,120,220,0.4); }
.block-btn .b-icon { font-size: 22px; margin-bottom: 5px; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3)); }
.block-btn .b-label { font-size: 11px; font-weight: 600; text-align: center; line-height: 1.2; color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.block-btn.active, .block-card.active, .block-card-lg.active { background: linear-gradient(145deg, #1a8ccc, var(--blue-dark)) !important; box-shadow: 0 0 16px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,0.3) !important; transform: scale(1.03); }
.block-btn .b-sub { font-size: 9px; color: rgba(255,255,255,0.75); margin-top: 2px; }
.block-card { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 16px 8px; border-radius: 12px; cursor: pointer; background: linear-gradient(145deg, var(--blue-light), var(--blue-sea)); border: 1px solid rgba(255,255,255,0.18); color: #fff; box-shadow: 0 3px 12px rgba(20,80,180,0.3), inset 0 1px 0 rgba(255,255,255,0.2); transition: all 0.25s ease; min-height: 80px; }
.block-card:active { transform: scale(0.97); }
.block-card:hover { background: linear-gradient(145deg, var(--blue-highlight), var(--blue-sea)); box-shadow: 0 6px 18px rgba(20,100,200,0.45); }
.block-card .b-icon { font-size: 28px; margin-bottom: 8px; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3)); }
.block-card .b-label { font-size: 12px; font-weight: 700; text-align: center; color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.block-card .b-sub { font-size: 9px; color: rgba(255,255,255,0.7); margin-top: 3px; }
.block-card .b-arrow { font-size: 10px; color: rgba(255,255,255,0.5); margin-top: 4px; transition: transform 0.25s; }
.block-card.active .b-arrow { color: #ffd700; }
.data-expand { background: rgba(10,30,70,0.6); border-radius: 12px; padding: 16px; margin-top: 8px; border: 1px solid rgba(255,255,255,0.1); animation: fadeSlideDown 0.25s ease; }
@keyframes fadeSlideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.block-card-lg { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px 12px; border-radius: 14px; cursor: pointer; background: linear-gradient(145deg, var(--blue-light), var(--blue-sea)); border: 1px solid rgba(255,255,255,0.18); color: #fff; box-shadow: 0 4px 16px rgba(20,80,180,0.35), inset 0 1px 0 rgba(255,255,255,0.2); transition: all 0.25s ease; min-height: 90px; }
.block-card-lg:active { transform: scale(0.97); }
.block-card-lg:hover { background: linear-gradient(145deg, var(--blue-highlight), var(--blue-dark)); box-shadow: 0 8px 22px rgba(20,100,200,0.5); }
.block-card-lg .b-icon { font-size: 32px; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3)); }
.block-card-lg .b-label { font-size: 13px; font-weight: 700; text-align: center; color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.block-card-lg .b-sub { font-size: 10px; color: rgba(255,255,255,0.7); margin-top: 4px; }
.region-btn-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 10px; }
.region-btn { display: flex; align-items: center; justify-content: center; gap: 5px; padding: 9px 6px; border-radius: 8px; cursor: pointer; background: linear-gradient(145deg, var(--blue-light), var(--blue-mid)); border: 1px solid rgba(255,255,255,0.15); color: #fff; font-size: 11px; font-weight: 600; box-shadow: 0 2px 6px rgba(30,100,200,0.2); transition: all 0.2s ease; }
.region-btn:hover { background: linear-gradient(145deg, var(--blue-highlight), var(--blue-mid)); }
.region-btn.locked { opacity: 0.5; cursor: not-allowed; }

/* ===== LOGOUT BUTTON ===== */
.logout-btn {
  background: linear-gradient(145deg, #dc2626, #b91c1c) !important;
  min-height: 36px !important;
  padding: 8px 16px !important;
  max-width: 180px;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(220, 38, 38, 0.5);
  display: flex !important;
  justify-content: center !important;
  text-align: center !important;
}
.logout-btn:hover {
  background: linear-gradient(145deg, #ef4444, #dc2626) !important;
}
.logout-btn .b-label {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.logout-btn .b-label i {
  font-size: 14px;
}

/* ===== PENDING NOTIFICATION BANNER ===== */
.pending-notification {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #e65100, #ff9800);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(230, 81, 0, 0.5);
  animation: notificationPulse 3s ease-in-out infinite;
  z-index: 100;
}
.pending-notification-icon { font-size: 20px; flex-shrink: 0; }
.pending-notification-text { flex: 1; line-height: 1.4; }
@keyframes notificationPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(230, 81, 0, 0.5); }
  50% { box-shadow: 0 4px 28px rgba(255, 152, 0, 0.8); }
}

/* ===== YIELD STATS ===== */
.yield-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}
.yield-stat {
  background: rgba(10,30,70,0.6);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}
.yield-stat-label {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.yield-stat-value {
  font-size: 16px;
  color: #ffd700;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
}

/* ===== WAREHOUSE COUNTDOWN ===== */
.warehouse-section { margin-top: 12px; }
.warehouse-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(10,30,70,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 8px;
}
.wh-level {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(255,215,0,0.12);
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
}
.wh-info { flex: 1; }
.wh-days {
  font-size: 12px;
  color: var(--text-secondary);
}
.wh-days strong {
  color: #fff;
  font-size: 18px;
  font-family: 'Orbitron', sans-serif;
}
.wh-progress {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-top: 6px;
  overflow: hidden;
}
.wh-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-light), var(--gold));
  border-radius: 2px;
  transition: width 0.5s ease;
}
.wh-yield {
  font-size: 12px;
  color: #4caf50;
  font-weight: 600;
  white-space: nowrap;
}

/* ===== PROMO PAGE ===== */
.promo-page {
  padding: 12px;
}
.promo-qr-box {
  text-align: center;
  padding: 20px;
  background: rgba(10,30,70,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  margin-bottom: 12px;
}
.promo-qr-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}
.promo-ref-code {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}
.promo-ref-code strong {
  color: var(--gold);
  font-size: 16px;
}
.promo-share-text {
  background: rgba(10,30,70,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 12px;
}
.promo-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.btn-share-primary {
  flex: 1;
  background: linear-gradient(135deg, #1a3a6e, #0a5a9a);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-share-primary:active {
  background: linear-gradient(135deg, #0a2a5e, #0a4a8a);
}
.btn-copy-link {
  flex: 1;
  background: rgba(255,255,255,0.1);
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-copy-link:active {
  background: rgba(255,255,255,0.15);
}
.promo-rules {
  background: rgba(10,30,70,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px;
}


/* ===== LIVE TICKER MARQUEE ===== */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #0d1b2a, #1b2a3a);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 8px;
  margin-bottom: 14px;
  padding: 8px 0;
  position: relative;
}
.ticker-inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  will-change: transform;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  padding: 0 28px;
  font-size: 10px;
  color: #FF69B4;
  gap: 6px;
  flex-shrink: 0;
  animation: ticker-blink 1.5s ease-in-out infinite;
}
.ticker-item .ticker-name { color: #FF1493; font-weight: 600; }
.ticker-item .ticker-time { color: #FFB6C1; font-size: 9px; }
.ticker-item .ticker-profit { color: #FF69B4; font-weight: 600; }

@keyframes ticker-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.ticker-sep { color: rgba(212,175,55,.4); display: inline-block; padding: 0 4px; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-wrap:hover .ticker-inner { animation-play-state: paused; }

/* ===== TODAY ROW - BIGGER PRICE ===== */
.today-row {
  background: rgba(212, 175, 55, 0.15) !important;
  border: 1px solid rgba(212, 175, 55, 0.4);
  font-size: 16px !important;
  font-weight: 700 !important;
}
.today-row td {
  padding: 12px 8px !important;
  color: #f0c840 !important;
}
.today-row strong {
  color: #ffd700 !important;
  font-size: 18px !important;
}
.today-row .rate-up {
  color: #4caf50 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
}
.today-row .rate-down {
  color: #f44336 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
}

  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}



/* ===== GLOBE SPHERE (地球本体) ===== */
.globe-sphere {
  position: absolute;
  width: 90px;
  height: 90px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(100,200,255,0.9) 0%, rgba(20,60,120,0.8) 50%, rgba(5,15,40,0.95) 100%);
  box-shadow:
    inset -12px -12px 20px rgba(0,0,0,0.6),
    0 0 30px rgba(100,200,255,0.25),
    0 0 60px rgba(100,200,255,0.1);
  z-index: 4;
  pointer-events: none;
}

/* ===== GLOBE GLOW (光晕) ===== */
.globe-glow {
  position: absolute;
  width: 160px;
  height: 160px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100,200,255,0.12) 0%, transparent 70%);
  z-index: 2;
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}

/* ===== SPARKLES (星光粒子) ===== */
.globe-sparkles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
  pointer-events: none;
}
.sparkle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 6px 2px rgba(100,200,255,0.8);
  animation: sparkle-flash 3s ease-in-out infinite;
}
.sparkle:nth-child(1)  { top: 18%; left: 62%; animation-delay: 0s; }
.sparkle:nth-child(2)  { top: 35%; left: 78%; animation-delay: 0.4s; }
.sparkle:nth-child(3)  { top: 22%; left: 45%; animation-delay: 0.8s; }
.sparkle:nth-child(4)  { top: 68%; left: 72%; animation-delay: 1.2s; }
.sparkle:nth-child(5)  { top: 80%; left: 55%; animation-delay: 1.6s; }
.sparkle:nth-child(6)  { top: 45%; left: 25%; animation-delay: 2.0s; }
.sparkle:nth-child(7)  { top: 15%; left: 80%; animation-delay: 0.2s; }
.sparkle:nth-child(8)  { top: 55%; left: 85%; animation-delay: 0.6s; }
.sparkle:nth-child(9)  { top: 72%; left: 35%; animation-delay: 1.0s; }
.sparkle:nth-child(10) { top: 30%; left: 15%; animation-delay: 1.4s; }
.sparkle:nth-child(11) { top: 85%; left: 70%; animation-delay: 1.8s; }
.sparkle:nth-child(12) { top: 10%; left: 50%; animation-delay: 0.3s; }
.sparkle:nth-child(13) { top: 50%; left: 90%; animation-delay: 0.7s; }
.sparkle:nth-child(14) { top: 65%; left: 10%; animation-delay: 1.1s; }
.sparkle:nth-child(15) { top: 25%; left: 30%; animation-delay: 1.5s; }
.sparkle:nth-child(16) { top: 90%; left: 40%; animation-delay: 0.5s; }
.sparkle:nth-child(17) { top: 40%; left: 60%; animation-delay: 0.9s; }
.sparkle:nth-child(18) { top: 5%;  left: 70%; animation-delay: 1.3s; }
.sparkle:nth-child(19) { top: 75%; left: 80%; animation-delay: 1.7s; }
.sparkle:nth-child(20) { top: 48%; left: 38%; animation-delay: 2.1s; }

/* ===== FIVE ELEMENTS PLANETS (五行星球) ===== */
.planet-element, .planet-wood, .planet-water, .planet-fire, .planet-earth {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  z-index: 5;
  pointer-events: none;
  animation: planet-orbit 12s linear infinite;
}
.planet-element {
  background: radial-gradient(circle at 40% 40%, #fff8d6, #c0a020);
  box-shadow: 0 0 8px 3px rgba(240,200,64,0.5);
  top: 50%; left: 50%;
  margin-top: -90px;
  margin-left: -7px;
}
.planet-wood {
  background: radial-gradient(circle at 40% 40%, #a8ffd6, #20c060);
  box-shadow: 0 0 8px 3px rgba(32,192,96,0.5);
  top: 50%; left: 50%;
  margin-top: -55px;
  margin-left: -60px;
  animation-delay: -3s;
}
.planet-water {
  background: radial-gradient(circle at 40% 40%, #c0d6ff, #2060c0);
  box-shadow: 0 0 8px 3px rgba(32,96,192,0.5);
  top: 50%; left: 50%;
  margin-top: 55px;
  margin-left: 50px;
  animation-delay: -6s;
}
.planet-fire {
  background: radial-gradient(circle at 40% 40%, #ffd6a8, #c06020);
  box-shadow: 0 0 8px 3px rgba(192,96,32,0.5);
  top: 50%; left: 50%;
  margin-top: 80px;
  margin-left: -70px;
  animation-delay: -9s;
}
.planet-earth {
  background: radial-gradient(circle at 40% 40%, #d6ffc0, #60a020);
  box-shadow: 0 0 8px 3px rgba(96,160,32,0.5);
  top: 50%; left: 50%;
  margin-top: -30px;
  margin-left: 75px;
  animation-delay: -11s;
}

/* ===== ORBIT RING VARIATIONS (轨道大小差异) ===== */
.orbit-ring:nth-child(1) { width: 120px; height: 120px; opacity: 0.5; border-color: rgba(100,180,255,0.12); }
.orbit-ring:nth-child(2) { width: 160px; height: 160px; opacity: 0.4; border-color: rgba(100,180,255,0.09); }
.orbit-ring:nth-child(3) { width: 200px; height: 200px; opacity: 0.3; border-color: rgba(100,180,255,0.06); }
.orbit-ring:nth-child(4) { width: 240px; height: 240px; opacity: 0.2; border-color: rgba(100,180,255,0.04); }

/* ===== ANIMATIONS ===== */
@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
.five-elements {
  animation: rotate 30s linear infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.08); }
}
@keyframes sparkle-flash {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50%       { opacity: 1; transform: scale(1.2); }
}
@keyframes planet-orbit {
  from { transform: rotate(0deg)   translateX(70px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(70px) rotate(-360deg); }
}


/* ===== Admin Dashboard Stats ===== */
.dash-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.dash-stat-card {
  background: linear-gradient(135deg, rgba(26,42,110,0.6) 0%, rgba(13,27,66,0.8) 100%);
  border: 1px solid rgba(240,200,64,0.2);
  border-radius: 14px;
  padding: 14px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
}
.dash-stat-card:hover {
  border-color: rgba(240,200,64,0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.dash-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.dash-stat-info {
  min-width: 0;
}
.dash-stat-value {
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #f0c840;
  line-height: 1.2;
  letter-spacing: 1px;
}
.dash-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* ===== Admin Two-Column Layout ===== */
.admin-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 0;
}
.admin-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ===== Dashboard Tip Box ===== */
.dash-tip {
  font-size: 11px;
  color: var(--neon-cyan);
  margin-bottom: 12px;
  padding: 8px 12px;
  background: rgba(77,166,255,0.08);
  border-radius: 8px;
  border-left: 3px solid var(--blue-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== Responsive: collapse to single column on small screens ===== */
@media (max-width: 600px) {
  .dash-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .admin-two-col {
    grid-template-columns: 1fr;
  }
}

/* Privacy / Agreement Modal */
#privacy-modal { backdrop-filter: blur(4px); }
#privacy-modal > div { box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(240,200,64,0.08) inset; }
#privacy-modal > div > div:nth-child(2)::-webkit-scrollbar { width: 4px; }
#privacy-modal > div > div:nth-child(2)::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 2px; }
#privacy-modal > div > div:nth-child(2)::-webkit-scrollbar-thumb { background: rgba(240,200,64,0.3); border-radius: 2px; }
#privacy-modal > div > div:nth-child(2) p { font-family: 'Rajdhani', sans-serif; }

/* ===== CUSTOMER SERVICE CHAT ===== */
.cs-chat-container {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 320px);
  min-height: 400px;
  max-height: 600px;
  background: var(--card-bg, rgba(26, 58, 110, 0.3));
  border: 1px solid var(--border-color, rgba(240, 200, 64, 0.15));
  border-radius: 12px;
  overflow: hidden;
  margin: 0 0 10px 0;
}
.cs-chat-header {
  padding: 12px 16px;
  background: rgba(240, 200, 64, 0.08);
  border-bottom: 1px solid var(--border-color, rgba(240, 200, 64, 0.15));
}
.cs-chat-agent {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cs-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a3a6e, #c9a84c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.cs-avatar-small {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a3a6e, #c9a84c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.cs-agent-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary, #e0e0e0);
}
.cs-agent-status {
  font-size: 12px;
  color: var(--text-secondary, #888);
  display: flex;
  align-items: center;
  gap: 4px;
}
.cs-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
}
.cs-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cs-msg {
  display: flex;
  flex-direction: column;
  max-width: 80%;
}
.cs-msg-user {
  align-self: flex-end;
  align-items: flex-end;
}
.cs-msg-agent {
  align-self: flex-start;
  align-items: flex-start;
  flex-direction: row;
  gap: 8px;
}
.cs-msg-bubble {
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  word-break: break-word;
}
.cs-msg-bubble-user {
  background: linear-gradient(135deg, #c9a84c, #e0c36a);
  color: #1a1a2e;
  border-bottom-right-radius: 4px;
}
.cs-msg-bubble-agent {
  background: rgba(26, 58, 110, 0.6);
  color: var(--text-primary, #e0e0e0);
  border-bottom-left-radius: 4px;
  border: 1px solid var(--border-color, rgba(240, 200, 64, 0.1));
}
.cs-msg-time {
  font-size: 10px;
  color: var(--text-secondary, #666);
  margin-top: 3px;
}
.cs-chat-input-area {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid var(--border-color, rgba(240, 200, 64, 0.15));
  background: rgba(0, 0, 0, 0.15);
  align-items: flex-end;
}
.cs-chat-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color, rgba(240, 200, 64, 0.15));
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--text-primary, #e0e0e0);
  font-size: 13px;
  resize: none;
  outline: none;
  font-family: inherit;
}
.cs-chat-input:focus {
  border-color: rgba(240, 200, 64, 0.4);
}
.cs-chat-input::placeholder {
  color: var(--text-secondary, #666);
}
.cs-chat-send {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #c9a84c, #e0c36a);
  color: #1a1a2e;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.cs-chat-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cs-chat-send:hover:not(:disabled) {
  opacity: 0.85;
}

/* ===== ADMIN CUSTOMER SERVICE ===== */
.admin-cs-header {
  margin-bottom: 12px;
}
.admin-cs-stats {
  font-size: 14px;
  margin-bottom: 4px;
}



/* ===== Edit Profile Card - Redesigned v2 ===== */
.edit-profile-card {
  background: linear-gradient(165deg, #162238 0%, #0c1524 100%);
  border: 1px solid rgba(74, 156, 212, 0.18);
  border-radius: 24px;
  width: 94%; max-width: 420px;
  max-height: 90vh; overflow-y: auto;
  box-shadow:
    0 25px 70px rgba(0,0,0,0.55),
    0 0 1px rgba(255,255,255,0.08) inset,
    0 0 60px rgba(74, 156, 212, 0.06);
  animation: epcIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes epcIn {
  from { opacity: 0; transform: translateY(30px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Header */
.epc-header {
  text-align: center;
  padding: 32px 28px 24px;
  position: relative;
}
.epc-header::after {
  content: '';
  position: absolute; bottom: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74,156,212,0.25), transparent);
}
.epc-avatar {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #4a9cd4 0%, #2d6baa 100%);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: #fff;
  box-shadow: 0 8px 24px rgba(74,156,212,0.35), 0 0 0 3px rgba(74,156,212,0.12);

}
.epc-header h3 {
  margin: 0 0 6px;
  font-size: 20px; font-weight: 800;
  color: #e8f0f8;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.epc-sub {
  margin: 0; font-size: 13px;
  color: rgba(255,255,255,0.35);
  font-weight: 400;
  letter-spacing: 1px;
}

/* Body */
.epc-body { padding: 24px 28px; }
.epc-field { margin-bottom: 20px; }
.epc-field > label {
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700;
  color: rgba(74,156,212,0.85);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.epc-field > label i {
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(74,156,212,0.12);
  border-radius: 5px;
  font-size: 10px;
  color: #4a9cd4;
}
.epc-field input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(20,35,60,0.8), rgba(12,22,38,0.9));
  color: #e8f0f8;
  font-size: 15px;
  font-weight: 500;
  box-sizing: border-box;
  outline: none;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}
.epc-field input::placeholder { color: rgba(255,255,255,0.18); font-size: 13px; }
.epc-field input:focus {
  border-color: rgba(74,156,212,0.5);
  background: linear-gradient(180deg, rgba(25,45,75,0.9), rgba(15,28,48,0.95));
  box-shadow: 0 0 0 3px rgba(74,156,212,0.1), 0 4px 16px rgba(0,0,0,0.15);
}

/* Divider */
.epc-divider {
  margin: 22px 0 18px;
  text-align: center;
  position: relative;
}
.epc-divider::before {
  content: '';
  position: absolute; left: 0; top: 50%; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(74,156,212,0.2) 50%, transparent 90%);
}
.epc-divider span {
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.3);
  background: linear-gradient(180deg, #162238, #0c1524);
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.epc-divider span i { font-size: 10px; color: rgba(240,200,64,0.5); }

/* Footer */
.epc-footer {
  display: flex; gap: 14px;
  padding: 18px 28px 26px;
}
.epc-btn {
  flex: 1;
  padding: 14px;
  border-radius: 14px;
  border: none;
  font-size: 14px; font-weight: 800;
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.epc-cancel {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.07);
}
.epc-cancel:hover {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  border-color: rgba(255,255,255,0.12);
}
.epc-save {
  background: linear-gradient(135deg, #4a9cd4 0%, #2d6baa 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(74,156,212,0.35);
  border: none;
}
.epc-save:hover {
  background: linear-gradient(135deg, #5aacE4 0%, #3d7bba 100%);
  box-shadow: 0 8px 30px rgba(74,156,212,0.45);
  transform: translateY(-2px);
}
.epc-save:active { transform: translateY(0); box-shadow: 0 2px 10px rgba(74,156,212,0.3); }




/* Disabled phone field in edit profile */
.epc-field input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: linear-gradient(180deg, rgba(20,35,60,0.5), rgba(12,22,38,0.6)) !important;
  border-color: rgba(255,255,255,0.03) !important;
}
