body {
      font-family: Arial, sans-serif;
      background-color: #f8f4ff;
      color: #333;
      text-align: center;
      margin: 0;
      padding: 30px 10px;
    }
    .container {
      max-width: 500px;
      margin: 0 auto;
    }
    /* .profile img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 10px;
    }
    .profile h2 {
      font-size: 20px;
      margin: 5px 0;
    }
    .profile p {
      font-size: 14px;
      color: #666;
      margin-bottom: 20px;
    } */
     .head_box{
      display: flex;
      
      justify-content: center;
      align-items: center;
     }
     .head_box img{
      width:60px;
      height:60px;
       border-radius: 50%;
      object-fit: cover;
     }

     .head_text{   
        margin-left: 10px;
     
     }
     .head_text_1{
        font-size: 18px;
        font-weight: 700;
        background: linear-gradient(90deg, #30cfd0, #330867, #764ba2);
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: text-shine 3s linear infinite;
     }
      @keyframes text-shine {
            to { background-position: -200% center; }
        }
    .head_text_2{
        font-size: 12px;
     }
    .ratio-box {
      width: 100%;
      aspect-ratio: 16 / 9;
      border-radius: 20px;
      overflow: hidden;
      margin: 15px 0;
    }
    .ratio-box iframe,
    .ratio-box img {
      width: 100%;
      height: 100%;
      border: none;
      border-radius: 20px;
      object-fit: cover;
    }
    .content-box {
      background-color: #f0e6ff;
      border-radius: 20px;
      padding: 20px;
      font-size: 16px;
      line-height: 1.6;
      box-sizing: border-box;
      margin: 20px 0;
      font-weight: 600;
    }
    .line-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background-color: #e6d9ff;
      color: #333;
      text-decoration: none;
      font-weight: bold;
      border-radius: 20px;
      padding: 15px;
      margin: 20px auto;
      animation: shake 1.5s infinite;
      transition: background-color 0.3s;
      width: 100%;
      box-sizing: border-box;
    }
    .line-btn:hover {
      background-color: #d4c7ff;
    }
    .line-btn img {
      width: 28px;
      height: 28px;
      margin-right: 10px;
    }
    @keyframes shake {
      0%, 100% { transform: translate(0, 0); }
      25%, 75% { transform: translate(0, -3px); }
      50% { transform: translate(0, 3px); }
    }
    .dots {
      font-size: 22px;
      color: #333;
      letter-spacing: 6px;
      margin: 40px 0 10px;
    }
    .footer {
      font-size: 11px;
      color: #888;
      margin-top: 20px;
      line-height: 1.5;
     
    }

    /* 弹窗样式 */
    .popup-overlay {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.4);
      z-index: 9999;
      display: none;
      align-items: center;
      justify-content: center;
    }
    .popup-content {
      background: #fff;
      padding: 30px 20px;
      border-radius: 12px;
      max-width: 90%;
      width: 360px;
      text-align: center;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
    .popup-content h3 {
      font-size: 20px;
      margin-bottom: 15px;
      color: #8b5cf6;
    }
    .popup-content p {
      font-size: 15px;
      margin-bottom: 20px;
      color: #444;
      line-height: 1.6;
    }
    .confirm-btn, .cancel-btn {
      padding: 12px 24px;
      margin: 8px auto;
      border: none;
      border-radius: 25px;
      font-size: 15px;
      cursor: pointer;
      width: 80%;
    }
    .confirm-btn {
      background-color: #8b5cf6;
      color: white;
    }
    .confirm-btn:hover {
      background-color: #7c3aed;
    }
    .cancel-btn {
      background-color: #ccc;
      color: #333;
    }
    .cancel-btn:hover {
      background-color: #aaa;
    }