/* ========================================== */
/* FIKRA 3D - CUSTOM GLOBAL STYLES            */
/* ========================================== */

/* Dark Aesthetic Custom Webkit Scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

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

::-webkit-scrollbar-thumb:hover {
  background: #dc2626; /* FIKRA 3D Accent Red */
}

/* Custom WebGL Viewport Glass Effects */
.glass-panel {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Three.js Canvas Hover Glow */
#canvas-container:hover {
  box-shadow: inset 0 0 20px rgba(220, 38, 38, 0.1);
}

/* Prevent Text Highlight during 3D Drag/Rotate */
#canvas-container canvas {
  user-select: none;
  -webkit-user-select: none;
}

.nav-brand-logo {
  height: 3.25rem;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* Light Action Button Style */
.btn-light {
  background-color: #ffffff;
  color: #0a0a0a;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-light:hover {
  background-color: #e5e5e5;
}
