#thyrn-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 999999;
  background: #0A0A14;
  border-top: 1px solid rgba(212, 168, 67, 0.3);
  padding: 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
}
#thyrn-consent-banner .tc-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
#thyrn-consent-banner .tc-text {
  color: #F5F6FA;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  flex: 1;
  min-width: 240px;
}
#thyrn-consent-banner .tc-text a {
  color: #D4A843;
  text-decoration: underline;
}
#thyrn-consent-banner .tc-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
#thyrn-consent-banner .tc-btn {
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}
#thyrn-consent-banner .tc-decline {
  background: transparent;
  color: #F5F6FA;
  border: 1px solid rgba(255,255,255,0.2);
}
#thyrn-consent-banner .tc-decline:hover {
  border-color: rgba(255,255,255,0.4);
}
#thyrn-consent-banner .tc-accept {
  background: #D4A843;
  color: #0A0A14;
}
#thyrn-consent-banner .tc-accept:hover {
  background: #E5BC5C;
}
@media (max-width: 480px) {
  #thyrn-consent-banner .tc-inner { flex-direction: column; align-items: stretch; }
  #thyrn-consent-banner .tc-actions { justify-content: stretch; }
  #thyrn-consent-banner .tc-btn { flex: 1; }
}
