/* ==========================================================================
   LUMIA 26.2 ARCHIVE & STAFF HUB - MASTER STYLESHEET
   ========================================================================== */

:root {
  --bg-main: #06070A;
  --bg-surface: #0C0E14;
  --bg-sidebar: rgba(10, 12, 18, 0.85);
  --bg-card: rgba(15, 18, 26, 0.72);
  --bg-card-hover: rgba(22, 26, 38, 0.88);
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-highlight: rgba(255, 0, 51, 0.4);
  --brand-red: #FF0033;
  --brand-glow: #FF4D66;
  --brand-neon: #FF1A4B;
  --accent-cyan: #00E5FF;
  --accent-gold: #FFB800;
  --accent-green: #00FF88;
  --accent-purple: #B537F2;
  --text-main: #F1F3F9;
  --text-muted: #8E95A5;
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

h1, h2, h3, h4, .font-title {
  font-family: 'Unbounded', sans-serif;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #06070A;
}
::-webkit-scrollbar-thumb {
  background: #1E2230;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-red);
}

/* Shimmering Logo & Brand Effects */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.text-gradient-lumia {
  background: linear-gradient(90deg, #FF0033 0%, #FFAEC0 25%, #00E5FF 55%, #FFFFFF 80%, #FF0033 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s ease-in-out infinite;
  display: inline-block;
}

@keyframes logoPulse {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(255, 0, 51, 0.5)) drop-shadow(0 0 45px rgba(255, 0, 51, 0.2));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 35px rgba(255, 0, 51, 0.85)) drop-shadow(0 0 65px rgba(0, 229, 255, 0.4));
    transform: scale(1.03);
  }
}

.lumia-logo-glow {
  animation: logoPulse 4s ease-in-out infinite;
}

/* Cyber Background Grid & Animated Orbs */
.bg-cyber-grid {
  background-image: 
    linear-gradient(rgba(255, 0, 51, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 0, 51, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
}

.aurora-orb-1 {
  position: fixed;
  width: 750px;
  height: 750px;
  border-radius: 50%;
  top: -160px;
  left: 15%;
  background: radial-gradient(circle, rgba(255, 0, 51, 0.18) 0%, transparent 70%);
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  animation: floatOrb 18s ease-in-out infinite alternate;
}

.aurora-orb-2 {
  position: fixed;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  bottom: 0;
  right: 5%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  animation: floatOrb 22s ease-in-out infinite alternate-reverse;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.08); }
  100% { transform: translate(-30px, -20px) scale(0.95); }
}

/* Glassmorphism Panels */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
}

.glass-panel-glow {
  background: rgba(14, 17, 25, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-highlight);
  box-shadow: 0 0 35px rgba(255, 0, 51, 0.15), 0 20px 40px rgba(0, 0, 0, 0.6);
}

.glass-card {
  background: rgba(16, 19, 28, 0.65);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 0, 51, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -6px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 0, 51, 0.15);
}

/* Sidebar Nav Item */
.sidebar-item {
  display: flex;
  items-center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.sidebar-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.sidebar-item.active {
  color: #fff;
  background: linear-gradient(90deg, rgba(255, 0, 51, 0.2) 0%, rgba(255, 0, 51, 0.05) 100%);
  border-color: rgba(255, 0, 51, 0.45);
  font-weight: 600;
  box-shadow: 0 0 16px rgba(255, 0, 51, 0.15);
}

/* Buttons */
.glow-btn {
  background: linear-gradient(135deg, #FF0033, #CC0029);
  box-shadow: 0 0 20px rgba(255, 0, 51, 0.4);
  transition: all 0.25s ease;
}

.glow-btn:hover {
  background: linear-gradient(135deg, #FF1A4B, #E60033);
  box-shadow: 0 0 30px rgba(255, 0, 51, 0.7);
  transform: scale(1.02);
}

/* Badges */
.badge-accepted {
  background: rgba(0, 255, 136, 0.12);
  color: #00FF88;
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.badge-rejected {
  background: rgba(255, 0, 51, 0.12);
  color: #FF4D66;
  border: 1px solid rgba(255, 0, 51, 0.3);
}

.badge-pending {
  background: rgba(255, 184, 0, 0.12);
  color: #FFB800;
  border: 1px solid rgba(255, 184, 0, 0.3);
}

.badge-implemented {
  background: rgba(0, 229, 255, 0.12);
  color: #00E5FF;
  border: 1px solid rgba(0, 229, 255, 0.3);
}

/* Cyber Input */
.cyber-input {
  background: rgba(10, 12, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 10px;
  padding: 9px 14px;
  transition: all 0.2s ease;
}

.cyber-input:focus {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 14px rgba(255, 0, 51, 0.35);
  background: rgba(14, 16, 24, 0.95);
}

/* Shake Animation */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-8px); }
  40%, 80% { transform: translateX(8px); }
}

.shake {
  animation: shake 0.4s ease-in-out;
}

/* 3D Head Render Shadow */
.mc-head-shadow {
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6));
}

.mc-body-render {
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 16px rgba(255, 0, 51, 0.2));
  transition: transform 0.3s ease;
}

.mc-body-render:hover {
  transform: scale(1.04) rotate(-1deg);
}

.modal-backdrop {
  background: rgba(4, 5, 8, 0.88);
  backdrop-filter: blur(14px);
}
