#cookie-consent-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .cookie-modal-backdrop { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); backdrop-filter: blur(5px); } .cookie-modal-content { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); background-color: #282c34; color: #e0e0e0; border-radius: 12px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); padding: 30px; max-width: 500px; width: 90%; box-sizing: border-box; display: flex; flex-direction: column; animation: fadeIn 0.3s ease-out; } @keyframes fadeIn { from { opacity: 0; transform: translate(-50%, 20px); } to { opacity: 1; transform: translate(-50%, 0); } } .cookie-modal-title { font-size: 1.8em; margin-top: 0; margin-bottom: 15px; color: #61dafb; text-align: center; } .cookie-modal-description { font-size: 1em; line-height: 1.6; margin-bottom: 25px; text-align: center; } .cookie-privacy-link { color: #61dafb; text-decoration: none; font-weight: bold; } .cookie-privacy-link:hover { text-decoration: underline; } .cookie-modal-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 20px; } .cookie-btn { padding: 12px 25px; border: none; border-radius: 8px; font-size: 1em; cursor: pointer; transition: all 0.2s ease; font-weight: bold; } .cookie-btn-primary { background-color: #61dafb; color: #282c34; } .cookie-btn-primary:hover { background-color: #21a1f1; box-shadow: 0 4px 15px rgba(97, 218, 251, 0.4); } .cookie-btn-secondary { background-color: #444; color: #e0e0e0; border: 1px solid #555; } .cookie-btn-secondary:hover { background-color: #555; border-color: #666; } .cookie-settings-view { margin-top: 20px; } .cookie-category { background-color: #3a3f4a; border-radius: 8px; padding: 15px; margin-bottom: 15px; border: 1px solid #4a4f5a; } .cookie-category h3 { margin: 0; font-size: 1.2em; color: #e0e0e0; flex-grow: 1; margin-left: 10px; } .cookie-category p { font-size: 0.9em; line-height: 1.5; color: #b0b0b0; margin-top: 10px; } .cookie-category-header { display: flex; align-items: center; margin-bottom: 10px; } .cookie-toggle-switch { position: relative; display: inline-block; width: 45px; height: 25px; } .cookie-toggle-switch input { opacity: 0; width: 0; height: 0; } .cookie-slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: 0.4s; border-radius: 25px; } .cookie-slider:before { position: absolute; content: ""; height: 19px; width: 19px; left: 3px; bottom: 3px; background-color: white; transition: 0.4s; border-radius: 50%; } input:checked + .cookie-slider { background-color: #61dafb; } input:focus + .cookie-slider { box-shadow: 0 0 1px #61dafb; } input:checked + .cookie-slider:before { transform: translateX(20px); } input:disabled + .cookie-slider { background-color: #555; cursor: not-allowed; } input:disabled + .cookie-slider:before { background-color: #888; } @media (max-width: 768px) { .cookie-modal-content { max-width: 95%; padding: 20px; bottom: 10px; } .cookie-modal-title { font-size: 1.5em; } .cookie-modal-description { font-size: 0.9em; } .cookie-btn { width: 100%; padding: 10px 20px; } .cookie-modal-actions { flex-direction: column; } .cookie-category h3 { font-size: 1.1em; } .cookie-category p { font-size: 0.85em; } } @media (min-width: 769px) and (max-width: 1024px) { .cookie-modal-content { max-width: 600px; } }