@charset "UTF-8";
:root {
  color-scheme: dark;
  --bg: #0b0e17;
  --bg-raised: #10141f;
  --surface: #151a28;
  --surface-2: #1c2233;
  --surface-3: #252c40;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #e8eaf0;
  --text-muted: #9aa3b5;
  --text-faint: #6b7489;
  --twitch: #9147ff;
  --twitch-hover: #a970ff;
  --twitch-soft: rgba(145, 71, 255, 0.16);
  --gold: #c8aa6e;
  --gold-soft: rgba(200, 170, 110, 0.14);
  --live: #eb0400;
  --success: #2ecc8f;
  --success-soft: rgba(46, 204, 143, 0.14);
  --danger: #ff5a5f;
  --danger-soft: rgba(255, 90, 95, 0.14);
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Oxanium', 'Inter', system-ui, sans-serif;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --gutter: 16px;
  --container: 1200px;
}
@media (min-width: 640px) {
  :root {
    --gutter: 24px;
  }
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(1200px 600px at 10% -10%, rgba(145, 71, 255, 0.12), transparent 60%), radial-gradient(900px 500px at 100% 0%, rgba(200, 170, 110, 0.08), transparent 60%), var(--bg);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
}

h2 {
  font-size: 1.25rem;
}

h3 {
  font-size: 1.05rem;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--twitch-hover);
  text-decoration: none;
}
a:hover {
  color: #c9a6ff;
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

:focus-visible {
  outline: 2px solid var(--twitch-hover);
  outline-offset: 2px;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.muted {
  color: var(--text-muted);
}

.container {
  width: 100%;
  max-width: calc(var(--container) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow {
  max-width: calc(760px + 2 * var(--gutter));
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 14, 23, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.topbar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 60px;
}
.topbar__logo {
  flex-shrink: 0;
}
.topbar__logo img {
  height: 30px;
  width: auto;
}
@media (min-width: 640px) {
  .topbar__logo img {
    height: 44px;
  }
}
.topbar__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.topbar__link {
  display: none;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.925rem;
}
.topbar__link:hover {
  color: var(--text);
  background: var(--surface-2);
  text-decoration: none;
}
@media (min-width: 640px) {
  .topbar__link {
    display: inline-block;
  }
}

.page {
  flex: 1;
  padding-bottom: 48px;
}

.flash-stack {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.flash {
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: var(--surface-2);
  font-size: 0.95rem;
}
.flash--notice, .flash--success {
  border-color: rgba(46, 204, 143, 0.4);
  background: var(--success-soft);
}
.flash--alert, .flash--error {
  border-color: rgba(255, 90, 95, 0.4);
  background: var(--danger-soft);
}

.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-raised);
  color: var(--text-faint);
  font-size: 0.85rem;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-block: 24px;
}
@media (min-width: 640px) {
  .footer__inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.footer p {
  margin: 0;
}
.footer__legal {
  flex-basis: 100%;
  font-size: 0.75rem;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin: 32px 0 16px;
}
.section-head h2 {
  margin: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--surface-3);
  color: var(--text);
  font: 600 0.925rem/1.2 var(--font-body);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s;
}
.button:hover {
  background: #2f3750;
  color: var(--text);
  text-decoration: none;
}
.button--twitch {
  background: var(--twitch);
  color: #fff;
}
.button--twitch:hover {
  background: var(--twitch-hover);
  color: #fff;
}
.button--ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text-muted);
}
.button--ghost:hover {
  background: var(--surface-2);
  color: var(--text);
}
.button--danger {
  background: transparent;
  color: var(--danger);
}
.button--danger:hover {
  background: var(--danger-soft);
  color: var(--danger);
}
.button--small {
  min-height: 32px;
  padding: 4px 10px;
  font-size: 0.825rem;
}
.button--block {
  width: 100%;
}

form.button_to {
  display: inline;
  margin: 0;
}

.twitch-glyph {
  width: 1em;
  height: 1em;
  fill: currentColor;
  flex-shrink: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--surface-3);
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.6;
}
.badge--live {
  background: var(--live);
  color: #fff;
}
.badge--live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: live-pulse 1.6s ease-in-out infinite;
}
.badge--verified {
  background: var(--success-soft);
  color: var(--success);
}

@keyframes live-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
@media (prefers-reduced-motion: reduce) {
  .badge--live::before {
    animation: none;
  }
}
.panel {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
@media (min-width: 640px) {
  .panel {
    padding: 28px;
  }
}
.panel > :last-child {
  margin-bottom: 0;
}
.panel + .panel {
  margin-top: 16px;
}

.page-head {
  padding: 40px 0 24px;
}
@media (min-width: 640px) {
  .page-head {
    padding: 56px 0 32px;
  }
}
.page-head p {
  color: var(--text-muted);
  max-width: 60ch;
}

.eyebrow {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font: 600 0.8rem/1.3 var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

label, legend {
  display: block;
  margin-bottom: 6px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

input[type=text],
input[type=search],
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--bg-raised);
  color: var(--text);
  font: 400 1rem/1.4 var(--font-body);
  transition: border-color 0.15s, box-shadow 0.15s;
}
input[type=text]::placeholder,
input[type=search]::placeholder,
select::placeholder,
textarea::placeholder {
  color: var(--text-faint);
}
input[type=text]:focus,
input[type=search]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--twitch);
  box-shadow: 0 0 0 3px var(--twitch-soft);
}

