@supports (scrollbar-gutter: stable) {
  html {
    scrollbar-gutter: stable;
    /* Let overflow-y remain auto so the scrollbar only appears when needed */
  }
}
/* If scrollbar-gutter is not supported, force the scrollbar to always appear */
@supports not (scrollbar-gutter: stable) {
  html {
    overflow-y: scroll;
  }
}
body {
  background-image: url("/helios/images/helios_bg1.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: #002;
  /* Fallback in case image fails */
  font-family: "Roboto Flex", sans-serif;
  font-weight: 400;
  font-optical-sizing: auto;
}

#page-wrapper {
  background-color: rgba(0, 0, 0, 0.8);
}

#body-wrapper .dark-bg {
  background-color: rgba(0, 0, 0, 0.75);
  /* 75% opaque black */
  padding: 1rem;
  border-radius: 2rem;
  max-width: 1000px;
  margin: 2rem auto;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3), 0 0 120px rgba(0, 255, 255, 0.1);
  max-height: 4em;
  overflow: hidden;
  transition: max-height 3s ease-in-out;
}

#body-wrapper .dark-bg.open {
  max-height: 1000em;
}

h1,
h2,
h3,
h4,
h5,
h6 .navbar-section {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin-top: 1em;
}

h1 {
  font-size: 2rem;
  text-align: center;
  color: #cdff33;
  text-shadow: 0 0 0.5em #9acc00;
}

h2 {
  font-size: 1.5rem;
  color: #5fa1f2;
  text-shadow: 0 0 0.5em #126bd9;
}

h3 {
  font-size: 1.25rem;
  color: #ffbb33;
  text-shadow: 0 0 0.5em #cc8800;
}

h4 {
  font-size: 1.1rem;
  color: #a033ff;
  text-shadow: 0 0 0.5em #6d00cc;
}

h5 {
  font-size: 1rem;
  color: #ffbb33;
  text-shadow: 0 0 0.5em #cc8800;
}

h6 {
  font-size: 1rem;
  color: #ffbb33;
  text-shadow: 0 0 0.5em #cc8800;
}

#header a {
  color: #fff;
}

p.lg {
  font-size: 1.5em;
}

p.xlg {
  font-size: 2.5em;
}

.code {
  font-family: "Console", sans-serif;
  font-weight: 700;
  color: #c0ff00;
}

.code p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.redacted {
  background-color: #ccc;
  color: #000;
}

.console {
  font-family: "Courier", sans-serif;
  color: #9acc00;
}

pre,
code {
  white-space: pre-wrap;
  /* Allows wrapping */
  word-wrap: break-word;
  /* Ensures long words wrap properly */
  overflow-wrap: break-word;
  /* Helps with long unbroken text */
  overflow-x: hidden;
  /* Prevents horizontal scrolling */
}

.debug-info {
  background: #383838;
  padding: 10px;
  border: 1px solid #ccc;
  margin: 10px 0;
}

.spoiler-warning {
  font-weight: 100;
  border-top: 2px solid #cc0000;
  border-bottom: 2px solid #cc0000;
  border-right: 50px solid transparent;
  border-left: 50px solid transparent;
  margin: 2em 0;
  padding: 1rem;
  text-align: center;
  color: #FF0000;
  text-shadow: 0 0 5px #FF0000;
}

.spoiler-warning .warning {
  font-weight: 700;
  color: #FF0000;
  text-shadow: 0 0 5px #FF0000;
  animation: pulse 2s ease-in-out infinite;
}

.fa-check-square {
  color: #c0ff00;
}

.fa-unlock-alt {
  color: #cc0000;
}

.notices.yellow {
  border-left: 10px solid #ffcc66;
  background: #664400;
  color: #ffaa00;
}
.notices.red {
  border-left: 10px solid #990000;
  background: #660000;
  color: #ff6666;
}
.notices.blue {
  border-left: 10px solid #0e54aa;
  background: #0a3d7b;
  color: #8ebdf6;
}
.notices.green {
  border-left: 10px solid #739900;
  background: #4d6600;
  color: #d9ff66;
}

