#brxe-header {
  z-index: 9999999999 !important;
  position: relative;
}

/* Page transition overlays */
#page-transitions {
  pointer-events: none;
  z-index: 9999999999 !important;
  position: relative;
}

.blocks-container {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  z-index: 9999;
  transform-origin: center top;
  overflow: hidden;
  pointer-events: none;
}

.blocks-container .row {
  display: flex;
  width: 100%;
  height: calc(100% / 10); /* 10 rows */
}

.blocks-container .block {
  flex: 1;
  transform-origin: center top;
  background: #111; /* change as needed */
  height: 100%;
  transform: scaleY(0);
}

.blocks-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

.blocks-container .row {
  display: flex;
  flex: 1;
}

.blocks-container .block {
  flex: 1;
  background: #000; /* Your preferred color */
  transform-origin: 50% 0%;
}

/* Ensure proper stacking context */
body {
  position: relative;
}