body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  /* cursor: url('/things/cursor.png') 0 0, auto !important; */
  font-family: Impact, 'Poppins', "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* button:hover {
  cursor: url('/things/cursor-hover.png') 8 0, pointer !important;
}
*/

::-webkit-scrollbar {
  width: 1.2vw;
}

::-webkit-scrollbar-track {
  background: black;
}

::-webkit-scrollbar-thumb {
  background: cyan;
  border-radius: 0.6vw;
}

::-webkit-scrollbar-thumb:hover {
  background: #00e6e6;
}

::selection {
  background: cyan;
  }

::-moz-selection {
  background: cyan;
}

html {
  scrollbar-width: thin;
  scrollbar-color: cyan black;
}

.background {
  position: relative;
  height: 100vh;
  background: linear-gradient(to bottom right, darkblue, darkcyan, darkblue);
  background-size: 200% 200%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: gradientShift 10s ease-in-out infinite;
  overflow: hidden;
}

.background.paused {
  animation-play-state: paused;
}

.content-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 5;
  display: none;
  outline: none;
  user-select: none;
}

.home-container {
  background: darkcyan;
  font-family: Impact, Poppins, "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 2vh 3vw;
  border-radius: 1vh;
  box-shadow: 0 0.2vh 0.4vh rgba(0,0,0,0.2);
  z-index: 6;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1vh;
}

.no-impact .home-container {
  background: rgba(0,139,139,0.8);
}

.home-container.hidden {
  display: none;
}

.home-container h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  color: white;
  -webkit-text-stroke: 2px black;
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0,0,0,0.5);
  margin: 0;
}

.no-impact .home-container h1 {
  -webkit-text-stroke: clamp(0.05rem, 0.1vw, 0.1rem);
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0,0,0,0.7);
}

.home-container p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: white;
  -webkit-text-stroke: clamp(0.05rem, 0.1vw, 0.1rem);
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0,0,0,0.7);
  margin: 0;
}

.no-impact .home-container p {
  -webkit-text-stroke: clamp(0.05rem, 0.1vw, 0.1rem);
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0,0,0,0.7);
}

.bottom-bar {
  position: fixed;
  bottom: 2vh;
  left: 5%;
  width: 90%;
  height: 6vh;
  background: linear-gradient(to bottom right, rgba(0,0,139,0.9), rgba(0,139,139,0.9), rgba(0,0,139,0.9));
  border-radius: 1.5vh;
  box-shadow: 0 0.4vh 0.8vh rgba(0,0,0,0.3);
  z-index: 10;
  overflow: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 0 1vh;
  opacity: 1;
  transform: translateY(0);
}

.bottom-bar.hidden {
  opacity: 0;
  transform: translateY(10vh);
}

.hover-area {
  position: fixed;
  bottom: 0;
  left: 4%;
  width: 92%;
  height: 8vh;
  background: transparent;
  z-index: 9;
  cursor: default;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}

.hover-area.hidden {
  opacity: 0;
  transform: translateY(10vh);
}

.hover-area:hover ~ .bottom-bar,
.bottom-bar:hover {
  transform: translateY(-1vh);
}

.bottom-bar.hidden:hover,
.hover-area.hidden:hover ~ .bottom-bar {
  transform: translateY(10vh);
}

.bottom-bar::before {
  content: '';
  position: absolute;
  top: -0.5vh;
  left: -0.5vh;
  right: -0.5vh;
  bottom: -0.5vh;
  background: linear-gradient(to right, rgba(0,0,139,0.9), rgba(0,139,139,0.9), rgba(0,0,139,0.9));
  z-index: -1;
  border-radius: 2vh;
}

.bottom-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom right, rgba(0,0,139,0.9), rgba(0,139,139,0.9), rgba(0,0,139,0.9));
  border-radius: 1.5vh;
  z-index: -1;
}

.theme-button {
  width: 10vw;
  height: 4vh;
  background: darkcyan;
  font-family: Impact, Poppins, "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.0rem, 1vw + 0.3vh, 1.2rem);
  font-weight: 900;
  color: white;
  -webkit-text-stroke: 0.5px black;
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0,0,0,0.5);
  border: none;
  border-radius: 0.8vh;
  cursor: pointer;
  transition: transform 0.2s ease-in-out, border 0.2s ease-in-out, background 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.2vh 0.4vh rgba(0,0,0,0.2);
  padding: 0 0.5vh;
  user-select: none;
  text-align: center;
  z-index: 11;
  position: relative;
  overflow: hidden;
}

.theme-button.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.no-impact .theme-button {
  -webkit-text-stroke: clamp(0.05rem, 0.1vw, 0.1rem);
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0,0,0,0.7);
  background: rgba(0,139,139,0.8);
}