.dropmenu ul li a.active, .dropmenu ul li a.active:hover {
  color: #5fa1f2 !important;
}
.dropmenu ul li a.active + ul, .dropmenu ul li a.active:hover + ul {
  border: 1px solid #126bd9;
  box-shadow: 0 0 5px #5fa1f2;
}
.dropmenu ul li a.active-red, .dropmenu ul li a.active-red:hover {
  color: #cc0000 !important;
}
.dropmenu ul li a.active-red + ul, .dropmenu ul li a.active-red:hover + ul {
  border: 1px solid #cc0000;
  box-shadow: 0 0 5px #cc0000;
}
.dropmenu ul li a.active-green, .dropmenu ul li a.active-green:hover {
  color: #c0ff00 !important;
}
.dropmenu ul li a.active-green + ul, .dropmenu ul li a.active-green:hover + ul {
  border: 1px solid #c0ff00;
  box-shadow: 0 0 5px #9acc00;
}

.dropmenu.animated ul li:hover {
  background-color: #000;
}

.dropmenu.animated ul li:hover > ul {
  opacity: 0.9;
}

.dropmenu.animated ul ul {
  border: 1px solid #126bd9;
  box-shadow: 0 0 5px #126bd9;
}

.dropmenu .login-link {
  color: #FF0000 !important;
}

.wide-span {
  letter-spacing: 0.5em;
}

#countdown-header-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffaa00;
  z-index: 1000;
  transition: width 1s linear;
}

#popup-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

#popup-modal.fade-in {
  opacity: 1;
}

.modal-content {
  background: #111;
  color: #3085ee;
  font-weight: bold;
  padding: 20px;
  border-radius: 8px;
  border: 3px solid #ffcc66;
  text-align: center;
  max-width: 600px;
  width: 90%;
  margin: auto;
}

.button-container {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  /* optional, for spacing between buttons */
  justify-content: center;
  /* or flex-start / flex-end as needed */
  text-align: center;
}

button,
form button {
  display: inline-block;
  padding: 0.25rem 1rem;
  margin: 0.5rem;
  border: 2px solid #5fa1f2;
  border-radius: 5px;
  background: linear-gradient(145deg, #5fa1f2, #126bd9);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 5px #3085ee;
  transition: background 0.2s ease-in-out, box-shadow 0.2s ease-in-out, transform 0.1s ease;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3), -3px -3px 5px rgba(255, 255, 255, 0.2);
  width: auto;
  white-space: nowrap;
  align-self: center;
}
button:hover,
form button:hover {
  background: linear-gradient(145deg, #3085ee, #105fc2);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4), -1px -1px 3px rgba(255, 255, 255, 0.2);
}
button:active,
form button:active {
  transform: translateY(2px);
  box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.5);
  border-color: #0e54aa;
  text-shadow: 0 0 10px #3085ee;
}

button.red,
form button.red {
  border: 2px solid #ff3333;
  background: linear-gradient(145deg, #ff3333, #cc0000);
  text-shadow: 0 0 5px #FF0000;
}
button.red:hover,
form button.red:hover {
  background: linear-gradient(145deg, #FF0000, #b30000);
}
button.red:active,
form button.red:active {
  border-color: #990000;
  text-shadow: 0 0 10px #FF0000;
}

button.green,
form button.green {
  border: 2px solid #9acc00;
  background: linear-gradient(145deg, #9acc00, #739900);
  text-shadow: 0 0 5px #c0ff00;
}
button.green:hover,
form button.green:hover {
  background: linear-gradient(145deg, #86b300, #608000);
}
button.green:active,
form button.green:active {
  border-color: #739900;
  text-shadow: 0 0 10px #c0ff00;
}

button.gold,
form button.gold {
  border: 2px solid #ffbb33;
  background: linear-gradient(145deg, #ffbb33, #cc8800);
  text-shadow: 0 0 5px #ffaa00;
}
button.gold:hover,
form button.gold:hover {
  background: linear-gradient(145deg, #ffaa00, #b37700);
}
button.gold:active,
form button.gold:active {
  border-color: #996600;
  text-shadow: 0 0 10px #ffaa00;
}

#countdown-wrapper {
  margin-top: 20px;
  padding: 10px;
  background: rgba(255, 0, 0, 0.2);
  border-radius: 5px;
  text-align: center;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: rgba(255, 0, 0, 0.2);
  margin-top: 10px;
  border-radius: 5px;
}

#progress {
  width: 100%;
  height: 100%;
  background: #fa0;
  transition: width 1s linear;
}

#email-content table {
  width: 100%;
  text-align: left;
}
#email-content th {
  border-bottom: 1px solid #3085ee;
}

#email-preview {
  border: 1px solid #3085ee;
  border-radius: 1em;
  padding: 1em;
  transition: box-shadow 0.5s;
}
#email-preview.eLoading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 200px;
  box-shadow: none;
}
#email-preview.eLoaded {
  display: block;
  text-align: left;
  min-height: auto;
  box-shadow: 0 0 10px #3085ee;
}
#email-preview .dead-link {
  font-weight: bold;
  color: #3085ee;
  cursor: not-allowed;
}

