.privacy-popup { position: fixed; bottom: 20px; right: 20px; max-width: 350px; background-color: #2c2c2c; color: #ffffff; padding: 20px; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.3); z-index: 10000; display: none; } .privacy-popup p { margin: 0 0 15px 0; font-size: 14px; line-height: 1.5; } .privacy-popup a { color: #4a9eff; text-decoration: underline; } .privacy-popup .btn-container { display: flex; gap: 10px; } .privacy-popup button { flex: 1; padding: 10px 20px; border: none; border-radius: 4px; font-size: 14px; cursor: pointer; transition: opacity 0.2s; } .privacy-popup button:hover { opacity: 0.9; } .privacy-popup .accept-btn { background-color: #4a9eff; color: #ffffff; } .privacy-popup .decline-btn { background-color: #555555; color: #ffffff; } @media (max-width: 480px) { .privacy-popup { bottom: 0; right: 0; left: 0; max-width: 100%; border-radius: 0; border-top-left-radius: 8px; border-top-right-radius: 8px; } }