/* =============================================
   Brandancy Cookie Consent Banner
   ============================================= */

#consent-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: rgba(10, 8, 20, 0.97);
  border-top: 1px solid rgba(124, 92, 252, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px 24px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 32px rgba(124, 92, 252, 0.15);
}

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

.consent-text {
  flex: 1;
  min-width: 0;
}

.consent-text p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Inter', -apple-system, sans-serif;
}

.consent-text a {
  color: #a78bfa;
  text-decoration: none;
  border-bottom: 1px solid rgba(167, 139, 250, 0.3);
  transition: color 0.2s, border-color 0.2s;
}

.consent-text a:hover {
  color: #7c5cfc;
  border-color: rgba(124, 92, 252, 0.6);
}

.consent-text strong {
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
}

.consent-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}

#consent-accept {
  background: linear-gradient(135deg, #7c5cfc, #a78bfa);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', -apple-system, sans-serif;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}

#consent-accept:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

#consent-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Inter', -apple-system, sans-serif;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

#consent-decline:hover {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Mobile */
@media (max-width: 600px) {
  #consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 14px;
  }

  .consent-buttons {
    width: 100%;
  }

  #consent-accept {
    flex: 1;
    text-align: center;
  }

  #consent-decline {
    flex: 1;
    text-align: center;
  }
}
