html,
body{
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}
ul{
  list-style-type: none;
  padding: 0;
  margin: 0;
}
#index-page{
  background-color: #262626;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  background: url(../images/idx-bg2.jpg) no-repeat center bottom;
  background-size: cover;
}
#index-page:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none; 
  z-index: -1;
}
#bg-animation{
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
}
.index-page-wrapper{
  padding: 60px 0 40px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column  ;
  justify-content: center;
  align-content: space-between;
  position: relative;
  z-index: 2;
  top: -12vh;
}
#index-content{
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
}

#index-content > .row{
  align-items: center;
  height: 100%;
}

.content-wrapper{
  padding: 30px 10px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#index-page h1 a{
  font-size: 25px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  background: rgb(0 0 0 / 60%);
  padding: 0 5px;
  border-radius: 30px;
}
.info-avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.circle-glow {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: glow 2.5s infinite ease-in-out;
  margin-bottom: 20px;
}

.circle-glow img {
  width: 215px;
  height: 215px;
  border-radius: 50%;
  object-fit: cover;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(255, 121, 121, 0.3),
                0 0 15px rgba(255, 0, 0, 0.5),
                0 0 25px rgba(255, 0, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 10px rgba(255, 121, 121, 0.5),
                0 0 25px rgba(255, 0, 0, 0.6),
                0 0 50px rgba(255, 0, 0, 0.7);
  }
  100% {
    box-shadow: 0 0 5px rgba(255, 121, 121, 0.3),
                0 0 15px rgba(255, 0, 0, 0.5),
                0 0 25px rgba(255, 0, 0, 0.4);
  }
}
.info-content{
  color: #fff;
}
.info-content .name{
  font-size: 35px;
  font-weight: 800;
  color: #ff0097;
  text-shadow: 
      -1px -1px 0 #ffffff,
       1px -1px 0 #ffffff,
      -1px  1px 0 #ffffff,
       1px  1px 0 #ffffff;
  margin-bottom: 4px;
 }
 .info-content .rank{
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0;
 }
 .info-content .rank img{
  max-width: 90px;
  margin-left: 5px;
}
 .info-content .caption{
  font-size: 20px;
  font-weight: 500;
 }

 .button-list {
  text-align: center;
  margin-top: 20px;
}

.cta-button, .cta-button2, .cta-button3 {
  display: inline-block;
  width: 100%;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.cta-button {
  background: linear-gradient(45deg, #ff0097, #ff6f00, #ff0097, #ff6f00);
  background-size: 300% 100%;
  animation: pulse 1.5s infinite ease-in-out, gradient-scroll 4s linear infinite; 
}

.cta-button2 {
  background: linear-gradient(45deg, #00c6ff, #0072ff, #00c6ff, #0072ff);
  background-size: 300% 100%;
  animation: gradient-scroll 4s linear infinite;
}

.cta-button3 {
  background: linear-gradient(45deg, #1e90ff, #ff69b4, #1e90ff, #ff69b4);
  background-size: 300% 100%;
  animation: gradient-scroll 4s linear infinite;
}

.cta-button3 img{
  max-width: 85px;
  margin-left: 2px;
}

.cta-button:hover,
.cta-button2:hover,
.cta-button3:hover{
  color: #fff;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes glow2 {
  0% {
    box-shadow: 0 0 7px rgba(255, 255, 255, 0.4),
                0 0 15px rgba(255, 105, 180, 0.6),
                0 0 25px rgba(255, 105, 180, 0.7);
  }
  50% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5),
                0 0 20px rgba(255, 105, 180, 0.8),
                0 0 35px rgba(255, 105, 180, 1);
  }
  100% {
    box-shadow: 0 0 7px rgba(255, 255, 255, 0.4),
                0 0 15px rgba(255, 105, 180, 0.6),
                0 0 25px rgba(255, 105, 180, 0.7);
  }
}


/* Responsive */
@media (max-width: 600px) {
  .cta-button, .cta-button2, .cta-button3 {
    font-size: 16px;
    min-width: 300px;
    padding: 10px 20px;
  }
}

.gradient-text {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.gradient-text span{
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  color: #fff;
  background: linear-gradient(90deg, #ffffff, #00ffd5, #ffffff, #ff00b3, #ffffff);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-scroll 4s linear infinite;

}

@keyframes gradient-scroll {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 0%;
  }
  100% {
    background-position: 0% 0%;
  }
}

.btn-register{
  display: inline-block;
  padding: 7px 20px;
  border: 2px solid #fff;
  margin-top: 65px;
  border-radius: 3px;
  text-decoration: none;
  color: #ffffff;
  transition: all .15s linear;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
}
.btn-register.animation{
  animation: rotateBtn .2s;
}
.btn-register:hover{
  background-color: rgb(225 225 225 / 30%);
  color: #fff;
}
@keyframes rotateBtn {
  0%{transform: rotate(5deg);}
  25%{transform: rotate(0);}
  50%{transform: rotate(5deg);}
  75%{transform: rotate(0);}
  100%{transform: rotate(5deg);}
}
.social-icons a{
  font-size: 40px;
  color: #fff;
}
.footer-logo{
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
}
.footer-logo img{
  max-width: 100px;
  margin: 0 auto;
  vertical-align: top;
}
.img-popup-js li{
  position: absolute;
}
.img-popup-js li:nth-child(1){
  left: 6vw;
  bottom: 0;
  /* opacity: .8; */
  max-width: 380px;
  /* animation: popup2 5s infinite; */
}
.img-popup-js li:nth-child(2){
  right: 4vw;
  bottom: 50px;
  max-width: 335px;
  animation: popup2 5s infinite;
}
@keyframes popup1 {
  0% {bottom: 80px;opacity: 1;}
  25% {bottom: 50px;opacity: .9;}
  50% {bottom: 80px;opacity: 1;}
  75% {bottom: 50px;opacity: .9;}
  100% {bottom: 80px;opacity: 1;}
}
@keyframes popup2 {
  0% {opacity: 1;}
  25% {opacity: .8;}
  50% {opacity: 1;}
  75% {opacity: .8;}
  100% {opacity: 1;}
}
.img-dealer li{
  position: fixed;
}
.img-dealer li{
  right: 50%;
  bottom: 0;
  max-width: 760px;
  transform: translateX(50%);
}
/* Register page */
.register-bnr{
  max-height: 80vh;
  margin: 0 auto;
}

  /* Tablet */
@media only screen and (max-width: 1500px) {
 
}
/* Mobile */
@media only screen and (max-width: 768px) {
  .index-page-wrapper{
    top: -10vh;
  }
  #index-page h2{
    font-size: 30px;
  }
  .btn-register{
    margin-top: 30px;
  }
}

@media only screen and (max-width: 475px) {
  #index-page h2 {
    font-size: 25px;
  }
}