/* ============================================================
   ANSAR ISRAN SMM PANEL - style.css
   Modern Neon Dark Theme - Professional UI/UX
   ============================================================ */

/* ==================== CSS VARIABLES ==================== */
:root {
  /* Neon Colors */
  --neon-cyan: #00f5ff;
  --neon-purple: #b026ff;
  --neon-green: #00ff88;
  --neon-orange: #ff6b35;
  --neon-pink: #ff1694;
  --neon-yellow: #ffe600;
  --neon-blue: #4d79ff;

  /* Dark Theme */
  --bg-primary: #0a0a0f;
  --bg-secondary: #0f0f1a;
  --bg-tertiary: #141425;
  --bg-card: #111122;
  --bg-card-hover: #1a1a2e;
  --bg-glass: rgba(255,255,255,0.04);
  --bg-glass-hover: rgba(255,255,255,0.08);
  --bg-input: rgba(255,255,255,0.06);

  /* Text Colors */
  --text-primary: #e8e8f0;
  --text-secondary: #9090b0;
  --text-muted: #5a5a7a;
  --text-heading: #ffffff;

  /* Border Colors */
  --border-color: rgba(255,255,255,0.08);
  --border-neon: rgba(0,245,255,0.3);
  --border-glow: rgba(0,245,255,0.6);

  /* Gradients */
  --gradient-neon: linear-gradient(135deg, #00f5ff, #b026ff);
  --gradient-neon2: linear-gradient(135deg, #00ff88, #00f5ff);
  --gradient-dark: linear-gradient(135deg, #0a0a0f, #141425);
  --gradient-card: linear-gradient(135deg, rgba(0,245,255,0.05), rgba(176,38,255,0.05));

  /* Shadows */
  --shadow-neon: 0 0 20px rgba(0,245,255,0.3);
  --shadow-neon-sm: 0 0 10px rgba(0,245,255,0.2);
  --shadow-purple: 0 0 20px rgba(176,38,255,0.3);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.5);

  /* Dimensions */
  --sidebar-width: 260px;
  --navbar-height: 64px;
  --bottom-nav-height: 70px;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 28px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;

  /* Fonts */
  --font-brand: 'Orbitron', monospace;
  --font-heading: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Light Theme Variables */
[data-theme="light"] {
  --bg-primary: #f0f4ff;
  --bg-secondary: #e8edf8;
  --bg-tertiary: #dde3f5;
  --bg-card: #ffffff;
  --bg-card-hover: #f5f7ff;
  --bg-glass: rgba(0,0,0,0.04);
  --bg-glass-hover: rgba(0,0,0,0.08);
  --bg-input: rgba(0,0,0,0.06);
  --text-primary: #1a1a3e;
  --text-secondary: #4a4a6e;
  --text-muted: #8a8aaa;
  --text-heading: #0a0a2a;
  --border-color: rgba(0,0,0,0.1);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.1);
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* RTL Support */
[dir="rtl"] {
  font-family: 'Inter', sans-serif;
}

[dir="rtl"] .sidebar {
  right: 0;
  left: auto;
  transform: translateX(100%);
}
[dir="rtl"] .sidebar.open {
  transform: translateX(0);
}
[dir="rtl"] .main-content {
  margin-left: 0;
  margin-right: 0;
}
@media (min-width: 1024px) {
  [dir="rtl"] .main-content {
    margin-right: var(--sidebar-width);
    margin-left: 0;
  }
}

.hidden { display: none !important; }

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--neon-cyan); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--neon-purple); }

/* ==================== SPLASH SCREEN ==================== */
.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050508;
  overflow: hidden;
}

.splash-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,245,255,0.08) 0%, rgba(176,38,255,0.05) 40%, transparent 70%);
  animation: splashBgPulse 3s ease-in-out infinite;
}

@keyframes splashBgPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.splash-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--neon-cyan);
  border-radius: 50%;
  animation: float linear infinite;
  opacity: 0;
}

@keyframes float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.splash-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
}

.splash-logo {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
}

.logo-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: rotateRing linear infinite;
}

.ring-1 {
  inset: 0;
  border-color: var(--neon-cyan) transparent transparent transparent;
  animation-duration: 2s;
  box-shadow: 0 0 15px var(--neon-cyan);
}

.ring-2 {
  inset: 12px;
  border-color: transparent var(--neon-purple) transparent transparent;
  animation-duration: 3s;
  animation-direction: reverse;
  box-shadow: 0 0 10px var(--neon-purple);
}

.ring-3 {
  inset: 24px;
  border-color: var(--neon-green) transparent transparent transparent;
  animation-duration: 1.5s;
  box-shadow: 0 0 8px var(--neon-green);
}

@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.logo-icon {
  position: absolute;
  inset: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--neon-cyan);
  animation: iconPulse 2s ease-in-out infinite;
  text-shadow: 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan);
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); text-shadow: 0 0 20px var(--neon-cyan); }
  50% { transform: scale(1.2); text-shadow: 0 0 40px var(--neon-cyan), 0 0 80px var(--neon-cyan); }
}

