body {
    cursor: none;
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0B132B; 
}
::-webkit-scrollbar-thumb {
    background-color: #FCA311; 
    border-radius: 10px;
    border: 2px solid #0B132B;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #e08e0b;
}

.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #FCA311;
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(252, 163, 17, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

a:hover ~ .cursor-outline, 
button:hover ~ .cursor-outline {
    width: 50px;
    height: 50px;
    background-color: rgba(252, 163, 17, 0.1);
}

#cart-path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
}
#node1, #node2, #node3 {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
}

.tech-grid {
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(58, 80, 107, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(58, 80, 107, 0.1) 1px, transparent 1px);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse-slow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.05); }
}

.animate-pulse-slow {
    animation: pulse-slow 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.scroll-animate, .scroll-animate-stagger {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.is-visible {
    opacity: 1;
    transform: translateY(0);
}