body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  /* cursor: url('/things/cursor.png') 0 0, auto !important; */
  font-family: 'Poppins', "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --theme-bg-deep: #170824;
  --theme-bg-violet: #4b1f7a;
  --theme-bg-berry: #8d1f70;
  --theme-accent-pink: #ff6bc8;
  --theme-accent-rose: #ff8bc2;
  --theme-accent-gold: #ffd46b;
  --theme-accent-amber: #ffb347;
  --theme-accent-blue: #6f74ff;
  --theme-panel: rgba(84, 28, 114, 0.9);
  --theme-panel-strong: rgba(120, 36, 122, 0.94);
  --theme-border: rgba(255, 212, 107, 0.75);
  --theme-shadow: rgba(255, 107, 200, 0.28);
}

/* 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: linear-gradient(180deg, var(--theme-accent-gold), var(--theme-accent-pink));
  border-radius: 0.6vw;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ffe18a, #ff8ad4);
}

::selection {
  background: var(--theme-accent-pink);
  }

::-moz-selection {
  background: var(--theme-accent-pink);
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--theme-accent-pink) black;
}

.background {
  position: relative;
  height: 100vh;
  background: linear-gradient(135deg, var(--theme-bg-deep) 0%, var(--theme-bg-violet) 40%, var(--theme-bg-berry) 72%, #ff9f57 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.background::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.background.paused::before {
  opacity: 0.55;
}

.background .vanta-canvas {
  filter: saturate(1.2) contrast(1.06);
}

.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: transparent;
  color: transparent;
  font-family: 'Poppins', "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 2vh 3vw;
  border-radius: 0;
  box-shadow: none;
  z-index: 6;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1vh;
}

.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;
  opacity: 0;
transform: translateY(-100vh) scale(0.5);
}

.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(135deg, rgba(64, 21, 99, 0.95), rgba(138, 31, 112, 0.92), rgba(255, 179, 71, 0.88));
  border-top-left-radius: 1.5vh;
border-top-right-radius: 1.5vh;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
  box-shadow: 0 0.7vh 1.4vh rgba(0,0,0,0.35), 0 0 2vh rgba(255, 107, 200, 0.14);
  z-index: 10;
  overflow: visible;
  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(135deg, rgba(88, 30, 120, 0.95), rgba(255, 107, 200, 0.48));
  z-index: -1;
  border-top-left-radius: 1.5vh;
border-top-right-radius: 1.5vh;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}

.bottom-bar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: -3vh;
  background: linear-gradient(180deg, rgba(112, 36, 126, 0.92), rgba(255, 179, 71, 0.28));
  border-top-left-radius: 1.5vh;
border-top-right-radius: 1.5vh;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
  z-index: -1;
}

.theme-button {
  width: 10vw;
  height: 4vh;
  background: rgba(99, 33, 130);
  font-family: '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.25vh 0.7vh rgba(0,0,0,0.24), inset 0 0 0 0.1vh rgba(255, 212, 107, 0.24);
  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: linear-gradient(135deg, rgba(99, 33, 130, 0.88), rgba(255, 107, 200, 0.82));
}

.theme-button.selected {
  background: linear-gradient(135deg, var(--theme-accent-gold), var(--theme-accent-amber));
  border: 0.3vh solid #fff2c2;
  color: #2b1238;
  transform: scale(1.1);
}

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

.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;
}

.bar-angle.left {
  left: -2vh;
  transform: rotate(-45deg);
}

.bar-angle.right {
  right: -2vh;
  transform: rotate(45deg);
}

.click-effect {
  position: absolute;
  background: radial-gradient(circle, rgba(255, 242, 194, 0.95) 0%, rgba(255, 107, 200, 0.8) 55%, rgba(255, 107, 200, 0) 100%);
  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: linear-gradient(135deg, rgba(95, 30, 128, 0.96), rgba(255, 107, 200, 0.92));
  font-family: '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: linear-gradient(135deg, rgba(95, 30, 128, 0.88), rgba(255, 107, 200, 0.82));
}

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

.toggle-bar-button {
  position: fixed;
  bottom: 2vh;
  right: 3vh;
  width: 5vh;
  height: 5vh;
  background: linear-gradient(135deg, rgba(95, 30, 128, 0.96), rgba(255, 107, 200, 0.92));
  font-family: '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: linear-gradient(135deg, rgba(95, 30, 128, 0.88), rgba(255, 107, 200, 0.82));
}

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

.fullscreen-button {
  position: fixed;
  bottom: 8vh;
  right: 3vh;
  width: 5vh;
  height: 5vh;
  background: linear-gradient(135deg, rgba(111, 116, 255, 0.94), rgba(255, 107, 200, 0.9));
  font-family: '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: linear-gradient(135deg, rgba(111, 116, 255, 0.86), rgba(255, 107, 200, 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:
    radial-gradient(circle at top left, rgba(255, 212, 107, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(35, 10, 55, 0.95), rgba(103, 30, 126, 0.95), rgba(167, 40, 122, 0.92));
  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 var(--theme-border);
  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: linear-gradient(135deg, rgba(99, 33, 130, 0.96), rgba(255, 107, 200, 0.92));
  font-family: '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: linear-gradient(135deg, rgba(99, 33, 130, 0.88), rgba(255, 107, 200, 0.82));
}

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

.settings-panel .close-button {
  background: linear-gradient(135deg, rgba(90, 35, 170, 0.94), rgba(255, 179, 71, 0.9));
  font-family: '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: linear-gradient(135deg, rgba(90, 35, 170, 0.84), rgba(255, 179, 71, 0.78));
}

.settings-panel .divider {
  border: none;
  height: 0.4vh;
  width: 100%;
  background: linear-gradient(to right, rgba(111, 116, 255, 0.92), rgba(255, 212, 107, 0.98), rgba(255, 107, 200, 0.92));
  margin: 0.75vh 0;
  border-radius: 0.2vh;
  box-shadow: 0 0 0.9vh rgba(255, 107, 200, 0.42);
  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(255, 226, 138, 0.72), transparent);
  animation: shimmer 2.5s infinite linear;
}

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

.settings-panel .settings-title {
  font-family: '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(255, 212, 107, 0.58) 50%, transparent 100%);
  animation: shimmer 2.5s infinite linear;
  z-index: 0;
}

.settings-panel .settings-subtitle {
  font-family: '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: linear-gradient(135deg, rgba(111, 116, 255, 0.95), rgba(255, 107, 200, 0.92));
  font-family: '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: linear-gradient(135deg, rgba(111, 116, 255, 0.86), rgba(255, 107, 200, 0.82));
}

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

.settings-panel .settings-tab-name-input {
  background: rgba(34, 12, 47, 0.88);
  font-family: 'Poppins', "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: white;
  border: 0.1vh solid rgba(255, 212, 107, 0.6);
  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(255, 212, 107, 0.54), 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: linear-gradient(135deg, rgba(99, 33, 130, 0.96), rgba(255, 107, 200, 0.92));
  font-family: '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: linear-gradient(135deg, rgba(99, 33, 130, 0.88), rgba(255, 107, 200, 0.82));
}

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

.settings-panel .cloak-instruction {
  font-family: '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);
}

.bar-wedge {
  position: absolute;
  top: 0;
  bottom: -3vh;
  width: 5vh;
  background: linear-gradient(180deg, rgba(122, 36, 126, 0.92), rgba(255, 179, 71, 0.34));
  z-index: -2;
}

.bar-wedge.left {
  left: -4.86vh;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.bar-wedge.right {
  right: -4.86vh;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(19, 5, 28, 0.62);
  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: 0.5;
  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: 0.75vw;
  stroke: url(#gradient);
  stroke-linecap: round;
  stroke-dasharray: 565.48;
  stroke-dashoffset: 565.48;
  animation: progressFill linear forwards;
}

.loading-text {
  font-family: '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(57, 17, 84, 0.84);
  color: var(--wilway-text);
  font-size: 18px;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(255, 107, 200, 0.4);
  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(120, 36, 122, 0.82);
  box-shadow: 0 0 10px var(--wilway-accent-hover);
}

.secret-box-hehe {
        background: linear-gradient(to right, #351255, #8d1f70);
        color: var(--theme-accent-gold);
        width: 100%;
        padding: 10px;
        border: 2px solid var(--theme-accent-gold);
        box-sizing: border-box;
        border-radius: 8px;
        font-family: 'Poppins', "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
    }
    .secret-box-hehe::placeholder {
        color: #f6c9e5;
        font-family: 'Poppins', "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
    }
    .secret-button-hehe {
        background: linear-gradient(to right, #ff6bc8, #ffb347);
        color: white;
        padding: 10px 20px;
        border: none;
        cursor: pointer;
        border-radius: 8px;
        margin-top: 10px;
        font-family: 'Poppins', "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
    }

#onl-w {
  font-family: 'Poppins', "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 1.35em;
  padding: 0.2em 0.4em;
  display: inline-block;
  white-space: nowrap;
  user-select: none;
  background: linear-gradient(to bottom right, var(--theme-accent-gold), var(--theme-accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.4px rgba(0, 0, 0, 0.6);
}

#onl-c,
#onl-w .onl-label {
  font: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

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

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

#alertBox .alert-content {
  position: relative;
  isolation: isolate;
  /* background:
    linear-gradient(145deg, #26103b 0%, #6e1f73 48%, #ffad63 100%);
  color: #ffe7bc; */
  box-shadow:
    0 0 42px rgba(255, 107, 200, 0.5),
    0 0 12px rgba(255, 212, 107, 0.34),
    inset 0 0 14px rgba(255, 212, 107, 0.22);
  border-radius: 33px;
  padding: 32px 24px;
  max-width: 420px;
  width: 92%;
  text-align: center;
  overflow: hidden;
}

