:root {
  --md-primary-fg-color:        #ffab00;
  --md-primary-fg-color--light: #ffc233;
  --md-primary-fg-color--dark:  #c67c00;
  --md-accent-fg-color:         #ffab00;
}

/* Header principal escuro */
.md-header {
  background-color: #1e1e1e;
  color: #fff;
}

.md-header__button,
.md-header__title,
.md-search__input {
  color: #fff;
}

.md-search__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.md-search__form {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Links customizados no header (JOGUE AGORA / DISCORD) */
.md-header__custom-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-right: 0.25rem;
}

.header-extra-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.75rem;
  border-radius: 3px;
  transition: color 0.15s;
  white-space: nowrap;
}

.header-extra-link:hover {
  color: #fff;
}

.header-extra-link--discord:hover {
  color: #7289da;
}

/* Esconde os links customizados em telas pequenas */
@media screen and (max-width: 76.1875em) {
  .md-header__custom-nav {
    display: none;
  }
}
