
.right {
    margin-left: -200px; /* Adjusted to match the left margin of the hero image */
    flex: 1;
    position: relative;;
  }
  .hero-image-container {
      position: relative;
  }
  /* Base statbox styling */
  .statbox {
      position: absolute;
      background-color: rgba(30, 30, 30, 0.8);
      border-radius: 1.5rem;
      padding: 1.5rem;
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 17px;
      color: rgb(255, 255, 255);
      text-align: center;
      z-index: 20;
      border: #620dd1 4px solid;
      transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
      box-shadow: 0 0 15px rgba(0, 255, 255, 0.3), 0 0 15px rgba(255, 0, 255, 0.3);
      overflow: hidden;
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
  }
  .statbox::before {
      content: '';
      position: absolute;
      inset: -5px;
      background: #212227;
      filter: blur(10px);
      z-index: -1;
      border-color: rgb(119, 0, 255);
      border: var(--milenium) solid 3px;
      border-radius: inherit;
      transition: all 0.3s ease-in-out;
      opacity: 0.7;
  }

  .statbox:hover::before {
      filter: blur(25px);
      opacity: 1;
  }
  @media (min-width: 1101px) {
      .statboxes .statbox {
          position: absolute;
          width: 12rem;
      }
      .statboxes .statbox:nth-child(1) {
          top: 12%;
          left: 65%;
      }
      .statboxes .statbox:nth-child(2) {
          top: 65%;
          right: -6%;
      }
      .statboxes .statbox:nth-child(3) {
          bottom: 5%;
          left: 7%;
      }
  }
/* Keep your existing .right, .statboxes, .statbox styles for base layout */


/* Tablet/mobile: revert to your stacked flex layout */
@media screen and (max-width: 1100px) {
  .statboxes {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
  .statbox {
    position: relative;
    margin: 0 auto;
    min-width: 150px;
  }
}