.theme-button.selected {
  background: #00e6e6;
  border: 0.3vh solid white;
  transform: scale(1.1);
}

.theme-button:hover {
  transform: scale(1.2);
  border: 0.2vh solid white;
}

.theme-button:hover + .theme-button {
  transform: translateX(1vh);
}

.theme-button:hover ~ .theme-button:not(:hover) {
  transform: translateX(1vh);
}

.theme-button:not(:hover):not(.selected) {
  transform: scale(1);
  border: none;
}

.bottom-bar:hover .theme-button {
  transition: transform 0.2s ease-in-out;
}

.click-effect {
  position: absolute;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: spread-and-fade 0.5s ease-out forwards;
}

.settings-button {
  position: fixed;
  bottom: 3vh;
  left: 3vh;
  width: 5vh;
  height: 5vh;
  background: darkcyan;
  font-family: Impact, Poppins, "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  color: white;
  -webkit-text-stroke: 1px black;
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 12;
}

.no-impact .settings-button {
  -webkit-text-stroke: clamp(0.05rem, 0.1vw, 0.1rem);
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0,0,0,0.7);
  background: rgba(0,139,139,0.8);
}

.settings-button:hover {
  transform: scale(1.1);
}

.toggle-bar-button {
  position: fixed;
  bottom: 2vh;
  right: 3vh;
  width: 5vh;
  height: 5vh;
  background: darkcyan;
  font-family: Impact, Poppins, "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  color: white;
  -webkit-text-stroke: 1px black;
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 12;
}

.no-impact .toggle-bar-button {
  -webkit-text-stroke: clamp(0.05rem, 0.1vw, 0.1rem);
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0,0,0,0.7);
  background: rgba(0,139,139,0.8);
}

.toggle-bar-button:hover {
  transform: scale(1.1);
}

.fullscreen-button {
  position: fixed;
  bottom: 8vh;
  right: 3vh;
  width: 5vh;
  height: 5vh;
  background: darkcyan;
  font-family: Impact, Poppins, "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  color: white;
  -webkit-text-stroke: 1px black;
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease-in-out, opacity 0.3s ease, transform 0.3s ease;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 12;
  opacity: 1;
  transform: translateY(0);
}

.no-impact .fullscreen-button {
  -webkit-text-stroke: clamp(0.05rem, 0.1vw, 0.1rem);
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0,0,0,0.7);
  background: rgba(0,139,139,0.8);
}

.fullscreen-button.hidden {
  opacity: 0;
  transform: translateY(10vh);
}

.fullscreen-button:hover {
  transform: scale(1.1);
}

.fullscreen-button.hidden:hover {
  transform: translateY(10vh);
}

.settings-panel {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28vw;
  padding: 2vh;
  background: linear-gradient(to bottom right, rgba(0,0,139,0.7), rgba(0,139,139,0.7), rgba(0,0,139,0.7));
  border-radius: 1.5vh;
  box-shadow: 0 0.4vh 1.2vh rgba(0,0,0,0.5);
  z-index: 13;
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  border: 0.2vh solid rgba(0,139,139,0.7);
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
}

.settings-panel:not(.hidden) {
  display: flex;
  opacity: 1;
  transform: translate(-50%, -50%);
}

.settings-panel.hidden {
  opacity: 0;
  transform: translate(-50%, -50%) translateY(10vh);
}

.settings-panel button:not(.settings-tab-name-button):not(.close-button) {
  width: 100%;
  height: 5vh;
  background: darkcyan;
  font-family: Impact, Poppins, "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 900;
  color: white;
  -webkit-text-stroke: 1px black;
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0,0,0,0.5);
  border: none;
  border-radius: 0.6vh;
  cursor: pointer;
  transition: transform 0.2s ease-in-out, border 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.2vh 0.4vh rgba(0,0,0,0.2);
}

.no-impact .settings-panel button:not(.settings-tab-name-button):not(.close-button) {
  -webkit-text-stroke: clamp(0.05rem, 0.1vw, 0.1rem);
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0,0,0,0.7);
  background: rgba(0,139,139,0.8);
}

.settings-panel button:not(.settings-tab-name-button):not(.close-button):hover {
  transform: scale(1.05);
  border: 0.1vh solid white;
}

.settings-panel .close-button {
  background: darkblue;
  font-family: Impact, Poppins, "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 900;
  color: white;
  -webkit-text-stroke: 1px black;
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0,0,0,0.5);
}

.no-impact .settings-panel .close-button {
  -webkit-text-stroke: clamp(0.05rem, 0.1vw, 0.1rem);
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0,0,0,0.7);
  background: rgba(75,0,130,0.8);
}