.splash-title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 8px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.splash-brand {
  font-family: var(--font-brand);
  font-size: clamp(1.8rem, 6vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 4px;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.splash-subtitle {
  font-family: var(--font-brand);
  font-size: clamp(1rem, 3vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 8px;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.7s both;
}

.splash-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  letter-spacing: 2px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.9s both;
}

.splash-progress-container {
  width: min(320px, 80vw);
  margin: 0 auto;
  animation: fadeInUp 0.8s ease 1s both;
}

.splash-progress-bar {
  height: 3px;
  background: var(--gradient-neon);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
  margin-bottom: 8px;
}

.splash-progress-text {
  font-size: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 2px;
  font-family: var(--font-brand);
}

/* ==================== NEON TEXT ==================== */
.neon-text {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan);
}

.neon-text-cyan { color: var(--neon-cyan); text-shadow: 0 0 15px var(--neon-cyan); }
.neon-text-purple { color: var(--neon-purple); text-shadow: 0 0 15px var(--neon-purple); }
.neon-text-green { color: var(--neon-green); text-shadow: 0 0 15px var(--neon-green); }

.neon-icon {
  color: var(--neon-cyan);
  filter: drop-shadow(0 0 8px var(--neon-cyan));
}

@keyframes neonFlicker {
  0%, 100% { opacity: 1; }
  92% { opacity: 1; }
  93% { opacity: 0.7; }
  94% { opacity: 1; }
  95% { opacity: 0.6; }
  96% { opacity: 1; }
}

/* ==================== GLASS CARD ==================== */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 20px;
  transition: var(--transition);
}

.glass-card:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-neon);
  box-shadow: var(--shadow-neon-sm);
}

.glass-card-inner {
  background: rgba(0,245,255,0.04);
  border: 1px solid var(--border-neon);
  border-radius: var(--border-radius);
  padding: 16px;
}

/* ==================== PWA BANNER ==================== */
.pwa-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, rgba(0,245,255,0.15), rgba(176,38,255,0.15));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-neon);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.pwa-banner-content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.pwa-icon { font-size: 1.5rem; color: var(--neon-cyan); }

.pwa-text {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
}

.pwa-text strong { color: var(--text-heading); }
.pwa-text span { color: var(--text-secondary); font-size: 0.75rem; }

/* ==================== TOP NAVBAR ==================== */
.top-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.top-navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  opacity: 0.4;
}

.navbar-left, .navbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}

.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: var(--transition);
}

.hamburger-btn:hover span { background: var(--neon-cyan); }
.hamburger-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger-btn.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-icon { font-size: 1.3rem; }
.brand-name {
  font-family: var(--font-brand);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.brand-accent { color: var(--neon-purple); }

.navbar-icon-btn {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-secondary);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  transition: var(--transition);
}

.navbar-icon-btn:hover {
  color: var(--neon-cyan);
  border-color: var(--border-neon);
  background: rgba(0,245,255,0.1);
  box-shadow: var(--shadow-neon-sm);
}

.notification-btn-wrap { position: relative; }

.notif-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--neon-pink);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.user-avatar-wrap { cursor: pointer; }

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #000;
  box-shadow: 0 0 10px rgba(0,245,255,0.4);
}

/* ==================== SEARCH OVERLAY ==================== */
.search-overlay {
  position: fixed;
  top: var(--navbar-height);
  left: 0;
  right: 0;
  z-index: 450;
  padding: 16px;
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  animation: fadeDown 0.2s ease;
}

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

.search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

#globalSearch {
  width: 100%;
  padding: 12px 48px;
  background: var(--bg-input);
  border: 1px solid var(--border-neon);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 0.95rem;
  outline: none;
  font-family: var(--font-body);
}

#globalSearch::placeholder { color: var(--text-muted); }
#globalSearch:focus { box-shadow: 0 0 15px rgba(0,245,255,0.2); }

#searchClose {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
}

.search-results {
  max-height: 300px;
  overflow-y: auto;
  margin-top: 12px;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.search-result-item:hover { background: var(--bg-glass-hover); }
.search-result-item .result-icon { font-size: 1.1rem; color: var(--neon-cyan); width: 20px; }
.search-result-item .result-name { font-size: 0.9rem; }
.search-result-item .result-cat { font-size: 0.75rem; color: var(--text-muted); }
.search-result-item .result-price { margin-left: auto; font-size: 0.8rem; color: var(--neon-green); }

/* ==================== LANGUAGE DROPDOWN ==================== */
.lang-dropdown {
  position: fixed;
  top: calc(var(--navbar-height) + 8px);
  right: 16px;
  z-index: 600;
  background: var(--bg-card);
  border: 1px solid var(--border-neon);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-neon);
  min-width: 160px;
  animation: popIn 0.2s ease;
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.9) translateY(-10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 0.9rem;
}

.lang-option:hover { background: var(--bg-glass-hover); color: var(--neon-cyan); }
.lang-option .flag { font-size: 1.2rem; }

/* ==================== NOTIFICATION PANEL ==================== */
.notif-panel {
  position: fixed;
  top: calc(var(--navbar-height) + 8px);
  right: 16px;
  z-index: 600;
  width: min(360px, calc(100vw - 32px));
  background: var(--bg-card);
  border: 1px solid var(--border-neon);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-neon);
  animation: popIn 0.2s ease;
  max-height: 420px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.notif-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-color);
}

.notif-header h3 { font-size: 0.95rem; font-family: var(--font-heading); }

.notif-list { overflow-y: auto; flex: 1; }

.notif-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.notif-item:hover { background: var(--bg-glass-hover); }
.notif-item.unread { background: rgba(0,245,255,0.04); }

