/* Design System - MulinoTech */
body {
    background-color: #060608;
    color: #e5e1e5;
    overflow-x: hidden;
}

.glass-panel {
    background: rgba(11, 11, 26, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(240, 240, 245, 0.12);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.glow-cyan {
    box-shadow: 0 0 30px rgba(45, 212, 191, 0.2);
}

.glow-violet {
    box-shadow: 0 0 30px rgba(124, 106, 245, 0.2);
}

.text-glow-cyan {
    text-shadow: 0 0 10px rgba(45, 212, 191, 0.5);
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.card-3d-wrap {
    perspective: none !important;
}

.card-3d {
    transition: none !important;
    transform: none !important;
    transform-style: flat !important;
}

.btn-3d {
    transition: all 0.2s ease;
    position: relative;
    top: 0;
}

.btn-3d:active {
    top: 2px;
    transform: scale(0.98);
}

.mouse-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 106, 245, 0.15) 0%, rgba(45, 212, 191, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
}

.core-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.core-ring {
    position: absolute;
    border: 2px solid rgba(45, 212, 191, 0.3);
    border-radius: 50%;
    animation: rotate-core 10s linear infinite;
}

@keyframes rotate-core {
    from {
        transform: rotateX(60deg) rotateZ(0deg);
    }
    to {
        transform: rotateX(60deg) rotateZ(360deg);
    }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

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

spline-viewer {
    width: 100%;
    height: 100%;
    background: transparent !important;
    mask-image: linear-gradient(to bottom, black 0%, black 94%, transparent 94%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 94%, transparent 94%);
    pointer-events: none;
    opacity: 1 !important;
    transition: opacity 0.1s ease-in-out !important;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    animation: marquee 30s linear infinite;
}

#spline-viewer-container {
    position: relative;
    overflow: hidden;
}

.glow-shadow-primary {
    box-shadow: 0 0 30px rgba(124, 106, 245, 0.2);
}

.glow-shadow-cyan {
    box-shadow: 0 0 40px rgba(45, 212, 191, 0.15);
}

.parallax-bg {
    background-image: radial-gradient(circle at 50% 50%, #1c1b1e 0%, #131316 100%);
}

.neural-line {
    background: linear-gradient(90deg, transparent, #2DD4BF, transparent);
    height: 1px;
    width: 100%;
    opacity: 0.3;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}
