/* ═══ KVKK COOKIE CONSENT BANNER ═══════════════════════════ */
#dp-cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(5, 8, 15, 0.97);
  border-top: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 16px 24px;
}
#dp-cookie-banner.dp-cb--visible {
  transform: translateY(0);
}
.dp-cb__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.dp-cb__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dp-cb__text strong {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.9);
}
.dp-cb__text span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.dp-cb__link {
  color: #00D4FF;
  text-decoration: none;
}
.dp-cb__link:hover { text-decoration: underline; }
.dp-cb__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.dp-cb__btn {
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
  border: none;
}
.dp-cb__btn:hover { opacity: 0.82; }
.dp-cb__btn--primary {
  background: #0A5FFF;
  color: white;
}
.dp-cb__btn--outline {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.15);
}
@media (max-width: 640px) {
  .dp-cb__inner { flex-direction: column; align-items: flex-start; }
  .dp-cb__actions { width: 100%; }
  .dp-cb__btn { flex: 1; text-align: center; }
}
