/* ✅ 全站通用設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: "Fredoka", "Comic Neue", "Segoe UI", "微軟正黑體", sans-serif;
    background-color: #9f917773;
    background-image:url('background.PNG');
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: scroll;
    min-height: 100vh;
    padding: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
    
  }
  
  /* ✅ 按鈕群 */
  
  .button-wrapper {
  margin-top: 50vh;
  margin-left: 2vw;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
  
  /* ✅ 支付按鈕 */
.pay-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    text-align: center;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, background-color 0.2s ease;
    position: relative;
    animation: bounce 1.8s ease infinite;
  }
  
  /* ✅ LOGO + 文字 */
  .btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  
  /* ✅ LOGO 大小設定 */
  .pay-logo {
    height: 30px;
    width: auto;
    display: block;
  }  
  
  /* ✅ 各支付樣式 */
  .linepay {
    background-color: #00c300;
  }
  .linepay:hover {
    background-color: #00a600;
  }
  .jkopay {
    background-color: #ea1c24;
  }
  .jkopay:hover {
    background-color: #c9141a;
  }
  .website {
    background-color: #f9a825;
  }
  .website:hover {
    background-color: #f57f17;
  }
  
  
  /* ✅ 響應式設定：行動裝置為主，自動調整 */

  /* ✅ 按鈕跳動動畫 */
@keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-6px);
    }
  }
  
  