/* animated */
#alertBox .alert-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 2px;
  /* background: linear-gradient(120deg, #ffcf6b, #ff6bc8, #7567ff, #ffcf6b);
  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: #ffd46b;
  font-weight: 700;
  font-size: 2.1em;
  line-height: 1.05;
  text-shadow: 0 0 16px rgba(255, 212, 107, 0.75), 0 0 6px rgba(255, 107, 200, 0.5);
}

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

#alertBox .alert-content button {
  background: linear-gradient(90deg, #ff6bc8 0%, #ffb347 100%);
  color: #2b1238;
  font-weight: 700;
  border: 0;
  padding: 14px 30px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 1em;
  box-shadow: 0 6px 26px rgba(255, 107, 200, 0.46);
  transition: transform .25s, background .35s, opacity .35s;
}

#alertBox .alert-content button:hover {
  background: linear-gradient(90deg, #ffd46b 10%, #ff84cf 90%);
  filter: brightness(1.12) drop-shadow(0 0 10px rgba(255, 212, 107, 0.7));
  transform: scale(1.05);
}

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

@keyframes wilwayDropIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.home-container h1.drop-in {
  animation: wilwayDropIn 750ms cubic-bezier(.2,.9,.2,1) forwards;
}


@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%; }
}

.home-container h1 .letter {
  display: inline-block;
  transition: transform 220ms ease;
  will-change: transform;
}

.after-header {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.after-header.show {
  opacity: 1;
  transform: translateY(0);
}
