/* Global Responsive Resets */
img,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
}

/* =======================
   Color Palette
======================= */
:root {
  --primary: #1F8FCE;
  /* Trustworthy blue */
  --accent: #FF9A3C;
  /* Alerts/energy */
  --bg: #0E2130;
  /* Dark background */
  --surface: #1B2738;
  /* Card backgrounds */
  --muted: #B0BCC9;
  /* Secondary text - BRIGHTENED for better visibility */
  --dark: #0E2130;
  --surface-light: #273447;
  --border: #2E3A50;
  --glow-primary: rgba(31, 143, 206, 0.6);
  --glow-accent: rgba(255, 154, 60, 0.6);
}

/* Global text visibility improvements */
.text-muted {
  color: #B0BCC9 !important;
  /* Brighter than default */
}

.text-gray-400 {
  color: #E2E8F0 !important;
  /* Even brighter (Slate-200) */
}

.text-gray-500 {
  color: #CBD5E1 !important;
  /* Slate-300 */
}

.text-gray-600 {
  color: #94A3B8 !important;
  /* Slate-400 - visible on dark */
}

.text-gray-700 {
  color: #64748B !important;
  /* Slate-500 */
}

html {
  overflow-x: hidden;
  width: 100%;
  height: auto !important;
  min-height: 100%;
}

body {
  overflow-x: hidden;
  overflow-y: auto !important;
  width: 100%;
  position: relative;
  touch-action: pan-y pinch-zoom;
  /* Allow natural vertical scrolling */
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #06080d;
  /* fallback until shader attaches */
  color: #f7f9fc;
  scroll-behavior: smooth;
  position: relative;
  min-height: 100vh;
  /* Safe Area Support */
  padding-top: env(safe-area-inset-top);
}

body.text-on-dark {
  color: #f8fafc;
}

body.text-on-dark a {
  color: #bfdbfe;
}

body.text-on-dark .text-slate-900,
body.text-on-dark .text-slate-800 {
  color: rgba(248, 250, 252, 0.94) !important;
}

body.text-on-dark .text-slate-700,
body.text-on-dark .text-slate-600 {
  color: rgba(226, 232, 240, 0.82) !important;
}

body.text-on-dark .text-slate-500,
body.text-on-dark .text-muted {
  color: rgba(203, 213, 225, 0.95) !important;
  /* Increased opacity */
}

body.text-on-dark .card label,
body.text-on-dark .card .form-label,
body.text-on-dark .bg-surface label,
body.text-on-dark label.label-on-dark {
  color: rgba(248, 250, 252, 0.94) !important;
}

body.text-on-dark input,
body.text-on-dark select,
body.text-on-dark textarea {
  background-color: #ffffff !important;
  color: #0f172a !important;
  border-color: rgba(148, 163, 184, 0.45) !important;
}

body.text-on-dark input::placeholder,
body.text-on-dark textarea::placeholder {
  color: rgba(100, 116, 139, 0.85) !important;
}

body.text-on-dark .card {
  background: rgba(20, 26, 40, 0.88);
}

body.text-on-dark table thead {
  background-color: rgba(51, 65, 85, 0.65);
  color: #e2e8f0;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(120% 120% at 50% 0%, rgba(123, 116, 129, 0.35) 0%, rgba(11, 20, 31, 0.95) 65%, rgba(4, 6, 11, 1) 100%);
  z-index: -3;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.38;

  /* Aurora gradients */
  background: radial-gradient(55% 75% at 15% 20%, rgba(31, 143, 206, 0.55) 0%, rgba(31, 143, 206, 0) 68%),
    radial-gradient(45% 65% at 82% 25%, rgba(255, 154, 60, 0.45) 0%, rgba(255, 154, 60, 0) 70%),
    radial-gradient(65% 55% at 50% 90%, rgba(155, 109, 255, 0.4) 0%, rgba(155, 109, 255, 0) 70%);
  background-size: 140% 140%, 150% 150%, 160% 160%;
  background-position: center center;
  background-repeat: no-repeat;

  /* Gentle static glow effect */
  box-shadow: inset 0 0 150px rgba(255, 255, 255, 0.05),
    inset 0 0 200px rgba(255, 255, 255, 0.03);
  filter: brightness(1.05);
}

