#privacy-popup { position: fixed; bottom: 0; left: 0; width: 90%; max-width: 400px; background: linear-gradient(45deg, #ff7e5f, #feb47b); padding: 15px; box-sizing: border-box; color: #fff; display: flex; flex-direction: column; align-items: flex-start; z-index: 9999; } #privacy-popup a { color: #ffff00; text-decoration: underline; } #privacy-popup .buttons { margin-top: 10px; display: flex; gap: 10px; } #privacy-popup button { background: rgba(0,0,0,0.2); border: none; color: #fff; padding: 8px 12px; cursor: pointer; } @media(min-width: 768px) { #privacy-popup { width: 60%; max-width: 500px; flex-direction: row; justify-content: space-between; } }