.notif-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.notif-icon.cyan { background: rgba(0,245,255,0.15); color: var(--neon-cyan); }
.notif-icon.green { background: rgba(0,255,136,0.15); color: var(--neon-green); }
.notif-icon.orange { background: rgba(255,107,53,0.15); color: var(--neon-orange); }

.notif-content { flex: 1; }
.notif-title { font-size: 0.85rem; font-weight: 500; margin-bottom: 2px; }
.notif-time { font-size: 0.72rem; color: var(--text-muted); }

/* ==================== SIDEBAR ==================== */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--sidebar-width);
  z-index: 400;
  background: rgba(10,10,20,0.97);
  backdrop-filter: blur(20px);
  border-right: 1px solid var(--border-color);
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.sidebar::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--neon-cyan), var(--neon-purple), transparent);
  opacity: 0.3;
}

.sidebar.open { transform: translateX(0); }

@media (min-width: 1024px) {
  .sidebar { transform: translateX(0); }
  .main-content { margin-left: var(--sidebar-width); }
}

.sidebar-header {
  padding: 80px 16px 20px;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg-glass);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

.sidebar-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #000;
  box-shadow: 0 0 15px rgba(0,245,255,0.4);
  flex-shrink: 0;
}

.sidebar-username {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-heading);
}

.sidebar-balance {
  font-size: 0.8rem;
  color: var(--neon-green);
  display: flex;
  align-items: center;
  gap: 4px;
}

.sidebar-nav {
  padding: 12px 8px;
  flex: 1;
}

.nav-section-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-muted);
  padding: 12px 12px 4px;
  font-family: var(--font-brand);
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--border-radius);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-fast);
  margin-bottom: 2px;
  position: relative;
  overflow: hidden;
}

.nav-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--neon-cyan);
  border-radius: 0 2px 2px 0;
  transition: height 0.2s ease;
}

.nav-item:hover, .nav-item.active {
  color: var(--text-heading);
  background: rgba(0,245,255,0.08);
}

.nav-item:hover::before, .nav-item.active::before {
  height: 60%;
}

.nav-item.active {
  color: var(--neon-cyan);
  border: 1px solid rgba(0,245,255,0.15);
}

.nav-icon { font-size: 1rem; width: 20px; text-align: center; }
.nav-item.active .nav-icon { color: var(--neon-cyan); filter: drop-shadow(0 0 4px var(--neon-cyan)); }

/* ==================== SIDEBAR OVERLAY ==================== */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  z-index: 350;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.sidebar-overlay.active { opacity: 1; pointer-events: all; }

@media (min-width: 1024px) {
  .sidebar-overlay { display: none; }
}

/* ==================== MAIN CONTENT ==================== */
.main-content {
  min-height: 100vh;
  padding-top: var(--navbar-height);
  padding-bottom: calc(var(--bottom-nav-height) + 20px);
  transition: margin-left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1024px) {
  .main-content { padding-bottom: 40px; }
}

/* ==================== PAGES ==================== */
.page {
  display: none;
  padding: 24px 16px;
  max-width: 1200px;
  margin: 0 auto;
  animation: pageIn 0.3s ease;
}

.page.active { display: block; }

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

.page-header {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.page-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: 700;
  color: var(--text-heading);
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-heading);
  margin: 24px 0 12px;
  padding-left: 12px;
  border-left: 3px solid var(--neon-cyan);
}

/* ==================== ANNOUNCEMENT BANNER ==================== */
.announcement-banner {
  background: linear-gradient(135deg, rgba(255,230,0,0.1), rgba(255,107,53,0.1));
  border: 1px solid rgba(255,230,0,0.3);
  border-radius: var(--border-radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--neon-yellow);
}

.announcement-banner i { font-size: 1.1rem; flex-shrink: 0; }
.announcement-banner span { flex: 1; }
#closeAnnouncement { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 0.9rem; }

/* ==================== STATS GRID ==================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}

.stat-card {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  border-radius: var(--border-radius-lg);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  cursor: default;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.stat-card-glow {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-neon);
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.stat-card.cyan { border-color: rgba(0,245,255,0.2); }
.stat-card.cyan .stat-card-glow { background: linear-gradient(90deg, var(--neon-cyan), transparent); }
.stat-card.cyan:hover { border-color: rgba(0,245,255,0.5); box-shadow: 0 8px 32px rgba(0,245,255,0.15); }
.stat-card.cyan .stat-card-icon { color: var(--neon-cyan); }

.stat-card.purple { border-color: rgba(176,38,255,0.2); }
.stat-card.purple .stat-card-glow { background: linear-gradient(90deg, var(--neon-purple), transparent); }
.stat-card.purple:hover { border-color: rgba(176,38,255,0.5); box-shadow: 0 8px 32px rgba(176,38,255,0.15); }
.stat-card.purple .stat-card-icon { color: var(--neon-purple); }

.stat-card.green { border-color: rgba(0,255,136,0.2); }
.stat-card.green .stat-card-glow { background: linear-gradient(90deg, var(--neon-green), transparent); }
.stat-card.green:hover { border-color: rgba(0,255,136,0.5); box-shadow: 0 8px 32px rgba(0,255,136,0.15); }
.stat-card.green .stat-card-icon { color: var(--neon-green); }

.stat-card.orange { border-color: rgba(255,107,53,0.2); }
.stat-card.orange .stat-card-glow { background: linear-gradient(90deg, var(--neon-orange), transparent); }
.stat-card.orange:hover { border-color: rgba(255,107,53,0.5); box-shadow: 0 8px 32px rgba(255,107,53,0.15); }
.stat-card.orange .stat-card-icon { color: var(--neon-orange); }

.stat-card-icon { font-size: 1.5rem; }
.stat-value { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--text-heading); }
.stat-label { font-size: 0.75rem; color: var(--text-secondary); letter-spacing: 0.5px; }

/* ==================== QUICK ACTIONS ==================== */
.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

