/* --- GLOBAL FLOATING CARD MODIFIERS --- */
.poll-container, .meth-card {
    /* 0.75 alpha provides better readability than 0.7 when sitting over moving neon blobs */
    background: rgba(255, 255, 255, 0.75) !important; 
    
    /* saturate(160%) makes the background colors 'pop' as they pass behind the glass */
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    
    /* Tell the browser to prepare a GPU layer for these floating elements */
    will-change: transform, opacity;
}

/* Dark Mode Overrides */
body.dark-mode .poll-container, 
body.dark-mode .meth-card {
    /* Slightly more opaque in dark mode to prevent text from washing out */
    background: rgba(15, 23, 42, 0.85) !important; 
    /* A subtle 'inner glow' or border helps dark glass stand out on dark backgrounds */
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}