/* Custom styles for Guangxi Bocai Zhigu Consulting Co., Ltd. */

/* Font classes */
.font-geist-mono {
    font-family: monospace;
}

/* Text gradient */
.text-gradient {
    background: linear-gradient(90deg, #00e6a1, #164ecf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Make images non-draggable */
img {
    -webkit-user-drag: none;
    user-select: none;
}

/* Prevent text selection */
.no-select {
    user-select: none;
}

/* Focus styles */
:focus {
    outline: none;
}

button:focus, 
a:focus {
    box-shadow: 0 0 0 2px rgba(0, 230, 161, 0.3);
}

/* Custom form element focus */
input:focus, 
textarea:focus, 
select:focus {
    border-color: #00e6a1;
    box-shadow: 0 0 0 2px rgba(0, 230, 161, 0.2);
    outline: none;
}