@media (max-width: 480px) {
  .quick-actions-grid { grid-template-columns: repeat(2, 1fr); }
}

.quick-action-btn {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-family: var(--font-body);
}

.quick-action-btn i { font-size: 1.4rem; color: var(--neon-cyan); }
.quick-action-btn:hover {
  background: rgba(0,245,255,0.08);
  border-color: var(--border-neon);
  color: var(--neon-cyan);
  transform: translateY(-4px);
  box-shadow: var(--shadow-neon-sm);
}

/* ==================== DATA TABLE ==================== */
.table-container {
  overflow-x: auto;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  background: var(--bg-glass);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.data-table thead th {
  background: rgba(0,245,255,0.06);
  padding: 12px 16px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  white-space: nowrap;
  border-bottom: 1px solid var(--border-color);
}

.data-table tbody tr {
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.data-table tbody tr:last-child { border-bottom: none; }
.data-table tbody tr:hover { background: var(--bg-glass-hover); }

.data-table td {
  padding: 12px 16px;
  color: var(--text-primary);
  vertical-align: middle;
}

.empty-row td {
  text-align: center;
  color: var(--text-muted);
  padding: 32px 16px;
}

/* Status Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.badge-pending { background: rgba(255,230,0,0.15); color: var(--neon-yellow); border: 1px solid rgba(255,230,0,0.3); }
.badge-processing { background: rgba(0,245,255,0.15); color: var(--neon-cyan); border: 1px solid rgba(0,245,255,0.3); }
.badge-completed { background: rgba(0,255,136,0.15); color: var(--neon-green); border: 1px solid rgba(0,255,136,0.3); }
.badge-cancelled { background: rgba(255,22,148,0.15); color: var(--neon-pink); border: 1px solid rgba(255,22,148,0.3); }
.badge-approved { background: rgba(0,255,136,0.15); color: var(--neon-green); border: 1px solid rgba(0,255,136,0.3); }
.badge-rejected { background: rgba(255,22,148,0.15); color: var(--neon-pink); border: 1px solid rgba(255,22,148,0.3); }

/* ==================== CATEGORY TABS ==================== */
.category-tabs-wrapper {
  overflow-x: auto;
  margin-bottom: 20px;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.category-tabs {
  display: flex;
  gap: 8px;
  min-width: max-content;
  padding: 4px;
}

.cat-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.cat-tab i { font-size: 0.9rem; }
.cat-tab:hover { color: var(--neon-cyan); border-color: var(--border-neon); background: rgba(0,245,255,0.08); }
.cat-tab.active { color: #000; background: var(--neon-cyan); border-color: var(--neon-cyan); box-shadow: 0 0 15px rgba(0,245,255,0.4); }

/* ==================== SERVICES GRID ==================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.service-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 16px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-neon);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  border-color: var(--border-neon);
  transform: translateY(-4px);
  box-shadow: var(--shadow-neon-sm);
  background: var(--bg-glass-hover);
}

.service-card:hover::before { opacity: 1; }

.service-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.service-platform-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.platform-instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.platform-tiktok { background: #000; color: #fff; border: 1px solid #333; }
.platform-youtube { background: #ff0000; color: white; }
.platform-facebook { background: #1877f2; color: white; }
.platform-whatsapp { background: #25d366; color: white; }
.platform-telegram { background: #2ca5e0; color: white; }
.platform-twitter { background: #000; color: white; }
.platform-discord { background: #5865f2; color: white; }
.platform-spotify { background: #1db954; color: white; }
.platform-soundcloud { background: #ff5500; color: white; }
.platform-linkedin { background: #0a66c2; color: white; }
.platform-premium { background: linear-gradient(135deg, var(--neon-yellow), var(--neon-orange)); color: #000; }

.service-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-heading);
  flex: 1;
  line-height: 1.3;
}

.service-fav-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition-fast);
  padding: 4px;
}

.service-fav-btn:hover, .service-fav-btn.active { color: var(--neon-pink); }
.service-fav-btn.active { text-shadow: 0 0 8px var(--neon-pink); }

.service-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border-color);
}

.service-rate {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--neon-green);
}

.service-rate-label { font-size: 0.7rem; color: var(--text-muted); }

.service-min-max {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: right;
}

.btn-order-now {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 12px;
  padding: 9px 16px;
  background: rgba(0,245,255,0.1);
  border: 1px solid rgba(0,245,255,0.3);
  border-radius: 8px;
  color: var(--neon-cyan);
  font-size: 0.83rem;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-order-now:hover {
  background: rgba(0,245,255,0.2);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0,245,255,0.2);
}

/* ==================== FORM ELEMENTS ==================== */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.styled-input, .styled-select {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.styled-input:focus, .styled-select:focus {
  border-color: var(--border-neon);
  box-shadow: 0 0 12px rgba(0,245,255,0.15);
  background: rgba(0,245,255,0.04);
}

.styled-input::placeholder { color: var(--text-muted); }

textarea.styled-input { resize: vertical; min-height: 80px; }

.select-wrapper { position: relative; }
.select-wrapper::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  font-size: 0.85rem;
}

.styled-select option { background: var(--bg-card); color: var(--text-primary); }

.input-icon-wrap { position: relative; }
.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
}
.input-with-icon { padding-left: 40px; }

.password-input-wrap { position: relative; }
.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.toggle-password:hover { color: var(--neon-cyan); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 0.85rem;
}

.form-options a {
  color: var(--neon-cyan);
  text-decoration: none;
  transition: color 0.2s;
}
.form-options a:hover { color: var(--neon-purple); }

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  background: var(--bg-input);
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
}

.checkbox-label input[type="checkbox"]:checked {
  background: var(--neon-cyan);
  border-color: var(--neon-cyan);
}

.checkbox-label input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: -1px;
  left: 2px;
  font-size: 11px;
  color: #000;
  font-weight: 700;
}

.styled-select-sm {
  padding: 7px 12px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 0.83rem;
  font-family: var(--font-body);
  outline: none;
  cursor: pointer;
}

/* Filter Input */
.filter-input {
  padding: 8px 14px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-family: var(--font-body);
  outline: none;
  width: 200px;
  transition: var(--transition-fast);
}

.filter-input:focus {
  border-color: var(--border-neon);
  box-shadow: 0 0 8px rgba(0,245,255,0.1);
  width: 240px;
}

/* ==================== BUTTONS ==================== */
.btn-neon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(0,245,255,0.15), rgba(176,38,255,0.15));
  border: 1px solid var(--neon-cyan);
  border-radius: var(--border-radius);
  color: var(--neon-cyan);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-neon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-neon);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-neon:hover::before { opacity: 1; }
