.cookie-banner { display: none; position: fixed; bottom: 0; left: 0; right: 0; background-color: #0a0e27; border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 16px 20px; z-index: 200; box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3); }
.cookie-banner-visible { display: block; }
.cookie-banner .cookie-banner-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.cookie-banner .cookie-banner-text { font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, 0.7); }
.cookie-banner .cookie-banner-text-link { color: #1559ed; text-decoration: underline; }
.cookie-banner .cookie-banner-actions { display: flex; gap: 10px; }
.cookie-banner .cookie-banner-accept { font-size: 14px; font-weight: 600; color: #ffffff; background-color: #1559ed; padding: 10px 24px; border-radius: 6px; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 2px 8px rgba(21, 89, 237, 0.3); }
.cookie-banner .cookie-banner-accept:hover { background-color: #0d47c4; }
.cookie-banner .cookie-banner-reject { font-size: 14px; font-weight: 500; color: rgba(255, 255, 255, 0.5); background-color: rgba(255, 255, 255, 0.08); padding: 10px 20px; border-radius: 6px; cursor: pointer; transition: color 0.3s ease; border: 1px solid rgba(255, 255, 255, 0.1); }
.cookie-banner .cookie-banner-reject:hover { color: rgba(255, 255, 255, 0.85); }
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .cookie-banner .cookie-banner-text { flex: 1; margin-right: 20px; }
}
