.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.72rem;
  line-height: 1.35;
  color: #c9d1d9;
  background: rgba(13, 17, 23, 0.94);
  border-top: 1px solid #30363d;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
}

.cookie-consent__text {
  margin: 0;
  flex: 1 1 14rem;
  max-width: 52rem;
}

.cookie-consent__link {
  color: #58a6ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent__link:hover {
  color: #79b8ff;
}

.cookie-consent__actions {
  display: flex;
  flex-shrink: 0;
  gap: 0.4rem;
}

.cookie-consent__btn {
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  border: 1px solid #30363d;
  background: #21262d;
  color: #e6edf3;
  font: inherit;
  font-size: 0.72rem;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-consent__btn:hover {
  background: #30363d;
}

.cookie-consent__btn--accept {
  background: #238636;
  border-color: #2ea043;
  color: #fff;
  min-width: 3.5rem;
}

.cookie-consent__btn--accept:hover {
  background: #2ea043;
}

@media (max-width: 480px) {
  .cookie-consent {
    padding: 0.5rem 0.65rem;
    font-size: 0.68rem;
  }

  .cookie-consent__actions {
    width: 100%;
    justify-content: flex-end;
  }
}
