.privacy-consent-popup { position: fixed; bottom: 20px; right: 20px; max-width: 320px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 16px; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.3); z-index: 10001; display: none; font-family: Arial, sans-serif; font-size: 14px; line-height: 1.4; } .privacy-consent-popup p { margin: 0 0 12px 0; } .privacy-consent-popup a { color: #fff; text-decoration: underline; } .privacy-consent-popup a:hover { color: #f0f0f0; } .privacy-consent-buttons { display: flex; gap: 8px; justify-content: flex-end; } .privacy-consent-btn { padding: 8px 16px; border: none; border-radius: 4px; cursor: pointer; font-size: 13px; transition: opacity 0.2s; } .privacy-consent-accept { background: rgba(255,255,255,0.2); color: white; } .privacy-consent-decline { background: rgba(0,0,0,0.2); color: white; } .privacy-consent-btn:hover { opacity: 0.8; } @media (max-width: 480px) { .privacy-consent-popup { bottom: 10px; right: 10px; left: 10px; max-width: none; } .privacy-consent-buttons { flex-direction: column; } }