/* Ultra-Modern Section Dividers */
.section-divider {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
    background: #0a0a14;
    z-index: 1;
    --gradient-color-1: var(--primary);
    --gradient-color-2: var(--accent);
    --gradient-color-3: var(--primary-light);
}

.divider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.divider-line {
    position: absolute;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--gradient-color-1) 20%, 
        var(--gradient-color-2) 50%, 
        var(--gradient-color-1) 80%, 
        transparent 100%);
    background-size: 200% 100%;
    animation: lineGradient 6s ease infinite;
}

.divider-orb {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--gradient-color-3), var(--gradient-color-2));
    box-shadow: 0 0 30px rgba(110, 69, 226, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: floatOrb 6s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.divider-orb::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 70% 70%, var(--gradient-color-1), transparent 70%);
    animation: pulseOrb 4s ease-in-out infinite;
}

.divider-orb::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: url('../assets/images/LogoPetgasCoinTransparent.png') center/50% no-repeat;
    opacity: 0.9;
    filter: brightness(1.2);
}

.divider-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gradient-color-3);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 4s ease-in-out infinite;
}

@keyframes lineGradient {
    0% { background-position: 100% 50%; }
    100% { background-position: -100% 50%; }
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 0 30px rgba(110, 69, 226, 0.6); }
    50% { transform: translateY(-10px) scale(1.05); box-shadow: 0 10px 40px rgba(0, 198, 255, 0.8); }
}

@keyframes pulseOrb {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 0.9; }
}

@keyframes floatParticle {
    0% { transform: translate(0, 0) scale(1); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { 
        transform: translate(
            calc((Math.random() - 0.5) * 200px), 
            calc((Math.random() - 1) * 100px)
        ) scale(0.5); 
        opacity: 0; 
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-divider {
        height: 80px;
    }
    
    .divider-orb {
        width: 60px;
        height: 60px;
    }
}
