#cookie-banner { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 9999; background: #141620; border: 1px solid #2A2D3E; border-radius: 14px; box-shadow: 0 8px 32px rgba(0,0,0,0.5); max-width: 560px; width: calc(100% - 48px); padding: 20px 24px; transition: opacity 0.3s ease, transform 0.3s ease; }
#cookie-banner[aria-hidden="true"] { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(12px); }
#cookie-banner .cookie-inner { display: flex; flex-direction: column; gap: 16px; }
#cookie-banner .cookie-text { font-size: 14px; color: rgba(232,234,240,0.75); line-height: 1.6; margin: 0; }
#cookie-banner .cookie-text a { color: #E53935; }
#cookie-banner .cookie-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
#cookie-banner .btn-accept-all { flex: 1; min-width: 120px; display: inline-flex; align-items: center; justify-content: center; background: #E53935; color: #FFFFFF; padding: 11px 20px; border-radius: 8px; font-weight: 700; font-size: 14px; cursor: pointer; border: none; transition: background 0.2s; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; user-select: none; }
#cookie-banner .btn-accept-all:hover { background: #B71C1C; }
#cookie-banner .btn-accept-necessary { flex: 1; min-width: 120px; display: inline-flex; align-items: center; justify-content: center; background: transparent; color: rgba(232,234,240,0.6); padding: 11px 20px; border-radius: 8px; font-weight: 600; font-size: 14px; cursor: pointer; border: 1px solid rgba(232,234,240,0.18); transition: all 0.2s; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; user-select: none; }
#cookie-banner .btn-accept-necessary:hover { background: rgba(232,234,240,0.07); color: #E8EAF0; border-color: rgba(232,234,240,0.3); }
@media (max-width: 480px) {
  #cookie-banner { bottom: 0; left: 0; right: 0; transform: none; width: 100%; border-radius: 14px 14px 0 0; }
  #cookie-banner[aria-hidden="true"] { transform: translateY(12px); }
}