textarea {
  min-height: 96px;
  resize: vertical;
}

.form-grid {
  display: grid;
  gap: 16px;
  align-items: end;
}
@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 2fr 1fr auto;
  }
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.925rem;
}
.table th {
  padding: 8px 12px;
  color: var(--text-faint);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
}
.table td {
  padding: 12px;
  border-top: 1px solid var(--border);
  vertical-align: middle;
}
@media (max-width: 639px) {
  .table thead {
    display: none;
  }
  .table tr {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2px 12px;
    padding: 12px 0;
    border-top: 1px solid var(--border);
  }
  .table td {
    padding: 0;
    border: 0;
  }
  .table td:first-child {
    font-weight: 600;
  }
  .table td:last-child {
    grid-column: 2;
    grid-row: 1/span 3;
    align-self: center;
  }
  .table td:not(:first-child, :last-child) {
    color: var(--text-muted);
    font-size: 0.85rem;
  }
}

.stars {
  --size: 0.95rem;
  position: relative;
  display: inline-block;
  font-size: var(--size);
  line-height: 1;
  letter-spacing: 2px;
  white-space: nowrap;
}
.stars::before {
  content: "★★★★★";
  background: linear-gradient(90deg, var(--gold) calc(var(--rating, 0) / 5 * 100%), rgba(255, 255, 255, 0.16) 0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dialog {
  width: min(520px, 100vw - 2 * var(--gutter));
  max-height: calc(100dvh - 32px);
  padding: 0;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow);
}
.dialog::backdrop {
  background: rgba(5, 7, 12, 0.72);
  backdrop-filter: blur(2px);
}
.dialog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.dialog__header h2 {
  margin: 0;
  font-size: 1.1rem;
}
.dialog__body {
  padding: 20px;
}
.dialog__close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.dialog__close:hover {
  background: var(--surface-2);
  color: var(--text);
}

.user-menu {
  position: relative;
}
.user-menu summary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px 4px 4px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.user-menu summary::-webkit-details-marker {
  display: none;
}
.user-menu summary:hover {
  background: var(--surface-2);
}
.user-menu summary img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}
.user-menu__name {
  max-width: 14ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.user-menu__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 200px;
  padding: 6px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface-2);
  box-shadow: var(--shadow);
}
.user-menu__panel a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--text);
}
.user-menu__panel a:hover {
  background: var(--surface-3);
  text-decoration: none;
}

.home-hero {
  position: relative;
  padding: 48px 0 32px;
  text-align: center;
  isolation: isolate;
}
@media (min-width: 640px) {
  .home-hero {
    padding: 80px 0 48px;
  }
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(11, 14, 23, 0.55) 0%, var(--bg) 100%), url("/assets/layout/background-cfb3564e.jpg") center 30%/cover no-repeat;
  opacity: 0.9;
}
.home-hero__inner {
  max-width: 860px;
}
.home-hero__lead {
  max-width: 58ch;
  margin: 0 auto 28px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.champion-search {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}
.champion-search__icon {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  fill: var(--text-faint);
  pointer-events: none;
}
.champion-search input[type=search] {
  min-height: 56px;
  padding-left: 48px;
  border-radius: var(--radius);
  background: rgba(16, 20, 31, 0.9);
  font-size: 1.05rem;
  box-shadow: var(--shadow);
}

.champion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
  gap: 12px 8px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 640px) {
  .champion-grid {
    grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
    gap: 16px 12px;
  }
}
.champion-grid__empty {
  padding: 24px 0;
  text-align: center;
}

.champion-tile a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.25;
}
.champion-tile a img {
  width: 100%;
  max-width: 72px;
  height: auto;
  aspect-ratio: 1;
  border: 2px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 0.15s, border-color 0.15s;
}
@media (min-width: 640px) {
  .champion-tile a img {
    max-width: 88px;
  }
}
.champion-tile a span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.champion-tile a:hover {
  color: var(--text);
  text-decoration: none;
}
.champion-tile a:hover img {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.champion-hero {
  position: relative;
  margin-bottom: 24px;
  isolation: isolate;
  overflow: hidden;
}
.champion-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, var(--bg) 0%, rgba(11, 14, 23, 0.55) 55%, rgba(11, 14, 23, 0.35) 100%), linear-gradient(90deg, rgba(11, 14, 23, 0.85) 0%, rgba(11, 14, 23, 0) 70%), var(--splash) center 20%/cover no-repeat;
}
.champion-hero__inner {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  min-height: 220px;
  padding-top: 48px;
  padding-bottom: 20px;
}
@media (min-width: 640px) {
  .champion-hero__inner {
    min-height: 320px;
    gap: 24px;
    padding-bottom: 32px;
  }
}
.champion-hero__icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
@media (min-width: 640px) {
  .champion-hero__icon {
    width: 104px;
    height: 104px;
  }
}
.champion-hero__title {
  margin-bottom: 6px;
  font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}