/* Responsive fixes for dashboard on mobile */
.tv-chart {
  min-height: 300px;
}

@media (max-width: 767px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1rem;
  }

  p,
  label,
  input,
  select,
  button,
  a {
    font-size: 0.95rem;
  }

  .card {
    cursor: default;
  }

  #header nav ul {
    display: none;
  }

  #main-content-wrapper {
    display: block;
  }

  .tv-chart {
    height: 320px !important;
    min-height: 320px;
  }

  /* Ensure tv widget fits mobile width and avoids overflow */
  #tv-chart-container {
    min-height: 320px;
    width: 100%;
  }
}

/* Fonts */
.font-poppins {
  font-family: 'Poppins', sans-serif;
}

/* =======================
   Header
======================= */
header {
  transition: all 0.3s ease-in-out;
  background: transparent;
  padding-top: env(safe-area-inset-top);
  height: auto;
  min-height: 72px;
}

header.scrolled {
  background: var(--surface-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

nav a {
  transition: all 0.3s;
}

nav a:hover {
  color: var(--accent);
}

/* Mobile menu animation */
#mobile-menu {
  top: 0 !important;
  padding-top: calc(72px + env(safe-area-inset-top));
  height: 100vh;
  transition: transform 0.3s ease-in-out;
  background-color: #0b1120 !important;
  opacity: 1 !important;
  z-index: 9999;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.8);
}

/* =======================
   Hero Section
======================= */
section.relative {
  position: relative;
}

.bg-surface {
  background-color: rgba(27, 39, 56, 0.82) !important;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

.bg-dark {
  background-color: rgba(8, 14, 22, 0.9) !important;
  backdrop-filter: blur(10px);
}

.bg-bg {
  background-color: rgba(9, 16, 24, 0.92) !important;
}

.hero-headline {
  font-size: 4rem;
  font-weight: 700;
  text-shadow: 0 0 15px var(--primary);
  animation: fadeInUp 1.2s ease forwards;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--muted);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1.5s ease forwards;
  animation-delay: 0.5s;
}

/* Buttons */
a.bg-primary,
a.border-primary,
button.bg-primary,
.btn-primary {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

a.bg-primary:hover,
button.bg-primary:hover,
.btn-primary:hover {
  box-shadow: 0 0 20px var(--glow-primary);
  transform: translateY(-3px) scale(1.05);
}

a.border-primary:hover {
  background: var(--primary);
  color: var(--surface);
  box-shadow: 0 0 15px var(--glow-primary);
  transform: translateY(-3px) scale(1.05);
}

/* =======================
   Features / Cards
======================= */
.card {
  background: rgba(27, 39, 56, 0.85);
  backdrop-filter: blur(18px);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border-left: 4px solid var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.card svg {
  transition: all 0.3s ease;
}

.card:hover svg {
  transform: scale(1.2);
  fill: var(--accent);
}

/* =======================
   CTA Section
======================= */
section.bg-gradient-to-r {
  background: linear-gradient(120deg, var(--primary), var(--accent));
  text-align: center;
  padding: 6rem 2rem;
}

section.bg-gradient-to-r h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 0 0 15px var(--accent);
}

section.bg-gradient-to-r a {
  box-shadow: 0 0 20px var(--glow-accent);
}

section.bg-gradient-to-r a:hover {
  transform: translateY(-4px) scale(1.05);
}

/* =======================
   Footer
======================= */
footer {
  background: rgba(16, 23, 35, 0.85);
  backdrop-filter: blur(14px);
  color: var(--muted);
}

footer a:hover {
  color: var(--accent);
}

/* =======================
   Animations
======================= */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =======================
   Toast Notifications
======================= */
#toast {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1rem 1.5rem;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  z-index: 1000;
  box-shadow: 0 0 15px var(--glow-primary);
  animation: fadeInUp 0.5s ease forwards;
}

