@charset "UTF-8";

:root {
  --clr: #0f0;
  --deg: 1;
  --x: -50%;
  --y: -50%;
  --animation-speed: 150ms;
  --min-font-size: 1em;
  --max-font-size: 2em;
  --base-position-factor: 0%;
}

/* 全局样式 */
body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at 50% 35%, #334455, #000);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #212121; */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container {}

.bottom-element {
  position: absolute;
  bottom: calc(var(--position-factor) + var(--base-position-factor));
}

.center-element {
  position: absolute;
  bottom: calc(var(--position-factor) + 50%);
}

.top-element {
  position: absolute;
  top: var(--position-factor);
}

/* 确保当屏幕高度大于等于 1800px 时，media-factor 为 15% */
@media (min-height: 1800px) {
  :root {
    --base-position-factor: 15%;
  }
}

/* 确保当屏幕高度大于等于 1200px 且小于 1800px 时，media-factor 为 10% */
@media (min-height: 1200px) and (max-height: 1799px) {
  :root {
    --base-position-factor: 10%;
  }
}

/* 确保当屏幕高度大于等于 800px 且小于 1200px 时，base-position-factor 为 5% */
@media (min-height: 800px) and (max-height: 1199px) {
  :root {
    --base-position-factor: 5%;
  }
}

/* Main Text */
.main-text {
  color: #fff;
  text-align: center;
  font-family: "Microsoft YaHei", sans-serif;
  white-space: nowrap;
  letter-spacing: 0.2em;
  cursor: default;
  text-shadow: 1px 1px 2px #000, -1px -1px 2px #000, 1px -1px 2px #000, -1px 1px 2px #000;
}

/* Explore Text - 初始隐藏 */
.explore-text {
  color: #fff;
  opacity: 1;
  font-family: "Microsoft YaHei", sans-serif;
  cursor: pointer;
  text-shadow: 1px 1px 2px #000, -1px -1px 2px #000, 1px -1px 2px #000, -1px 1px 2px #000;
}