.champion-hero__hint {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

turbo-frame.streamers-page {
  display: block;
}
turbo-frame.streamers-page + turbo-frame.streamers-page, .streamer-grid + turbo-frame.streamers-page {
  margin-top: 16px;
}

.streamers-page__loading {
  padding: 24px 0;
  text-align: center;
}

.empty-state {
  text-align: center;
  color: var(--text-muted);
}

.streamer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 16px;
}

.streamer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.streamer-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.streamer-card:has(.rating[open]) {
  z-index: 5;
  transform: none;
}
.streamer-card.is-live {
  border-color: rgba(145, 71, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(145, 71, 255, 0.25), 0 8px 28px rgba(145, 71, 255, 0.18);
}
.streamer-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.streamer-card__avatar {
  position: relative;
  flex-shrink: 0;
}
.streamer-card__avatar img {
  width: 56px;
  height: 56px;
  border: 2px solid var(--border-strong);
  border-radius: 50%;
  background: var(--surface-3);
  object-fit: cover;
}
.is-live .streamer-card__avatar img {
  border-color: var(--twitch);
  box-shadow: 0 0 0 3px var(--twitch-soft);
}
.streamer-card__title {
  min-width: 0;
}
.streamer-card__name {
  margin: 0 0 4px;
  font-size: 1.1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.streamer-card__name a {
  color: var(--text);
}
.streamer-card__name a:hover {
  color: var(--twitch-hover);
  text-decoration: none;
}
.streamer-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.streamer-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0;
}
.streamer-card__stats > div {
  min-width: 0;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}
.streamer-card__stats dt {
  overflow: hidden;
  color: var(--text-faint);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.streamer-card__stats dd {
  margin: 2px 0 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}
.streamer-card__stats dd small {
  display: block;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
}
.streamer-card__actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.streamer-card__actions .button--twitch {
  flex: 1;
}

.tier--iron {
  color: #a19d94;
}
.tier--bronze {
  color: #c47c4f;
}
.tier--silver {
  color: #b7c3cc;
}
.tier--gold {
  color: #e6c26b;
}
.tier--platinum {
  color: #4fc3b5;
}
.tier--emerald {
  color: #3ccf7e;
}
.tier--diamond {
  color: #8ab4ff;
}
.tier--master {
  color: #c17bff;
}
.tier--grandmaster {
  color: #ff6b6b;
}
.tier--challenger {
  color: #f4d58d;
}

.channel .panel h2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.accounts__actions {
  text-align: right;
}

.rating {
  position: relative;
}
.rating__summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  margin-left: -8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  list-style: none;
  font-size: 0.85rem;
}
.rating__summary::-webkit-details-marker {
  display: none;
}
.rating__summary::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--text-faint);
  border-bottom: 2px solid var(--text-faint);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.15s;
}
.rating__summary:hover {
  background: rgba(255, 255, 255, 0.04);
}
.rating[open] .rating__summary::after {
  transform: translateY(1px) rotate(-135deg);
}
.rating__value {
  color: var(--text-muted);
  font-weight: 600;
}
.rating__panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 10;
  padding: 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface-2);
  box-shadow: var(--shadow);
}
.rating__criteria {
  display: grid;
  gap: 6px;
  margin: 0 0 12px;
}
.rating__criteria div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.rating__criteria dt {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.rating__criteria dd {
  margin: 0;
}
.rating__hint {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.review-form textarea {
  margin-bottom: 16px;
}

.star-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 10px;
  padding: 0;
  border: 0;
}
.star-input legend {
  float: left;
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
}
.star-input__stars {
  display: inline-flex;
  flex-direction: row-reverse;
  margin-left: auto;
}
.star-input__stars input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.star-input__stars label {
  width: 0.75em;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.18);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}
.star-input__stars label::before {
  content: "★";
  display: block;
  width: 1.5em;
  text-align: center;
}
.star-input__stars label.is-right::before {
  margin-left: -0.75em;
}
.star-input__stars input:checked ~ label,
.star-input__stars label:hover,
.star-input__stars label:hover ~ label {
  color: var(--gold);
}
.star-input__stars:hover input:checked ~ label:not(:hover, :hover ~ label) {
  color: rgba(255, 255, 255, 0.18);
}
.star-input__stars input:focus-visible + label {
  outline: 2px solid var(--twitch-hover);
  outline-offset: -2px;
}
