
.offical-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  transition: all 0.3s ease;
  position: relative;
  height: 400px;
  font-size: 45px;
  font-weight: bold;  
  width: 100%;
  text-align: center;
  bottom: 895px;
}

.offical-1::before{  
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(
    circle at 40% 35%,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(200, 200, 200, 0.4) 30%,
    rgba(100, 100, 100, 0.6) 70%,
    rgba(50, 50, 50, 0.9) 100%
);}

/* main brand name HABBAL – aggressive sport vibe */
.offical-1 div:first-child {
  font-family: 'Black Ops One', 'Impact', 'Arial Black', sans-serif;
  font-size: 4.2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.35rem;
  color: #e5e9e8;
  text-shadow: 0 0 8px #1f1f1f, 2px 4px 0 #0a0c0b, 0 0 20px #eaeaea, 0 0 35px #ffffff;
  /* background: linear-gradient(180deg, #ffffff 10%, #d8d5d5 50%, #d8cfcf 90%); */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 6px black);
  margin-bottom: 2.5rem;
  line-height: 1.1;
  position: relative;
  z-index: 2;
}

/* the subtitle container "The official agent of" */
.offical-2 {
  text-transform: uppercase;  
  transition: 0.2s;
  flex-wrap: wrap;
  row-gap: 0.7rem;
  font-size: 17px;
  margin-top: 7px;
  font-weight: 600;
  color: var(--s-bar-gray);
  text-align: center;
  margin-bottom: 27%;
  margin-top: 30px;
  font-size: 22px;
  transition: 0.5s;
  position: relative;
  span{margin-left: 15px;}
}

.offical-2 span:hover{margin-left: 15px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}


/* style for "The official agent of" text block */
.offical-2 > span:not(a):not(.linglong):not(.deestone):not(.servis) {
  color: #cfcfcf;
  margin-right: 0.2rem;
}

/* links clean style */
.offical-2 a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  color: #e5e3e3;
}

/* each tire brand span – sport car racing style */
.linglong,
.deestone,
.servis {
  font-family: 'Black Ops One', 'Impact', sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  border-radius: 2.5rem;
  transition: all 0.25s ease;
  display: inline-block;   
  position: relative;
  line-height: 1.4;
  margin: 0 1.2rem;
  cursor: pointer;
}


/* “The official agent of” additional styling */
.offical-2::before {
  content: "";
  margin-right: 0.4rem;
  font-size: 1.4rem;
  filter: drop-shadow(0 0 5px gold);
  opacity: 0.9;
}
.offical-2::after {
  content: "";
  margin-left: 0.3rem;
  font-size: 1.4rem;
  filter: drop-shadow(0 0 6px cyan);
  opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 700px) {
  .offical-1 {
    padding: 1.8rem 1.8rem;
    border-radius: 2rem;
  }
  .offical-1 div:first-child {
    font-size: 3rem;
    letter-spacing: 0.2rem;
  }
  .offical-2 {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    gap: 0.4rem;
  }
  .linglong,
  .deestone,
  .servis {
    font-size: 1.3rem;
    padding: 0.2rem 0.6rem;
  }
}



    .habbal {
        /* font-size: 60px; */
        /* font-weight: bold; */
        /* letter-spacing: 5px; */
        /* opacity: 0; */
        background: linear-gradient(
            to right,
            #333 20%,
            #fff 40%,
            #ffffff 50%,
            #fff 60%,
            #333 80%
        );
        background-size: 150% auto;
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
        /* transition: opacity 0.5s; */
    }

    .habbal.shining {
        opacity: 1;
        animation: continuousShine 2s linear infinite ;
    }

    @keyframes continuousShine {
        0% {
            background-position: 150% center;
        }
        100% {
            background-position: -150% center;
        }
    }

    /* Initial load animation */
    .habbal.loading {
        animation: initialShine 2s ease-out forwards;
    }

    @keyframes initialShine {
        0% {
            background-position: 150% center;
        }
        100% {
            background-position: -150% center;
        }
    }