html {
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }
    :root {
      --color-bg1: rgb(8, 10, 15);
      --color-bg2: rgb(0, 17, 32);
      --color1: 18, 113, 255;
      --color2: 107, 74, 255;
      --color3: 100, 100, 255;
      --color4: 50, 160, 220;
      --color5: 80, 47, 122;
      --color-interactive: 140, 100, 255;
      --circle-size: 80%;
      --blending: hard-light;
    }
    
    * {
      margin: 0;
      padding: 0;
      outline: none;
      list-style: none;
      text-decoration: none;
      box-sizing: border-box;
    
      background: transparent;
      border: none;
    }
    
    body {
      margin: 0;
      padding: 0;
      overflow: hidden;
      background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
      position: relative;
      width: 100vw;
      height: 100vh;
      filter: url(#goo);
    }
    
    @keyframes moveInCircle {
      0% {
        transform: rotate(0deg);
      }
      50% {
        transform: rotate(180deg);
      }
      100% {
        transform: rotate(360deg);
      }
    }
    
    @keyframes moveVertical {
      0% {
        transform: translateY(-50%);
      }
      50% {
        transform: translateY(50%);
      }
      100% {
        transform: translateY(-50%);
      }
    }
    
    @keyframes moveHorizontal {
      0% {
        transform: translateX(-50%) translateY(-10%);
      }
      50% {
        transform: translateX(50%) translateY(10%);
      }
      100% {
        transform: translateX(-50%) translateY(-10%);
      }
    }
    
    .last-sales {
      margin-top: 10px;
      font-family: 'Poppins', sans-serif;
      color: #f5f5f5;
      overflow: hidden;
    }
  
    .line-container {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
    }
  
    .line {
      flex-grow: 1;
      border: none;
      border-top: 1px solid #f2f2f2;
      margin: 0 10px;
    }
  
    .last-sales-title {
      font-size: 14px;
      font-weight: 600;
      color: #fcfcfc;
      white-space: nowrap;
    }
  
    .news-line {
      font-size: 14px;
      font-weight: 400;
      color: #ffffff;
      min-height: 20px;
      line-height: 2px;
      white-space: nowrap;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 2px;
      margin-bottom: 1px;
      padding-left: 20px;
  }
  
    .news-line p {
      display: inline-block;
      margin: 0;
      padding-right: 20px;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }
  
    .news-line p.show {
      opacity: 1;
    }
  
    .news-line a {
      color: #ffffff;
      text-decoration: underline;
    }
  
    @media (max-width: 768px) {
      .last-sales-title {
        font-size: 12px;
      }
  
      .news-line {
        font-size: 12px;
        height: 18px;
        line-height: 18px;
      }
    }
    .gradient-bg {
      width: 100vw;
      height: 100vh;
      position: relative;
      overflow: hidden;
      background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
      top: 0;
      left: 0;
    }
    
    .svgBlur {
      display: none;
    }
    
    .noiseBg {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 1;
      mix-blend-mode: soft-light;
      opacity: 0.3;
    }
    
    .gradients-container {
      filter: url(#goo) blur(40px);
      width: 100%;
      height: 100%;
    }
    
    .g1, .g2, .g3, .g4, .g5, .interactive {
      position: absolute;
      border-radius: 50%;
      background: no-repeat;
      mix-blend-mode: var(--blending);
    }
    
    .g1 {
      width: var(--circle-size);
      height: var(--circle-size);
      top: calc(50% - var(--circle-size) / 2);
      left: calc(50% - var(--circle-size) / 2);
      background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%);
      animation: moveVertical 30s ease infinite;
      opacity: 1;
    }
    
    .g2 {
      width: var(--circle-size);
      height: var(--circle-size);
      top: calc(50% - var(--circle-size) / 2);
      left: calc(50% - var(--circle-size) / 2);
      background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%);
      animation: moveInCircle 20s reverse infinite;
      opacity: 1;
      transform-origin: calc(50% - 400px);
    }
    
    .g3 {
      width: var(--circle-size);
      height: var(--circle-size);
      top: calc(50% - var(--circle-size) / 2 + 200px);
      left: calc(50% - var(--circle-size) / 2 - 500px);
      background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%);
      animation: moveInCircle 40s linear infinite;
      opacity: 1;
      transform-origin: calc(50% + 400px);
    }
    
    .g4 {
      width: var(--circle-size);
      height: var(--circle-size);
      top: calc(50% - var(--circle-size) / 2);
      left: calc(50% - var(--circle-size) / 2);
      background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%);
      animation: moveHorizontal 40s ease infinite;
      opacity: 0.7;
      transform-origin: calc(50% - 200px);
    }
    
    .g5 {
      width: calc(var(--circle-size) * 2);
      height: calc(var(--circle-size) * 2);
      top: calc(50% - var(--circle-size));
      left: calc(50% - var(--circle-size));
      background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%);
      animation: moveInCircle 20s ease infinite;
      opacity: 1;
      transform-origin: calc(50% - 800px) calc(50% + 200px);
    }
    
    .interactive {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%);
      opacity: 0.7;
      z-index: 4;
    }
    
    /* Wrapper for buttons */
    .wrapper {
      position: absolute;
      top: 78%; /* Adjusted to give more space below the circle */
      left: 50%;
      transform: translate(-50%, -50%);
      width: 340px; /* Adjusted for proper spacing */
      z-index: 6; /* Ensures the buttons are above other elements */
      display: flex;
      flex-direction: column; /* Align buttons in a column */
      gap: 10px; /* Add space between the buttons */
    }
    
    .wrapper .btn {
      border-radius: 25px;
      font-family: 'Poppins', sans-serif;
      width: 100%; /* Make buttons full width */
      padding: 12px 20px; /* Adjust padding for better appearance */
      text-align: center;
      cursor: pointer;
      background: #ffffffe1; /* Default background color */
      color: #2b2f6c; !important/* Default text color */
      border-radius: 5px; /* Rounded corners */
      font-weight: 600; /* Bold text */
      font-size: 14px; /* Text size */
      text-transform: uppercase; /* Uppercase text */
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Light shadow for modern look */
    }
    
    .wrapper .btn:hover {
      background-color: #2b2f6ca3; /* Background color on hover */
      color: #fff; /* Text color on hover */
    }
    .wrapper .btns {
      border-radius: 25px;
      font-family: 'Poppins', sans-serif;
      width: 100%; /* Make buttons full width */
      padding: 12px 20px; /* Adjust padding for better appearance */
      text-align: center;
      cursor: pointer;
      background: #2aad3ab5; /* Default background color */
      color: #f7f7f7; !important/* Default text color */
      border-radius: 5px; /* Rounded corners */
      font-weight: 900; /* Bold text */
      font-size: 14px; /* Text size */
      text-transform: uppercase; /* Uppercase text */
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Light shadow for modern look */
    }
    
    .wrapper .btns:hover {
      background-color: #158f24b5; /* Background color on hover */
      color: #fff; /* Text color on hover */
    }
    .h1 { 
      font-size: 1rem;
      font-family: 'Poppins', sans-serif;
      text-align: center;
      color:white;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .Loader {
      position: absolute;
      display: flex;
      width: 340px; /* Adjust based on design */
      height: 340px; /* Adjust based on design */
      font-size: 5.8vw; /* Adjust based on design */
      border-radius: 50%;
      box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.4), 0 0 25px rgba(255, 255, 255, 0.8);
      top: 30%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 5;
    }
    
    .Loader::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: rgb(244 185 255 / 29%);
        backdrop-filter: blur(12340px);
      z-index: -1; /* Places the background behind the text */
    }
     
    .Loader::after {
      content: attr(data-text);
      color: #FFFFFF; /* Change this to the desired text color */
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      font-size: calc(70% + 0.10vw);
      letter-spacing: 2px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add text shadow for better readability */
    }
    
    .Loader__Circle {
      display: block;
      position: absolute;
      border-radius: 50%;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      opacity: 0.8;
      mix-blend-mode: screen;
      filter: brightness(120%);
      animation-name: SpinAround;
      animation-iteration-count: infinite;
      animation-duration: 2s;
      animation-fill-mode: both;
      animation-timing-function: linear;
    }
    
    .Loader__Circle:nth-of-type(1) {
      box-shadow:
        inset 1px 0 0 1px #002aff, /* Darker blue */
        3px 0 0 3px #002aff;
      animation-direction: reverse;
      transform-origin: 49.6% 49.8%;
    }
    
    .Loader__Circle:nth-of-type(2) {
      box-shadow:
        inset 1px 0 0 1px #cc0000, /* Darker red */
        3px 0px 0 3px #cc0000;
      transform-origin: 49.5% 49.8%;
    }
    
    .Loader__Circle:nth-of-type(3) {
      box-shadow:
        inset 1px 0 0 1px #cccc00, /* Darker yellow */
        0 3px 0 3px #cccc00;
      transform-origin: 49.8% 49.8%;
    }
    
    .Loader__Circle:nth-of-type(4) {
      box-shadow:
        inset 1px 0 0 1px #66cc00, /* Darker green */
        0 3px 0 3px #66cc00;
      transform-origin: 49.7% 49.7%;
    }
    
    @-webkit-keyframes SpinAround {
      0% {
        transform: rotate(0);
      }
      
      100% {
        transform: rotate(-360deg);
      }
    }
    
    @keyframes SpinAround {
      0% {
        transform: rotate(0);
      }
      
      100% {
        transform: rotate(-360deg);
      }
    }
    /* Media query for mobile screens */
    @media (max-width: 600px) {
      .wrapper {
        position: absolute;
      top: 60%; /* Adjusted to give more space below the circle */
      left: 50%;
      transform: translate(-50%, -50%);
      width: 340px; /* Adjusted for proper spacing */
      z-index: 6; /* Ensures the buttons are above other elements */
      display: flex;
      flex-direction: column; /* Align buttons in a column */
      gap: 10px; /* Add space between the buttons */
      }
      .Loader {
        top: 20%;
        width:200px; /* Adjust width for smaller screens */
        height: 200px;
        min-width: 90px; /* Adjust min-width for smaller screens */
        font-size: 2.7rem; /* Adjust font-size for smaller screens */
      }
    
      .Loader__Circle {
        transform-origin: center; /* Center the transform-origin for better alignment on small screens */
      }
      .gradients-container {
        filter: url(#goo) blur(20px); /* Adjust to lighter blur for mobile */
      }
      
      /* Reduce animation complexity for mobile */
      .g1, .g2, .g3, .g4, .g5 {
        animation-duration: 60s; /* Slower animation for performance */
        mix-blend-mode: normal; /* Simplify blending on mobile */
      }
    }
      