


.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 140%);
  width: min(640px, calc(100vw - 32px));
  background: linear-gradient(145deg, #101e38, #0d1a30);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  z-index: 8500;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.cookie-banner.show { transform: translate(-50%, 0); }
.cookie-banner-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(41,121,255,0.15);
  color: #00e5ff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.cookie-banner-text {
  flex: 1;
  display: flex; flex-direction: column; gap: 4px;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  line-height: 1.55;
}
.cookie-banner-text strong { color: white; font-size: 0.92rem; }
.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 9px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.cookie-btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.16);
}
.cookie-btn-ghost:hover { border-color: rgba(255,255,255,0.4); color: white; }
.cookie-btn-info {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.1);
}
.cookie-btn-info:hover { background: rgba(255,255,255,0.14); }
.cookie-btn-accept {
  background: linear-gradient(135deg, #2979ff, #00b8d4);
  color: white;
  border: 1px solid transparent;
  box-shadow: 0 6px 18px rgba(41,121,255,0.35);
}
.cookie-btn-accept:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(41,121,255,0.45); }


.cookie-float-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, #101e38, #0d1a30);
  border: 1px solid rgba(255,255,255,0.12);
  color: #00e5ff;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  z-index: 8400;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cookie-float-btn:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 16px 36px rgba(0,0,0,0.3); }


.cookie-modal-overlay, .redirect-modal-overlay { z-index: 9100; }
.cookie-modal, .redirect-modal { max-width: 480px; }
.cookie-modal-body, .redirect-modal-body {
  padding: 44px 36px 36px;
  color: rgba(255,255,255,0.85);
}
.cookie-modal-icon, .redirect-modal-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(41,121,255,0.15);
  color: #00e5ff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.cookie-modal-body h3, .redirect-modal-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.cookie-modal-lead {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 22px;
}
.cookie-modal-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
  list-style: none;
}
.cookie-modal-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.cookie-modal-list li i {
  width: 34px; height: 34px;
  flex-shrink: 0;
  border-radius: 9px;
  background: rgba(255,255,255,0.06);
  color: #2979ff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  margin-top: 2px;
}
.cookie-modal-list li strong { display: block; color: white; font-size: 0.88rem; margin-bottom: 2px; }
.cookie-modal-list li span { display: block; color: rgba(255,255,255,0.5); font-size: 0.8rem; line-height: 1.5; }
.cookie-modal-actions, .redirect-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}


.redirect-modal-body p { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 12px; }
.redirect-modal-url {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: monospace;
  font-size: 0.8rem;
  color: #00e5ff;
  word-break: break-all;
  margin-bottom: 26px;
}

@media (max-width: 640px) {
  .cookie-banner { flex-direction: column; padding: 20px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}


.partial-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
  padding: 4rem;
}
.loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
}
.spinner {
  width: 32px; height: 32px;
  border: 2.5px solid rgba(0,0,0,0.08);
  border-top-color: #2979FF;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }


.empty-state {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--muted);
}
.empty-state h3 { font-size: 1.1rem; font-weight: 600; color: var(--ink); margin-bottom: 0.5rem; }
