#privacy-consent { position: fixed; bottom: 0; left: 50%; transform: translateX(-50%); width: 90%; max-width: 600px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 20px; box-sizing: border-box; border-radius: 15px 15px 0 0; box-shadow: 0 -4px 20px rgba(0,0,0,0.3); z-index: 10001; display: none; margin: 0 13px; } #privacy-consent p { margin: 0 0 15px 0; font-size: 14px; line-height: 1.4; } #privacy-consent a { color: #ffd700; text-decoration: underline; } #privacy-consent a:hover { color: #fff; } .consent-buttons { display: flex; gap: 10px; justify-content: center; } .consent-buttons button { flex: 1; padding: 12px 20px; border: none; border-radius: 25px; font-weight: bold; cursor: pointer; transition: all 0.3s ease; font-size: 14px; } .accept-btn { background: #4CAF50; color: white; } .accept-btn:hover { background: #45a049; transform: translateY(-2px); } .decline-btn { background: #f44336; color: white; } .decline-btn:hover { background: #da190b; transform: translateY(-2px); } @media (max-width: 480px) { #privacy-consent { width: calc(100% - 26px); padding: 15px; } .consent-buttons { flex-direction: column; } #privacy-consent p { font-size: 13px; } }