/* ============================================================
   COOKIE CONSENT BANNER — GDPR / TKG 2021 / ePrivacy
   ============================================================ */

.cc-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: rgba(18, 18, 22, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px 24px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #e0e0e0;
  font-size: 14px;
  line-height: 1.5;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.cc-banner.cc-visible {
  transform: translateY(0);
}

.cc-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cc-banner__text {
  flex: 1 1 400px;
}

.cc-banner__text a {
  color: #FF2883;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cc-banner__text a:hover {
  color: #ff5ca0;
}

.cc-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cc-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 1.4;
}

.cc-btn:focus-visible {
  outline: 2px solid #FF2883;
  outline-offset: 2px;
}

.cc-btn--accept {
  background: #FF2883;
  color: #fff;
}

.cc-btn--accept:hover {
  background: #e6206f;
}

.cc-btn--essential {
  background: transparent;
  color: #e0e0e0;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.cc-btn--essential:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

/* Mobile */
@media (max-width: 600px) {
  .cc-banner {
    padding: 16px;
  }

  .cc-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cc-banner__actions {
    flex-direction: column;
  }

  .cc-btn {
    text-align: center;
    width: 100%;
  }
}
