/* 黑色背景 + 图像柔化 + 字体细化版本 */

body {
  margin: 0;
  padding: 0;
  background-color: #000;
  font-family: 'Inter', sans-serif;
  color: white;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.center-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.center-content img {
  max-height: 70vh;
  max-width: 90vw;
  object-fit: contain;
  border-radius: 10px;
  filter: drop-shadow(0 0 80px rgba(255, 255, 255, 0.08));
  margin-bottom: 1.5em;
}

.center-content h1 {
  font-size: 1.4em;
  font-family: 'Unica One', cursive;
  font-weight: 300;
  letter-spacing: 3px;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.corner-link {
  position: absolute;
  font-size: 1.4em;
  font-weight: 200;
  text-decoration: none;
  color: white;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  font-family: 'Unica One', cursive;
}

.corner-link:hover {
  color: #f7c544;
}

.link-top-left { top: 2em; left: 2em; }
.link-top-right { top: 2em; right: 2em; }
.link-bottom-left { bottom: 2em; left: 2em; }
.link-bottom-right { bottom: 2em; right: 2em; }

@media (max-width: 768px) {
  .corner-link {
    font-size: 1em;
  }
  .center-content h1 {
    font-size: 1.0em;
  }
  .center-content img {
    max-width: 90vw;
    max-height: 50vh;
  }
}

.logo {
  position: absolute;
  top: 1.5em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.logo img {
  height: 90px;
  width: auto;
}
