/* Background styling untuk Zamzim */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #000;
    overflow: hidden;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,11,29,0.9) 0%, rgba(10,10,10,0.95) 100%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/bg_zamzim_3.webp');
    background-size: cover;
    background-position: center;
    opacity: 1;
}

/* SVG elements removed to focus on clear background image */

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .neon-circle {
        width: 200px;
        height: 200px;
    }
    
    .bg-image {
        background-position: center 30%;
    }
}