*, *::before, *::after {
  box-sizing: border-box;
}

html {
  --accent: #fcafc9;
  --bg: #292f3a;
  --fg: white;
  --heading-link: #769e87;
  --heading-link-hover: #aae2b7;
  --secondary: #9abbf4;
  --secondary-subdued: #6c7c99;
  --subdued: #aaaaaa;
  font-size: 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: sans-serif;
}

body {
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 1080px;
  padding: 1rem;
  background-color: var(--bg);
  color: var(--fg);
}

a, a:visited {
  text-decoration: none;
}

h1 {
  font-size: 1.5rem;
  margin: 0;
  max-width: max-content;
  line-height: 1;
}

p, ul, ol {
  margin: 0;
}

.flex {
  display: flex;
}
.gap-sm {
  gap: 0.5rem;
}
.gap-md {
  gap: 0.75rem;
}
.gap-lg {
  gap: 1rem;
}
.gap-xl {
  gap: 1.5rem;
}
.align-start {
  align-items: flex-start;
}
.align-center {
  align-items: center;
}
.align-end {
  align-items: flex-end;
}

.mb-sm {
  margin-bottom: 0.5rem;
}
.mb-1 {
  margin-bottom: 1rem;
}

.logo {
  width: 2.5rem;
  height: 2.5rem;
  image-rendering: pixelated;
  transition: filter 0.2s ease-out;
}
.logo:hover {
  filter: drop-shadow(0 0 3px var(--accent));
  transition: filter 0.2s ease-out;
}

.streams-list {
  list-style: none;
}
.streams-list li {
  position: relative;
  line-height: 1.5rem;
}
.streams-list li::after {
  content: '🔴';
  font-size: 1rem;
  position: absolute;
  left: -1.5rem;
  top: 0;
}
.streams-list li {
  display: flex;
  gap: 0.5rem;
}
.streams-list li a {
  color: var(--secondary-subdued);
  transition: color 0.1s ease-out;
  width: max-content;
}
.streams-list li a:hover {
  color: var(--secondary);
  transition: color 0.1s ease-out;
}
.streams-list li span {
  color: var(--subdued);
}
.streams-list li span::before {
  content: '(';
}
.streams-list li span::after {
  content: ')';
}

.streams-link {
  color: var(--heading-link);
  transition: color 0.1s ease-out;
}
.streams-link:hover {
  color: var(--heading-link-hover);
  transition: color 0.1s ease-out;
}

.user-name {
  color: var(--secondary-subdued);
  margin-top: 0.2rem;
  transition: color 0.1s ease-out;
}
.user-name:hover {
  color: var(--secondary);
  transition: color 0.1s ease-out;
}

