﻿/* === BucksBee Theme: Yellow/Orange === */
:root {
  --primary: #f59e0b;
  --primary-dark: #d97706;
  --secondary: #f97316;
  --accent: #fbbf24;
  --bg: #fefce8;
  --bg-card: #ffffff;
  --text: #111111;
  --text-muted: #444444;
  --border: #fde68a;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --shadow: 0 2px 12px rgba(245, 158, 11, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  padding-top: 70px;
  padding-bottom: 85px;
  min-height: 100vh;
}

a { color: var(--primary-dark); text-decoration: none; }
a:hover { color: var(--secondary); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 16px; }

/* === HEADER / NAV === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 158, 11, 0.15);
  box-shadow: 0 1px 12px rgba(245, 158, 11, 0.08);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(245, 158, 11, 0.15);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img { height: 38px; width: auto; max-width: 160px; object-fit: contain; }

.logo-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 3px 8px rgba(245, 158, 11, 0.25);
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.5px;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--primary-dark);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}

.menu-toggle:hover {
  background: rgba(245,158,11,0.12);
  color: var(--secondary);
}

.menu-toggle:active {
  background: rgba(245,158,11,0.18);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
}

.nav-links li a {
  padding: 8px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  align-items: center;
  gap: 6px;
  color: #444;
  position: relative;
  white-space: nowrap;
}

.nav-links li a:hover {
  background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(217,119,6,0.06));
  color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(245,158,11,0.15);
}

.nav-links li a.active {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  box-shadow: 0 3px 0 0 #b86504, 0 4px 12px rgba(245,158,11,0.25);
  transform: translateY(-1px);
}

.nav-links li a.active:hover {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  box-shadow: 0 3px 0 0 #b86504, 0 4px 12px rgba(245,158,11,0.25);
}

.nav-links li a i {
  font-size: 0.95rem;
}

.nav-links li a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(245, 158, 11, 0.3);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  opacity: 0.9;
  background: linear-gradient(135deg, var(--secondary), var(--primary)) !important;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4) !important;
}

/* Profile link in nav */
.nav-profile-item { margin-left: 4px; }
.nav-profile-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px 4px 4px !important;
  border-radius: 20px !important;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.15);
}
.nav-profile-link::after { display: none !important; }
.nav-profile-link:hover { background: rgba(245, 158, 11, 0.15) !important; }
.nav-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.nav-username { font-size: 0.82rem; font-weight: 600; max-width: 80px; overflow: hidden; text-overflow: ellipsis; color: var(--primary-dark); }

.nav-logout {
  color: var(--text-muted) !important;
  font-size: 1rem !important;
  padding: 8px 10px !important;
}
.nav-logout::after { display: none !important; }
.nav-logout:hover { color: var(--danger) !important; background: rgba(239, 68, 68, 0.08) !important; }

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }

