.scb-banner { position: fixed; left: 0; right: 0; bottom: 0; background-color: rgba(68,68,66,1); color: #fff; z-index: 999999; padding: 16px 18px; text-align: center; width: 100%; font-size: 0.75rem; opacity: 0; transition: opacity 800ms ease; }
.scb-banner.is-visible { opacity: 1; }
.scb-banner.is-hiding { opacity: 0; }
.scb-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 16px; align-items: center; justify-content: space-between; }
.scb-text { line-height: 1.35; flex: 1 1 auto; min-width: 0; }
.scb-text a { color: #fff; text-decoration: underline; }
.scb-close{ position: absolute; top: 10px; right: 14px; background: transparent; border: none; color: rgba(255,255,255,0.65); font-size: 26px; line-height: 1; cursor: pointer; padding: 6px 8px; }
.scb-close:hover { color: rgba(255,255,255,0.95); }

@media (max-width: 768px){
  .scb-banner { padding: 14px 14px 14px 14px; }
  .scb-inner { flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 12px; padding-right: 34px; }
  .scb-text { line-height: 1.4;}
  .scb-button { width: 100%; white-space: normal; text-align: center; padding: 14px 16px; }
  .scb-close { top: 6px; right: 8px; }
}