.btn-neon:hover { color: #000; box-shadow: 0 0 25px rgba(0,245,255,0.5); transform: translateY(-2px); }
.btn-neon span, .btn-neon i { position: relative; z-index: 1; }
.btn-neon:hover span, .btn-neon:hover i { color: #000; }

.btn-neon:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-full { width: 100%; }

.btn-neon-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(0,245,255,0.1);
  border: 1px solid var(--border-neon);
  border-radius: 8px;
  color: var(--neon-cyan);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-body);
}

.btn-neon-sm:hover { background: rgba(0,245,255,0.2); box-shadow: 0 0 10px rgba(0,245,255,0.2); }

.btn-ghost-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-body);
}

.btn-ghost-sm:hover { border-color: var(--text-secondary); color: var(--text-primary); }

.btn-danger {
  background: rgba(255,22,148,0.1);
  border: 1px solid rgba(255,22,148,0.4);
  color: var(--neon-pink);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-body);
}

.btn-danger:hover { background: rgba(255,22,148,0.2); }

.btn-success {
  background: rgba(0,255,136,0.1);
  border: 1px solid rgba(0,255,136,0.4);
  color: var(--neon-green);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-body);
}

.btn-success:hover { background: rgba(0,255,136,0.2); }

.btn-copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.83rem;
  cursor: pointer;
  transition: var(--transition-fast);
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  font-family: var(--font-body);
}

.btn-copy:hover { color: var(--neon-cyan); border-color: var(--border-neon); }

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #128c7e, #25d366);
  border: none;
  border-radius: var(--border-radius);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(37,211,102,0.4); }
.btn-whatsapp i { font-size: 1.2rem; }

/* ==================== ORDER FORM ==================== */
.order-form-container { max-width: 600px; margin: 0 auto; }

.order-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
}

.service-details-card {
  background: rgba(0,245,255,0.04);
  border: 1px solid rgba(0,245,255,0.15);
  border-radius: var(--border-radius);
  padding: 14px;
  margin-bottom: 16px;
}

.service-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 0.85rem;
}

.service-detail-row span:first-child { color: var(--text-secondary); }
.service-detail-row span:last-child { color: var(--text-primary); font-weight: 500; }

.qty-range-info {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.price-calculation {
  margin-bottom: 16px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.87rem;
  border-bottom: 1px solid var(--border-color);
}

.price-row:last-child { border-bottom: none; }
.total-row { font-weight: 700; font-size: 1rem; }
.total-price { font-size: 1.1rem; }

.coupon-input-row { display: flex; gap: 8px; }
.coupon-input-row .styled-input { flex: 1; }
.coupon-msg { font-size: 0.8rem; margin-top: 4px; padding: 4px 8px; border-radius: 6px; }
.coupon-msg.success { color: var(--neon-green); background: rgba(0,255,136,0.08); }
.coupon-msg.error { color: var(--neon-pink); background: rgba(255,22,148,0.08); }

/* ==================== PAYMENT CARDS ==================== */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.payment-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 20px;
  transition: var(--transition);
}

.payment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.easypaisa-card { border-color: rgba(0,204,68,0.25); }
.easypaisa-card:hover { border-color: rgba(0,204,68,0.5); box-shadow: 0 8px 32px rgba(0,204,68,0.15); }

.jazzcash-card { border-color: rgba(255,102,0,0.25); }
.jazzcash-card:hover { border-color: rgba(255,102,0,0.5); box-shadow: 0 8px 32px rgba(255,102,0,0.15); }

