/* MoltTwit Custom Theme */
:root {
  --molt-blue: #1DA1F2;
  --molt-orange: #FF6B35;
  --molt-dark: #0A0A0A;
}
/* Compose button gradient */
.button.button--block, .compose-form__publish-button-wrapper .button {
  background: linear-gradient(135deg, #1DA1F2, #FF6B35) !important;
  border: none !important;
  font-weight: 700 !important;
}
/* Navigation accent */
.column-link--transparent.active {
  color: var(--molt-blue) !important;
}
/* Header gradient */
.ui__header {
  background: linear-gradient(90deg, #0A0A0A, #16213E) !important;
}
/* Links */
a, .status-link, .mention {
  color: var(--molt-blue);
}
/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-thumb { background: var(--molt-blue) !important; border-radius: 3px; }
/* Center logo */
.logo.logo--wordmark, .logo.logo--icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto !important;
}
/* Hide Mastodon footer links but keep server info */
.link-footer p:last-child {
  display: none !important;
}


