/* ==========================================================================
   FILE : /assets/01-mstr-tmplet/00-juxta-logo/juxta-logo.css
   PURPOSE : Self-Contained Styles for the Logo Engine
   VERSION: v1.1 - DATE MODIFIED: 2026-03-17 - Sectioned & Fortified
   ========================================================================== */

/* ==========================================================================
   SECTION 1: THE HOUSING (THE CONTAINER)
   ========================================================================== */
.jzn-logo-housing {
  width: 140px !important;
  height: 140px !important;
  background: #000000 !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  border-radius: 20px;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  position: relative;
  margin-left: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  overflow: hidden;

  /* THE SYNC: Pulling from the Master Switchboard */
  z-index: var(--z-logo-engine, 1001) !important;
  flex-shrink: 0;
}

/* ==========================================================================
   SECTION 2: THE STAGE (DRAWING AREA)
   Purpose: The inner boundary where the JS calculates the center (cx/cy)
   to render the graphics perfectly.
   ========================================================================== */
.jzn-logo-stage {
  width: 100% !important;
  height: 100% !important;
  position: relative !important;
}

/* ==========================================================================
   SECTION 3: THE LAYERS (CANVAS & IMAGE)
   Purpose: Stacking the background RGB Ring, the center Infinity SVG,
   and the foreground Tracers without overlapping issues.
   ========================================================================== */
.jzn-logo-canvas {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
}

.jzn-logo-infinity-img {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 2 !important;
  width: auto !important;
  max-width: 55% !important;
  pointer-events: none;
  visibility: visible !important;
  opacity: 1 !important;
}
