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