<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Discord Banner Refined */
.discord-banner {
  background-color: #5865F2; /* Official Discord blurple */
  color: #000;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-size: 0.95rem;
}

.discord-banner__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.discord-banner__icon {
  flex-shrink: 0;
}

.discord-banner__text {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
}

.discord-banner__text strong {
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.discord-banner__text span {
  opacity: 0.95;
  font-size: 0.85rem;
  line-height: 1.4;
}

.discord-banner__cta {
  background-color: #ffffff;
  color: #5865F2;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.discord-banner__cta:hover,
.discord-banner__cta:focus {
  background-color: #e0e7ff;
}


.discord-banner__close {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s ease;
}

.discord-banner__close:hover {
  color: #e0e7ff;
}


/* add to core.css or a new alerts.css */
.site-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--clr-accent-100);
  color: var(--clr-accent-900);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}
.site-alert p {
  margin: 0;
}
.site-alert a {
  font-weight: 600;
  text-decoration: underline;
}
.site-alert__close {
  background: none;
  border: none;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  color: inherit;
}
</pre></body></html>