.crypto-card { border-color: rgba(247,147,26,0.25); }
.crypto-card:hover { border-color: rgba(247,147,26,0.5); box-shadow: 0 8px 32px rgba(247,147,26,0.15); }

.payment-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.payment-logo-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-icon { font-size: 1.5rem; }
.payment-card h3 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--text-heading); }
.payment-account-name { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }
.payment-number { font-family: var(--font-brand); font-size: 1rem; letter-spacing: 1px; margin-bottom: 4px; color: var(--text-heading); }

/* Crypto QR */
.crypto-qr-container { display: flex; justify-content: center; margin: 12px 0; }

.qr-placeholder {
  background: white;
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  width: 140px;
}

#qrCanvas { display: block; }
.qr-label { font-size: 0.7rem; color: #333; margin-top: 6px; font-weight: 600; }

.crypto-address {
  font-size: 0.72rem;
  word-break: break-all;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 8px;
  font-family: monospace;
  background: var(--bg-input);
  padding: 8px;
  border-radius: 8px;
}

/* ==================== FILE UPLOAD ==================== */
.file-upload-area {
  border: 2px dashed var(--border-color);
  border-radius: var(--border-radius);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.file-upload-area:hover, .file-upload-area.drag-over {
  border-color: var(--border-neon);
  background: rgba(0,245,255,0.04);
}

.file-upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.file-upload-placeholder i { font-size: 2rem; color: var(--neon-cyan); }
.file-upload-placeholder span { font-size: 0.85rem; }

.screenshot-preview {
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
  border-radius: 8px;
}

.deposit-form-card { max-width: 560px; }
.card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==================== AUTH PAGES ==================== */
.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--bg-primary);
}

.auth-page {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
}

.auth-page.hidden { display: none; }

.auth-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,245,255,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(176,38,255,0.07) 0%, transparent 60%),
    var(--bg-primary);
  pointer-events: none;
}

.auth-card {
  width: min(440px, 100%);
  padding: 36px;
  position: relative;
  z-index: 1;
  border: 1px solid var(--border-color);
  animation: fadeInUp 0.5s ease;
}

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

.auth-logo {
  text-align: center;
  margin-bottom: 24px;
}

.auth-logo i { font-size: 2.5rem; margin-bottom: 8px; display: block; }
.auth-logo h2 { font-family: var(--font-brand); font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.auth-subtitle { font-size: 0.8rem; letter-spacing: 4px; color: var(--text-muted); text-transform: uppercase; }
.auth-card h3 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; margin-bottom: 20px; color: var(--text-heading); }

.auth-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.auth-footer a {
  color: var(--neon-cyan);
  text-decoration: none;
  font-weight: 500;
  margin-left: 4px;
}

.auth-footer a:hover { color: var(--neon-purple); }

.admin-login-hint {
  text-align: center;
  margin-top: 12px;
  opacity: 0.5;
}

/* ==================== ADMIN PANEL ==================== */
.admin-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.admin-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.83rem;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-body);
}

.admin-tab:hover { color: var(--neon-cyan); border-color: var(--border-neon); }
.admin-tab.active { color: #000; background: var(--neon-cyan); border-color: var(--neon-cyan); }

.admin-tab-content { display: none; }
.admin-tab-content.active { display: block; animation: pageIn 0.2s ease; }

.admin-actions-bar {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ==================== SUPPORT ==================== */
.support-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 700px;
}

@media (min-width: 600px) {
  .support-container { grid-template-columns: 1fr 1fr; }
}

.support-card { text-align: center; }
.support-icon-wrap { margin-bottom: 16px; }
.support-wa-icon { font-size: 4rem; color: #25d366; filter: drop-shadow(0 0 15px rgba(37,211,102,0.5)); }
.support-card h2 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.support-card p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 16px; }
.support-number { font-family: var(--font-brand); font-size: 1.1rem; color: var(--neon-cyan); margin-bottom: 16px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: background 0.2s;
  user-select: none;
}

.faq-question:hover { background: var(--bg-glass-hover); }
.faq-question i { transition: transform 0.3s ease; color: var(--neon-cyan); }
.faq-question.open i { transform: rotate(180deg); }

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.faq-answer p {
  padding: 12px 16px;
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==================== PROFILE ==================== */
.profile-card { max-width: 500px; }

.profile-avatar-section {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin: 0 auto 12px;
  box-shadow: 0 0 25px rgba(0,245,255,0.4);
}

.profile-name { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--text-heading); margin-bottom: 4px; }
.profile-email { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 8px; }
.neon-badge { display: inline-block; padding: 3px 12px; border-radius: 20px; font-size: 0.72rem; background: rgba(0,245,255,0.1); color: var(--neon-cyan); border: 1px solid rgba(0,245,255,0.3); }

/* ==================== REFERRAL ==================== */
.referral-card {}
.referral-banner { text-align: center; padding: 24px 0; }
.referral-icon { font-size: 3rem; color: var(--neon-cyan); margin-bottom: 12px; display: block; }
.referral-banner h2 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--text-heading); margin-bottom: 8px; }
.referral-banner p { color: var(--text-secondary); font-size: 0.9rem; }

.referral-link-section { margin: 20px 0; }
.referral-link-section label { display: block; font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 6px; }
.referral-link-row { display: flex; gap: 8px; }
.referral-link-row .styled-input { flex: 1; }

