<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  .top-video-container {
    width: 100%;
    height: 500px; /* ����翫襲��蕭�綺� */
    overflow: hidden;
  }
  
  .top-video-container iframe {
    display: block;
    width: 95%;
    margin: auto;
    height: 100%;
    object-fit: cover;
    pointer-events: none; /* �我②藥���篋�篁九�＞���篏� */
  }

  .video-background iframe {
    width: 100vw;
    height: 100vh;
    pointer-events: none; /* �水��綵援����篏騌��� */
    object-fit: cover;
    background-color: white;
  }

  .center-wrapper {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 20px 10px; /* top + sides + bottom padding */  
    background: radial-gradient(ellipse at bottom,rgba(255, 109, 80, 0.35), rgba(255, 183, 245, 0.35), transparent 70%);

  }
  
  .logo img {
    max-width: 200px;
    width: 100%;
    height: auto;
  }
  
  .link-section {
    max-width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-bottom: 60px;
  }
  
  .link-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 40%;
    text-align: center;
  }
  
  .link-label {
    margin-bottom: 15px;
    font-size: 23px;
    font-weight: bold;
    letter-spacing: 3px;
    color:  #7f265d;
  }
  
  .link-box {
    width: 100%;
    height: 250px;
  background: rgba(255, 255, 255, 0.25); 
  border-radius: 10px;
    border: 3px solid #7f265d;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    text-decoration: none;
    color: #7f265d;
    font-size: 30px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
    letter-spacing: 2px;
    transition: transform 0.3s ease, background 0.3s ease;
  }
  
  .link-box:hover {
    transform: translateY(-8px);
    background:linear-gradient(45deg, #e1bee7, #f8bbd0);
    color: white;
    border: none;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  
  }
  
  .link-box img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    object-fit: contain;
  }
  
  .link-box span {
    font-size: 24px;
    font-weight: bold;
  }
  
  .intro{
  display: block;
  padding: 30px;
  color:  #7f265d;
  text-align: center;
  
  }
  
  .section-intro {
  
      display: inline-block;
      max-width: 80%;
      padding-bottom: 30px;
      padding-top: 10px;
      line-height: 30px;
      letter-spacing: 2px;
      font-size:16px;
      text-align: left;
      color: #7f265d;
  }
  
  footer {
    margin: 24px;
    text-align: center;
    font-size: 18px;
    color: #7f265d;
    margin-top: auto;
  }
  
  .social-links a {
    margin: 0 12px;
    text-decoration: none;
    color: #7f265d;
    font-size: 20px;
    transition: color 0.2s ease;
  }
  
  .social-links a:hover {
    color: #000;
  }
  
  @media (max-width: 768px) {
  
    .link-section {
      flex-direction: column;
      align-items: center;
      gap: 30px;
    }
  
    .section-intro {
  
  max-width: 100%;
  }
  
    .link-block {
      width: 90%;
      padding: 30px;
    }
  
    .link-label {
  font-size: 23px;
  font-weight: bolder;
    }
  
    .link-box {
      width: 100%;
      height: 220px;
    }
  
    .link-box img {
      width: 60px;
      height: 60px;
    }
  
    .link-box span {
      font-size: 20px;
    }
  
    .logo img {
      max-width: 260px;
    }
  }
  
  #google_translate_element{
      margin: auto;
      margin-top: 20px;
      width: 100%;
      text-align: center;
  }
  
  .goog-te-combo{
  
    font-size: 16px;
    padding: 10px;
  }</pre></body></html>