    @font-face {
      font-family: 'Sukhumvit Set';
      src: url('fonts/SukhumvitSet-Bold.woff2') format('woff2'),
           url('fonts/SukhumvitSet-Bold.woff') format('woff'),
           url('fonts/SukhumvitSet-Bold.ttf') format('truetype');
      font-weight: 700;
      font-style: normal;
    }
    @font-face {
      font-family: 'Sukhumvit Set';
      src: url('fonts/SukhumvitSet-Medium.woff2') format('woff2'),
           url('fonts/SukhumvitSet-Medium.woff') format('woff'),
           url('fonts/SukhumvitSet-Medium.ttf') format('truetype');
      font-weight: 500;
      font-style: normal;
    }
    @font-face {
      font-family: 'Sukhumvit Set';
      src: url('fonts/SukhumvitSet-Light.woff2') format('woff2'),
           url('fonts/SukhumvitSet-Light.woff') format('woff'),
           url('fonts/SukhumvitSet-Light.ttf') format('truetype');
      font-weight: 300;
      font-style: normal;
    }
    @font-face {
      font-family: 'Sukhumvit Set';
      src: url('fonts/SukhumvitSet-SemiBold.woff2') format('woff2'),
           url('fonts/SukhumvitSet-SemiBold.woff') format('woff'),
           url('fonts/SukhumvitSet-SemiBold.ttf') format('truetype');
      font-weight: 600;
      font-style: normal;
    }
    @font-face {
      font-family: 'Sukhumvit Set';
      src: url('fonts/SukhumvitSet-Thin.woff2') format('woff2'),
           url('fonts/SukhumvitSet-Thin.woff') format('woff'),
           url('fonts/SukhumvitSet-Thin.ttf') format('truetype');
      font-weight: 100;
      font-style: normal;
    }

    /* รีเซ็ต margin และ padding */
    html,
    body {
      overflow-x: hidden;
    }

    body {
      margin: 0;
      padding: 0;
      font-family: 'Sukhumvit Set', sans-serif;
      overflow-x: hidden;
    }

    /* ===================== ส่วน Header ===================== */
    .header {
      width: 100%;
      height: 78px;
      background-color: #000;
      display: flex;
      justify-content: center;
    }
    .header-container {
      width: 90%;
      height: 78px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .header-left img {
      margin-top: 12px;
      width: 191px;
      height: 40px;
      cursor: pointer;
    }
    .header-right {
      display: flex;
      align-items: center;
      color: #fff;
      font-weight: bold;
      font-size: 23px;
      cursor: pointer;
    }
    .header-right .item {
      display: flex;
      align-items: center;
      margin-left: 20px;
    }
    .header-right .item img {
      vertical-align: middle;
      margin-right: 5px;
    }

    /* ปุ่ม Desktop */
    .button {
      position: relative;
      display: inline-block;
      margin-left: 20px;
      cursor: pointer;
    }
    .button img {
      display: block;
    }
    .button span {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      white-space: nowrap;
    }

    /* ปุ่ม Mobile */
    .mobile-buttons {
      display: none; /* ซ่อนบนจอ Desktop */
      width: 100%;
      height: 38px;
      background-color: #fff;
    }
    .mobile-buttons-container {
      display: flex;
      width: 100%;
      height: 100%;
    }
    .mobile-button {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      font-weight: bold;
      font-size: 23px;
      text-decoration: none;
    }
    .mobile-button.login {
      background-color: #00A86B; /* สีเขียว */
    }
    .mobile-button.register {
      background-color: #FF0000; /* สีแดง */
    }

    /* ===================== ส่วนสไลด์ ===================== */
    .slider-container {
      position: relative;
      width: 100%;
      max-width: 1600px;
      height: 450px;
      background-color: #000;
      margin: 0 auto;
      overflow: visible;
    }
    .slider-track {
      display: flex;
      position: relative;
      transition: transform 0.5s ease-in-out;
    }
    .slide {
      min-width: 1400px;
      height: 450px;
      margin-right: 38px;
      position: relative;
    }
    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* ลูกศรสำหรับเลื่อนสไลด์ */
    .slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 40px;
      color: rgba(255, 255, 255, 0.5); /* สีขาว 50% โปร่ง */
      padding: 10px;
      cursor: pointer;
      z-index: 10;
      background: none; /* ไม่มีพื้นหลัง */
    }
    .left-arrow {
      left: -60px;
    }
    .right-arrow {
      right: -60px;
    }

    /* แถบแสดงสถานะด้านล่าง */
    .slider-dots {
      position: absolute;
      bottom: 8px; /* ห่างจากขอบล่าง 8px */
      width: 100%;
      text-align: center;
    }
    .slider-dots .dot {
      display: inline-block;
      width: 32px;
      height: 8px;
      margin: 0 5px;
      background: #969696;
      border-radius: 4px;
      cursor: pointer;
    }
    .slider-dots .dot.active {
      background: #e01600;
    }

    /* ===================== Media Queries สำหรับมือถือ ===================== */
    @media screen and (max-width: 768px) {
      .slider-container {
        height: auto;
        width: 100vw;
        overflow: hidden;
        margin-bottom: 0; /* ลบ margin ด้านล่าง */
      }
      .slide {
        min-width: 100vw;
        width: 100vw;
        height: auto;
        margin-right: 0;
      }
      /* ปรับแต่งลูกศรสำหรับมือถือ */
      .slider-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        font-size: 24px;
        color: rgba(255, 255, 255, 0.5);
        top: 45%;
        transform: translateY(-50%);
        z-index: 20;
      }
      .left-arrow {
        left: 0px;
      }
      .right-arrow {
        right: 0px;
      }
      /* ส่วนของแถบแสดงสถานะ */
      .slider-dots {
        position: static; /* เปลี่ยนจาก absolute เป็น static */
        margin: 0;
        padding: 0;
        text-align: center;
        width: 100%;
        background-color: #000;
      }
      .slider-dots .dot {
        width: 24px;
        height: 6px;
        margin: 0 3px;
        background: #969696;
        border-radius: 3px;
        display: inline-block;
      }
      .slider-dots .dot.active {
        background: #e01600;
      }
      /* ส่วนของ slider section */
      .slider {
        background-color: #000; /* เพิ่มพื้นหลังสีดำให้กับทั้ง section */
      }
      .header {
        height: 48px;
      }
      .header-container {
        height: 48px;
      }
      /* ซ่อนปุ่ม Desktop */
      .header-right .button {
        display: none;
      }
      /* แสดงปุ่ม Mobile */
      .mobile-buttons {
        display: block;
      }
      /* ปรับ font-size สำหรับมือถือ */
      .mobile-button {
        font-size: 20px;
      }
      /* ปรับขนาด logo และ support icons */
      .header-left img {
        width: 130px;
        height: 26px;
        margin-bottom: 8px;
      }
      .header-right .item {
        margin-left: 10px;
      }
      .header-right .item img {
        width: 22px;
        height: 22px;
      }
      .header-right {
        font-size: 16px;
      }
    }

    /* ===================== ส่วน Content ===================== */
    .content {
      width: 100%;
      background: url('img/bg_content.png') no-repeat center top;
      background-size: cover;
      position: relative;
      padding-bottom: 0;
      padding-top: 20px;
    }
    /* รูปที่มุมซ้ายบน */
    .content .corner-left {
      position: absolute;
      top: 0;
      left: 0;
      z-index: 0;
    }
    /* Container สำหรับเนื้อหา */
    .content-container {
      max-width: 100vw;
      width: 100%;
      margin: 0 auto;
      padding-top: 0;
      padding-bottom: -1px;
      margin-bottom: -1px;
      box-sizing: border-box;
    }
    /* เมนู 7 เมนู */
    .content-menu {
      position: relative; /* เพิ่มการตั้งค่านี้ */
      z-index: 99;        /* ให้มีค่า z-index สูง */
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 15px;
      margin-bottom: 30px;
    }
    .content-menu a img {
      display: block;
    }

    /* Grid สำหรับแสดงรูปในแต่ละ section */
    .image-grid {
      display: flex;
      flex-wrap: wrap;           /* ให้รูปขึ้นแถวใหม่เมื่อพื้นที่ไม่พอ */
      justify-content: center;   /* จัดให้อยู่ตรงกลาง */
      margin-left: 1vw;
      margin-right: 1vw;
      gap: 20px;                 /* ระยะห่างระหว่างรูป */
    }
    .grid-item {
      width: 212px;
      height: 212px;
      border: 3px solid #422d2b;
      border-radius: 40px;
      overflow: hidden;
      animation: shrinkExpand 10s infinite; /* เปลี่ยนจาก 15s เป็น 10s */
    }
    .grid-item:hover {
      border-color: #fffc00;
    }
    .grid-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    @keyframes shrinkExpand {
      0% {
        transform: scale(1);
      }
      3.125% {
        transform: scale(0.9);
      }
      6.25% {
        transform: scale(1);
      }
      100% {
        transform: scale(1);
      }
    }

    @media screen and (max-width: 768px) {
      .content-container {
        padding-bottom: -1px;
        margin-bottom: -1px;
      }
      .content-menu {
        margin-top: 0;
        padding-top: 0;
        margin-left: 20px;
        margin-right: 20px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px; /* ปรับระยะห่างระหว่างปุ่มตามที่ต้องการ */
        justify-items: center;
      }
      /* กำหนดขนาดให้กับแต่ละปุ่ม */
      .content-menu a {
        width: 30vw; /* ปรับความกว้างของปุ่มให้เหมาะสม */
      }
      /* ปรับขนาดของภาพในปุ่มให้พอดี */
      .content-menu a img {
        width: 100%;
        height: auto;
        display: block;
      }
      /* ปรับปุ่มที่ 7 ให้อยู่ตรงกลางแถวสุดท้าย */
      .content-menu a:nth-child(7) {
        grid-column: 2;
      }
      .image-grid {
        display: grid;
        margin-top: 0;
        margin-left: 5px;
        margin-right: 5px;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px; /* ปรับระยะห่างระหว่างรูปตามต้องการ */
        justify-items: center;
      }
      .grid-item {
        width: 45vw;
        height: 45vw;
        aspect-ratio: 1 / 1; /* ให้คงเป็นรูปสี่เหลี่ยม */
        border: 3px solid #422d2b;
        border-radius: 40px;
        overflow: hidden;
        animation: shrinkExpand 10s infinite;
      }
      .grid-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }

    /* ===================== ส่วนบทความ ===================== */
    .article {
      position: relative; /* เพื่อให้ตำแหน่ง absolute ภายใน article ทำงานได้ */
      padding-bottom: 0;
    }
    
    .article-container {
      width: 95vw;
      margin: 0 auto;
      padding-bottom: 0;
    }
    
    .article-bottom {
      position: absolute;
      margin-bottom: -1px;
      padding-bottom: -1px;
      left: 0;
      width: 100vw;
      z-index: 0;
      pointer-events: none; /* ป้องกันไม่ให้ส่วนนี้รบกวนการคลิก */
    }

    .corner-right {
      position: absolute;
      margin-bottom: 0;
      padding-bottom: 0;
      bottom: 0;
      right: 0;
      z-index: 0;
      padding-bottom: -1px;
      margin-bottom: -1px;
    }
    .article-image {
      width: 85vw;
      height: 322px;
      border-radius: 40px;
      object-fit: cover;
      display: block;
      margin: 0 auto;
      margin-top: 50px;
      padding-bottom: -1px;
      margin-bottom: -1px;
    }
    .article-title {
      font-family: 'Sukhumvit Set', sans-serif;
      font-weight: 700;
      font-size: 32px;
      text-align: center;
      margin-top: 30px;
      margin-bottom: 0;
      color: #fffc00;
      padding-top: 30px;
      padding-bottom: 0;
      line-height: 1.4;
      z-index: 99;
      overflow-wrap: break-word;
      word-spacing: normal;
      white-space: normal; /* ให้ข้อความบรรทัดใหม่ตามปกติ */
    }
    .article-content {
      position: relative; /* เพิ่ม position เพื่อสร้าง stacking context */
      z-index: 100;       /* กำหนดค่า z-index สูงกว่ารูปด้านล่าง */
      width: 85vw;
      margin: 0 auto;
      margin-top: 0px;
      margin-bottom: 0;
      padding-top: 0;
      padding-bottom: 20px;
      font-family: 'Sukhumvit Set', sans-serif;
      font-weight: 500; /* Sukhumvit Medium */
      font-size: 24px;
      color: #fff;
      text-align: justify;   /* จัดเต็มข้อความ */
      text-indent: 2em;      /* เว้นบรรทัดแรก */
      hyphens: auto;
      overflow-wrap: break-word;
      word-spacing: normal;
      line-height: 1.4;
      padding-bottom: -1px;
      margin-bottom: -1px;
      white-space: normal; /* ให้ข้อความบรรทัดใหม่ตามปกติ */
    }
    .article-content .highlight {
      color: #fffc00;
    }
    .bottom-article {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100vw;
      height: auto;
      z-index: 0;
      padding-bottom: -2px;
      margin-bottom: -2px;
    }

    @media screen and (max-width: 768px) {
      .corner-right {
        position: absolute;
        width: 40vw;
        margin-bottom: 0;
        padding-bottom: 0;
        bottom: 0;
        right: 0;
        z-index: 0;
        padding-bottom: -1px;
        margin-bottom: -1px;
      }

      .article-image {
        margin-bottom: 80px;
        padding-bottom: 80px;
      }

      .article-title {
        font-size: 22px;
        margin-top: 10px;
        overflow-wrap: break-word;
      }
      .article-content {
        width: 94vw;
        font-size: 20px;
        line-height: 1.4;
        overflow-wrap: break-word;
        padding-bottom: 10px;
      }
    }

    /* ===================== ส่วน Footer ===================== */
    .footer {
      background-color: #000000;
      padding-top: 0px;
      margin-top: 0px;
      padding-bottom: 70px;
    }
    .footer-container {
      max-width: 70vw;
      width: 100%;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      color: #fff;
    }
    .footer-col {
      font-family: 'Sukhumvit Set', sans-serif;
      font-weight: 500; /* ใช้ Sukhumvit Medium */
      font-size: 22px;
      text-align: left;
      line-height: 0.8;
      padding: 0 5px;
      overflow-wrap: break-word;
      white-space: nowrap;
    }
    .footer-col.col1,
    .footer-col.col2 {
      width: 20%;
    }
    .footer-col.col3 {
      width: 40%;
    }
    .footer-col.col4 {
      width: 20%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 45px;
      padding-top: 0;
    }
    .footer-col.col4 img {
      max-width: 100%;
      height: auto;
      margin-top: 0;
      padding-top: 0;
    }
    .footer-mobile {
      display: none;
    }

    @media screen and (max-width: 1600px) {
      .footer-container {
        max-width: 85vw;
        width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        color: #fff;
        margin-bottom: 0px;
        padding-bottom: 0px;
      }
    }

    @media screen and (max-width: 768px) {
      .footer {
        background-color: #000000;
        padding-top: 0px;
        margin-top: 0px;
        padding-bottom: 15px;
      }
      .footer-container {
        width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        color: #fff;
        padding-bottom: 0;
        margin-bottom: 0;
      }
      .footer-col {
        font-family: 'Sukhumvit Set', sans-serif;
        font-weight: 500;
        font-size: 14px;
        text-align: left;
        line-height: 0.2;
        padding: 0 5px;
      }
      .footer-col.col1,
      .footer-col.col2 {
        width: 30%;
      }
      .footer-col.col3 {
        width: 40%;
      }
      .footer-col.col4 {
        display: none;
      }
      .footer-mobile {
        display: block;
        text-align: center;
        margin-top: 20px;
        margin-bottom: 0px;
        padding-bottom: 0px;
      }
      .footer-mobile img {
        max-width: 85vw;
        height: auto;
        display: inline-block;
        margin-bottom: 0px;
        padding-bottom: 0px;
      }
    }

    /* ===================== ส่วน Sticky Menu ===================== */
    .sticky-menu {
      position: fixed;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      gap: 0px; /* ระยะห่างระหว่างปุ่ม */
    }
    .sticky-menu a {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 182px;
      height: 35px;
      background-image: url('img/menu_botton.png');
      background-size: contain;
      background-repeat: no-repeat;
      text-decoration: none;
      color: #fff;
      font-family: 'Sukhumvit Set', sans-serif;
      font-weight: 700;
      font-size: 20px;
    }
    .sticky-menu a:hover,
    .sticky-menu a.active {
      background-image: url('img/menu_botton_hover.png');
    }

    /* ===================== Hamburger Menu ===================== */
    .hamburger-menu {
      display: none; /* ซ่อนเริ่มต้น */
    }
    .hamburger-panel {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #ff0000;
      z-index: 10000;
      padding: 0px;
      box-shadow: 2px -2px 8px rgba(0, 0, 0, 0.5);
      text-align: center;
    }
    .hamburger-panel a {
      display: block;
      color: #fff;
      text-decoration: none;
      font-family: 'Sukhumvit Set', sans-serif;
      font-weight: 600;
      font-size: 20px;
      padding: 10px 0;
      border-bottom: 1px solid #333;
    }
    .hamburger-panel a:last-child {
      border-bottom: none;
    }

    /* ===================== Popup Overlay ===================== */
    .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.8); /* สีดำ 80% */
      display: none; /* ซ่อนเริ่มต้น */
      z-index: 11000;
      align-items: center;
      justify-content: center;
    }
    /* Popup Content สำหรับ Support/Contact */
    .popup-content {
      position: relative;
      max-height: 95vh;
      border-radius: 45px;
      overflow: hidden;  /* ให้ขอบมนแสดงชัด */
      background-repeat: no-repeat;
    }
    /* Popup Form สำหรับ สมัครฟรี */
    .popup-form {
      display: none; /* ซ่อนเริ่มต้น */
      position: relative;
      height: 95vh;             /* กำหนดความสูง 95% ของ viewport */
      aspect-ratio: 10.8 / 16;  /* ปรับตามสัดส่วนของรูปคุณ */
      border-radius: 45px;
      overflow: hidden;
      background-image: url('img/bg_popup_login.png');
      background-repeat: no-repeat !important;
      background-size: cover !important;
      background-position: center !important;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    #popupForm {
      background-repeat: no-repeat !important;
      background-size: cover !important;
      background-position: center !important;
    }
    /* Label สำหรับ Popup Form */
    .popup-label {
      display: block;
      color: #fff;
      font-size: 20px;
      margin-top: 15vh;
      margin-bottom: 10px;
      text-align: center;
      justify-content: center;
      background-repeat: no-repeat;
    }
    #loginPopupForm .popup-label {
      display: block;
      color: #fff;
      font-size: 20px;
      margin-top: 20vh;
      margin-bottom: 10px;
      text-align: center;
      justify-content: center;
    }
    /* ช่องกรอกข้อมูล */
    .popup-input {
      width: 50%;
      padding: 10px;
      font-size: 18px;
      border: none;
      border-radius: 5px;
      margin-bottom: 20px;
      background-color: #fff;
      color: #000;
    }
    /* ปุ่ม Next */
    .next-button {
      display: block;
      width: 153px;
      height: 34px;
      border: none;
      background: none;
      cursor: pointer;
      margin: 0 auto;  /* จัดปุ่มให้อยู่ตรงกลาง */
      padding: 0;
      position: relative;
      white-space: nowrap;
    }
    .next-button img {
      width: 100%;
      display: block;
      height: 34px;
      width: 153px;
    }
    .next-button span {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #000;
      font-size: 20px;
      font-weight: bold;
    }
    /* ปุ่มปิด Popup */
    .popup-close {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 46px;
      height: 46px;
      background-color: #670611;
      border: none;
      border-radius: 50%;
      color: #fffc00;
      font-size: 28px;
      cursor: pointer;
      line-height: 46px;
      text-align: center;
      z-index: 12000;
    }

    /* ===================== Promotion Section Styles ===================== */
    .promotion-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 30px;
      margin-left: 1vw;
      margin-right: 1vw;
      gap: 20px;
    }
    .promotion-item {
      width: 512px;
      height: 512px;
      border: 3px solid #422d2b;
      border-radius: 40px;
      overflow: hidden;
      animation: shrinkExpand 10s infinite;
    }
    .promotion-item:hover {
      border-color: #fffc00;
    }
    .promotion-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    @media screen and (max-width: 768px) {
      /* ซ่อนปุ่ม sticky-menu ปกติ */
      .sticky-menu {
        display: none;
      }
      .hamburger-menu {
        display: block;
        position: fixed;
        bottom: 3vh;
        left: 1vh;
        z-index: 10000;
        width: 35px;
        height: 34px;
        background-image: url('img/hamburger.png');
        background-size: cover;
        background-repeat: no-repeat;
        cursor: pointer;
      }
      .article-image {
        width: 95vw;
        height: 322px;
        border-radius: 0px;
        object-fit: cover;
        display: block;
        margin-top: 50px;
        padding-bottom: 0px;
        margin-bottom: 0px;
      }
      /* Popup Content: จัดรูปให้มีความสูงสูงสุด 95vh ตามที่ต้องการ */
      .popup-form {
        background-repeat: no-repeat !important;
        background-size: cover !important;
        background-position: center !important;
        width: 95vw;
        max-height: 135vw;
        height: auto;
        padding: 0;
        margin: 0;
      }
      .popup-content {
        position: relative;
        max-width: 95vw;
        aspect-ratio: auto;
        background-repeat: no-repeat !important;
      }
      .popup-content img {
        display: block;
        max-width: 95vw;
        width: auto;
        height: auto;
        background-repeat: no-repeat !important;
      }
      .popup-label {
        margin-top: 15vh;
        background-repeat: no-repeat;
      }
      .promotion-grid {
        display: grid;
        margin-top: 0;
        margin-left: 5px;
        margin-right: 5px;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
        justify-items: center;
      }
      .promotion-item {
        width: 45vw;
        height: 45vw;
        aspect-ratio: 1 / 1;
        border: 3px solid #422d2b;
        border-radius: 40px;
        overflow: hidden;
        animation: shrinkExpand 10s infinite;
      }
      .promotion-item img {
        width: 45vw;
        height: 45vw;
        object-fit: cover;
      }
      #loginPopupForm .popup-label {
        display: block;
        color: #fff;
        font-size: 20px;
        margin-top: 27vh;
        margin-bottom: 0px;
        padding: 0;
        text-align: center;
        justify-content: center;
      }
    }

    /* สไตล์ลูกศรกลับขึ้นบน */
    #scrollToTop {
      height: 20px;
      width: 20px;
      position: fixed;
      bottom: 20px;
      right: 15px;
      background-color: #ffd000;
      color: #fff;
      padding: 8px;
      border-radius: 50%;
      cursor: pointer;
      z-index: 9999;
      display: none; /* ซ่อนลูกศรเมื่อเลื่อนหน้าไม่ถึงตำแหน่ง */
      font-size: 24px;
      text-align: center;
      line-height: 24px;
    }

    /* สร้าง Delay ทีละ 0.2 วินาที สำหรับ 20 รูป */
    .image-grid .grid-item:nth-child(1) {
      animation-delay: 0s;
    }
    .image-grid .grid-item:nth-child(2) {
      animation-delay: 0.2s;
    }
    .image-grid .grid-item:nth-child(3) {
      animation-delay: 0.4s;
    }
    .image-grid .grid-item:nth-child(4) {
      animation-delay: 0.6s;
    }
    .image-grid .grid-item:nth-child(5) {
      animation-delay: 0.8s;
    }
    .image-grid .grid-item:nth-child(6) {
      animation-delay: 1s;
    }
    .image-grid .grid-item:nth-child(7) {
      animation-delay: 1.2s;
    }
    .image-grid .grid-item:nth-child(8) {
      animation-delay: 1.4s;
    }
    .image-grid .grid-item:nth-child(9) {
      animation-delay: 1.6s;
    }
    .image-grid .grid-item:nth-child(10) {
      animation-delay: 1.8s;
    }
    .image-grid .grid-item:nth-child(11) {
      animation-delay: 2s;
    }
    .image-grid .grid-item:nth-child(12) {
      animation-delay: 2.2s;
    }
    .image-grid .grid-item:nth-child(13) {
      animation-delay: 2.4s;
    }
    .image-grid .grid-item:nth-child(14) {
      animation-delay: 2.6s;
    }
    .image-grid .grid-item:nth-child(15) {
      animation-delay: 2.8s;
    }
    .image-grid .grid-item:nth-child(16) {
      animation-delay: 3s;
    }
    .image-grid .grid-item:nth-child(17) {
      animation-delay: 3.2s;
    }
    .image-grid .grid-item:nth-child(18) {
      animation-delay: 3.4s;
    }
    .image-grid .grid-item:nth-child(19) {
      animation-delay: 3.6s;
    }
    .image-grid .grid-item:nth-child(20) {
      animation-delay: 3.8s;
    }
