/* ==========================================================================
   ITFORCE.uz — Dynamic Theme Presets (Theme Switcher)
   ========================================================================== */

/* 1. Cyber Tech & AI (Default) */
[data-theme="cyber-tech"] {
  --brand-mint: #00FF9D;
  --accent-primary: #00FF9D;
  --accent-secondary: #06b6d4;
  --accent-emerald: #00FF9D;
  --bg-primary: #05070f;
  --bg-secondary: #0a0f1d;
  --bg-card: rgba(10, 15, 29, 0.8);
  --border-active: rgba(0, 255, 157, 0.5);
  --glow-mint: 0 0 30px rgba(0, 255, 157, 0.45);
  --grad-primary: linear-gradient(135deg, #00FF9D 0%, #06b6d4 100%);
  --grad-card: linear-gradient(135deg, rgba(0, 255, 157, 0.08) 0%, rgba(6, 182, 212, 0.02) 100%);
}

/* 2. Enterprise & Fintech (Emerald + Indigo/Blue) */
[data-theme="enterprise"] {
  --brand-mint: #00E887;
  --accent-primary: #00E887;
  --accent-secondary: #3b82f6;
  --accent-emerald: #10b981;
  --accent-purple: #6366f1;
  --bg-primary: #080d1a;
  --bg-secondary: #0e162c;
  --bg-card: rgba(14, 22, 44, 0.82);
  --border-active: rgba(59, 130, 246, 0.5);
  --glow-mint: 0 0 30px rgba(0, 232, 135, 0.35);
  --grad-primary: linear-gradient(135deg, #00E887 0%, #3b82f6 100%);
  --grad-card: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(0, 232, 135, 0.03) 100%);
}

/* 3. Futuristic Neo-Tokyo (Neon Mint + Cyber Violet + Pink) */
[data-theme="neo-tokyo"] {
  --brand-mint: #00FF9D;
  --accent-primary: #a855f7;
  --accent-secondary: #00FF9D;
  --accent-emerald: #00FF9D;
  --accent-purple: #ec4899;
  --bg-primary: #080614;
  --bg-secondary: #120d29;
  --bg-card: rgba(18, 13, 41, 0.85);
  --border-active: rgba(168, 85, 247, 0.6);
  --glow-mint: 0 0 30px rgba(168, 85, 247, 0.45);
  --grad-primary: linear-gradient(135deg, #00FF9D 0%, #a855f7 50%, #ec4899 100%);
  --grad-card: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(0, 255, 157, 0.03) 100%);
}

/* 4. Monochrome Stealth (Apple / Vercel Pure Minimal) */
[data-theme="stealth"] {
  --brand-mint: #ffffff;
  --accent-primary: #ffffff;
  --accent-secondary: #00FF9D;
  --accent-emerald: #00FF9D;
  --bg-primary: #000000;
  --bg-secondary: #0c0c0e;
  --bg-card: rgba(18, 18, 20, 0.85);
  --border-active: rgba(255, 255, 255, 0.4);
  --glow-mint: 0 0 25px rgba(255, 255, 255, 0.25);
  --grad-primary: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
  --grad-card: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
}

/* Theme Switcher Floating Widget */
.theme-switcher-widget {
  position: fixed;
  left: 20px;
  bottom: 25px;
  z-index: 9999;
  font-family: var(--font-main);
}

.theme-toggle-btn {
  background: rgba(10, 15, 29, 0.9);
  border: 1px solid var(--border-active);
  color: var(--brand-mint);
  padding: 10px 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), var(--glow-mint);
  backdrop-filter: blur(15px);
  transition: var(--transition-fast);
}

.theme-toggle-btn:hover {
  transform: translateY(-2px);
  background: rgba(16, 24, 46, 0.95);
}

.theme-panel {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 0;
  width: 290px;
  background: rgba(8, 12, 24, 0.96);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.theme-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.theme-panel-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.theme-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.theme-opt-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: left;
}

.theme-opt-btn:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.theme-opt-btn.active {
  border-color: var(--brand-mint);
  background: rgba(0, 255, 157, 0.1);
  color: #fff;
}

.color-dots {
  display: flex;
  gap: 4px;
}

.color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
