/* Background Effects System */

.bg-effects-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
    background: #000;
}

/* Particles Canvas */
#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

/* 3D Floating Icons */
.floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    opacity: 0.15; /* Subtle */
    filter: blur(2px) drop-shadow(0 0 15px rgba(255, 204, 0, 0.2));
    animation: floatAround 20s infinite linear;
    transition: opacity 1s ease;
}

.floating-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes floatAround {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, 30px) rotate(90deg); }
    50% { transform: translate(100px, 0px) rotate(180deg); }
    75% { transform: translate(50px, -30px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

/* Gradient Glows */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.05) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    animation: glowMove 30s infinite alternate ease-in-out;
}

@keyframes glowMove {
    0% { transform: translate(-20%, -20%); }
    100% { transform: translate(80%, 80%); }
}

/* Section Specific Overlays */
.section-bg-decorator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}
