.privacy-popup { position: fixed; bottom: 0; left: 50%; transform: translateX(-50%); width: 90%; max-width: 800px; background-color: #2c2c2c; color: #ffffff; padding: 20px; box-sizing: border-box; display: none; z-index: 9999; border-radius: 8px 8px 0 0; box-shadow: 0 -2px 10px rgba(0,0,0,0.3); } .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 a:hover { color: #6bb1ff; } .privacy-popup .btn-container { display: flex; gap: 10px; justify-content: flex-end; } .privacy-popup button { padding: 10px 20px; border: none; border-radius: 4px; font-size: 14px; cursor: pointer; transition: background-color 0.3s; } .privacy-popup .accept-btn { background-color: #4a9eff; color: #ffffff; } .privacy-popup .accept-btn:hover { background-color: #3a8eef; } .privacy-popup .decline-btn { background-color: #555555; color: #ffffff; } .privacy-popup .decline-btn:hover { background-color: #666666; } @media (max-width: 768px) { .privacy-popup { width: 100%; border-radius: 0; padding: 15px; } .privacy-popup .btn-container { flex-direction: column; } .privacy-popup button { width: 100%; } }