body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Segoe UI", Roboto, "Microsoft YaHei", sans-serif;

  /* ✅ 渐变 + 背景图 */
  background: linear-gradient(135deg, rgba(250, 228, 180, 0.88), rgba(230, 190, 120, 0.88)),
              url("https://jpg.jsl188.cc/31.png") no-repeat center center fixed;
  background-size: cover;
  color: #333;
}


    .header h1 {
      font-size: 28px;
      color: #feeeed;
      margin-bottom: 5px;
    }

    .container {
      max-width: 640px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .header {
      text-align: center;
      padding: 40px 20px;
      color: #fff;
      font-size: 30px;
      letter-spacing: 2px;
      font-weight: bold;
    }

    .header p {
      color: #fff;
      font-size: 16px;
      margin-top: 10px;
      font-weight: lighter;
    }

/* ✅ 动态闪耀佛光效果 */
#guanyin-img {
  width: 240px;
  height: 240px;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 15px;
  box-shadow:
    0 0 20px rgba(255, 223, 128, 0.6),
    0 0 40px rgba(255, 200, 0, 0.5),
    0 0 60px rgba(255, 180, 0, 0.4),
    inset 0 0 20px rgba(255, 255, 200, 0.5);
  animation: glowPulse 3s ease-in-out infinite;
}

/* ✨ 动态发光动画 */
@keyframes glowPulse {
  0% {
    box-shadow:
      0 0 15px rgba(255, 223, 128, 0.4),
      0 0 30px rgba(255, 200, 0, 0.3),
      0 0 45px rgba(255, 180, 0, 0.2),
      inset 0 0 10px rgba(255, 255, 200, 0.3);
  }
  50% {
    box-shadow:
      0 0 25px rgba(255, 223, 128, 0.7),
      0 0 50px rgba(255, 200, 0, 0.6),
      0 0 70px rgba(255, 180, 0, 0.5),
      inset 0 0 30px rgba(255, 255, 200, 0.6);
  }
  100% {
    box-shadow:
      0 0 15px rgba(255, 223, 128, 0.4),
      0 0 30px rgba(255, 200, 0, 0.3),
      0 0 45px rgba(255, 180, 0, 0.2),
      inset 0 0 10px rgba(255, 255, 200, 0.3);
  }
}



    .qiuqian-btn {
      display: block;
      width: 100%;
      background-color: #f0a948;
      color: #fff;
      border: none;
      padding: 18px;
      font-size: 20px;
      border-radius: 50px;
      margin: 30px 0;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .qiuqian-btn:hover {
      background-color: #d98a37;
      transform: scale(1.1);
    }

    .qian-result {
      background: #fff;
      padding: 20px;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      animation: fadeIn 0.4s ease-in-out;
      text-align: center;
      display: none;
    }

    .qian-result h2 {
      font-size: 24px;
      color: #a47433;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .qian-result p {
      font-size: 18px;
      line-height: 1.7;
      margin: 10px 0;
      color: #555;
    }

    .qian-img {
      width: 80px;
      margin-bottom: 10px;
    }

    .animation {
      text-align: center;
      margin-top: 20px;
      display: none;
    }

    .animation img {
      width: 60px;
      animation: shake 1.2s ease infinite;
    }

    @keyframes shake {
      0%, 100% { transform: rotate(0); }
      25% { transform: rotate(3deg); }
      50% { transform: rotate(-3deg); }
      75% { transform: rotate(2deg); }
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(15px); }
      to { opacity: 1; transform: translateY(0); }
    }

    footer {
      text-align: center;
      font-size: 14px;
      color: #aaa;
      padding: 20px 0;
    }