#email-loading {
  font-size: 1.2rem;
  color: #3085ee;
  display: flex;
  align-items: center;
}
#email-loading i {
  margin-right: 8px;
  font-size: 1.5rem;
}

.card {
  justify-content: center;
  align-items: center;
  border: 3px solid #9acc00;
  padding: 2rem;
  border-radius: 2rem;
}
.card.error {
  border-color: #cc0000;
}

.glitch {
  display: flex;
  flex-direction: row;
  justify-content: center;
  color: #ffbb33;
  animation: glitch 5s ease-in-out infinite;
  text-shadow: 0 0 5px #ffbb33;
}
.glitch.red {
  color: #ff3333;
  text-shadow: 0 0 5px #ff3333;
}

.accordion-wrapper {
  margin: 30px 0;
  text-align: left;
}
.accordion-wrapper label {
  color: #ccc;
  background: #333;
  border: 1px solid #000;
  border-bottom: 1px solid transparent;
}
.accordion-wrapper label:hover {
  background: #1a1a1a;
  color: #fff;
}
.accordion-wrapper article {
  background: rgba(51, 51, 51, 0.5);
  border: 1px solid #000;
}
.accordion-wrapper input:checked + label {
  border-bottom: 1px solid #000;
}
.accordion-wrapper > div:last-child label,
.accordion-wrapper > div:last-child input:checked ~ article {
  border-bottom: 1px solid #000;
}

.tab {
  border-bottom: 0.05rem solid rgba(51, 51, 51, 0.5);
}

.tabs-wrapper {
  display: block;
}
.tabs-wrapper.ui-theme-lite .tabs-nav li.current a {
  border-bottom: 1px solid #3085ee;
}
.tabs-wrapper.ui-theme-lite .tabs-nav li:hover {
  background: rgba(51, 51, 51, 0.5);
}
.tabs-wrapper.ui-theme-lite.bottom-right .tabs-nav li.current a, .tabs-wrapper.ui-theme-lite.bottom-left .tabs-nav li.current a {
  border-top: 1px solid #777;
}
.tabs-wrapper.ui-theme-lite.bottom-right .tab, .tabs-wrapper.ui-theme-lite.bottom-left .tab {
  border-bottom: 1px solid #ccc;
}
.tabs-wrapper.ui-theme-lite .tab {
  border-top: 1px solid #000;
  background-color: rgba(51, 51, 51, 0.5);
  padding: 0.4rem;
}

.browser-frame {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid #333;
}
.browser-frame .btoolbar {
  height: 40px;
  background: #333;
  color: #777;
  border-bottom: 1px solid #333;
}
.browser-frame .btoolbar-button {
  background: #777;
}
.browser-frame .btoolbar-address {
  background: rgba(51, 51, 51, 0.5);
  border: 1px solid #777;
}

.cd-image-container {
  position: relative;
}

.cd-image-label {
  color: #ccc;
}

.cd-handle {
  color: #ccc;
  background: #3085ee;
}
.cd-handle.draggable {
  background-color: #126bd9;
}

.polaroid-wrapper .polaroid {
  background: #333;
  border: 1px solid #333;
}
.polaroid-wrapper .polaroid-img {
  background: #333;
}

@keyframes pulse {
  0%, 25% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
  75%, 100% {
    opacity: 1;
  }
}
@keyframes glitch {
  /* On for ~10 beats (0% to 45%) */
  0%, 45% {
    opacity: 1;
  }
  /* Quick flicker sequence (~1 beat) */
  46% {
    opacity: 0.3;
  }
  47% {
    opacity: 1;
  }
  48% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  /* On again for ~8 beats (50% to ~90%) */
  88% {
    opacity: 1;
  }
  /* Off for ~2 beats (90% to 100%) */
  90% {
    opacity: 0;
  }
  92% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}/*# sourceMappingURL=custom.css.map */