.settings-panel .divider {
  border: none;
  height: 0.4vh;
  width: 100%;
  background: linear-gradient(to right, rgba(0,0,139,0.9), rgba(0,139,139,0.9), rgba(0,0,139,0.9));
  margin: 0.75vh 0;
  border-radius: 0.2vh;
  box-shadow: 0 0 0.8vh rgba(0,139,139,0.5);
  position: relative;
  overflow: hidden;
}

.settings-panel .divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(0,230,230,0.5), transparent);
  animation: shimmer 2.5s infinite linear;
}

.settings-panel.hidden .divider::before {
  animation: none;
}

.settings-panel .settings-title {
  font-family: Impact, Poppins, "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 900;
  color: white;
  -webkit-text-stroke: 1px black;
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0,0,0,0.5);
  margin: 0 0 1vh 0;
  text-align: center;
  user-select: none;
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  background: rgba(0,0,139,0.2);
  padding: 0.5vh 0;
  overflow: hidden;
  border-radius: 0.6vh;
}

.no-impact .settings-panel .settings-title {
  -webkit-text-stroke: clamp(0.05rem, 0.1vw, 0.1rem);
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0,0,0,0.7);
}

.settings-panel .settings-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, rgba(0,230,230,0.5) 50%, transparent 100%);
  animation: shimmer 2.5s infinite linear;
  z-index: 0;
}

.settings-panel .settings-subtitle {
  font-family: Impact, Poppins, "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 900;
  color: white;
  -webkit-text-stroke: 0.5px black;
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0,0,0,0.5);
  margin: 0 0 1vh 0;
  text-align: center;
  user-select: none;
  display: block;
  width: 100%;
}

.no-impact .settings-panel .settings-subtitle {
  -webkit-text-stroke: clamp(0.05rem, 0.1vw, 0.1rem);
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0,0,0,0.7);
}

.settings-tab-name-container {
  display: flex;
  align-items: center;
  gap: 0.5vw;
  width: 100%;
  margin: 0.25vh 0;
}

.settings-panel .settings-tab-name-button {
  background: darkcyan;
  font-family: Impact, Poppins, "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 900;
  color: white;
  -webkit-text-stroke: 0.5px black;
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0,0,0,0.5);
  border: none;
  border-radius: 0.6vh;
  cursor: pointer;
  transition: transform 0.2s ease-in-out, border 0.2s ease-in-out;
  padding: 0.3vh 0.6vw;
  box-shadow: 0 0.2vh 0.4vh rgba(0,0,0,0.2);
  user-select: none;
  width: 25%;
}

.no-impact .settings-panel .settings-tab-name-button {
  -webkit-text-stroke: clamp(0.05rem, 0.1vw, 0.1rem);
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0,0,0,0.7);
  background: rgba(0,139,139,0.8);
}

.settings-panel .settings-tab-name-button:hover {
  transform: scale(1.05);
  border: 0.1vh solid white;
}

.settings-panel .settings-tab-name-input {
  background: #333333;
  font-family: Impact, Poppins, "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: white;
  border: 0.1vh solid rgba(0,139,139,0.7);
  border-radius: 0.6vh;
  padding: 0.3vh 0.6vw;
  box-shadow: 0 0.2vh 0.4vh rgba(0,0,0,0.2);
  flex-grow: 1;
  outline: none;
  position: relative;
  z-index: 1;
}

.settings-panel .settings-tab-name-input::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(0,230,230,0.5), transparent);
  animation: shimmer 2s infinite linear;
  z-index: 0;
}

.settings-panel .settings-tab-name-input::placeholder {
  color: rgba(255,255,255,0.6);
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.settings-panel .cloak-button {
  width: 100%;
  height: 5vh;
  background: darkcyan;
  font-family: Impact, Poppins, "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 900;
  color: white;
  -webkit-text-stroke: 1px black;
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0,0,0,0.5);
  border: none;
  border-radius: 0.6vh;
  cursor: pointer;
  transition: transform 0.2s ease-in-out, border 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.2vh 0.4vh rgba(0,0,0,0.2);
}

.no-impact .settings-panel .cloak-button {
  -webkit-text-stroke: clamp(0.05rem, 0.1vw, 0.1rem);
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0,0,0,0.7);
  background: rgba(0,139,139,0.8);
}

.settings-panel .cloak-button:hover {
  transform: scale(1.05);
  border: 0.1vh solid white;
}

.settings-panel .cloak-instruction {
  font-family: Impact, Poppins, "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(0.8rem, 1vw, 1rem);
  color: white;
  -webkit-text-stroke: 0.5px black;
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0,0,0,0.5);
  margin: 0.5vh 0 0 0;
  text-align: center;
  user-select: none;
}

