body {
    font-family: 'Segoe UI', 'Kanit', sans-serif;
  }
  
  /* ภาพ card ไม่เบลอ */
  .card-img-top {
    
  }
  
  /* ปรับขอบและเงาให้ card สวยขึ้น */
  .card {
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* ปรับให้ Hero อ่านง่าย */
  header .container {
    max-width: 900px;
  }
  
  footer {
    font-size: 0.9rem;
  }
  

  #loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #6779ff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  
  .spinner-container {
    text-align: center;
  }
  
  .spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #ffffff40;
    border-top: 6px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
    left:50%;
    position:absolute;
    margin-left:-30px;
  }
  
  .logo-text {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: 'Segoe UI', 'Kanit', sans-serif;
    animation: fadeIn 1s ease-in-out;
    margin-top:60px;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  @keyframes fadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
