.cookie-consent {
  position: fixed;
  z-index: 100;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid rgba(52, 211, 153, .28);
  border-radius: 16px;
  background: rgba(5, 10, 8, .96);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .55);
  backdrop-filter: blur(18px);
}
.cookie-copy { max-width: 690px; }
.cookie-copy strong { color: #f4f8f6; font-size: 15px; }
.cookie-copy p { margin: 6px 0 0; color: #aab6b0; font-size: 13px; line-height: 1.55; }
.cookie-actions { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }
.cookie-actions a { margin-right: 4px; color: #9aa8a1; font-size: 12px; }
.cookie-actions button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 9px;
  color: #eaf2ee;
  background: rgba(255, 255, 255, .04);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.cookie-actions .cookie-accept { border-color: #10b981; color: #03110b; background: #10b981; }
.cookie-actions button:hover { transform: translateY(-1px); }
.cookie-settings-backdrop {
  position: fixed;
  z-index: 140;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(8px);
}
.cookie-settings-modal {
  position: relative;
  width: min(540px, 100%);
  padding: 28px;
  border: 1px solid rgba(52, 211, 153, .3);
  border-radius: 18px;
  background: #07100c;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .7);
}
.cookie-settings-modal > strong { color: #f4f8f6; font-size: 19px; }
.cookie-settings-text { margin: 12px 0 8px; color: #aab6b0; font-size: 14px; line-height: 1.6; }
.cookie-settings-status { margin: 0 0 22px; color: #34d399; font-size: 12px; }
.cookie-settings-modal .cookie-actions { justify-content: flex-end; }
.cookie-settings-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: #aab6b0;
  background: rgba(255, 255, 255, .05);
  font-size: 23px;
  cursor: pointer;
}
@media (max-width: 760px) {
  .cookie-consent { right: 10px; bottom: 10px; left: 10px; display: block; padding: 16px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; margin-top: 14px; }
  .cookie-actions a { grid-column: 1 / -1; }
  .cookie-actions button { padding: 0 10px; }
}
