body {
    font-family: 'Orbitron';
    overflow-x: hidden;
}
/* Custom Animation for Gradient Background */
@keyframes moveBackground {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

/* Apply the animation to background */
.animate-moveBackground {
    animation: moveBackground 10s linear infinite;
}


@keyframes glitch {
    0% { text-shadow: 3px 3px 0 #f0f, -3px -3px 0 #0ff; }
    1% { text-shadow: -3px -3px 0 #f0f, 3px 3px 0 #0ff; }
    2% { text-shadow: 3px -3px 0 #f0f, -3px 3px 0 #0ff; }
    3% { text-shadow: -3px 3px 0 #f0f, 3px -3px 0 #0ff; }
    4%, 5% { text-shadow: 3px 3px 0 #f0f, -3px -3px 0 #0ff; }
    6%, 100% { text-shadow: none; }
}

.glitch {
    position: relative;
    display: inline-block;
    color: #0ff;
    text-transform: uppercase;
    animation: glitch 10s infinite;
    text-shadow: 0 0 5px #0ff, 0 0 10px #0ff, 0 0 20px #0ff;
}

.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    color: #f0f;
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
    animation: glitch 10s infinite linear alternate-reverse;
}

.glitch::after {
    color: #0f0;
    animation: glitch 0.4s infinite linear alternate-reverse;
  }

.poop-effect {
    animation: popOut 3s ease-in-out infinite;
    transform-origin: center;
    display: inline-block;
  }
  
  /* Keyframes for pooping out effect */
@keyframes popOut {
    0% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
    50% {
        transform: scale(1.05) translateY(-1px);
        opacity: 0.5;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.cta-button{
    margin: 10px;
    padding: 15px 35px;
    background-color: #6200ea; /* Neon purple background */
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    font-size: 25px; /* Slightly smaller font */
    box-shadow: 0 0 15px #6200ea; /* Neon glow effect */
    transition: 0.3s ease-in-out; /* Smooth transition for hover effect */
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

  /* Hover Effect for All Buttons */
.cta-button:hover{
    background-color: #bb86fc;
    box-shadow: 0 0 25px #00ffcc;
}

  /* Focus Effect for All Buttons */
.cta-button:focus{
    outline: none;
    box-shadow: 0 0 10px 2px rgba(0, 255, 204, 0.8);
}

.features {
    padding: 50px 100px;
    text-align: center;
    position: relative;
  }
  
  .features-content {
    position: relative;
    width: 100%;
    margin: 0 auto;
  }
  
  /* Glassy Image */
  .glass-image-wrapper {
    border-radius: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    margin: 0 auto;
  }
  
  .glass-image-wrapper img {
      height: 376px;
  }
  
  /* Label Container Relative to Section */
  .feature-labels {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 100%;
    pointer-events: none; /* Allows clicks to pass through */
  }
  
  /* Individual Label Styles */
  .label {
    position: absolute;
    pointer-events: auto;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 16px;
    color: white;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 255, 153, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .label:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(0, 255, 153, 0.8);
  }
  
  /* Subtext under main text */
  .label .subtext {
    display: block;
    font-size: 13px;
    color: #ccc;
    margin-top: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .label:hover .subtext {
    opacity: 1;
  }
  
  /* SAME VISUAL POSITIONS */
  .label-1 { top: 4%; left: -36%; }
  .label-2 { top: 5%; right: -16%; }
  .label-3 { top: 29%; left: -32%; }
  .label-4 { top: 31%; right: -42%; }
  .label-5 { bottom: 33%; left: -16%; }
  .label-6 { bottom: 31%; right: -8%; }
  
  /* Text Block */
  .features-text {
    color: white;
    margin-top: -30px;
  }
  
  .features-text h2 {
    font-size: 40px;
    color: #00ff99;
    text-shadow: 0 0 10px #00ff99, 0 0 20px #00ff99, 0 0 30px #00ff99;
    margin-bottom:-10px;
  }
  
  .features-text p {
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
  }

@media (min-width: 1024px) {
    .group:hover .card:not(:hover) {
        backdrop-filter: blur(12px);
        opacity: 0.4;
        transition: all 0.3s ease-in-out;
    }
}


::-webkit-scrollbar {
    width: 10px; /* Width of the scrollbar */
  }
  
  ::-webkit-scrollbar-track {
    background: #121212; /* Dark background for scrollbar track */
  }
  
  ::-webkit-scrollbar-thumb {
    background: #B056C0; /* Neon purple for the thumb */
    border-radius: 10px; /* Rounded corners for thumb */
    box-shadow: 0 0 10px #B056C0; /* Glow effect */
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #00ff99; /* Neon green on hover */
    box-shadow: 0 0 15px #00ff99; /* Glow effect on hover */
  }
  
  ::-webkit-scrollbar-corner {
    background: #121212; /* Match background for scrollbar corner */
  }
