
    .explore{
        background-color: rgba(0, 0, 0, 0.2);
        border-width: 0%;
        border-color: #000000;
        content: '';
        padding: 20px;
        width: 250px;
        min-width: 30%;
        overflow-x: hidden;
        overflow-y: auto;
        margin: 0%;
        justify-content: center;
        background-position: center;
        border-radius: 5px;
        font-weight: lighter;
        font-family: system-ui, -apple-system, BlinkMacGeeSystemFont, "Segoe UI", Roboto, sans-serif;
        text-decoration: none;
        transition: color 0.2s ease;
        cursor: pointer;
        scrollbar-width: none;
        transition: 0.3s ease;
    }
        @media (max-width:768px) {
            .explore{
                width: 200px;
                height: 50px;
                max-height: fit-content;
                padding: 10px;
            }
              .explore a{
                font-size: 10px;
                padding: 10px;
              }
        }
        .explore:hover::before{
            opacity: 1;
            animation: electric-flow 1.2s linear infinite;
            background: linear-gradient(45deg, #00eaff, #0077ff, #00eaff);
            background-size: 300%;
            filter: blur(8px);
            z-index: -1;
            animation: electric 1.5s linear infinite;
        }
        .explore a:hover{
            color: #ff0000;
            text-shadow: 0 0 15px #ff0000, 0 0 30px #ff0000, 0 0 60px #ff0000;
            border-width: 2px;
            transform: scale(1.05);
            text-decoration: none;
            font-weight: bold;
            font-family: system-ui, -apple-system, BlinkMacGeeSystemFont, "Segoe UI", Roboto, sans-serif;
            transition: transform 0.4s ease, text-shadow 0.5s ease-in-out, color 0.4s ease;
        }
        .explore a{
            color: #ffffff;
            text-shadow:0 0 5px #fff,0 0 10px #fff,0 0 20px #00f,0 0 40px #00f,0 0 80px #00f,0 0 90px #00f,0 0 100px #00f,0 0 150px #00f;
            font-size: 18px;
            width: 100%;
            text-decoration: none;
        }
            .explore:hover{
                color: #ff0000;
                box-shadow: 0 0 15px #ff0000, 0 0 30px #ff0000, 0 0 60px #ff0000;
                background-color: rgba(0, 0, 0, 0.5);
                border-width: 2px;
                border-color: red;
                transform: scale(1.05);
                text-decoration: none;
                font-weight: bold;
                transition: transform 0.4s ease;
                z-index: 1;
            }

.explore::before,
.explore::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  z-index: -1;
  transition: 0.3s ease;
}

/* glowing animated border */
.explore::before {
  background: linear-gradient(45deg, #00eaff, #0077ff, #00eaff);
  background-size: 300%;
  filter: blur(8px);
  opacity: 0;
  animation: electric 1.5s linear infinite;
}

/* glow pulse inside */
.explore::after {
  background: rgba(0, 234, 255, 0.1);
  opacity: 0;
}

/* hover animation */
.explore:hover {
  color: #0a0a0f;
  border-color: transparent;
  box-shadow: 0 0 25px #00eaff, 0 0 60px rgba(0, 234, 255, 0.4);
  transform: scale(1.05);
}

.explore:hover::before {
  opacity: 1;
}

.explore:hover::after {
  opacity: 1;
}

    /* Electric pulse animation */
@keyframes electric {
  0% { background-position: 0 0; }
  50% { background-position: 300% 0; }
  100% { background-position: 0 0; }
}