/* Genius Pantheon — Obsidian Celestial Design System */

:root {
  --bg-dark: #06080d;
  --bg-card: rgba(14, 20, 34, 0.75);
  --border-gold: rgba(232, 184, 109, 0.25);
  --border-violet: rgba(168, 85, 247, 0.25);
  --border-cyan: rgba(34, 211, 238, 0.25);
  --accent-gold: #e8b86d;
  --accent-violet: #a855f7;
  --accent-cyan: #22d3ee;
}

body {
  background-color: var(--bg-dark);
  color: #f1f5f9;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow-x: hidden;
}

/* Glassmorphism Panel */
.pantheon-glass {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pantheon-glass:hover {
  border-color: rgba(232, 184, 109, 0.35);
  box-shadow: 0 12px 30px -10px rgba(232, 184, 109, 0.12);
}

/* Gold Gradient Glow */
.gold-glow {
  box-shadow: 0 0 25px -5px rgba(232, 184, 109, 0.3);
}

.violet-glow {
  box-shadow: 0 0 25px -5px rgba(168, 85, 247, 0.25);
}

/* Custom Inputs */
.pantheon-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: #f8fafc;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  outline: none;
}

.pantheon-input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(232, 184, 109, 0.2);
  background: rgba(0, 0, 0, 0.65);
}

/* Titan Avatar Badge */
.titan-card {
  cursor: pointer;
  user-select: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.titan-card.selected {
  border-color: var(--accent-gold) !important;
  background: rgba(232, 184, 109, 0.12) !important;
  box-shadow: 0 0 20px rgba(232, 184, 109, 0.25);
  transform: translateY(-2px);
}

.titan-card:hover:not(.selected) {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

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

::-webkit-scrollbar-track {
  background: #06080d;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

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

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

/* Print/Export Styling */
@media print {
  body {
    background: #fff !important;
    color: #000 !important;
  }
  header, footer, nav, .no-print {
    display: none !important;
  }
  .pantheon-glass {
    border: 1px solid #ccc !important;
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
  }
}
