 .page-center{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    animation: fadeIn 0.4s ease;

  }

  .content-center{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .title-center{
    text-align: center;
    font-size: 24px;
    margin-bottom: 0px;
    margin-top: 0px;
    color: #ffffff;
  }

  .circle{
  position: relative;
  height: 220px;
  width: 220px;
  background: linear-gradient(145deg, #e21cff, #b300d8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;

  /* efek timbul */
  box-shadow:
    0 15px 30px rgba(0,0,0,0.25),
    inset 0 6px 10px rgba(255,255,255,0.35),
    inset 0 -8px 15px rgba(0,0,0,0.25);

   filter: drop-shadow(0 0 12px rgba(211,6,251,0.6));

}

.circle:hover{
  transform: translateY(-6px);
  box-shadow:
    0 22px 40px rgba(0,0,0,0.35),
    inset 0 6px 10px rgba(255,255,255,0.35),
    inset 0 -10px 18px rgba(0,0,0,0.3);
}


  /* radar pulse */
  .circle::before{
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    animation: radarPulse 1.2s infinite ease-out;
  }

  @keyframes radarPulse{
    0%{
      transform: scale(0.2);
      opacity: 0.8;
    }
    70%{
      opacity: 0.4;
    }
    100%{
      transform: scale(12);
      opacity: 0;
    }
  }

  .circle img{
    position: relative;
    z-index: 2;
  }

@keyframes fadeIn{
  from{
    opacity: 0;
    transform: scale(0.96);
  }
  to{
    opacity: 1;
    transform: scale(1);
  }
}



/*mobile*/
@media (max-width: 576px){
  .title-center{
    font-size: 14px;
  }

  .title-center:last-of-type{
    font-size: 18px;
    font-weight: bold;
  }
}

/*list-halaman*/
.list-menu{
    width: 100%;
    max-width: 320px;
    background: #b300d8;
    border-radius: 14px;
    padding: 14px 18px;
    margin: 10px 0;
    cursor: pointer;

    display: flex;
    align-items: center;
    gap: 14px;

    /* efek timbul */
    box-shadow:
      0 10px 20px rgba(0,0,0,0.15),
      inset 0 1px 0 rgba(255,255,255,0.8);

    transition: all 0.25s ease;
  }

  .list-menu:hover{
    transform: translateY(-4px);
    box-shadow:
      0 16px 30px rgba(0,0,0,0.25);
  }

  .list-teks{
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .list-teks i{
    color: #ffffff;
    min-width: 28px;
    text-align: center;
  }

  /* mobile friendly */
  @media (max-width: 576px){
    .list-menu{
      max-width: 100%;
    }
  }

  .list-menu{
  transition: opacity 0.3s ease;
}

.list-menu[style*="pointer-events"]{
  opacity: 0.7;
}