/* 全局样式 */
body {
    margin: 0;
    padding: 0;
    font-family: "宋体", serif; /* 古风字体 */
    background-color: #222; /* 暗调背景增强对比 */
  }
  
  /* 页面容器：全屏适配 */
  .container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden; /* 隐藏溢出内容 */
    background-image: url("660946dab91c4b91b28f685074a8ebe0.png"); /* 替换为你的图片路径 */
    background-size: cover; /* 背景铺满且不失真 */
    background-position: center center; /* 背景居中 */
  }
  
 /* 文字容器：定位与透明度 */
 .text-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  
  /* 文字样式：质感与动效 */
  .text {
    font-size: 4em; /* 大字号突出主题 */
    color: #fff; /* 白色文字适配暗背景 */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* 暗阴影增强立体感 */
    animation: glow 2s infinite alternate; /* 循环发光动效 */
  }
  
  /* 动画：文字发光效果 */
  @keyframes glow {
    0% {
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
    100% {
      text-shadow: 0 0 20px rgba(255, 255, 255, 1);
    }
  }
  