/* Syrolis Cookie Consent Banner — dark theme */
.privacy-consent {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 99999;
  max-width: 580px;
  width: calc(100% - 48px);
  padding: 16px 22px;
  background: #0E0E16;
  border: 1px solid rgba(255, 69, 0, 0.25);
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  flex-wrap: wrap;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.privacy-consent p {
  flex: 1 1 200px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #B0ADB8;
  margin: 0;
  min-width: 0;
}

.privacy-consent a {
  color: #FF4500;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-buttons button {
  padding: 9px 18px;
  border-radius: 7px;
  border: none;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

#acceptCookies {
  background: #FF4500;
  color: #fff;
}
#acceptCookies:hover {
  background: #FF6B35;
}

#declineCookies {
  background: transparent;
  border: 1px solid rgba(255,69,0,0.15);
  color: #787480;
}
#declineCookies:hover {
  border-color: #B0ADB8;
  color: #B0ADB8;
}

@media (max-width: 600px) {
  .privacy-consent {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 14px 18px;
    width: calc(100% - 24px);
  }
  .cookie-buttons {
    justify-content: center;
  }
  .cookie-buttons button {
    flex: 1;
    text-align: center;
  }
}