/* NeonaSphera cookie consent banner — dark theme, purple accents */
.na-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  background: rgba(10, 10, 15, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(206, 79, 205, 0.35);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
  font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.na-cookie-banner[hidden] {
  display: none !important;
}

.na-cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
}

.na-cookie-banner__text {
  flex: 1;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #d1d5db;
}

.na-cookie-banner__text a {
  color: #CE4FCD;
  font-weight: 600;
  text-decoration: none;
}

.na-cookie-banner__text a:hover {
  text-decoration: underline;
}

.na-cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.na-cookie-banner__btn {
  padding: 10px 24px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.na-cookie-banner__btn--accept {
  color: #fff;
  border: 2px solid transparent;
  background: linear-gradient(45deg, #CE4FCD, #D65BD8, #B22DB1, #8FB8E8, #B22DB1, #CE4FCD);
  background-size: 400% 400%;
  box-shadow: 0px 2px 18px 0px rgba(206, 79, 205, 0.45);
}

.na-cookie-banner__btn--accept:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 25px 0px rgba(206, 79, 205, 0.5);
}

.na-cookie-banner__btn--reject {
  background: transparent;
  color: #CE4FCD;
  border: 2px solid #B22DB1;
}

.na-cookie-banner__btn--reject:hover {
  background: rgba(206, 79, 205, 0.12);
}

@media (max-width: 560px) {
  .na-cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 14px;
  }

  .na-cookie-banner__actions {
    flex-direction: column-reverse;
    gap: 8px;
  }

  .na-cookie-banner__btn {
    width: 100%;
    text-align: center;
    padding: 12px 24px;
    min-height: 48px;
  }
}