/* === HEADER ACTIONS (bell, lang, avatar) === */
.nav-left {
  display: flex;
  align-items: center;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.action-btn {
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.action-btn:hover {
  background: var(--accent);
  color: var(--primary-dark);
}

.notif-btn {
  font-size: 1.15rem;
}

.notif-badge {
  position: absolute;
  top: 3px;
  right: 3px;
  background: var(--danger);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.lang-btn {
  font-size: 0.85rem;
  gap: 4px;
  font-weight: 600;
  padding: 6px 10px;
}

.lang-btn i:first-child {
  font-size: 0.95rem;
}

.lang-btn i:last-child {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.lang-dropdown {
  position: relative;
}

.user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
}

.user-avatar:hover {
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
  color: #fff;
}

/* === BOTTOM MOBILE NAV === */
.bottom-nav {
  display: flex;
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: 500px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 20px;
  z-index: 1000;
  justify-content: space-around;
  padding: 6px 4px;
  box-shadow: 0 4px 0 0 #d97706, 0 8px 24px rgba(245,158,11,0.25);
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  font-size: 0.6rem;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 14px;
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
  flex: 1;
  position: relative;
}

.bottom-nav-item i {
  font-size: 1.25rem;
  transition: transform 0.2s;
}

.bottom-nav-item:hover {
  color: var(--primary-dark);
  background: rgba(245,158,11,0.08);
}
.bottom-nav-item:hover i { transform: translateY(-2px); }

.bottom-nav-item.active {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  box-shadow: 0 3px 0 0 #b86504, 0 4px 12px rgba(245,158,11,0.35);
  transform: translateY(-2px);
}

.bottom-nav-item.active i {
  color: #fff;
  transform: translateY(-2px);
}

.bottom-nav-item.active span { color: #fff; }

/* === HERO === */
.hero {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--bg) 0%, var(--border) 100%);
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-text { flex: 1; }
.hero-text h1 { font-size: 2.5rem; margin-bottom: 16px; }
.hero-text p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 24px; }
.hero-image { flex: 1; text-align: center; color: var(--primary); }

.highlight {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === FEATURES === */
.features { padding: 60px 0; }
.section-title { text-align: center; font-size: 2rem; margin-bottom: 40px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s;
}

.feature-card:hover { transform: translateY(-4px); }
.feature-card i { color: var(--primary); margin-bottom: 16px; }
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; }

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

.auth-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 40px 32px;
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.auth-header { text-align: center; margin-bottom: 24px; }
.auth-header i { color: var(--primary); }
.auth-header h2 { margin: 12px 0 4px; }
.auth-header p { color: var(--text-muted); }

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group label i { color: var(--primary); width: 20px; }

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="number"] {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.2s;
  background: var(--bg);
  color: var(--text);
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.captcha-row img {
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid var(--border);
  height: 46px;
}

.captcha-row input { flex: 1; }
.checkbox-group label { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; }
.checkbox-group input { width: auto; }
.forgot-row { text-align: center; margin: 16px 0 8px; }
.forgot-row a { font-size: 0.9rem; font-weight: 600; color: var(--primary-dark); display: inline-block; padding: 8px 16px; border-radius: 8px; transition: all 0.2s; }
.forgot-row a:hover { background: var(--accent); color: var(--secondary); }

.auth-link {
  text-align: center;
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.reset-link-box {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid var(--primary);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
  text-align: center;
}

.reset-link-box p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 10px; }

.reset-link-url {
  background: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 12px;
  word-break: break-all;
}

.reset-link-url a { color: var(--primary); font-size: 0.85rem; text-decoration: none; }

.btn-sm { padding: 6px 14px; font-size: 0.85rem; }

.btn-metamask {
  background: #f6851b;
  color: #fff;
}
.btn-metamask:hover { opacity: 0.9; transform: translateY(-1px); }

.auth-divider {
  display: flex; align-items: center; gap: 12px; margin: 20px 0; color: var(--text-muted); font-size: 0.85rem;
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.wallet-connected {
  background: rgba(40,167,69,0.1); border: 1px solid var(--success); border-radius: 8px; padding: 10px; display: flex; align-items: center; gap: 8px; font-size: 0.85rem; word-break: break-all;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}

.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-warning {
  background: var(--secondary);
  color: #fff;
}

.btn-warning:hover { opacity: 0.9; }

.btn-sm { padding: 6px 14px; font-size: 0.85rem; }
.btn-xs { padding: 4px 10px; font-size: 0.75rem; border-radius: 6px; }
.btn-lg { padding: 14px 36px; font-size: 1.1rem; }
.btn-block { width: 100%; }
.btn-secondary { background: #64748b; color: #fff; }
.btn-secondary:hover { opacity: 0.9; }
.btn-outline { background: transparent; color: #475569; border: 1px solid #cbd5e1; }
.btn-outline:hover { background: #f1f5f9; border-color: #94a3b8; }
.form-control-sm { padding: 4px 8px; border: 1px solid #e2e8f0; border-radius: 6px; font-size: 0.78rem; background: #fff; color: var(--text); }

/* === ALERTS === */
.alert {
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  font-weight: 500;
}

.alert-error { background: #fef2f2; color: var(--danger); border: 1px solid #fecaca; }
.alert-success { background: #f0fdf4; color: var(--success); border: 1px solid #bbf7d0; }

/* === DASHBOARD === */
.dashboard-container { padding: 24px 0; }
.welcome-section { margin-bottom: 24px; }
.welcome-section h1 { font-size: 1.8rem; }
.text-muted { color: var(--text-muted); }

.wallet-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.wallet-card {
  background: var(--bg-card);
  padding: 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.wallet-balance { border-left: 4px solid var(--primary); }
.token-balance { border-left: 4px solid var(--secondary); }

.wallet-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.wallet-balance .wallet-icon { background: #fef3c7; color: var(--primary); }
.token-balance .wallet-icon { background: #ffedd5; color: var(--secondary); }

.wallet-info { display: flex; flex-direction: column; }
.wallet-label { font-size: 0.85rem; color: var(--text-muted); }
.wallet-amount { font-size: 1.6rem; font-weight: 800; }

.action-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.action-card {
  background: var(--bg-card);
  padding: 20px 12px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s;
  color: var(--text);
}

.action-card:hover { transform: translateY(-2px); color: var(--primary-dark); }
.action-card i { font-size: 1.5rem; color: var(--primary); display: block; margin-bottom: 8px; }
.action-card span { font-size: 0.85rem; font-weight: 600; }

.nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.nav-grid-item {
  background: var(--bg-card);
  padding: 16px 12px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s;
  color: var(--text);
}

.nav-grid-item:hover { transform: translateY(-2px); color: var(--primary-dark); }
.nav-grid-item i { font-size: 1.3rem; color: var(--secondary); display: block; margin-bottom: 6px; }
.nav-grid-item span { font-size: 0.8rem; font-weight: 500; }

/* === DASHBOARD REDESIGN === */
.welcome-section h1 {
  font-size: 1.4rem;
}

.welcome-section h1 i {
  font-size: 1.2rem;
}

.dashboard-container .container {
  max-width: 480px;
}

/* Wallet Hero Card */
.wallet-hero {
  position: relative;
  background: linear-gradient(135deg, #f5a623 0%, #f59e0b 50%, #e88a0a 100%);
  border-radius: 20px;
  padding: 28px 24px;
  margin-bottom: 24px;
  overflow: hidden;
  box-shadow: 0 8px 0 0 #b86504, 0 12px 28px rgba(184, 101, 4, 0.35);
}

.wallet-hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
}

.wallet-hero-bg-shape.shape-1 {
  width: 220px;
  height: 220px;
  background: #f97316;
  top: -80px;
  right: -60px;
  transform: rotate(25deg);
}

.wallet-hero-bg-shape.shape-2 {
  width: 160px;
  height: 160px;
  background: #f97316;
  bottom: -50px;
  left: -40px;
  transform: rotate(-15deg);
}

.wallet-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wallet-hero-section {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wallet-hero-amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -1px;
  line-height: 1.1;
}

.wallet-hero-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(26, 26, 26, 0.65);
  font-weight: 500;
}

.wallet-hero-label i {
  font-size: 0.78rem;
  color: rgba(26, 26, 26, 0.5);
}

.wallet-hero-divider {
  height: 1px;
  background: rgba(26, 26, 26, 0.12);
  margin: 2px 0;
}

/* Quick Actions */
.quick-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}

.quick-action-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  border-radius: 14px;
  background: var(--secondary);
  border: none;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 5px 0 0 #c25a0b, 0 8px 16px rgba(249, 115, 22, 0.3);
}

.quick-action-btn:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 3px 0 0 #c25a0b, 0 8px 20px rgba(249, 115, 22, 0.4);
}

.quick-action-btn:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 0 #c25a0b, 0 4px 10px rgba(249, 115, 22, 0.3);
}

.quick-action-btn i {
  font-size: 1.15rem;
  color: #fff;
}

.quick-action-btn span {
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
}

/* Navigation Section */
.nav-section {
  margin-bottom: 24px;
}

.nav-section-title {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.nav-grid-container {
  position: relative;
  background: linear-gradient(135deg, #fef3c7, #fffbeb);
  border-radius: 16px;
  padding: 20px 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 8px;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 4px 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 5px 0 0 #b86504, 0 8px 16px rgba(245, 158, 11, 0.25);
}

.nav-item:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 7px 0 0 #b86504, 0 12px 24px rgba(245, 158, 11, 0.35);
}

.nav-item:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 0 #b86504, 0 4px 8px rgba(245, 158, 11, 0.2);
}

.nav-item i {
  font-size: 1.4rem;
  color: #fff;
}

.nav-item span {
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  color: #fff;
}

/* === RECENT TRANSACTIONS === */
.recent-transactions {
  margin-top: 24px;
}

.recent-transactions h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.6;
}

.tx-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tx-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 0.82rem;
}

.tx-type {
  font-weight: 600;
  text-transform: capitalize;
  min-width: 60px;
  font-size: 0.78rem;
}

.tx-amount {
  font-weight: 600;
  color: var(--text);
  margin-right: auto;
}

.tx-status {
  font-size: 0.72rem;
  font-weight: 600;
}

.tx-date {
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* === SERVER / VPS (redesign) === */
.page-container .container {
  max-width: 640px;
}

.srv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.srv-header-left h1 {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.srv-header-left h1 i {
  color: var(--primary);
}

.srv-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.srv-history-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border: none;
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  box-shadow: 0 3px 0 0 #d4d4c8, 0 4px 8px rgba(0,0,0,0.06);
}

.srv-history-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 0 0 #d4d4c8, 0 6px 12px rgba(0,0,0,0.1);
  color: var(--primary-dark);
}

.srv-history-btn:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 0 #d4d4c8;
}

.srv-history-btn i {
  color: var(--primary);
}

/* Active server card */
.srv-active-card {
  position: relative;
  background: linear-gradient(135deg, #059669, #10b981);
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 24px;
  overflow: hidden;
  box-shadow: 0 6px 0 0 #047857, 0 10px 24px rgba(5, 150, 105, 0.3);
}

.srv-active-shape {
  position: absolute;
  top: -40px;
  right: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.srv-active-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
}

.srv-active-icon i {
  font-size: 2.5rem;
  color: rgba(255,255,255,0.9);
}

.srv-active-info {
  flex: 1;
}

.srv-active-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.srv-active-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.srv-active-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.2);
  padding: 3px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.srv-active-expiry {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
}

.srv-active-bar {
  height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  max-width: 200px;
  overflow: hidden;
}

.srv-active-bar-fill {
  height: 100%;
  background: rgba(255,255,255,0.85);
  border-radius: 3px;
}

/* Prompt card (no active) */
.srv-prompt-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 0 0 #d97706, 0 6px 16px rgba(217, 119, 6, 0.2);
}

.srv-prompt-icon i {
  font-size: 1.8rem;
  color: #d97706;
}

.srv-prompt-text h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text);
}

.srv-prompt-text p {
  font-size: 0.85rem;
  color: rgba(0,0,0,0.6);
  margin: 0;
}

/* History panel */
.srv-history-panel {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 4px 0 0 #d4d4c8, 0 6px 16px rgba(0,0,0,0.06);
  border: none;
  display: none;
  overflow: hidden;
}

.srv-history-panel.open { display: block; }

.srv-history-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.srv-history-header h3 {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.srv-history-header h3 i {
  color: var(--primary);
}

.srv-history-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  padding: 0 4px;
}

.srv-history-close:hover {
  color: var(--text);
}

.srv-history-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
}