/* =======================
   Glass Surfaces
======================= */
.glass-panel {
  background: rgba(12, 19, 31, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.glass-panel--light {
  background: rgba(255, 255, 255, 0.85);
  color: #0e2130;
  border: 1px solid rgba(15, 32, 48, 0.08);
  box-shadow: 0 24px 60px rgba(8, 14, 22, 0.25);
}

/* =======================
   Spinners / Loaders
======================= */
.spinner {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  border-radius: 9999px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: rgba(255, 255, 255, 0.95);
  animation: spin 0.75s linear infinite;
  vertical-align: middle;
  margin-right: 0.5rem;
}

.spinner--dark {
  border-color: rgba(14, 33, 48, 0.3);
  border-top-color: rgba(14, 33, 48, 0.85);
}

.spinner--lg {
  width: 2.5rem;
  height: 2.5rem;
  border-width: 4px;
  margin-right: 1rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 40vh;
  color: #f7f9fc;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.loading-overlay--light {
  color: #0e2130;
}

.loading-overlay__text {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  opacity: 0.85;
}

.google-one-tap-button {
  display: flex;
  justify-content: center;
}

/* =======================
   Scroll Effects / Smooth
======================= */
a:focus,
button:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* =======================
   Swiper / Charts
======================= */
.swiper-slide {
  background: var(--surface);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* =======================
   Live Price Ticker
======================= */
.ticker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.75rem;
  position: relative;
}

.ticker-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(20, 30, 45, 0.9) 0%, rgba(12, 22, 34, 0.78) 100%);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ticker-item::before {
  content: '';
  position: absolute;
  inset: -120% -20%;
  background: conic-gradient(from 120deg, rgba(31, 143, 206, 0.0), rgba(68, 198, 255, 0.35), rgba(255, 154, 60, 0.0) 65%);
  opacity: 0;
  animation: tickerSweep 6s linear infinite;
  pointer-events: none;
}

.ticker-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 255, 255, 0.12);
}

.ticker-item:hover::before {
  opacity: 0.55;
}

.ticker-symbol {
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f8fafc;
}

.ticker-price-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  gap: 0.55rem;
  font-variant-numeric: tabular-nums;
  min-width: max-content;
}

.ticker-price {
  font-weight: 600;
  font-size: 1.05rem;
  color: #e2e8f0;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.ticker-direction {
  font-size: 0.75rem;
  line-height: 1;
  color: #94a3b8;
  transition: color 0.2s ease;
}

.ticker-item.ticker-up .ticker-price {
  color: #34d399;
}

.ticker-item.ticker-up .ticker-direction {
  color: #34d399;
}

.ticker-item.ticker-down .ticker-price {
  color: #f87171;
}

.ticker-item.ticker-down .ticker-direction {
  color: #f87171;
}

@keyframes tickerSweep {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 640px) {
  .ticker-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .ticker-item {
    box-shadow: 0 24px 60px rgba(8, 14, 22, 0.25);
  }
}

/* Autofill fix */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #0e2130 inset !important;
  -webkit-text-fill-color: white !important;
  caret-color: white !important;
}

/* =======================
   Premium UI Extensions (Glassmorphism v2 & 3D)
======================= */

/* Premium Glass Card */
.glass-premium {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06),
    inset 0 0 20px rgba(255, 255, 255, 0.02);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-premium:hover {
  background: rgba(15, 23, 42, 0.75);
  border-color: rgba(139, 92, 246, 0.3);
  /* Primary purple accent */
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.5),
    0 8px 10px -6px rgba(0, 0, 0, 0.5),
    0 0 15px rgba(139, 92, 246, 0.15);
  /* Purple glow */
}

/* 3D Tilt Effect Utilities */
.tilt-card-container {
  perspective: 1000px;
  transform-style: preserve-3d;
}

.tilt-card-inner {
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
  /* Fast reaction for tilt */
}

.tilt-content-pop {
  transform: translateZ(20px);
  /* Elements float above card */
}

.tilt-content-pop-lg {
  transform: translateZ(40px);
  /* Elements float higher */
}

