/* Web App / Members Area Native Dashboard Styles */

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

:root {
  --color-navy-dark: #070C1B;
  --color-navy-card: #0F172A;
  --color-navy-border: #1E293B;
  --color-gold: #D97706;
  --color-gold-bright: #F59E0B;
  --color-gold-glow: rgba(245, 158, 11, 0.25);
  --color-bg-app: #090E17;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--color-bg-app);
  color: #F1F5F9;
  overflow-x: hidden;
  user-select: none;
}

.font-serif-title {
  font-family: 'Cinzel', serif;
}

/* Custom Web App Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #070C1B;
}
::-webkit-scrollbar-thumb {
  background: #1E293B;
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #F59E0B;
}

/* Sidebar Layout */
.app-sidebar {
  width: 260px;
  background-color: #070C1B;
  border-right: 1px solid #1E293B;
}

/* Nav item active states */
.nav-tab-btn.active {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.08) 100%);
  border-color: rgba(245, 158, 11, 0.4);
  color: #F59E0B;
}
.nav-tab-btn.active i {
  color: #F59E0B;
}

/* Text Gradients */
.gold-gradient-text {
  background: linear-gradient(135deg, #FDE68A 0%, #F59E0B 50%, #B45309 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-gradient-bg {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.gold-border-glow {
  border: 1px solid rgba(245, 158, 11, 0.2);
  transition: all 0.25s ease;
}

.gold-border-glow:hover {
  border-color: rgba(245, 158, 11, 0.6);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.15);
}

/* App View Containers */
.app-view {
  display: none;
  animation: fadeInView 0.25s ease-out forwards;
}
.app-view.active-view {
  display: block;
}

@keyframes fadeInView {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 3D Canvas Canvas Container */
#threejs-canvas-container {
  width: 100%;
  height: 360px;
  border-radius: 1.25rem;
  overflow: hidden;
  background: radial-gradient(circle at center, #1E293B 0%, #070C1B 100%);
  position: relative;
}

/* Glass & Card Overlays */
.glass-panel {
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(30, 41, 59, 0.8);
}

/* Background Grid Overlay */
.bg-grid-pattern {
  background-size: 32px 32px;
  background-image: 
    linear-gradient(to right, rgba(245, 158, 11, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(245, 158, 11, 0.03) 1px, transparent 1px);
}
