#privacy-popup { position: fixed; bottom: 0; left: 0; width: 320px; max-width: 90%; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: #fff; padding: 20px; box-shadow: 0 -2px 10px rgba(0,0,0,0.2); border-radius: 0 8px 0 0; font-family: Arial, sans-serif; font-size: 14px; line-height: 1.5; z-index: 99999; display: none; } #privacy-popup p { margin: 0 0 15px 0; } #privacy-popup a { color: #ffd700; text-decoration: underline; } #privacy-popup a:hover { color: #fff; } #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: all 0.3s; } #privacy-popup .accept-btn { background: #fff; color: #764ba2; font-weight: bold; } #privacy-popup .accept-btn:hover { background: #f0f0f0; } #privacy-popup .decline-btn { background: transparent; color: #fff; border: 1px solid #fff; } #privacy-popup .decline-btn:hover { background: rgba(255,255,255,0.1); } @media (max-width: 480px) { #privacy-popup { width: 100%; border-radius: 0; padding: 15px; } }