#selwyn-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #0d0c0c;
  border-top: 3px solid #1b3980;
  box-shadow: 0 -4px 32px rgba(0,0,0,.35);
  font-family: 'Inter', 'Sora', sans-serif;
  transform: translateY(100%);
  opacity: 0;
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .35s ease;
}

#selwyn-consent .sc-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}

#selwyn-consent .sc-text {
  flex: 1;
}

#selwyn-consent .sc-title {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 5px;
  letter-spacing: .01em;
}

#selwyn-consent .sc-body {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,.72);
  margin: 0;
}

#selwyn-consent .sc-body a {
  color: #ef7d00;
  text-decoration: none;
}

#selwyn-consent .sc-body a:hover {
  text-decoration: underline;
}

#selwyn-consent .sc-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}

#selwyn-consent .sc-btn {
  font-family: 'Inter', 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 4px;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: .02em;
  transition: background .18s, color .18s, border-color .18s;
}

#selwyn-consent .sc-reject {
  background: transparent;
  color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.3);
}

#selwyn-consent .sc-reject:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.55);
}

#selwyn-consent .sc-accept {
  background: #1b3980;
  color: #fff;
  border-color: #1b3980;
}

#selwyn-consent .sc-accept:hover {
  background: #1c4eae;
  border-color: #1c4eae;
}

@media (max-width: 680px) {
  #selwyn-consent .sc-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
  }

  #selwyn-consent .sc-actions {
    width: 100%;
  }

  #selwyn-consent .sc-btn {
    flex: 1;
    text-align: center;
  }
}
