/* Geometric Cursor Background Styles */
.geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #02042a 0%, #040810 50%, #02042a 100%);
    z-index: -1;
}

/* Floating geometric shapes */
.geo-shape {
    position: absolute;
    opacity: 0.1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.geo-circle {
    border-radius: 50%;
    border: 2px solid #61cea6;
}

.geo-square {
    border: 2px solid #61cea6;
    transform: rotate(45deg);
}

.geo-triangle {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid #61cea6;
    opacity: 0.15;
}

.geo-hexagon {
    width: 40px;
    height: 23px;
    background: #61cea6;
    position: relative;
    margin: 11.5px 0;
    opacity: 0.1;
}

.geo-hexagon:before,
.geo-hexagon:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
}

.geo-hexagon:before {
    bottom: 100%;
    border-bottom: 11.5px solid #61cea6;
}

.geo-hexagon:after {
    top: 100%;
    border-top: 11.5px solid #61cea6;
}

/* Grid lines */
.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: 
        linear-gradient(rgba(119, 234, 43, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(110, 234, 43, 0.3) 1px, transparent 1px);
    background-size: 50px 50px;
    transition: transform 0.1s ease-out;
}

/* Particle system */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #61cea6;
    border-radius: 50%;
    opacity: 0.6;
    transition: all 0.2s ease-out;
}

/* Connection lines */
.connection-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, #61cea6, transparent);
    opacity: 0.2;
    transition: all 0.3s ease-out;
}

/* Tech circuit patterns */
.circuit-pattern {
    position: absolute;
    border: 1px solid #61cea6;
    opacity: 0.1;
    transition: all 0.4s ease-out;
}

.circuit-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #61cea6;
    border-radius: 50%;
    opacity: 0.3;
    transition: all 0.2s ease-out;
}

/* Animated shapes on hover */
.animated-shape {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Pulse effect */
.pulse-shape {
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.3; }
}

/* Enhanced cursor effects */
.geo-shape:hover {
    opacity: 0.4 !important;
    transform: scale(1.3) !important;
}

.particle:hover {
    opacity: 1 !important;
    transform: scale(2) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .grid-lines {
        background-size: 30px 30px;
    }
    
    .geo-shape {
        opacity: 0.05;
    }
    
    .particle {
        opacity: 0.4;
    }
}