@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-main: radial-gradient(circle at 50% 50%, #121324 0%, #080911 100%);
  --glass-bg: rgba(255, 255, 255, 0.02);
  --glass-bg-hover: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.06);
  --accent: #5e5ce6;
  --accent-glow: rgba(94, 92, 230, 0.3);
  --text-main: #f5f5f7;
  --text-muted: #86868b;
  --font: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: var(--font); }
html { background: var(--bg-main); background-color: #080911; height: 100%; width: 100%; overflow: hidden; }
body { background: var(--bg-main); color: var(--text-main); height: 100vh; height: 100dvh; width: 100%; display: flex; align-items: flex-start; justify-content: center; overflow: hidden; margin: 0; padding: 0; }

/* Chat page — panel cố định height, căn giữa màn hình */
body.chat-page { align-items: center; overflow: hidden; }

/* Trình Bao Glassmorphism */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  border-radius: var(--radius);
  width: 92vw;
  max-width: 900px;
  height: 86vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Các Nút Bấm & Inputs Premium */
input, button, select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  padding: 12px 18px;
  border-radius: 10px;
  outline: none;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
input:focus { border-color: var(--accent); box-shadow: 0 0 10px var(--accent-glow); background: rgba(255, 255, 255, 0.07); }
button { cursor: pointer; font-weight: 500; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
button:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-1px); box-shadow: 0 4px 15px var(--accent-glow); }
button:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; box-shadow: none !important; }
button.secondary { background: transparent; border-color: var(--glass-border); }
button.secondary:hover { background: var(--glass-bg-hover); }

/* Khung Header */
header { padding: 18px 24px; border-bottom: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: space-between; background: rgba(255, 255, 255, 0.01); }
h1 { font-size: 18px; font-weight: 600; letter-spacing: 0.5px; background: linear-gradient(135deg, #fff 30%, #86868b 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* ─── Login Overlay — Aurora Fintech ──────────────────────────────────────── */
.auth-overlay {
  position: fixed; inset: 0;
  background: #06060f;
  display: flex; align-items: center; justify-content: center;
  z-index: 100; opacity: 1; transition: opacity 0.5s ease;
  overflow: hidden;
}
.auth-overlay.hidden { opacity: 0; pointer-events: none; }

/* Aurora background orbs */
.aurora-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none; will-change: transform;
}
.aurora-orb-1 {
  width: 500px; height: 500px; top: -120px; left: -100px;
  background: radial-gradient(circle, rgba(94,92,230,0.25) 0%, transparent 70%);
  animation: aurora-float-1 12s ease-in-out infinite;
}
.aurora-orb-2 {
  width: 420px; height: 420px; bottom: -80px; right: -80px;
  background: radial-gradient(circle, rgba(191,90,242,0.2) 0%, transparent 70%);
  animation: aurora-float-2 15s ease-in-out infinite;
}
@keyframes aurora-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.08); }
}
@keyframes aurora-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, -25px) scale(1.06); }
}

/* Auth card */
.auth-box {
  position: relative; z-index: 1;
  width: 360px; max-width: 95vw;
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(30px) saturate(160%);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 36px 32px 28px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.06);
  display: flex; flex-direction: column; align-items: center; gap: 0;
  text-align: center;
}

/* Brand */
.brand-icon {
  width: 64px; height: 64px; border-radius: 20px; margin-bottom: 16px;
  background: linear-gradient(135deg, #5e5ce6 0%, #bf5af2 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; box-shadow: 0 8px 32px rgba(94,92,230,0.4);
  animation: icon-pulse 3s ease-in-out infinite;
}
@keyframes icon-pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(94,92,230,0.4); }
  50% { box-shadow: 0 8px 48px rgba(94,92,230,0.7), 0 0 0 8px rgba(94,92,230,0.1); }
}
.auth-box h1 {
  font-size: 26px; font-weight: 700; letter-spacing: 0.3px;
  background: linear-gradient(135deg, #fff 40%, #a89af5 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.auth-tagline {
  font-size: 13px; color: var(--text-muted); font-style: italic;
  margin-bottom: 24px; line-height: 1.5;
}
.auth-divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  margin-bottom: 24px;
}

