
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:
  radial-gradient(circle at 50% 20%, rgba(0,224,255,0.15), transparent 40%),
  radial-gradient(circle at 80% 80%, rgba(106,92,255,0.15), transparent 40%),
  #0a0f1c;

  min-height:100vh;
}

@keyframes gradient{
0%{background-position:0% 50%;}
50%{background-position:100% 50%;}
100%{background-position:0% 50%;}
}
.wrapper{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 20px;
}

.container{
  width:100%;
  max-width:1150px;
}

/* MEMBERS */
.members{
  display:inline-block;
  padding:8px 22px;
  font-weight:700;
  font-size:18px;
  border-radius:40px;

  color:#111;

  background: linear-gradient(135deg,#ffd700,#ffb300,#ff8c00);

  box-shadow:
  0 4px 12px rgba(255,165,0,0.5),
  inset 0 1px 4px rgba(255,255,255,0.5);

  margin-bottom:15px;
}

/* HERO GRID */
.hero{
  display:grid;
  grid-template-columns: 1fr 1fr;
  align-items:center;
  gap:30px;
}

/* CONTENT (LEFT SIDE DESKTOP) */
.content h1{
  font-size:24px;
  margin-bottom:6px;
  color: white;
}

.tag{
  font-size:17px;
  color:#00ffcc;
  margin-bottom:15px;
}

/* .btn{
  display:inline-block;
  padding:12px 26px;
  border-radius:40px;
  background:linear-gradient(45deg,#00ff99,#00cc66);
  color:#000;
  font-weight:600;
  text-decoration:none;
  margin-bottom:15px;
} */

.btn-hover {
   
     padding:12px 26px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
  
   
   margin-bottom:15px;
    border: none;
    background-size: 300% 100%;

    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-hover:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.btn-hover:focus {
    outline: none;
}
.btn-hover.color-2 {
    background-image: linear-gradient(to right, #f5ce62, #e43603, #fa7199, #e85a19);
    box-shadow: 0 4px 15px 0 rgba(229, 66, 10, 0.75);
}

.points{
  font-size:17px;
  line-height:1.7;
  color: white;
}

.points div{
  margin-bottom:6px;
}

.stars{
  margin-top:10px;
  font-size:20px;
  color:#ffcc00;
}

.ads-text{
  margin-top:15px;
  font-size:14px;
  color:#ccc;
}

/* .ads-btn{
  display:inline-block;
  margin-top:8px;
  padding:10px 24px;
  border-radius:30px;
  background:linear-gradient(45deg,#ff4d4d,#cc0000);
  color:#fff;
  font-weight:600;
  text-decoration:none;
} */

.hk-btn {
  text-decoration: none;

  display: inline-block;
   margin-top:8px;
  font-weight: 600;
  padding: 10px 24px;
   border-radius:50px;
  color: #fff;
  background-color: #000;
  /* position: relative; */
  overflow: hidden;
}

/* 8. Flip Hover */
.hk-real-flip {
  position: relative;
  background: #111;
  color: #fff;
  border-radius: 14px;
  overflow: hidden;
  perspective: 900px;
}

/* text stays normal */
.hk-real-flip span {
  position: relative;
  z-index: 3;
}

/* base background */
.hk-real-flip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: red;
  z-index: 1;
}

/* flipping background */
.hk-real-flip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6a5cff, #00e0ff);
  transform: rotateY(180deg);
  backface-visibility: hidden;
  transform-origin: center;
  transition: transform 0.6s ease;
  z-index: 2;
}

/* REAL flip */
.hk-real-flip:hover::before {
  transform: rotateY(0deg);
}

/* LOGO (RIGHT SIDE DESKTOP) */
/* .logo{
  width:330px;
  height:330px;
  border-radius:50%;
  overflow:hidden;
   border:6px solid #00e0ff;
  box-shadow:
  0 0 10px #00e0ff,
  0 0 25px #00e0ff,
  0 0 45px rgba(0,224,255,0.7);

  justify-self:center;
}

.logo img{
  width:100%;
  height:100%;
  object-fit:cover;
} */



.logo{
  position: relative;
  width:330px;
  height:330px;
  border-radius:50%;
  overflow:hidden;
  justify-self:center;
}

/* rotating glow ring */
.logo::before{
  content:"";
  position:absolute;
  inset:-8px;
  border-radius:50%;

  background: conic-gradient(
    #00e0ff,
    #6a5cff,
    #00e0ff,
    #6a5cff,
    #00e0ff
  );

  animation: rotateGlow 4s linear infinite;
  z-index:1;
}

/* dark layer inside ring */
.logo::after{
  content:"";
  position:absolute;
  inset:6px;
  background:#000;
  border-radius:50%;
  z-index:2;
}

/* image */
.logo img{
  position:relative;
  z-index:3;
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
  padding: 9px;
}

/* rotation */
@keyframes rotateGlow{
  0%{
    transform:rotate(0deg);
  }
  100%{
    transform:rotate(360deg);
  }
}

/* MOBILE FIX */
@media(max-width:900px){

  .hero{
    grid-template-columns:1fr;
    text-align:center;
    gap:10px;
  }

  /* Mobile order */
  .logo{
    order:-1; /* content ke upar aa jayega */
    width:210px;
    height:210px;
    margin:5px auto 10px auto;
  }

}