.srv-history-row:last-child {
  border-bottom: none;
}

.srv-hr-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.srv-hr-plan {
  font-weight: 600;
}

.srv-hr-fee {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.srv-hr-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.srv-hr-amount {
  font-weight: 700;
  color: var(--primary-dark);
}

.srv-hr-status {
  font-size: 0.72rem;
  font-weight: 600;
}

.srv-hr-date {
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Plan cards */
.srv-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.srv-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 0 0 #d4d4c8, 0 8px 24px rgba(0,0,0,0.07);
  transition: all 0.2s;
}

.srv-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 0 0 #d4d4c8, 0 14px 32px rgba(0,0,0,0.1);
}

.srv-plan-card:active {
  transform: translateY(2px);
  box-shadow: 0 3px 0 0 #d4d4c8;
}

.srv-plan-popular {
  box-shadow: 0 6px 0 0 #c25a0b, 0 8px 24px rgba(249, 115, 22, 0.2);
  border: 2px solid var(--secondary);
}

.srv-plan-popular:hover {
  box-shadow: 0 10px 0 0 #c25a0b, 0 14px 32px rgba(249, 115, 22, 0.25);
}

.srv-plan-popular:active {
  box-shadow: 0 3px 0 0 #c25a0b;
}

.srv-plan-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.srv-plan-top {
  padding: 28px 24px 20px;
  text-align: center;
}