/* Step containers */
.auth-step { width: 100%; display: none; flex-direction: column; align-items: center; gap: 16px; animation: step-in 0.35s cubic-bezier(0.34,1.56,0.64,1); }
.auth-step.active { display: flex; }
@keyframes step-in {
  from { opacity: 0; transform: translateX(20px) scale(0.97); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

/* Phone input */
.phone-input-wrap {
  position: relative; width: 100%;
}
.phone-input-wrap .phone-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  font-size: 16px; pointer-events: none;
}
.phone-input-wrap input {
  width: 100%; padding-left: 42px; font-size: 15px; text-align: left;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px; height: 50px;
}
.phone-input-wrap input:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(94,92,230,0.15);
}
.btn-next {
  width: 100%; height: 50px; border-radius: 12px; font-size: 15px; font-weight: 600;
  background: linear-gradient(135deg, #5e5ce6 0%, #bf5af2 100%);
  border: none; color: #fff; letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(94,92,230,0.4);
  transition: all 0.25s ease;
}
.btn-next:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(94,92,230,0.55); background: linear-gradient(135deg, #6e6cf6 0%, #cf6af2 100%); }
.btn-next:active { transform: translateY(0); }

/* PIN step */
.phone-display {
  font-size: 14px; color: var(--text-muted); letter-spacing: 0.5px; margin-bottom: 4px;
}
.phone-display strong { color: var(--text-main); font-weight: 500; }

/* PIN dot indicators */
.pin-dots {
  display: flex; gap: 12px; align-items: center; justify-content: center;
  margin: 4px 0 8px;
}
.pin-dot {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  background: transparent;
  transition: all 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.pin-dot.filled {
  background: linear-gradient(135deg, #5e5ce6, #bf5af2);
  border-color: transparent;
  transform: scale(1.15);
  box-shadow: 0 0 10px rgba(94,92,230,0.6);
}
.pin-dot.error {
  background: #ff453a; border-color: transparent;
  box-shadow: 0 0 10px rgba(255,69,58,0.6);
}
.pin-dots.shake {
  animation: shake 0.45s cubic-bezier(0.36,0.07,0.19,0.97) both;
}
@keyframes shake {
  10%, 90% { transform: translateX(-2px); }
  20%, 80% { transform: translateX(4px); }
  30%, 50%, 70% { transform: translateX(-6px); }
  40%, 60% { transform: translateX(6px); }
}

/* Bàn Phím Số Keypad */
.pin-keypad {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; width: 100%;
}
.keypad-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: var(--text-main);
  font-size: 22px; font-weight: 500;
  height: 60px; border-radius: 16px;
  cursor: pointer; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease, transform 0.1s ease, border-color 0.15s ease;
  padding: 0;
}
.keypad-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
}
.keypad-btn:active { transform: scale(0.94); background: rgba(255,255,255,0.12); }
/* Ripple */
.keypad-btn::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.3s ease;
}
.keypad-btn:active::after { opacity: 1; transition: opacity 0s; }
.keypad-btn.danger-btn { color: #ff6961; border-color: rgba(255,69,58,0.15); background: rgba(255,69,58,0.04); font-size: 18px; }
.keypad-btn.danger-btn:hover { background: rgba(255,69,58,0.12); border-color: rgba(255,69,58,0.3); }

/* Back link */
.btn-back-phone {
  background: none; border: none; color: var(--text-muted); font-size: 12px;
  cursor: pointer; padding: 4px 8px; margin-top: 4px;
  transition: color 0.2s; border-radius: 6px;
  box-shadow: none !important; transform: none !important;
}
.btn-back-phone:hover { color: var(--text-main); background: none; }

/* Error message */
.auth-error-msg {
  font-size: 13px; color: #ff6961; display: none;
  width: 100%; text-align: center; min-height: 18px;
  animation: step-in 0.2s ease;
}

/* Khung Hội Thoại (Chat Area) */
.chat-container { flex: 1; overflow-y: auto; padding: 24px; display: flex; flex-direction: column; gap: 20px; }
.message { display: block; max-width: 80%; padding: 14px 18px; border-radius: var(--radius); line-height: 1.6; font-size: 15px; animation: slideUp 0.3s ease-out forwards; }
.message.user { align-self: flex-end; background: var(--accent); color: #fff; border-bottom-right-radius: 4px; box-shadow: 0 4px 15px var(--accent-glow); }
.message.ai { align-self: flex-start; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--glass-border); border-bottom-left-radius: 4px; }

/* Khối Suy Luận Collapsible (Thinking block) */
.thinking-block { margin-bottom: 10px; border-left: 2px solid #ff9500; padding-left: 12px; font-size: 13px; color: var(--text-muted); }
.thinking-title { cursor: pointer; font-weight: 600; display: flex; align-items: center; gap: 6px; user-select: none; margin-bottom: 4px; }
.thinking-content { display: none; margin-top: 6px; font-style: italic; white-space: pre-wrap; }
.thinking-block.open .thinking-content { display: block; }



/* Markdown Styles */
code { background: rgba(255, 255, 255, 0.1); padding: 2px 6px; border-radius: 4px; font-family: monospace; font-size: 13px; }
pre { background: rgba(0, 0, 0, 0.3); padding: 14px; border-radius: 8px; overflow-x: auto; margin: 10px 0; border: 1px solid var(--glass-border); }
pre code { background: transparent; padding: 0; }
ul, ol { margin-left: 20px; padding-left: 5px; margin-bottom: 12px; margin-top: 8px; }
li { margin-bottom: 6px; }

/* Markdown Header Sizes */
.message h3 { font-size: 20px; margin: 14px 0 8px 0; font-weight: 700; color: var(--text-main); }
.message h4 { font-size: 18px; margin: 12px 0 6px 0; font-weight: 600; color: var(--text-main); }
.message h5 { font-size: 16px; margin: 10px 0 4px 0; font-weight: 600; color: var(--text-main); }

/* Khung Gửi Tin Nhắn (Chat Input Area) */
.input-wrapper {
  padding: 0 16px calc(24px + env(safe-area-inset-bottom, 0px));
  background: transparent;
  display: flex;
  justify-content: center;
}
.input-area { 
  display: flex; gap: 8px; background: rgba(255, 255, 255, 0.05); 
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px; padding: 6px 6px 6px 16px;
  max-width: 800px; width: 100%;
  align-items: center;
  backdrop-filter: blur(10px);
}
.input-area input { flex: 1; border: none; background: transparent; font-size: 15px; outline: none; box-shadow: none; padding: 0; height: 36px; }
.input-area button { 
  border-radius: 50%; width: 36px; height: 36px; padding: 0; 
  display: flex; align-items: center; justify-content: center;
  background: #fff; color: #000; border: none; flex-shrink: 0;
}
.input-area button:disabled { background: rgba(255, 255, 255, 0.2); color: rgba(255, 255, 255, 0.5); }
.input-area button svg { width: 18px; height: 18px; }

/* Admin Panel Styles */
.admin-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 20px; padding: 20px; flex: 1; overflow-y: auto; }
.admin-card { background: rgba(255, 255, 255, 0.01); border: 1px solid var(--glass-border); border-radius: 12px; padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.admin-table { width: 100%; border-collapse: collapse; text-align: left; font-size: 13px; }
.admin-table th, .admin-table td { padding: 10px; border-bottom: 1px solid var(--glass-border); }
.admin-table th { color: var(--text-muted); font-weight: 500; }
.admin-table tr:hover td { background: rgba(255, 255, 255, 0.02); }

@keyframes slideUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Typing Indicator (Loading) */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  width: 50px;
}
.typing-indicator span {
  width: 8px;
  height: 8px;
  background: var(--text-muted);
  border-radius: 50%;
  display: inline-block;
  animation: bounce 1.4s infinite ease-in-out both;
}
.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
  0%, 80%, 100% { transform: scale(0); opacity: 0.3; }
  40% { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
  .glass-panel {
    width: 100vw;
    flex: 1;
    border-radius: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .admin-grid { grid-template-columns: 1fr; overflow-y: auto; }

  /* --- Mobile Optimization for Chat Page --- */
  
  /* Use modern dvh and let flex stretch to fill the screen */
  body.chat-page {
    align-items: stretch;
    display: flex;
    flex-direction: column;
  }

  /* Prevent auto-zoom on iOS */
  input, select, textarea {
    font-size: 16px !important;
  }

  /* Header Optimization */
  header {
    padding: 12px 16px;
    gap: 10px;
  }
  header h1 {
    font-size: 16px;
    background: linear-gradient(135deg, #fff 50%, #bf5af2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  header p {
    font-size: 10px !important;
  }
  
  header > div:last-child {
    gap: 8px !important;
  }

  /* Credits Badge on mobile */
  header > div:last-child > span:first-child {
    padding: 4px 8px !important;
    font-size: 12px !important;
  }
  .lbl-txt {
    display: none;
  }
  .lbl-icon {
    display: inline-block !important;
    font-size: 14px;
  }

  /* Hide text, show icon on header buttons */
  header button {
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 14px;
  }
  header .btn-text {
    display: none;
  }
  header .btn-icon {
    display: inline-block !important;
  }

  /* Chat container optimizations */
  .chat-container {
    padding: 16px 12px;
    gap: 12px;
  }
  .message {
    max-width: 92%;
    padding: 10px 14px;
    font-size: 15px;
    line-height: 1.5;
  }
  .message.ai {
    background: transparent;
    border: none;
    padding: 10px 4px;
  }
  .message.user {
    background: #2a2a35;
    box-shadow: none;
    color: #fff;
    border-radius: 20px;
    border-bottom-right-radius: 4px;
  }
  .message h3 { font-size: 17px; margin: 10px 0 6px 0; }
  .message h4 { font-size: 15px; margin: 8px 0 4px 0; }

  /* Input area optimizations */
  .input-area {
    padding: 10px 12px;
    gap: 8px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
  }
  .input-area input {
    padding: 10px 14px;
    border-radius: 8px;
  }
  .input-area button {
    padding: 10px 14px;
    border-radius: 8px;
    min-width: 46px;
    height: 44px;
  }
  .input-area .btn-text {
    display: none;
  }
  .input-area .btn-icon {
    display: inline-block !important;
    font-size: 16px;
    font-weight: bold;
  }

  /* --- Login / Auth Overlay mobile adjustment --- */
  .auth-box {
    padding: 24px 20px 20px;
    gap: 0;
    max-width: 90vw;
    border-radius: 20px;
  }
  .brand-icon {
    width: 52px;
    height: 52px;
    font-size: 24px;
    margin-bottom: 12px;
    border-radius: 16px;
  }
  .auth-box h1 {
    font-size: 22px;
    margin-bottom: 4px;
  }
  .auth-tagline {
    margin-bottom: 16px;
    font-size: 12px;
  }
  .auth-divider {
    margin-bottom: 16px;
  }
  .auth-step {
    gap: 12px;
  }
  .pin-dots {
    margin: 2px 0 6px;
    gap: 8px;
  }
  .pin-dot {
    width: 12px;
    height: 12px;
  }
  .pin-keypad {
    gap: 8px;
  }
  .keypad-btn {
    height: 48px;
    font-size: 20px;
    border-radius: 12px;
  }
}

/* Admin page — panel full viewport, no page scroll */
body.admin-page { align-items: flex-start; padding: 24px 0; overflow: hidden; }
body.admin-page .glass-panel {
  height: calc(100vh - 48px);
  max-height: calc(100vh - 48px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ─── Tab Bar ──────────────────────────────────────────────────────────────── */
.tab-bar {
  display: flex;
  gap: 2px;
  padding: 0 20px;
  border-bottom: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.01);
  flex-shrink: 0;
}
.tab-btn {
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 500;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  transform: none !important;
  box-shadow: none !important;
  margin-bottom: -1px;
}
.tab-btn:hover { color: var(--text-main); background: rgba(255,255,255,0.03); }
.tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); background: transparent; }

/* ─── Tab Panels ────────────────────────────────────────────────────────────── */
.tab-content { flex: 1; overflow-y: auto; }
.tab-panel { display: none; padding: 20px; }
.tab-panel.active { display: block; }
.tab-panel .admin-grid { padding: 0; grid-template-columns: 1fr 1.5fr; }

@media (max-width: 768px) {
  body.admin-page { padding: 0; overflow: hidden; }
  body.admin-page .glass-panel { width: 100vw; height: 100vh; border-radius: 0; border: none; }
  .tab-panel .admin-grid { grid-template-columns: 1fr; }
  .tab-btn { padding: 10px 12px; font-size: 12px; }
}

/* --- Admin User Modal --- */
.admin-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.75); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; z-index: 1000;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.admin-modal-overlay.active { opacity: 1; pointer-events: auto; }
.admin-modal-box {
  background: var(--glass-bg); backdrop-filter: blur(25px); border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 24px; width: 400px; max-width: 90vw;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  transform: translateY(20px); transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.admin-modal-overlay.active .admin-modal-box { transform: translateY(0); }

/* --- Sub Tabs & Tools --- */
.sub-tabs-container { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; flex-wrap: wrap; gap: 12px; }
.sub-tabs { display: flex; gap: 8px; background: rgba(255,255,255,0.03); padding: 4px; border-radius: 12px; border: 1px solid var(--glass-border); }
.sub-tab-btn { background: transparent; border: none; padding: 6px 12px; border-radius: 8px; font-size: 13px; color: var(--text-muted); transition: 0.2s; box-shadow: none !important; }
.sub-tab-btn:hover { color: var(--text-main); background: rgba(255,255,255,0.05); }
.sub-tab-btn.active { color: #fff; background: rgba(255,255,255,0.15); font-weight: 600; box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important; }

/* --- Pagination --- */
.pagination-controls { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 16px; padding-bottom: 8px; }
.page-btn { background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); padding: 6px 12px; border-radius: 8px; color: var(--text-muted); font-size: 13px; box-shadow: none !important; }
.page-btn:hover:not(:disabled) { background: rgba(255,255,255,0.1); color: var(--text-main); }
.page-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; font-weight: 600; box-shadow: 0 4px 15px var(--accent-glow) !important; }

/* --- Badges --- */
.warning-badge { display: inline-flex; align-items: center; background: rgba(255,69,58,0.15); color: #ff453a; border: 1px solid rgba(255,69,58,0.3); padding: 2px 6px; border-radius: 6px; font-size: 10px; font-weight: 600; margin-top: 4px; animation: pulse-red 2s infinite; }
@keyframes pulse-red { 0% { opacity: 0.8; } 50% { opacity: 1; box-shadow: 0 0 8px rgba(255,69,58,0.4); } 100% { opacity: 0.8; } }
.tier-badge { display: inline-block; padding: 2px 6px; border-radius: 4px; font-size: 10px; font-weight: 600; }
.tier-pending { background: rgba(255,149,0,0.2); color: #ff9500; border: 1px solid rgba(255,149,0,0.4); }
.tier-standard { background: rgba(10,132,255,0.2); color: #0a84ff; border: 1px solid rgba(10,132,255,0.4); }
.tier-vip { background: rgba(255,214,10,0.2); color: #ffd60a; border: 1px solid rgba(255,214,10,0.4); }
