#privacy-popup { position: fixed; bottom: 0; left: 5%; right: 5%; width: 90%; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: #ffffff; padding: 20px; box-sizing: border-box; display: none; align-items: center; justify-content: space-between; z-index: 99999; border-radius: 8px 8px 0 0; box-shadow: 0 -2px 10px rgba(0,0,0,0.2); } #privacy-popup p { margin: 0; flex: 1; font-size: 14px; line-height: 1.4; } #privacy-popup a { color: #ffd700; text-decoration: underline; } #privacy-popup .btn-container { display: flex; gap: 10px; margin-left: 20px; } #privacy-popup button { background: rgba(255,255,255,0.2); color: #ffffff; border: 1px solid rgba(255,255,255,0.3); padding: 8px 20px; cursor: pointer; border-radius: 4px; font-size: 14px; transition: all 0.3s; } #privacy-popup button:hover { background: rgba(255,255,255,0.3); } #privacy-popup button:first-child { background: #ffffff; color: #667eea; border: none; } #privacy-popup button:first-child:hover { background: #f0f0f0; } @media (max-width: 768px) { #privacy-popup { flex-direction: column; text-align: center; } #privacy-popup .btn-container { margin: 15px 0 0 0; } }