@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --color-bg-deep: #030712;
  --color-bg-card: #0B1528;
  --color-bg-light: #F9FAFB;
  --color-border-dark: rgba(255, 255, 255, 0.08);
  --color-border-light: rgba(0, 0, 0, 0.06);
  --color-gold: #C5A880;
  --color-gold-hover: #E5D5C5;
  --color-primary: #1E3A8A;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--color-bg-deep);
  color: #F3F4F6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Glassmorphism Styles */
.glass-panel {
  background: rgba(11, 21, 40, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-border-dark);
}

.glass-panel-light {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-border-light);
}

/* Gold Gradient Text and Accents */
.text-gold-gradient {
  background: linear-gradient(135deg, #F3E7C4 0%, #C5A880 50%, #A38052 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gold-gradient {
  background: linear-gradient(135deg, #F3E7C4 0%, #C5A880 50%, #A38052 100%);
}

.bg-dark-gradient {
  background: radial-gradient(circle at top right, #0F1A35 0%, #030712 100%);
}

.border-gold-glow {
  border: 1px solid rgba(197, 168, 128, 0.3);
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.1);
}

.border-gold-glow:hover {
  border: 1px solid rgba(197, 168, 128, 0.6);
  box-shadow: 0 0 25px rgba(197, 168, 128, 0.2);
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-deep);
}

::-webkit-scrollbar-thumb {
  background: #1F2937;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* Mesh Grids and Glowing Blobs */
.glowing-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.15) 0%, rgba(3, 7, 18, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(50px);
}

.glowing-blob-gold {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.08) 0%, rgba(3, 7, 18, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(50px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Input Styles */
.form-input-dark {
  background-color: rgba(3, 7, 18, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFF;
  border-radius: 0.50rem;
  transition: all 0.2s ease-in-out;
}

.form-input-dark:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 2px rgba(197, 168, 128, 0.2);
}

/* Table Hover Effects */
.table-row-hover {
  transition: background-color 0.2s ease-in-out;
}

.table-row-hover:hover {
  background-color: rgba(255, 255, 255, 0.02);
}
