/* Machine Style Glow Button */
.glow-button-main {
    position: relative;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 99px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

.button-container-main {
    position: relative;
    background: #0f0f0f;
    border-radius: 99px;
    padding: 10px 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Machine Texture Overlay */
.button-container-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(0deg, transparent 24%, rgba(109, 247, 128, 0.03) 25%, rgba(109, 247, 128, 0.03) 26%, transparent 27%, transparent 74%, rgba(109, 247, 128, 0.03) 75%, rgba(109, 247, 128, 0.03) 76%, transparent 77%, transparent), linear-gradient(90deg, transparent 24%, rgba(109, 247, 128, 0.03) 25%, rgba(109, 247, 128, 0.03) 26%, transparent 27%, transparent 74%, rgba(109, 247, 128, 0.03) 75%, rgba(109, 247, 128, 0.03) 76%, transparent 77%, transparent);
    background-size: 4px 4px;
    opacity: 0.5;
    z-index: -1;
}

/* Text Styling */
.glow-button-text {
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

/* Hover State */
.glow-button-main:hover .glow-button-text {
    color: #6df780;
    text-shadow: 0 0 10px rgba(109, 247, 128, 0.5);
}

.glow-button-main:hover {
    box-shadow: 0 0 20px rgba(109, 247, 128, 0.3);
    transform: translateY(-2px);
}

/* Animated Border Glow */
.glow-effect-wrapper {
    position: absolute;
    position: absolute;
    top: -50%;
    left: -29%;
    width: 159%;
    height: 267%;
    background: conic-gradient(from 0deg, transparent 0deg, #6df780fc 90deg, transparent 180deg);
    animation: rotate-border 4s linear infinite;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-button-main:hover .glow-effect-wrapper {
    opacity: 1;
}

@keyframes rotate-border {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Inner Glow Pulse */
.glow-wrapper {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(109, 247, 128, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.glow-button-main:hover .glow-wrapper {
    opacity: 1;
}

/* Lottie/Star Replacements - Hide original complexities for cleaner CSS solution */
.lottie,
.star,
.glow-circle {
    display: none !important;
}