/* Shared styles for all Legendary AI pages */

body {
    background-color: #0B0C15;
    color: white;
}

.glass-nav {
    background: rgba(11, 12, 21, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #6366f1;
    box-shadow: 0 10px 40px -10px rgba(99, 102, 241, 0.2);
}

.gradient-text {
    background: linear-gradient(to right, #ffffff, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blob {
    position: absolute;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
}

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.thinking-section {
    transition: all 0.3s ease;
}

.thinking-section:hover {
    background-color: rgba(99, 102, 241, 0.05);
}