.referral-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 16px;
  background: var(--bg-glass);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

.ref-stat { text-align: center; }
.ref-stat-value { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--neon-cyan); }
.ref-stat-label { font-size: 0.8rem; color: var(--text-secondary); margin-top: 4px; }

/* ==================== LEADERBOARD ==================== */
.leaderboard-container { display: flex; flex-direction: column; gap: 10px; max-width: 600px; }

.leaderboard-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.leaderboard-item:hover { border-color: var(--border-neon); background: var(--bg-glass-hover); }

.lb-rank {
  font-family: var(--font-brand);
  font-size: 1.1rem;
  font-weight: 700;
  width: 32px;
  text-align: center;
}

.lb-rank.gold { color: #ffd700; text-shadow: 0 0 10px rgba(255,215,0,0.5); }
.lb-rank.silver { color: #c0c0c0; }
.lb-rank.bronze { color: #cd7f32; }

.lb-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gradient-neon); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #000; flex-shrink: 0; }
.lb-name { flex: 1; font-weight: 600; font-size: 0.9rem; }
.lb-orders { font-size: 0.8rem; color: var(--text-muted); }
.lb-amount { color: var(--neon-green); font-weight: 700; font-family: var(--font-heading); }

.leaderboard-loading { text-align: center; padding: 40px; color: var(--text-muted); }
.leaderboard-loading i { font-size: 2rem; color: var(--neon-yellow); margin-bottom: 8px; display: block; }

/* ==================== EMPTY STATE ==================== */
.empty-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-muted);
  grid-column: 1 / -1;
}

.empty-state i { font-size: 3rem; color: var(--neon-cyan); opacity: 0.4; margin-bottom: 12px; display: block; }
.empty-state p { font-size: 0.9rem; }

/* ==================== MODALS ==================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal {
  width: min(500px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid var(--border-neon);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.modal-header h3 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--text-heading); }

.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.modal-close:hover { color: var(--neon-pink); background: rgba(255,22,148,0.1); }

/* ==================== BOTTOM NAV ==================== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: var(--bottom-nav-height);
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.bottom-nav::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-purple), transparent);
  opacity: 0.4;
}

@media (min-width: 1024px) { .bottom-nav { display: none; } }

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.7rem;
  transition: var(--transition-fast);
  flex: 1;
}

.bottom-nav-item i { font-size: 1.2rem; }
.bottom-nav-item.active { color: var(--neon-cyan); }
.bottom-nav-item.active i { filter: drop-shadow(0 0 6px var(--neon-cyan)); }

.bottom-nav-center { flex: 0; }
.bottom-nav-center-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #000;
  box-shadow: 0 0 20px rgba(0,245,255,0.5);
  transition: var(--transition);
  margin-bottom: 0;
}

.bottom-nav-center:hover .bottom-nav-center-btn {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 0 30px rgba(0,245,255,0.7);
}

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
  position: fixed;
  bottom: calc(var(--bottom-nav-height) + 16px);
  right: 16px;
  z-index: 299;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #128c7e, #25d366);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  text-decoration: none;
  transition: var(--transition);
  animation: bounce 2s ease infinite 3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.7);
}

@media (min-width: 1024px) {
  .whatsapp-float { bottom: 24px; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.whatsapp-tooltip {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.85);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ==================== TOAST NOTIFICATIONS ==================== */
.toast-container {
  position: fixed;
  top: calc(var(--navbar-height) + 16px);
  right: 16px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 340px;
  width: calc(100vw - 32px);
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-card);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  animation: toastIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(100px); }
  to { opacity: 1; transform: translateX(0); }
}

.toast.hiding { opacity: 0; transform: translateX(100px); }

.toast-icon { font-size: 1.1rem; flex-shrink: 0; }
.toast-msg { flex: 1; font-size: 0.87rem; color: var(--text-primary); }
.toast-close { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 0.8rem; }

.toast.success { border-color: rgba(0,255,136,0.3); }
.toast.success .toast-icon { color: var(--neon-green); }
.toast.error { border-color: rgba(255,22,148,0.3); }
.toast.error .toast-icon { color: var(--neon-pink); }
.toast.info { border-color: rgba(0,245,255,0.3); }
.toast.info .toast-icon { color: var(--neon-cyan); }
.toast.warning { border-color: rgba(255,230,0,0.3); }
.toast.warning .toast-icon { color: var(--neon-yellow); }

/* ==================== LIGHT MODE ADJUSTMENTS ==================== */
[data-theme="light"] .top-navbar { background: rgba(240,244,255,0.9); border-bottom-color: rgba(0,0,0,0.1); }
[data-theme="light"] .sidebar { background: rgba(240,244,255,0.97); border-right-color: rgba(0,0,0,0.1); }
[data-theme="light"] .bottom-nav { background: rgba(240,244,255,0.95); border-top-color: rgba(0,0,0,0.1); }
[data-theme="light"] .auth-bg { background: radial-gradient(ellipse at 20% 50%, rgba(0,150,200,0.08) 0%, transparent 60%), radial-gradient(ellipse at 80% 50%, rgba(100,0,200,0.08) 0%, transparent 60%), var(--bg-primary); }
[data-theme="light"] .neon-text { color: #0088aa; text-shadow: none; }
[data-theme="light"] .cat-tab.active { color: #fff; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 480px) {
  .auth-card { padding: 24px 20px; }
  .payment-methods-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --navbar-height: 56px; }
  .page { padding: 16px 12px; }
  .stat-card { padding: 14px 12px; }
  .stat-value { font-size: 1.3rem; }
  .splash-brand { font-size: 1.8rem; }
}

