#site-banner-root{
  position: sticky;
  top: 0;
  z-index: 9998;
}

.site-banner{
  width: 100%;
  border-bottom: 1px solid transparent;
}

.site-banner-inner{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.4;
}

.site-banner-msg{
  flex: 1;
}

.site-banner-link{
  color: inherit;
  text-decoration: underline;
  margin-left: 8px;
}

.site-banner-actions{
  display: flex;
  gap: 6px;
}

.site-banner-close{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: inherit;
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 12px;
  cursor: pointer;
}

.site-banner-close:hover{
  opacity: 0.9;
}

.site-banner.level-maintenance{
  background: #3b0b0b;
  border-bottom-color: #7f1d1d;
  color: #ffe4e4;
}

.site-banner.level-warning{
  background: #3a2204;
  border-bottom-color: #f59e0b;
  color: #fff5e6;
}

.site-banner.level-info{
  background: #0b2235;
  border-bottom-color: #3aa0ff;
  color: #e6f2ff;
}

@media (max-width: 600px){
  .site-banner-inner{
    flex-wrap: wrap;
    gap: 8px;
  }
}

.release-modal{
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(5, 10, 20, 0.66);
}

.release-modal-card{
  width: min(680px, 100%);
  max-height: min(88vh, 760px);
  overflow: auto;
  border: 1px solid var(--line, #17324d);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(12, 22, 36, 0.98), rgba(8, 15, 26, 0.98));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  color: var(--txt, #e6f2ff);
  padding: 16px;
}

.release-modal-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.release-modal-head h3{
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.release-modal-sub{
  margin-top: 8px;
  color: var(--muted, #99a8bb);
  font-size: 15px;
}

.release-modal-list{
  margin: 14px 0 0;
  padding-left: 18px;
}

.release-modal-list li{
  margin: 0 0 8px;
  line-height: 1.45;
}

.release-modal-actions{
  margin-top: 16px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.release-modal-close,
.release-modal-ok{
  border: 1px solid var(--line, #17324d);
  border-radius: 10px;
  background: #0f1d30;
  color: #e6f2ff;
  padding: 8px 12px;
  cursor: pointer;
}

.release-modal-ok{
  background: #3aa0ff;
  border-color: #3aa0ff;
  color: #001327;
  font-weight: 600;
}

.release-modal-link{
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line, #17324d);
  border-radius: 10px;
  padding: 8px 12px;
  color: #e6f2ff;
  text-decoration: none;
}
