/* CSS ban đầu */
.elementor-kit-5 {
    --e-global-color-primary: #e3f11e;
    --e-global-color-secondary: #161617;
    --e-global-color-text: #898990;
    --e-global-color-accent: #CBFB45;
    --e-global-color-d915ae1: #FFFFFF;
    --e-global-color-b142927: #F3F3F3;
    --e-global-color-ef03fc9: #1E1E1F;
    --e-global-color-b01bc79: #70833C;
    --e-global-color-6a4349e: #161617;
    --e-global-color-0af9d3d: #7D32F9;
    --e-global-color-c97de3a: #232325;
    --e-global-color-5384b1d: #151517;
    --e-global-typography-text-font-weight: 400;
    --e-global-typography-accent-font-weight: 800;
  }
  
  .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1140px;
  }
  
  .e-container {
    --container-max-width: 1140px;
  }
  
  .elementor-widget:not(:last-child) {
    margin-bottom: 0px;
  }
  
  .elementor-element {
    --widgets-spacing: 0px;
  }
  
  h1.entry-title {
    display: var(--page-title-display);
  }
  
  .elementor-kit-5 e-page-transition {
    background-color: #FFBC7D;
  }
  
  @media (max-width: 1024px) {
    .elementor-section.elementor-section-boxed > .elementor-container {
      max-width: 1024px;
    }
    .e-container {
      --container-max-width: 1024px;
    }
  }
  
  @media (max-width: 767px) {
    .elementor-section.elementor-section-boxed > .elementor-container {
      max-width: 767px;
    }
    .e-container {
      --container-max-width: 767px;
    }
  }
  
  /* CSS mới cho hiệu ứng đổi màu chữ khi di chuột */
  .hover-text {
    color: rgb(255, 255, 255); /* Màu ban đầu */
    transition: color 0.3s ease; /* Hiệu ứng chuyển màu */
  }
  
  .hover-text:hover {
    color: yellow; /* Màu khi di chuột */
  }
/* Container cho các đốm vàng */
/* Container cho các đốm vàng */
.sparkle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
  }
  
  /* Đốm vàng di chuyển loạn xạ */
  .sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: rgb(228, 206, 9);
    border-radius: 50%;
    opacity: 0.7;
    animation: randomMove 60s infinite ease-in-out;
  }
  
  /* Di chuyển ngẫu nhiên loạn xạ */
  @keyframes randomMove {
    0% {
      transform: translate(0, 0) scale(1);
      opacity: 1;
    }
    20% {
      transform: translate(30vw, -20vh) scale(1.1);
      opacity: 0.8;
    }
    40% {
      transform: translate(-25vw, 35vh) scale(0.9);
      opacity: 0.5;
    }
    60% {
      transform: translate(40vw, 50vh) scale(1.2);
      opacity: 0.9;
    }
    80% {
      transform: translate(-30vw, -30vh) scale(1);
      opacity: 0.7;
    }
    100% {
      transform: translate(20vw, 40vh) scale(0.8);
      opacity: 0.6;
    }
  }
  