/* NM Particle Cloud Style v7.0 (Fixed Button & Neon) */

.nm-particle-wrapper {
    width: 100%;
    height: 100%;
    min-height: 400px;
    position: relative !important; /* Kluczowe dla pozycjonowania przycisku */
    overflow: hidden;
    background-color: transparent; 
}

.nm-three-canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

/* --- PRZYCISK AUDIO (NEON) --- */
.nm-audio-toggle {
    /* Reset stylów przeglądarki/motywu */
    background: transparent !important;
    border-width: 2px !important;
    border-style: solid !important;
    /* Kolory są nadawane inline przez PHP, tu tylko fallback */
    padding: 0 !important;
    margin: 0 !important;
    
    /* Kształt i rozmiar */
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important; /* Idealne kółko */
    
    /* Pozycjonowanie */
    position: absolute !important;
    z-index: 100; /* Nad canvasem */
    cursor: pointer;
    
    /* Wycentrowanie ikony */
    display: flex !important;
    align-items: center;
    justify-content: center;
    
    font-size: 20px !important;
    line-height: 1 !important;
    transition: all 0.3s ease;
}

/* Efekt Hover - Powiększenie i mocniejszy neon */
.nm-audio-toggle:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.1) !important; /* Delikatne tło po najechaniu */
}

/* --- POZYCJE PRZYCISKU --- */
.nm-pos-top-left {
    top: 20px;
    left: 20px;
    bottom: auto;
    right: auto;
}

.nm-pos-top-right {
    top: 20px;
    right: 20px;
    bottom: auto;
    left: auto;
}

.nm-pos-bottom-left {
    bottom: 20px;
    left: 20px;
    top: auto;
    right: auto;
}

.nm-pos-bottom-right {
    bottom: 20px;
    right: 20px;
    top: auto;
    left: auto;
}

/* Ikony */
.nm-icon-play { 
    margin-left: 3px; /* Optyczna korekta trójkąta */ 
}