/* Omega Logo Loader Animation - SVG Trace/Writing Effect */
/* 
 * You can override these CSS variables to customize the loader appearance
 * Note: Some settings are controlled by LOADER_CONFIG in loader.js
 */
:root {
  --loader-bg-color: #000000;
  --loader-icon-size: 360px;
  --loader-fade-duration: 0.3s;
  --loader-fade-ease: ease-out;
}

.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--loader-bg-color, #000000);
  z-index: 9999;
  opacity: 1;
  transition: opacity var(--loader-fade-duration, 0.3s) var(--loader-fade-ease, ease-out);
}

.loader-container.fade-out {
  opacity: 0;
  pointer-events: none;
}

.omega-loader {
  width: var(--loader-icon-size, 360px);
  height: var(--loader-icon-size, 360px);
  position: relative;
  --load-progress: 500;
  margin: 0 auto;
}

.omega-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  /* Use xMidYMid to center the viewBox content within the SVG */
  /* The viewBox "158 40 140 140" will be centered within the 360x360 container */
}

/* SVG stroke trace animation */
.logo-stroke {
  /* No initial hiding needed - inline SVG attributes handle it */
}

