body {
  background-color: black;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: "Segoe UI", "Segoe UI Emoji", "Apple Color Emoji",
    "Noto Color Emoji", sans-serif;
  overflow: hidden;
  color: white;
}

.content {
  position: absolute;
  top: 100vh;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #111 url("../Resources/eyerepeat.png") center/cover no-repeat;
  box-sizing: border-box;
  transition: top 0.8s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 2em;
  overflow: hidden;
}

.content.revealed {
  top: 0;
}

.popup-header {
  margin-top: 1em;
  font-size: 2em;
}

.centered-text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.link-row {
  margin-top: 2em;
  margin-bottom: 1em;
  display: flex;
  justify-content: center;
  gap: 1.5em;
}

.link-row a img {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
}

.link-row a:hover img {
  transform: scale(1.2);
}

.copy-discord {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
}

.tooltip-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip-text {
  visibility: hidden;
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 6px 10px;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
  font-size: 14px;
}

.tooltip-container:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.tooltip-container:hover .copy-discord {
  transform: scale(1.2);
}

.transge-image {
  margin-top: 0.5em;
  width: 2em;
  vertical-align: middle;
}

.eye-button {
  width: 25%;
  height: auto;
}

.i_fuckery {
  color: white;
  text-decoration: none;
}

.volume-container {
  position: fixed;
  bottom: 1em;
  right: 1em;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  z-index: 999;
}
.volume-wrapper {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  padding: 10px;
  position: relative;
}
.audio-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 1.5em;
  cursor: pointer;
  z-index: 2;
}

#volumeSlider {
  display: none;
  width: 80px;
  height: 100px;
  writing-mode: bt-lr;
  position: absolute;
  bottom: 2.5em;
  accent-color: white;
  transform: rotate(-90deg);
  transform-origin: center;
  z-index: 1;
}

.volume-container:hover #volumeSlider {
  display: block;
}

.volume-container:hover::before {
  content: "";
  position: absolute;
  bottom: 2.3em;
  width: 20px;
  height: 100px;
  background-color: #fdf6e3; /* Eggshell */
  border-radius: 12px;
  z-index: 0;
}
