.elementor-10273 .elementor-element.elementor-element-ed95b8d{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS *//* ============================================
   STRATOSPHERE PAGE BRANDING
   Fixed Logo Symbol Watermarks
   ============================================ */

:root {
  --strato-gold: #b68b54;
  --strato-scroll-track: #f4f1ec;
}


/* ============================================
   GOLD SCROLLBAR
   ============================================ */

/* Firefox */
html {
  scrollbar-width: auto;
  scrollbar-color: var(--strato-gold) var(--strato-scroll-track);
}

/* Chrome / Edge / Safari */
html::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track {
  background: var(--strato-scroll-track);
}

html::-webkit-scrollbar-thumb {
  background: #b68b54;
  border-radius: 999px;
  border: 3px solid var(--strato-scroll-track);
}

html::-webkit-scrollbar-thumb:hover {
  background: #c99c63;
}


/* ============================================
   STRATOSPHERE WATERMARK ANIMATIONS
   ============================================ */

@keyframes strato-spin {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

@keyframes strato-spin-reverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}


/* ============================================
   LARGE WATERMARK
   RIGHT SIDE
   ============================================ */

body::before {
  content: "";
  position: fixed;
  top: 52%;
  right: -9%;
  width: 620px;
  height: 620px;
  background-image: url("https://allacesprinting.clientbuild.neonsnow.com.au/wp-content/uploads/2026/08/stratosphere-entertainment-logo-symbol-scaled.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter:
    brightness(0)
    saturate(100%)
    invert(67%)
    sepia(29%)
    saturate(725%)
    hue-rotate(355deg)
    brightness(91%)
    contrast(86%);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
  animation: strato-spin 70s linear infinite;
}


/* ============================================
   SECOND WATERMARK
   TOP LEFT
   ============================================ */

body::after {
  content: "";
  position: fixed;
  top: -12%;
  left: -9%;
  width: 500px;
  height: 500px;
  background-image: url("https://allacesprinting.clientbuild.neonsnow.com.au/wp-content/uploads/2026/08/stratosphere-entertainment-logo-symbol-scaled.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter:
    brightness(0)
    saturate(100%)
    invert(67%)
    sepia(29%)
    saturate(725%)
    hue-rotate(355deg)
    brightness(91%)
    contrast(86%);
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  animation: strato-spin-reverse 90s linear infinite;
}


/* ============================================
   KEEP WEBSITE CONTENT ABOVE WATERMARKS
   ============================================ */

.elementor,
.elementor-location-header,
.elementor-location-footer,
main,
.site-main {
  position: relative;
  z-index: 1;
}


/* ============================================
   KEEP SCROLL NORMAL
   ============================================ */

html,
body {
  overflow-x: hidden;
  overflow-y: auto;
  height: auto;
  min-height: 100%;
}


/* ============================================
   RESPONSIVE - LAPTOP
   ============================================ */

@media (max-width: 1200px) {
  body::before {
    width: 480px;
    height: 480px;
    right: -13%;
    opacity: 0.06;
  }

  body::after {
    width: 400px;
    height: 400px;
    left: -12%;
    opacity: 0.042;
  }
}


/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (max-width: 768px) {
  body::before {
    width: 340px;
    height: 340px;
    right: -18%;
    top: 55%;
    opacity: 0.05;
  }

  body::after {
    width: 280px;
    height: 280px;
    top: -6%;
    left: -16%;
    opacity: 0.038;
  }
}


/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 480px) {
  body::before {
    width: 250px;
    height: 250px;
    right: -22%;
    opacity: 0.042;
  }

  body::after {
    display: none;
  }
}


/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after {
    animation: none;
  }
}/* End custom CSS */