/* Neon Text Gradients */
.text-gradient-premium {
  background: linear-gradient(135deg, #60a5fa, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: shine 5s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

/* Parallax Hero Background */
.parallax-wrapper {
  position: relative;
  overflow: hidden;
  height: 100vh;
  width: 100%;
}

.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.parallax-bg-3d {
  background-image: url('../images/bg-3d-abstract.png');
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  z-index: -1;
  transform: scale(1.1);
  /* Allow for movement without edges showing */
}

/* =======================
   Sidebar Styles (Global Fix)
======================= */
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--muted);
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 4px;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-decoration: none;
}

.sidebar-link:hover {
  background: rgba(139, 92, 246, 0.1);
  color: #ffffff;
  transform: translateX(4px);
}

.sidebar-link::before,
.sidebar-link::after {
  pointer-events: none;
}

.sidebar-link.active {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.25) 0%, rgba(139, 92, 246, 0.1) 100%);
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, 0.3);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.1);
}

/* Custom Scrollbar for Sidebar */
.custom-scrollbar::-webkit-scrollbar {
  width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Premium Card Style (The new standard) */
.premium-card {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.premium-card:hover {
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(139, 92, 246, 0.1);
}

/* Glass Input */
.glass-input {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  color: #fff !important;
  padding: 12px 16px !important;
  transition: all 0.3s ease !important;
}

.glass-input:focus {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(139, 92, 246, 0.5) !important;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1) !important;
  outline: none !important;
}

.sidebar-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  opacity: 0.8;
  flex-shrink: 0;
}

/* =======================
   Premium UI Extensions (Glassmorphism v2 & 3D)
======================= */

/* Premium Glass Card */
.glass-premium {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06),
    inset 0 0 20px rgba(255, 255, 255, 0.02);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-premium:hover {
  background: rgba(15, 23, 42, 0.75);
  border-color: rgba(139, 92, 246, 0.3);
  /* Primary purple accent */
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.5),
    0 8px 10px -6px rgba(0, 0, 0, 0.5),
    0 0 15px rgba(139, 92, 246, 0.15);
  /* Purple glow */
}

/* 3D Tilt Effect Utilities */
.tilt-card-container {
  perspective: 1000px;
  transform-style: preserve-3d;
}

.tilt-card-inner {
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
  /* Fast reaction for tilt */
}

.tilt-content-pop {
  transform: translateZ(20px);
  /* Elements float above card */
}

.tilt-content-pop-lg {
  transform: translateZ(40px);
  /* Elements float higher */
}

/* Neon Text Gradients */
.text-gradient-premium {
  background: linear-gradient(135deg, #60a5fa, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: shine 5s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

/* Parallax Hero Background */
.parallax-wrapper {
  position: relative;
  overflow: hidden;
  height: 100vh;
  width: 100%;
}

.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.parallax-bg-3d {
  background-image: url('../images/bg-3d-abstract.png');
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  z-index: -1;
  transform: scale(1.1);
  /* Allow for movement without edges showing */
}

/* =======================
   Sidebar Styles (Global Fix)
======================= */
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--muted);
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 4px;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-decoration: none;
}

.sidebar-link:hover {
  background: rgba(139, 92, 246, 0.1);
  color: #ffffff;
  transform: translateX(4px);
}

.sidebar-link::before,
.sidebar-link::after {
  pointer-events: none;
}

.sidebar-link.active {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.25) 0%, rgba(139, 92, 246, 0.1) 100%);
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, 0.3);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.1);
}

/* Custom Scrollbar for Sidebar */
.custom-scrollbar::-webkit-scrollbar {
  width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Premium Card Style (The new standard) */
.premium-card {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.premium-card:hover {
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(139, 92, 246, 0.1);
}

/* Glass Input */
.glass-input {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  color: #fff !important;
  padding: 12px 16px !important;
  transition: all 0.3s ease !important;
}

.glass-input:focus {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(139, 92, 246, 0.5) !important;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1) !important;
  outline: none !important;
}

.sidebar-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  opacity: 0.8;
  flex-shrink: 0;
}

.sidebar-link:hover .sidebar-icon,
.sidebar-link.active .sidebar-icon {
  opacity: 1;
}

.sidebar-icon path {
  fill: currentColor;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.5s ease-out forwards;
}