/* ==================== ANIMATIONS ==================== */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton {
  background: linear-gradient(90deg, var(--bg-glass) 25%, var(--bg-glass-hover) 50%, var(--bg-glass) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 6px;
}

/* Pulse Animation */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Spin Animation */
@keyframes spin {
  to { transform: rotate(360deg); }
}

.spin { animation: spin 1s linear infinite; }

/* Loading spinner */
.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border-color);
  border-top-color: var(--neon-cyan);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

/* Gradient Text */
.gradient-text {
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Active Nav Indicator */
.nav-badge {
  background: var(--neon-pink);
  color: white;
  font-size: 0.65rem;
  padding: 1px 6px;
  border-radius: 10px;
  margin-left: auto;
}

/* ==================== UPGRADE: ORDER SYSTEM ENHANCEMENTS ==================== */

/* Badge for new statuses */
.badge-partial {
  background: rgba(255,230,0,0.15);
  color: #ffe600;
  border: 1px solid rgba(255,230,0,0.4);
}
.badge-refunded {
  background: rgba(176,38,255,0.15);
  color: #b026ff;
  border: 1px solid rgba(176,38,255,0.4);
}

/* Completion Bar */
.completion-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 80px;
}
.completion-fill {
  height: 6px;
  background: var(--gradient-neon2);
  border-radius: 3px;
  min-width: 20px;
  flex: 1;
  box-shadow: 0 0 6px rgba(0,255,136,0.4);
}
.completion-bar span {
  font-size: 0.72rem;
  color: var(--neon-green);
  font-weight: 600;
  white-space: nowrap;
}

/* Track Search Card */
.track-search-card {
  padding: 14px 16px;
}
.track-search-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--neon-cyan);
  margin-bottom: 10px;
}
.track-search-row {
  display: flex;
  gap: 8px;
  align-items: center;
}
.track-search-row .styled-input {
  flex: 1;
}

/* Order Tracking Modal */
.order-track-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fadeIn 0.2s ease;
}
.order-track-content {
  background: var(--bg-card);
  border: 1px solid var(--border-neon);
  border-radius: var(--border-radius-xl);
  padding: 24px;
  max-width: 500px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-neon), 0 20px 60px rgba(0,0,0,0.5);
}
.order-track-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.order-track-header h2 {
  font-size: 1.1rem;
  color: var(--neon-cyan);
  font-family: var(--font-brand);
}
.modal-close-btn {
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--text-secondary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.modal-close-btn:hover { background: rgba(255,0,0,0.2); color: #ff4444; }
.order-track-id {
  background: rgba(0,245,255,0.06);
  border: 1px solid var(--border-neon);
  border-radius: var(--border-radius);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.track-id-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.track-id-value {
  font-family: monospace;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--neon-cyan);
  flex: 1;
  letter-spacing: 1px;
}
.btn-copy-sm {
  background: none;
  border: 1px solid var(--border-neon);
  color: var(--neon-cyan);
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: var(--transition-fast);
}
.btn-copy-sm:hover { background: rgba(0,245,255,0.1); }
.order-track-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.track-info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--border-color);
}
.track-info-row > span:first-child {
  color: var(--text-muted);
  min-width: 90px;
  flex-shrink: 0;
}

/* Status Timeline */
.order-status-timeline h4 {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.timeline-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
  padding-left: 4px;
}
.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
  border: 2px solid transparent;
}
.timeline-dot.badge-pending { background: rgba(255,107,53,0.3); border-color: var(--neon-orange); }
.timeline-dot.badge-processing { background: rgba(0,245,255,0.2); border-color: var(--neon-cyan); }
.timeline-dot.badge-completed { background: rgba(0,255,136,0.2); border-color: var(--neon-green); }
.timeline-dot.badge-partial { background: rgba(255,230,0,0.2); border-color: #ffe600; }
.timeline-dot.badge-cancelled { background: rgba(255,68,68,0.2); border-color: #ff4444; }
.timeline-dot.badge-refunded { background: rgba(176,38,255,0.2); border-color: var(--neon-purple); }
.timeline-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.timeline-status {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
}
.timeline-time {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.timeline-note {
  font-size: 0.78rem;
  color: var(--neon-yellow);
  font-style: italic;
}

/* Admin Order Stat Pills */
.order-stat-pill {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.order-stat-pill.orange { background: rgba(255,107,53,0.1); border: 1px solid rgba(255,107,53,0.3); color: var(--neon-orange); }
.order-stat-pill.cyan { background: rgba(0,245,255,0.1); border: 1px solid var(--border-neon); color: var(--neon-cyan); }
.order-stat-pill.green { background: rgba(0,255,136,0.1); border: 1px solid rgba(0,255,136,0.3); color: var(--neon-green); }
.order-stat-pill.red { background: rgba(255,68,68,0.1); border: 1px solid rgba(255,68,68,0.3); color: #ff4444; }

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Admin action buttons row */
.admin-actions-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

/* Link Validation Indicator */
.styled-input.link-valid { border-color: var(--neon-green) !important; }
.styled-input.link-invalid { border-color: #ff4444 !important; }