.no-impact .settings-panel .cloak-instruction {
  -webkit-text-stroke: clamp(0.05rem, 0.1vw, 0.1rem);
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0,0,0,0.7);
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(0.5rem);
  -webkit-backdrop-filter: blur(0.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 100;
  opacity: 1;
  animation: loadingFade linear forwards;
}

.progress-container {
  position: relative;
  width: 18vw;
  height: 18vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-image {
  width: 15vw;
  height: 15vw;
  border-radius: 50%;
  object-fit: cover;
  z-index: 101;
}

.progress-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 18vw;
  height: 18vw;
  z-index: 100;
}

.progress-circle circle {
  fill: none;
  stroke-width: 1.5vw;
  stroke: url(#gradient);
  stroke-linecap: round;
  stroke-dasharray: 565.48;
  stroke-dashoffset: 565.48;
  animation: progressFill linear forwards;
}

.loading-text {
  font-family: Impact, Poppins, "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 2em;
  color: white;
  text-align: center;
  margin-top: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
  user-select: none;
}


#hyperbeam-container {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

#session-timer {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,31,63,0.8);
  color: var(--wilway-text);
  font-size: 18px;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,230,230,0.5);
  z-index: 10;
  font-family: monospace;
}

#hyperbeam-container.fullscreen-mode #session-timer {
  top: 20px;
  right: 20px;
  font-size: 20px;
}

.premium-theme #session-timer {
  background: rgba(0,76,76,0.8);
  box-shadow: 0 0 10px var(--wilway-accent-hover);
}

.secret-box-hehe {
        background: linear-gradient(to right, darkblue, #004d66);
        color: darkcyan;
        width: 100%;
        padding: 10px;
        border: 2px solid darkcyan;
        box-sizing: border-box;
        border-radius: 8px;
        font-family: Impact, Poppins, "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
    }
    .secret-box-hehe::placeholder {
        color: #66b2b2;
        font-family: Impact, Poppins, "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
    }
    .secret-button-hehe {
        background: linear-gradient(to right, darkcyan, #006666);
        color: white;
        padding: 10px 20px;
        border: none;
        cursor: pointer;
        border-radius: 8px;
        margin-top: 10px;
        font-family: Impact, Poppins, "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
    }

#alertBox {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(6, 20, 40, 0.82);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99 !important;
  transition: opacity .76s ease;
  opacity: 1;
}

#alertBox.fade-out { opacity: 0; }

#alertBox .alert-content {
  position: relative;
  isolation: isolate;
  background: linear-gradient(145deg, #092c46 0%, #0e4c74 45%, #0dd9ff 100%);
  color: #b0faff;
  box-shadow:
    0 0 42px #00faffc0,
    0 0 12px #00faff88,
    inset 0 0 14px #00faff55;
  border-radius: 22px;
  padding: 32px 24px;
  max-width: 420px;
  width: 92%;
  text-align: center;
  overflow: hidden;
}

/* animated cyan outline */
#alertBox .alert-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 2px;
  background: linear-gradient(120deg, #00ffff, #1e70fa, #00ffff);
  background-size: 300% 300%;
  animation: borderflow 6s linear infinite;
  pointer-events: none;
  z-index: 0;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

@keyframes borderflow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

#alertBox .alert-content h2 {
  margin: 0 0 14px;
  color: #00faff;
  font-weight: 700;
  font-size: 2.1em;
  line-height: 1.05;
  text-shadow: 0 0 16px #00ffffcc, 0 0 6px #00ffff88;
}

#alertBox .alert-content p {
  margin: 0 0 22px;
  color: #a8f2ff;
  line-height: 1.55;
  font-size: 1.12em;
}

#alertBox .alert-content button {
  background: linear-gradient(90deg, #00faff 0%, #1e70fa 100%);
  color: #fff;
  font-weight: 700;
  border: 0;
  padding: 14px 30px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 1em;
  box-shadow: 0 6px 26px #00faffaa;
  transition: transform .25s, background .35s, opacity .35s;
}

#alertBox .alert-content button:hover {
  background: linear-gradient(90deg, #3cfffe 10%, #28b8ff 90%);
  filter: brightness(1.15) drop-shadow(0 0 10px #00ffffdd);
  transform: scale(1.05);
}

#alertBox .alert-content > * { position: relative; z-index: 1; }


@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes loadingFade {
  0%, 80% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes progressFill {
  0% { stroke-dashoffset: 565.48; }
  100% { stroke-dashoffset: 0; }
}

@keyframes spread-and-fade {
  0% {
    width: 1vh;
    height: 1vh;
    opacity: 0.8;
  }
  100% {
    width: 12vh;
    height: 12vh;
    opacity: 0;
  }
}

@keyframes gradientShift {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}