.srv-plan-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.3rem;
}

.srv-plan-card:not(.srv-plan-popular) .srv-plan-icon {
  background: #fef3c7;
  color: var(--primary-dark);
}

.srv-plan-popular .srv-plan-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}

.srv-plan-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.srv-plan-price {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.srv-plan-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.srv-plan-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.srv-plan-features {
  padding: 0 24px 12px;
  flex: 1;
}

.srv-plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
}

.srv-plan-feature:last-child {
  border-bottom: none;
}

.srv-plan-feature i {
  color: var(--success);
  font-size: 0.72rem;
  flex-shrink: 0;
}

.srv-plan-bottom {
  padding: 16px 24px 24px;
  text-align: center;
}

.srv-plan-fee {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.srv-plan-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.15s;
  color: #fff;
}

.srv-plan-card:not(.srv-plan-popular) .srv-plan-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 4px 0 0 #c25a0b, 0 6px 14px rgba(249, 115, 22, 0.3);
}

.srv-plan-popular .srv-plan-btn {
  background: linear-gradient(135deg, var(--secondary), #ea580c);
  box-shadow: 0 4px 0 0 #c2410c, 0 6px 14px rgba(234, 88, 12, 0.35);
}

.srv-plan-btn:hover {
  transform: translateY(-2px);
}

.srv-plan-card:not(.srv-plan-popular) .srv-plan-btn:hover {
  box-shadow: 0 6px 0 0 #c25a0b, 0 8px 18px rgba(249, 115, 22, 0.35);
}

.srv-plan-popular .srv-plan-btn:hover {
  box-shadow: 0 6px 0 0 #c2410c, 0 8px 18px rgba(234, 88, 12, 0.4);
}

.srv-plan-btn:active {
  transform: translateY(2px);
}

.srv-plan-card:not(.srv-plan-popular) .srv-plan-btn:active {
  box-shadow: 0 1px 0 0 #c25a0b;
}

.srv-plan-popular .srv-plan-btn:active {
  box-shadow: 0 1px 0 0 #c2410c;
}

.srv-plan-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.srv-trial-card {
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid #6ee7b7; border-radius: 14px;
  padding: 16px 20px; margin-bottom: 20px;
}
.srv-trial-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem; flex-shrink: 0;
}
.srv-trial-text h3 { font-size: 0.95rem; font-weight: 700; color: #065f46; margin: 0 0 2px; }
.srv-trial-text p { font-size: 0.78rem; color: #047857; margin: 0; }

.srv-plan-total {
  font-size: 0.78rem; font-weight: 700; color: #111; margin-bottom: 10px;
}

.srv-plan-btn-trial {
  background: linear-gradient(135deg, #10b981, #059669) !important;
  box-shadow: 0 4px 0 0 #047857, 0 6px 14px rgba(16,185,129,0.3) !important;
  margin-bottom: 6px;
}
.srv-plan-btn-trial:hover {
  box-shadow: 0 6px 0 0 #047857, 0 8px 18px rgba(16,185,129,0.35) !important;
}
.srv-plan-btn-trial:active {
  box-shadow: 0 1px 0 0 #047857 !important;
}

.srv-pay-coin-label {
  font-size: 0.68rem; font-weight: 600; color: #94a3b8;
  text-transform: uppercase; letter-spacing: 0.5px; margin: 10px 0 6px;
}

.srv-coin-row {
  display: flex; gap: 6px;
}
.srv-coin-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 2px; padding: 8px 4px; border: 1.5px solid #e2e8f0;
  border-radius: 10px; background: #f8fafc; cursor: pointer;
  font-size: 0.7rem; font-weight: 700; color: #111;
  transition: all 0.15s;
}
.srv-coin-btn:hover { border-color: var(--primary); background: #fffbeb; }
.srv-coin-btn:active { transform: translateY(1px); }
.srv-coin-btn:disabled { opacity: 0.4; cursor: not-allowed; border-color: #e2e8f0; }
.srv-coin-bal { font-size: 0.62rem; font-weight: 600; color: #64748b; }

/* === WORK === */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.work-card {
  background: var(--bg-card);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.work-card i { color: var(--primary); margin-bottom: 12px; }
.work-points { display: block; font-weight: 700; color: var(--secondary); margin: 8px 0; }

/* === WALLET === */
.wallet-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.wallet-action-card {
  background: var(--bg-card);
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.wallet-action-card h3 { margin-bottom: 12px; }
.wallet-action-card form { display: flex; gap: 8px; }
.wallet-action-card input { flex: 1; }

/* === REFERRALS === */
.referral-card {
  background: var(--bg-card);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin: 24px 0;
}

.refer-code-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 16px 0;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: 2px;
}

/* === PROFILE === */
.profile-card {
  background: var(--bg-card);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  max-width: 500px;
  margin: 24px auto;
  text-align: center;
}

.profile-avatar { margin-bottom: 20px; color: var(--primary); }
.profile-form { text-align: left; }
.profile-meta { margin-top: 16px; font-size: 0.9rem; color: var(--text-muted); }

/* === HISTORY === */
.filter-tabs {
  display: flex;
  gap: 8px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 16px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.filter-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.summary-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.summary-card {
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
}

.summary-card.earn { background: #f0fdf4; border: 1px solid #bbf7d0; }
.summary-card.spend { background: #fef2f2; border: 1px solid #fecaca; }

/* === ADMIN === */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.stat-card {
  background: var(--bg-card);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.stat-card span { display: block; font-size: 0.85rem; color: var(--text-muted); }
.stat-card strong { font-size: 1.5rem; }

/* === TABLE === */
.table-responsive { overflow-x: auto; margin: 16px 0; }

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

th { background: var(--accent); font-weight: 600; }

.status-completed { color: var(--success); font-weight: 600; }
.status-pending { color: var(--warning); font-weight: 600; }
.status-active { color: var(--success); font-weight: 600; }

.tx-deposit { color: var(--success); font-weight: 600; }
.tx-withdraw { color: var(--danger); font-weight: 600; }
.tx-vps { color: var(--primary); font-weight: 600; }
.tx-reward { color: #eab308; font-weight: 600; }
.tx-referral { color: #8b5cf6; font-weight: 600; }
.tx-convert { color: #0ea5e9; font-weight: 600; }

.role-admin { color: var(--danger); font-weight: 600; }
.role-user { color: var(--primary); font-weight: 600; }

/* === FOOTER === */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding: 48px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.footer-brand i { color: var(--primary); font-size: 1.5rem; }
.footer-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.fs-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  background: var(--bg);
  transition: all 0.3s;
  text-decoration: none;
}
.fs-link:hover {
  color: #fff;
  background: var(--sclr);
  transform: translateY(-3px);
  text-decoration: none;
}
.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--text);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.footer-links a i {
  font-size: 0.55rem;
  color: var(--primary);
  transition: transform 0.2s;
}
.footer-links a:hover {
  color: var(--primary);
}
.footer-links a:hover i {
  transform: translateX(3px);
}
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col:first-child { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .mobile-overlay { display: block; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 80px 20px 24px;
    box-shadow: -4px 0 24px rgba(0,0,0,0.1);
    z-index: 1002;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    gap: 2px;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li a {
    padding: 14px 16px;
    width: 100%;
    border-radius: 12px;
    font-size: 0.95rem;
  }
  .nav-profile-item { margin-left: 0; margin-top: 8px; border-top: 1px solid var(--border); padding-top: 8px; }
  .nav-profile-link { border-radius: 12px !important; padding: 10px 14px !important; }
  .nav-username { max-width: 140px; }
  .hero-content { flex-direction: column; text-align: center; }
  .hero-text h1 { font-size: 1.8rem; }
  .hero-image { display: none; }
  .wallet-cards { grid-template-columns: 1fr; }
  .action-cards { grid-template-columns: repeat(2, 1fr); }
  .nav-grid { grid-template-columns: repeat(2, 1fr); gap: 10px 6px; }
  .nav-grid-container { padding: 16px 10px; }

  .admin-stats { grid-template-columns: 1fr; }
  .wallet-action-card form { flex-direction: column; }
  .captcha-row { flex-direction: column; }
  .captcha-row img { width: 100%; height: auto; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .action-cards { grid-template-columns: repeat(4, 1fr); }
  .nav-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-content { gap: 20px; }
}

/* === LOADER === */
.loader-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner {
  width: 50px; height: 50px;
  border: 5px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loader-overlay p { margin-top: 16px; color: var(--text-muted); font-weight: 500; }

/* === PAGE TITLE === */
.page-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.banner-large {
  flex-direction: column;
  text-align: center;
  padding: 48px 24px;
}

.banner-large i { margin-bottom: 16px; }
.banner-large h2 { margin-bottom: 8px; }
.banner-large p { margin-bottom: 20px; }

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: all 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

html { scroll-behavior: smooth; }
::selection { background: var(--primary); color: #fff; }

/* === WORK TIMER === */
.work-time { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

.modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.modal-content {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  max-width: 320px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.timer-display {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.timer-task-name { color: var(--text-muted); margin-bottom: 20px; }

.timer-progress {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.timer-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 4px;
  transition: width 0.3s;
}

/* === COMPLETIONS === */
.completions-list { margin: 16px 0; }

.completion-item {
  background: var(--bg-card);
  padding: 14px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  gap: 8px;
  flex-wrap: wrap;
}

.completion-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  flex-wrap: wrap;
}

.completion-task { font-weight: 600; }
.completion-points { color: var(--secondary); font-weight: 600; }
.claim-time { font-size: 0.75rem; color: var(--text-muted); }

.status-processing { color: var(--warning); font-weight: 600; font-size: 0.8rem; }
.status-claimable { color: var(--primary); font-weight: 600; font-size: 0.8rem; }
.status-claimed { color: var(--success); font-weight: 600; font-size: 0.8rem; }
.status-settled { color: var(--success); font-weight: 600; font-size: 0.8rem; }

.claimed-badge { color: var(--success); font-weight: 600; font-size: 0.8rem; }
.processing-badge { color: var(--warning); font-weight: 600; font-size: 0.8rem; }

/* === CONVERT === */
.convert-rate-card {
  background: var(--bg-card);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: center;
}

.rate-info {
  text-align: center;
}

.rate-info span { display: block; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 4px; }
.rate-info strong { font-size: 1.1rem; color: var(--primary-dark); }

.convert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.convert-card {
  background: var(--bg-card);
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.convert-card h3 { margin-bottom: 4px; }
.convert-card h3 i { color: var(--primary); }
.convert-card > p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }

.convert-form .form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  background: var(--bg);
  color: var(--text);
}

.convert-form .form-group input:focus { outline: none; border-color: var(--primary); }

.convert-preview {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin: 12px 0;
  padding: 8px 12px;
  background: var(--bg);
  border-radius: 8px;
}

/* === ADMIN TABS === */


.settings-grid {
  display: grid;
  gap: 12px;
  margin: 16px 0;
}

.settings-card {
  background: var(--bg-card);
  padding: 16px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.settings-card h4 { margin-bottom: 8px; text-transform: capitalize; }

.settings-form {
  display: flex;
  gap: 8px;
}

.settings-form input {
  flex: 1;
  padding: 8px 12px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
}

.collapse-form { display: none; margin: 12px 0; }
.collapse-form.open { display: block; }

.inline-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.inline-form input, .inline-form select {
  padding: 8px 12px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
}

.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { opacity: 0.9; }

/* === DAILY CHECKIN === */
.token-balance-bar {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 24px;
}

/* === DAILY CHECK-IN (MODERN) === */

.checkin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.checkin-header h1 {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkin-header h1 i { color: var(--primary); }
.checkin-balance {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 8px 18px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Stats Bar */
.checkin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.checkin-stat {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 18px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.checkin-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.checkin-stat-icon.streak { background: #fff7ed; color: #ea580c; }
.checkin-stat-icon.total { background: #eef2ff; color: #4f46e5; }
.checkin-stat-icon.points { background: #fefce8; color: #ca8a04; }
.checkin-stat-info { display: flex; flex-direction: column; }
.checkin-stat-value { font-size: 1.3rem; font-weight: 700; line-height: 1.2; }
.checkin-stat-label { font-size: 0.78rem; color: var(--text-muted); }

/* Hero */
.checkin-hero {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.checkin-card {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.12);
  border: 2px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.checkin-card.checked {
  border-color: var(--success);
  background: linear-gradient(135deg, #f0fdf4, #fff);
}
.checkin-card.checked .checkin-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.06), transparent 60%);
  animation: glowRotate 6s linear infinite;
  pointer-events: none;
}
@keyframes glowRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.checkin-icon i {
  font-size: 3.2rem;
  color: var(--primary);
  margin-bottom: 16px;
  transition: all 0.3s ease;
}
.checkin-card.checked .checkin-icon i {
  color: var(--success);
}
.checkin-icon.pulse i {
  animation: pulseIcon 2s ease-in-out infinite;
}
@keyframes pulseIcon {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.85; }
}
.checkin-card h2 { margin-bottom: 8px; font-size: 1.3rem; }
.checkin-card p { color: var(--text-muted); margin-bottom: 4px; }
.checkin-card p strong { color: var(--primary-dark); }

.checkin-earned {
  font-size: 2rem;
  font-weight: 800;
  color: var(--success);
  margin: 12px 0;
}
.checkin-reward-amount {
  font-size: 1.15rem;
  margin-bottom: 20px;
}

.checkin-claim-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.checkin-claim-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.45);
}
.checkin-claim-btn:active {
  transform: translateY(0);
}
.checkin-claim-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Calendar */
.checkin-calendar-section {
  margin-top: 8px;
}
.checkin-calendar-section h2 {
  font-size: 1.15rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkin-calendar-section h2 i { color: var(--primary); }
.checkin-calendar {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 8px;
}
.cal-day {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 4px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transition: all 0.2s ease;
  cursor: default;
  min-height: 64px;
  justify-content: center;
}
.cal-day:hover {
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.15);
}
.cal-day.checked {
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border-color: var(--success);
}
.cal-day.today {
  border-color: var(--primary);
  border-width: 2px;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}
.cal-day-num {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}
.cal-day-name {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.cal-day-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  margin-top: 2px;
}

@media (max-width: 640px) {
  .checkin-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .checkin-stat {
    padding: 12px 10px;
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
  .checkin-stat-icon { width: 36px; height: 36px; font-size: 1rem; }
  .checkin-stat-value { font-size: 1.1rem; }
  .checkin-stat-label { font-size: 0.7rem; }
  .checkin-calendar {
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
  }
  .cal-day { padding: 8px 2px; min-height: 54px; }
  .cal-day-num { font-size: 0.85rem; }
  .checkin-card { padding: 32px 20px; }
  .checkin-header { flex-direction: column; align-items: flex-start; }
}

/* === WITHDRAW === */
.withdraw-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 32px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.withdraw-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.withdraw-header i { color: var(--success); }

.withdraw-info {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  padding: 12px 16px;
  background: var(--bg);
  border-radius: 10px;
}

.info-row {
  display: flex;
  gap: 6px;
  font-size: 0.9rem;
}

.info-row span { color: var(--text-muted); }
.info-row strong { color: var(--text); }

.withdraw-preview {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin: 12px 0;
  padding: 8px 12px;
  background: var(--bg);
  border-radius: 8px;
}

/* === PROFILE === */
.profile-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  margin-top: 24px;
}

.profile-sidebar {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
}

.profile-avatar-section { margin-bottom: 24px; }
.profile-avatar i { color: var(--primary); }
.profile-avatar-section h2 { margin-top: 12px; }

.meta-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}

.meta-item span { color: var(--text-muted); }

.profile-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.profile-section {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.profile-section h3 { margin-bottom: 16px; }
.profile-section h3 i { color: var(--primary); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.kyc-status {
  text-align: center;
  padding: 24px;
  background: var(--bg);
  border-radius: 12px;
}

.kyc-status i { color: var(--primary); margin-bottom: 8px; }

.login-history {
  display: grid;
  gap: 8px;
}

.login-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: var(--bg);
  border-radius: 8px;
  font-size: 0.8rem;
  gap: 12px;
}

.login-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}

.login-browser {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}

.login-ip { color: var(--text-muted); }
.login-date { color: var(--text-muted); white-space: nowrap; }

/* === FREE TASKS === */
.free-tasks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.free-task-card {
  background: var(--bg-card);
  padding: 28px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.free-task-card i { color: var(--primary); margin-bottom: 12px; }
.free-task-card h3 { margin-bottom: 4px; }
.free-task-reward { display: block; font-weight: 700; color: var(--secondary); margin: 8px 0 12px; }

.free-task-visit {
  display: inline-block;
  margin-bottom: 8px;
  width: 100%;
}

.free-task-claim { width: 100%; }

.work-task-visit {
  display: inline-block;
  margin-bottom: 8px;
  width: 100%;
}

.completion-info i { color: var(--primary); font-size: 1.2rem; }

/* === REFERRALS === */
.referral-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.referral-stat-card {
  background: var(--bg-card);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.referral-stat-card span { display: block; font-size: 0.85rem; color: var(--text-muted); }
.referral-stat-card strong { font-size: 1.5rem; }

.referral-share {
  background: var(--bg-card);
  padding: 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.share-code, .share-link { margin-bottom: 16px; }
.share-code h3, .share-link h3 { margin-bottom: 8px; font-size: 0.95rem; }

.invite-btn { margin-top: 8px; }

.levels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 16px 0 24px;
}

.level-card {
  background: var(--bg-card);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.level-card.level-filled {
  border-color: var(--success);
  background: linear-gradient(135deg, #f0fdf4, #fff);
}

.level-badge {
  background: var(--primary);
  color: #fff;
  display: inline-block;
  padding: 4px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.level-target {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.level-target span { color: var(--text-muted); }
.level-progress-text { font-weight: 600; color: var(--text) !important; }

.level-bar {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 12px;
  overflow: hidden;
}

.level-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 4px;
}

.level-commissions {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.level-status-filled {
  color: var(--success);
  font-weight: 600;
  font-size: 0.85rem;
}

.no-referrals {
  text-align: center;
  padding: 48px;
  color: var(--text-muted);
}

.no-referrals i { color: var(--border); margin-bottom: 16px; }
.no-referrals h3 { margin-bottom: 8px; color: var(--text); }

/* === RESPONSIVE ADDITIONS === */
@media (max-width: 768px) {
  .convert-grid { grid-template-columns: 1fr; }
  .convert-rate-card { flex-direction: column; gap: 12px; }
  .page-title-row { flex-direction: column; gap: 12px; align-items: flex-start; }
  .inline-form { flex-direction: column; }
  .history-item { font-size: 0.8rem; }
  .history-date { margin-left: 0; }
  .completion-item { flex-direction: column; align-items: flex-start; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .profile-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .referral-stats { grid-template-columns: 1fr; }
  .free-tasks-grid { grid-template-columns: 1fr 1fr; }
  .login-item { flex-direction: column; align-items: flex-start; }
  .checkin-card { padding: 32px 24px; }
  .deposit-layout { grid-template-columns: 1fr; }
  .deposit-tabs { flex-direction: column; }
  .deposit-address-box { flex-direction: column; }
  .deposit-address-box code { font-size: 0.75rem; word-break: break-all; }
  .wallet-hero-amount { font-size: 2rem; }
  .nav-grid { grid-template-columns: repeat(3, 1fr); gap: 10px 4px; }
  .nav-item { padding: 12px 2px; }
  .nav-item span { font-size: 0.62rem; }
  .nav-item i { font-size: 1.2rem; }
  .nav-grid-container { padding: 14px 8px; }
  .quick-action-btn { padding: 12px 6px; }
  .quick-action-btn i { font-size: 1.05rem; }
  .quick-action-btn span { font-size: 0.72rem; }
  .tx-item { gap: 6px; padding: 10px 12px; }
  .tx-type { min-width: 50px; font-size: 0.72rem; }
  .tx-amount { font-size: 0.78rem; }
  .welcome-section h1 { font-size: 1.2rem; }
}

@media (max-width: 400px) {
  .wallet-hero { padding: 22px 18px; }
  .wallet-hero-amount { font-size: 1.7rem; }
  .nav-grid { gap: 8px 0; }
  .nav-item span { font-size: 0.6rem; }
  .nav-item i { font-size: 1.15rem; }
  .quick-actions { gap: 6px; }
  .quick-action-btn { padding: 10px 4px; }
  .quick-action-btn i { font-size: 0.95rem; }
  .quick-action-btn span { font-size: 0.65rem; }
  .tx-item { flex-wrap: wrap; gap: 6px; padding: 10px 10px; }
  .tx-type { min-width: 50px; font-size: 0.7rem; }
  .tx-amount { font-size: 0.75rem; }
  .tx-date { font-size: 0.65rem; }
  .tx-status { font-size: 0.65rem; }
  .welcome-section h1 { font-size: 1.1rem; }
  .nav-grid-container { padding: 12px 8px; }
  .nav-item { padding: 12px 2px 10px; }
  .nav-item i { font-size: 1.1rem; }
}

@media (max-width: 360px) {
  .wallet-hero { padding: 18px 14px; border-radius: 16px; }
  .wallet-hero-amount { font-size: 1.4rem; }
  .wallet-hero-label { font-size: 0.7rem; }
  .wallet-hero-content { gap: 10px; }
  .nav-grid { grid-template-columns: repeat(2, 1fr); gap: 6px 4px; }
  .nav-item { padding: 10px 2px 8px; }
  .nav-item i { font-size: 1rem; }
  .nav-item span { font-size: 0.55rem; }
  .quick-actions { gap: 4px; }
  .quick-action-btn { padding: 8px 2px; border-radius: 10px; gap: 3px; }
  .quick-action-btn i { font-size: 0.85rem; }
  .quick-action-btn span { font-size: 0.6rem; }
  .bottom-nav { padding: 4px 0; }
  .bottom-nav-item { font-size: 0.55rem; padding: 2px 4px; gap: 1px; }
  .bottom-nav-item i { font-size: 1rem; }
  .tx-item { font-size: 0.72rem; padding: 8px 8px; }
  .tx-type { min-width: 40px; }
  .dashboard-container { padding: 12px 0; }
  .welcome-section { margin-bottom: 16px; }
  body { padding-bottom: 70px; }
}

/* === DEPOSIT === */
.deposit-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  margin-top: 24px;
}

.deposit-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.deposit-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.deposit-tab {
  flex: 1;
  padding: 12px;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-muted);
}

.deposit-tab.active {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}

.deposit-tab i { margin-right: 6px; }

.deposit-network-info {
  background: #fef3c7;
  border: 1px solid var(--primary);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.deposit-network-info i { color: var(--primary-dark); font-size: 1.1rem; }

.deposit-address-section { margin-bottom: 16px; }

.deposit-address-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.deposit-address-label i { color: var(--primary); }

.deposit-address-box {
  display: flex;
  gap: 8px;
  align-items: center;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
}

.deposit-address-box code {
  flex: 1;
  font-size: 0.85rem;
  color: var(--text);
  word-break: break-all;
  font-family: 'Courier New', monospace;
}

.deposit-address-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.deposit-address-hint i { color: var(--primary); }

.deposit-min-info {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.deposit-min-info i { color: var(--danger); }

.deposit-claim-form {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.deposit-claim-form h3 { margin-bottom: 16px; }
.deposit-claim-form h3 i { color: var(--primary); }

.deposit-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
}

.deposit-select:focus { outline: none; border-color: var(--primary); }

.deposit-sidebar { display: flex; flex-direction: column; gap: 16px; }

.deposit-info-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.deposit-info-card h3 { margin-bottom: 16px; font-size: 1rem; }
.deposit-info-card h3 i { color: var(--primary); }

.deposit-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.deposit-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.deposit-history { display: flex; flex-direction: column; gap: 8px; }

.deposit-history-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: var(--bg);
  border-radius: 8px;
  font-size: 0.8rem;
}

.dh-left { display: flex; flex-direction: column; gap: 2px; }
.dh-currency { font-weight: 600; }
.dh-amount { color: var(--text-muted); }
.dh-right { text-align: right; display: flex; flex-direction: column; gap: 2px; }
.dh-date { color: var(--text-muted); font-size: 0.75rem; }

.deposit-history .status-completed { color: var(--success); }
.deposit-history .status-pending { color: var(--warning); }
.deposit-history .status-failed { color: var(--danger); }

.no-data {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 24px 0;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--text-muted);
  border-radius: 26px;
  transition: 0.3s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px; width: 20px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}
.toggle-switch input:checked + .toggle-slider { background: var(--success); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(22px); }
