/* ==========================================================================
   AETHER // BEAUTIFUL GLASSMORPHIC RTL DESIGN
   ========================================================================== */

:root {
  /* Rich Gradient Palette */
  --bg-void: #030014;
  --surface-monolith: rgba(10, 10, 15, 0.6);
  --surface-raised: rgba(20, 20, 30, 0.4);
  
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-tertiary: #94a3b8;

  --accent-glow: rgba(139, 92, 246, 0.2);
  --accent-border: rgba(255, 255, 255, 0.08);
  --accent-primary: #8b5cf6;
  --accent-secondary: #0ea5e9;

  --font-sans: 'Alexandria', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --ease-fluid: cubic-bezier(0.16, 1, 0.3, 1);

  /* Deep physical shadows */
  --shadow-monolith: 
    0 40px 100px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px var(--accent-border),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--bg-void);
  font-family: var(--font-sans);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

/* Deep Space Cinematic Background */
.clouds-bg-layer {
  display: none;
}

.background-mesh {
  display: none;
}

#canvas-stage {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}



/* Modern Full Viewport Stage */
.stage-viewport, .stage-3d-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  overflow: hidden;
}

/* Utilities */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}
