/* Cookie Consent Banner */
.cc-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 0 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
}
.cc-banner.cc-visible {
  transform: translateY(0);
  opacity: 1;
}
.cc-banner.cc-hiding {
  transform: translateY(100%);
  opacity: 0;
}
.cc-inner {
  max-width: 1200px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
  background: rgba(12, 22, 36, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(95, 209, 196, 0.15);
  border-radius: 16px;
  box-shadow:
    0 -4px 30px rgba(4, 12, 22, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}
.cc-text {
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(230, 238, 246, 0.78);
}
.cc-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cc-btn {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 9px 20px;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
  font-family: inherit;
}
.cc-btn-accept {
  background: #5fd1c4;
  color: #0b1b2c;
  box-shadow: 0 8px 24px rgba(95, 209, 196, 0.25);
}
.cc-btn-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(95, 209, 196, 0.4);
}
.cc-btn-reject {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(230, 238, 246, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.cc-btn-reject:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 768px) {
  .cc-inner {
    flex-direction: column;
    gap: 14px;
    padding: 16px 18px;
    margin: 0 8px 10px;
    border-radius: 14px;
  }
  .cc-text {
    text-align: center;
    font-size: 0.84rem;
  }
  .cc-actions {
    width: 100%;
    justify-content: center;
  }
  .cc-btn {
    flex: 1;
    justify-content: center;
    padding: 10px 16px;
  }
}
