@charset "UTF-8";
:root {
  --ink: #212121;
  --muted: #5c5c5c;
  --paper: #fff;
  --page: #c8d0dc;
  --line: #c2cad5;
  --accent: #ffcc00;
  --dark: #0f1012;
  --wrap: 1440px;
  --border: 3px solid #000;
  --radius: 15px;
  --shadow: 7px 7px 0 #000;
  --head: "Chakra Petch", Arial, sans-serif;
  --body: "Alegreya Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font: 16px/1.78 var(--body);
}

a {
  color: var(--ink);
  text-decoration: none;
}

a:hover {
  color: #000;
}

.wrap {
  width: min(100% - 40px, var(--wrap));
  margin: auto;
}

.site-header {
  position: relative;
  z-index: 50;
  overflow: visible;
  background-color: #090d14;
  background-image: url("../images/site/header-backdrop.jpg");
  background-position: center;
  background-size: 360px auto;
  background-repeat: repeat;
}

.site-header::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(1, 7, 18, 0.84) 0%, rgba(1, 7, 18, 0.87) 76%, var(--page) 100%);
  content: "";
}

.masthead,
.main-nav {
  position: relative;
  z-index: 60;
}

.masthead {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 190px;
  padding: 20px 0 38px;
  text-align: center;
}

.brand img {
  display: block;
  width: 330px;
  max-width: 100%;
}

.tagline {
  display: grid;
  max-width: 680px;
  margin: 9px 0 0;
  color: #fff;
  font-size: 15px;
  text-shadow: 0 2px 5px #000;
}

.tagline .tagline-layer {
  grid-area: 1/1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.tagline .tagline-layer.show {
  opacity: 1;
}

.main-nav {
  width: min(100% - 40px, 1080px);
  margin: 0 auto -25px;
  background: var(--accent);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.main-nav .wrap {
  width: 100%;
}

.menu-button {
  display: none;
}

.main-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav li {
  position: relative;
}

.main-nav a,
.nav-toggle {
  display: block;
  padding: 8px 16px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: 600 15px/2.3 var(--head);
  text-align: left;
}

.nav-toggle span {
  display: inline-block;
  margin-left: 7px;
  font-size: 18px;
  line-height: 0;
  transition: transform 0.18s ease;
}

.has-children.is-open .nav-toggle span {
  transform: rotate(45deg);
}

.main-nav > .wrap > ul > li:first-child > :first-child {
  border-radius: 11px 0 0 11px;
}

.main-nav > .wrap > ul > li:last-child > :first-child {
  border-radius: 0 11px 11px 0;
}

.main-nav a:hover,
.nav-toggle:hover,
.has-children.is-open > .nav-toggle {
  background: var(--dark);
  color: #fff;
}

.main-nav li ul {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  min-width: 240px;
  padding: 6px 0;
  background: #fff;
  border: var(--border);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.98);
  transform-origin: top center;
  transition: opacity 0.22s ease, transform 0.26s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.26s;
  pointer-events: none;
}

.main-nav li:hover > ul,
.main-nav li:focus-within > ul,
.main-nav li.is-open > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.main-nav li:hover > ul li,
.main-nav li:focus-within > ul li,
.main-nav li.is-open > ul li {
  animation: nav-drop-item-in 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.main-nav li:hover > ul li:nth-child(2),
.main-nav li:focus-within > ul li:nth-child(2),
.main-nav li.is-open > ul li:nth-child(2) {
  animation-delay: 0.04s;
}

.main-nav li:hover > ul li:nth-child(3),
.main-nav li:focus-within > ul li:nth-child(3),
.main-nav li.is-open > ul li:nth-child(3) {
  animation-delay: 0.08s;
}

.main-nav li:hover > ul li:nth-child(4),
.main-nav li:focus-within > ul li:nth-child(4),
.main-nav li.is-open > ul li:nth-child(4) {
  animation-delay: 0.12s;
}

.main-nav li:hover > ul li:nth-child(5),
.main-nav li:focus-within > ul li:nth-child(5),
.main-nav li.is-open > ul li:nth-child(5) {
  animation-delay: 0.16s;
}

.main-nav li ul a {
  display: block;
  padding: 8px 13px;
  line-height: 1.6;
  transition: background 0.15s ease, color 0.15s ease, padding-left 0.18s ease;
}

.main-nav li ul a:hover {
  background: var(--dark);
  color: #fff;
  padding-left: 18px;
}

@keyframes nav-drop-item-in {
  from {
    opacity: 0;
    transform: translateX(-6px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.main-nav > .wrap > ul > li > a,
.main-nav > .wrap > ul > li > .nav-toggle {
  position: relative;
}

.main-nav > .wrap > ul > li > a::after,
.main-nav > .wrap > ul > li > .nav-toggle::after {
  position: absolute;
  right: 16px;
  bottom: 6px;
  left: 16px;
  height: 2px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.main-nav > .wrap > ul > li > a:hover::after,
.main-nav > .wrap > ul > li > .nav-toggle:hover::after,
.main-nav > .wrap > ul > li > .nav-toggle[aria-expanded=true]::after {
  transform: scaleX(1);
}

.site-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 30px;
  padding-top: 68px;
  padding-bottom: 60px;
}

.content {
  min-width: 0;
}

.post-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 22px;
  margin: 0 0 32px;
  background: #fff;
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.post-card:hover {
  box-shadow: 8px 8px 0 #000;
}

.post-card.without-image {
  display: block;
}

.post-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  border: 2px solid #000;
  border-radius: 12px;
}

.post-card img.is-contain {
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  background: #0f1012;
  align-self: center;
}

.post-card h2 {
  margin: 9px 0 4px;
  font: 800 27px/1.3 var(--head);
}

.post-card p {
  margin: 10px 0;
}

.post-taxonomy {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0 0 8px;
  color: #000;
  font: 600 14px/1.4 var(--head);
  text-transform: uppercase;
}

.post-taxonomy a {
  padding: 3px 10px;
  color: #000;
  background: var(--accent);
  border: 2px solid #000;
  border-radius: 12px;
  box-shadow: 2px 2px 0 #000;
}

.post-meta {
  margin: 0 0 3px;
  color: var(--muted);
  font: 600 14px/1.5 var(--body);
}

.read-more {
  display: inline-block;
  padding: 7px 14px;
  background: var(--accent);
  border: 2px solid #000;
  border-radius: 10px;
  box-shadow: 3px 3px 0 #000;
  font: 700 14px var(--head);
}

.post-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px 28px;
  margin: 0 0 24px;
  padding: 24px;
  background: #fff;
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.post-heading {
  min-width: 0;
}

.post-header h1 {
  margin: 10px 0;
  font: 800 38px/1.15 var(--head);
}

.post-cover {
  margin: 0 0 28px;
  overflow: hidden;
  background: #fff;
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.post-cover img {
  display: block;
  width: 100%;
  max-height: 650px;
  object-fit: cover;
}

.post-content {
  padding: 30px 38px;
  background: #fff;
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 17px;
}

.post-content h2,
.post-content h3 {
  margin: 1.8em 0 0.55em;
  font-family: var(--head);
  font-weight: 800;
  line-height: 1.25;
}

.post-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 25px auto;
  border: 2px solid #000;
  border-radius: 12px;
}

.post-content figure {
  margin: 28px auto;
}

.post-content figcaption {
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

.post-content iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  min-height: auto;
  border: 2px solid #000;
  border-radius: 12px;
}

.post-content table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.post-content th,
.post-content td {
  border: 2px solid #000;
  padding: 9px 12px;
  text-align: left;
}

.post-content th {
  background: var(--accent);
}

.review-score {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 32px 0;
  padding: 18px;
  background: var(--dark);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: #fff;
}

.review-score h2,
.review-score p {
  grid-column: 1/-1;
  margin: 0;
  text-align: center;
}

.review-score h2 {
  color: var(--accent);
  font: 800 28px var(--head);
}

.review-score p {
  color: #ddd;
  font-size: 14px;
}

.score-item {
  padding: 12px 8px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 10px;
  color: var(--ink);
  text-align: center;
}

.score-label {
  display: block;
  font: 700 13px var(--head);
}

.score-emoji {
  display: block;
  margin: 7px 0;
  font-size: 30px;
}

.score-value {
  display: block;
  padding-top: 6px;
  border-top: 1px solid #ddd;
  font: 800 18px var(--head);
}

.tags {
  padding-top: 20px;
  color: var(--muted);
  font-size: 14px;
}

.comments {
  margin-top: 45px;
  padding: 25px;
  background: #fff;
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-intro {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.platform-card {
  margin: 0 !important;
  padding: 12px;
  border: var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 4px 4px 0 #000;
}

.platform-card.is-unavailable {
  opacity: 0.38;
  filter: grayscale(1);
}

.platform-card:hover {
  transform: translate(-1px, -1px);
  box-shadow: 6px 6px 0 #000;
}

.platform-card img {
  width: 100%;
  aspect-ratio: 0.92;
  object-fit: contain;
  margin: 0;
}

.platform-card figcaption {
  margin-top: 7px;
  font: 700 13px var(--head);
  text-align: center;
}

.post-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  grid-auto-flow: dense;
  gap: 10px;
  margin: 30px 0;
}

.post-gallery a {
  display: block;
  overflow: hidden;
  border: 2px solid #000;
  border-radius: 10px;
  background: #111;
  cursor: zoom-in;
}

.post-gallery a:nth-child(7n+1),
.post-gallery a:nth-child(11n+3) {
  grid-column: span 2;
  grid-row: span 2;
}

.post-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 110px;
  margin: 0;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  transition: transform 0.18s ease;
}

.post-gallery a:hover img {
  transform: scale(1.06);
}

.post-card {
  animation: card-in 0.45s ease both;
}

.post-card.is-hidden {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
}

.post-card[hidden] {
  display: none;
}

.post-card:not(.is-hidden) {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.18s ease;
}

.post-card:hover {
  transform: translate(-2px, -2px);
}

.post-cover img {
  transition: transform 0.35s ease;
}

.post-cover:hover img {
  transform: scale(1.025);
}

.sidebar section {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.sidebar section:hover {
  transform: translate(-2px, -2px);
  box-shadow: 9px 9px 0 #000;
}

.reveal-pending {
  opacity: 0;
  transform: translateY(42px) scale(0.975);
  filter: blur(3px);
}

.reveal-pending.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.55s ease;
}

.post-list .post-card.reveal-pending:nth-child(2n) {
  transition-delay: 0.09s;
}

.load-more {
  display: flex;
  justify-content: center;
  margin: 40px 0 10px;
}

.load-more button {
  padding: 12px 24px;
  border: var(--border);
  border-radius: 12px;
  background: var(--accent);
  box-shadow: 5px 5px 0 #000;
  cursor: pointer;
  font: 700 16px var(--head);
}

.load-more button:hover {
  transform: translate(-1px, -1px);
  box-shadow: 7px 7px 0 #000;
}

.load-more button:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #000;
}

@keyframes card-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.motion-ready .masthead {
  opacity: 0;
  transform: translateY(-36px);
}

.motion-ready .main-nav {
  opacity: 0;
  transform: translateY(-30px) scale(0.96);
}

.motion-ready .site-main {
  opacity: 0;
  transform: translateY(48px);
}

.motion-ready .site-footer {
  opacity: 0;
  transform: translateY(48px);
}

.motion-ready.page-loaded .masthead {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.motion-ready.page-loaded .main-nav {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.72s 0.14s ease, transform 0.72s 0.14s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.motion-ready.page-loaded .site-main {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.86s 0.3s ease, transform 0.86s 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.motion-ready.page-loaded .site-footer {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s 0.48s ease, transform 0.8s 0.48s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.post-card.reveal-pending:not([hidden]),
.sidebar section.reveal-pending,
.post-header.reveal-pending,
.post-cover.reveal-pending,
.post-content.reveal-pending,
.review-score.reveal-pending {
  opacity: 0;
  transform: translateY(42px) scale(0.975);
  filter: blur(3px);
}

.post-card.reveal-pending.is-revealed,
.sidebar section.reveal-pending.is-revealed,
.post-header.reveal-pending.is-revealed,
.post-cover.reveal-pending.is-revealed,
.post-content.reveal-pending.is-revealed,
.review-score.reveal-pending.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.65s ease;
}

.site-header {
  background-image: none;
}

.site-header::before {
  background-image: linear-gradient(to bottom, rgba(1, 7, 18, 0.7) 0%, rgba(1, 7, 18, 0.82) 76%, var(--page) 100%), url("../images/site/header-backdrop-v2-blur.jpg");
  background-position: center, center;
  background-repeat: no-repeat, repeat;
  background-size: 100% 100%, 680px auto;
  background-attachment: scroll, fixed;
  pointer-events: none;
}

.brand img {
  width: 365px;
}

.nav-toggle i {
  display: inline-block;
  margin-left: 8px;
  font-size: 12px;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.has-children.is-open .nav-toggle i {
  transform: rotate(180deg);
}

@media (max-width: 767px) {
  .site-header::before {
    background-attachment: scroll, scroll;
    background-size: 100% 100%, auto 320px;
  }
}
.gem-intro,
.software-hero,
.software-section {
  margin: 0 0 28px;
  padding: 24px;
  background: #fff;
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gem-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.gem-links a {
  padding: 7px 10px;
  background: #c5a2ff;
  border: 2px solid #000;
  border-radius: 999px;
  font: 700 13px var(--head);
}

.software-hero {
  background: linear-gradient(135deg, #141414, #333);
  color: #fff;
}

.software-hero h2 {
  margin: 4px 0 8px;
  color: var(--accent);
  font: 800 34px var(--head);
}

.software-hero p {
  max-width: 700px;
  margin: 0;
}

.eyebrow {
  /*color: #91e5a3;*/
  color: #8c58c2;
  font: 700 13px var(--head);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.software-section h2 {
  margin: 0 0 18px;
  font: 800 24px var(--head);
}

.software-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
}

.software-card {
  display: grid;
  min-height: 128px;
  align-content: space-between;
  gap: 8px;
  padding: 16px;
  background: #f9f9f9;
  border: 2px solid #000;
  border-radius: 11px;
  box-shadow: 3px 3px 0 #000;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.software-card:hover {
  background: #ffe56b;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #000;
}

.software-card strong {
  font: 800 18px var(--head);
}

.software-card span {
  color: #444;
  font-size: 14px;
}

.software-card small {
  color: #666;
  font-weight: 600;
}

.software-own {
  background: #eaf9ee;
}

.software-section h2 i {
  margin-right: 8px;
  color: #8c58c2;
}

.software-card i.fa-brands,
.software-card i.fa-solid {
  font-size: 26px;
  color: #213f82;
}

.software-card small i {
  font-size: 11px;
  color: inherit;
}

.software-card .card-link {
  color: #1d6fe0;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.software-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 210px), 1fr));
}

.software-card > * {
  min-width: 0;
}

.software-card span,
.software-card small {
  overflow-wrap: break-word;
}

.author-avatar {
  display: inline-block;
  width: 42px;
  height: 42px;
  margin-right: 9px;
  border: 2px solid #000;
  border-radius: 11px;
  background: #1a1a2e;
  object-fit: contain;
  vertical-align: -12px;
}

.post-byline {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  gap: 0;
}

.post-byline .post-date {
  margin-left: 10px;
  font-size: 13px;
  color: var(--muted);
}

.team-avatar {
  display: grid;
  width: 168px;
  height: 168px;
  flex: none;
  place-items: center;
  overflow: hidden;
  border: 3px solid #000;
  border-radius: 14px;
  background: #1a1a2e;
  box-shadow: 4px 4px 0 #000;
  aspect-ratio: 1/1;
}

.team-avatar img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0;
  border: none;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
}

.profile-hero .team-avatar {
  width: 168px;
  height: 168px;
}

.retrobright-hero,
.video-reference,
.retrobright-placeholder {
  margin: 0 0 28px;
  padding: 26px;
  background: #fff;
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.retrobright-hero {
  background: linear-gradient(135deg, #1a1a1a, #4a4235);
  color: #fff;
}

.retrobright-hero h2 {
  margin: 4px 0 10px;
  color: var(--accent);
  font: 800 34px var(--head);
}

.retrobright-hero p {
  max-width: 750px;
  margin: 0;
}

.retrobright-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 0 0 28px;
}

.retrobright-grid article {
  padding: 20px;
  background: #fff;
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 #000;
}

.retrobright-grid h2,
.video-reference h2,
.retrobright-placeholder h2 {
  margin-top: 0;
  font: 800 23px var(--head);
}

.video-reference iframe {
  margin: 0 0 20px;
}

.retrobright-recipe {
  margin: 0 0 22px;
  padding: 26px;
  background: #fffdf1;
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.retrobright-recipe h2 {
  margin: 4px 0 10px;
  font: 800 30px var(--head);
}

.retrobright-recipe > p {
  max-width: 860px;
}

.retrobright-recipe ol {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: recipe;
}

.retrobright-recipe li {
  position: relative;
  min-height: 115px;
  padding: 17px 16px 15px 53px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 10px;
  counter-increment: recipe;
}

.retrobright-recipe li::before {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  content: counter(recipe);
  font: 700 15px/25px var(--head);
  text-align: center;
}

.retrobright-warning {
  margin: 0 0 28px;
  padding: 16px 20px;
  border-left: 5px solid #e48622;
  border-radius: 0 10px 10px 0;
  background: #fff2db;
  color: #543000;
}

.retrobright-effects {
  margin: 0 0 28px;
  padding: 26px;
  background: #fff;
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.retrobright-effects h2 {
  margin: 4px 0 10px;
  font: 800 30px var(--head);
}

.retrobright-effects > p {
  max-width: 860px;
}

.retrobright-grid h3 {
  margin: 0 0 8px;
  font: 800 17px var(--head);
}

.retrobright-repair {
  margin: 18px 0 0;
  padding: 20px;
  background: #fffdf1;
  border: 2px solid #000;
  border-radius: 12px;
}

.retrobright-repair h3 {
  margin: 0 0 8px;
  font: 800 21px var(--head);
}

.retrobright-repair > p {
  max-width: 860px;
}

.retrobright-repair ol {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 13px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.retrobright-repair li {
  padding: 16px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 10px;
}

.team-hero,
.profile-hero,
.profile-section,
.profile-backlog {
  margin: 0 0 28px;
  padding: 28px;
  background: #fff;
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.team-hero {
  background: linear-gradient(135deg, #151515, #2b3246);
  color: #fff;
}

.team-hero h2,
.profile-hero h2 {
  margin: 5px 0 10px;
  color: var(--accent);
  font: 800 34px/1.15 var(--head);
}

.team-hero p {
  max-width: 760px;
  margin-bottom: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 0 0 32px;
}

.team-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 220px;
  padding: 24px;
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.team-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 10px 10px 0 #000;
}

.team-archivist {
  background: linear-gradient(135deg, #ddeaff, #fff);
}

.team-cezar {
  background: linear-gradient(135deg, #fff0c6, #fff);
}

.team-monogram {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 3px solid #000;
  border-radius: 50%;
  background: var(--dark);
  color: var(--accent);
  box-shadow: 4px 4px 0 #000;
  font: 800 28px var(--head);
}

.team-card h2 {
  margin: 3px 0 8px;
  font: 800 29px var(--head);
}

.team-card p {
  margin: 0;
}

.team-cta {
  display: inline-block;
  margin-top: 17px;
  font: 700 14px var(--head);
}

.team-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.team-values article {
  padding: 20px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 12px;
  box-shadow: 3px 3px 0 #000;
}

.team-values i {
  color: #8c58c2;
  font-size: 25px;
}

.team-values h2 {
  margin: 9px 0 5px;
  font: 800 21px var(--head);
}

.team-values p {
  margin: 0;
}

.quote-card {
  margin: 16px 0 0;
  padding: 22px 26px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 12px;
  box-shadow: 3px 3px 0 #000;
  position: relative;
}

.quote-card > i {
  color: #8c58c2;
  font-size: 18px;
}

.quote-card blockquote {
  margin: 6px 0 2px;
  font: 600 17px/1.55 var(--body);
}

.quote-card figcaption {
  color: var(--muted);
  font: 600 13px var(--head);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quote-card blockquote,
.quote-card figcaption {
  transition: opacity 0.35s ease;
}

.quote-card.is-fading blockquote,
.quote-card.is-fading figcaption {
  opacity: 0;
}

.profile-hero {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 26px;
  align-items: center;
  background: linear-gradient(135deg, #151515, #2b3246);
  color: #fff;
}

.profile-hero .team-monogram {
  width: 100px;
  height: 100px;
  font-size: 32px;
}

.profile-copy {
  margin: 0 0 28px;
  padding: 4px 28px;
}

.profile-section h2,
.profile-backlog h2 {
  margin: 4px 0 16px;
  font: 800 29px var(--head);
}

.favorites-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.favorites-grid article {
  padding: 18px;
  background: #f5f7fb;
  border: 2px solid #000;
  border-radius: 11px;
}

.favorites-grid h3 {
  margin: 0 0 9px;
  color: #40326d;
  font: 800 20px var(--head);
}

.favorites-grid ul {
  margin: 0;
  padding-left: 18px;
  columns: 2;
}

.favorites-grid li {
  margin-bottom: 4px;
}

.profile-backlog iframe {
  min-height: 650px;
  border: 2px solid #000;
  border-radius: 10px;
}

.profile-compact {
  margin-top: 0;
}

.profile-compact h2 {
  color: var(--accent);
}

@media (max-width: 767px) {
  .team-grid,
  .team-values,
  .favorites-grid {
    grid-template-columns: 1fr;
  }
  .team-card {
    grid-template-columns: 1fr;
  }
  .team-monogram {
    width: 70px;
    height: 70px;
    font-size: 23px;
  }
  .team-avatar {
    width: 150px;
    height: 150px;
  }
  .team-card .team-avatar {
    margin: 0 auto;
  }
  .profile-hero .team-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto;
  }
  .profile-hero {
    grid-template-columns: 1fr;
  }
  .profile-copy {
    padding: 0;
  }
  .favorites-grid ul {
    columns: 1;
  }
  .profile-backlog iframe {
    min-height: 480px;
  }
}
.post-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 36px !important;
}

.post-actions a {
  padding: 10px 14px;
  background: var(--accent);
  border: 2px solid #000;
  border-radius: 9px;
  box-shadow: 3px 3px 0 #000;
  font: 700 14px var(--head);
}

.post-actions a:nth-child(2) {
  background: #91e5a3;
}

.post-actions a:nth-child(3) {
  background: #a9b7ff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.feature-grid article {
  min-height: 170px;
  padding: 18px;
  border: 2px solid #000;
  border-radius: 12px;
  background: linear-gradient(150deg, #fff, #edf4ff);
  box-shadow: 3px 3px 0 #000;
}

.feature-grid h3 {
  margin: 0 0 8px !important;
  color: #213f82;
  font-size: 20px !important;
}

.feature-grid p {
  margin: 0 !important;
  text-align: left !important;
}

.xbvault-gallery-intro {
  margin: 36px 0 18px;
}

.xbvault-gallery-intro h2 {
  margin: 0 0 6px !important;
}

.xbvault-gallery-intro p {
  margin: 0 !important;
}

.xbvault-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-height: 390px;
  overflow: hidden;
}

.xbvault-gallery a:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.xbvault-gallery a:nth-child(n+2) {
  max-height: 185px;
}

.xbvault-gallery img {
  min-height: 0;
}

@media (max-width: 767px) {
  .xbvault-gallery {
    grid-template-columns: 1fr;
    max-height: none;
  }
  .xbvault-gallery a:first-child {
    grid-column: auto;
    grid-row: auto;
  }
  .xbvault-gallery a:nth-child(n+2) {
    max-height: none;
  }
  .xbvault-gallery img {
    min-height: 150px;
  }
}
.emulator-hero {
  display: grid;
  grid-template-columns: minmax(190px, 32%) 1fr;
  gap: 28px;
  align-items: center;
  margin: 0 0 28px;
  padding: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #171717, #3a3a3a);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: #fff;
}

.emulator-hero img {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  background: #111;
  border: 0;
  border-radius: 10px;
}

.emulator-hero h1 {
  margin: 3px 0 10px;
  color: var(--accent);
  font: 800 38px/1.1 var(--head);
}

.emulator-hero p {
  margin: 0;
}

.emulator-page .post-content > table:first-child {
  margin-top: 0;
}

.emulator-page .post-content table {
  display: table;
  width: 100%;
  margin: 30px 0;
  overflow: hidden;
  border: var(--border);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 4px 4px 0 #000;
}

.emulator-page .post-content table th {
  background: #1b1b1b;
  color: var(--accent);
  font: 700 14px var(--head);
}

.emulator-page .post-content table th:first-child {
  border-top-left-radius: 9px;
}

.emulator-page .post-content table th:last-child {
  border-top-right-radius: 9px;
}

.emulator-page .post-content table td {
  vertical-align: top;
}

.emulator-page .post-content table tr:nth-child(even) td {
  background: #f3f3f3;
}

.emulator-page .post-content table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 9px;
}

.emulator-page .post-content table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 9px;
}

.emulator-page .post-content table td:first-child {
  font: 800 16px var(--head);
}

.emulator-page .post-content table td:last-child {
  color: #af7000;
  font-size: 18px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.emulator-page .post-content table a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 31px;
  min-height: 29px;
  margin: 1px;
  padding: 3px 7px;
  background: var(--accent);
  border: 1px solid #000;
  border-radius: 7px;
  color: #000;
  font-size: 14px;
}

.emulator-page .post-content > img {
  display: none;
}

.emulator-page .post-gallery {
  margin: 34px 0;
}

.emulator-page .post-content h2 {
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 4px solid var(--accent);
}

.emulator-page .post-content h3 {
  color: #693d99;
}

.emulator-page .post-content iframe + iframe {
  margin-top: 18px;
}

@media (max-width: 767px) {
  .emulator-hero {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }
  .emulator-hero img {
    max-height: 180px;
  }
  .emulator-hero h1 {
    font-size: 30px;
  }
  .emulator-page .post-content table {
    font-size: 13px;
  }
  .emulator-page .post-content th,
  .emulator-page .post-content td {
    min-width: 120px;
    padding: 8px;
  }
}
.score-item {
  background: var(--score-color, #fff);
}

.score-icon {
  display: block;
  width: 42px !important;
  height: 42px !important;
  margin: 7px auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  image-rendering: pixelated;
}

.score-value {
  border-top-color: rgba(0, 0, 0, 0.25);
}

.site-context-menu {
  position: fixed;
  z-index: 1000;
  min-width: 210px;
  margin: 0;
  padding: 6px;
  background: var(--dark);
  border: 3px solid var(--accent);
  border-radius: 10px;
  box-shadow: 6px 6px 0 #000;
  list-style: none;
}

.site-context-menu[hidden] {
  display: none;
}

.site-context-menu li + li {
  border-top: 1px solid #3b3b3b;
}

.site-context-menu a,
.site-context-menu button {
  display: block;
  width: 100%;
  padding: 9px 11px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: 600 13px var(--head);
  text-align: left;
}

.site-context-menu a:hover,
.site-context-menu button:hover {
  background: var(--accent);
  color: #000;
}

.post-taxonomy {
  gap: 7px;
}

.badge,
.tag-chip {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 9px;
  border: 2px solid #000;
  border-radius: 999px;
  color: #111 !important;
  font: 700 12px/1 var(--head);
  letter-spacing: 0.01em;
  text-transform: none;
}

.post-taxonomy .badge-violet {
  background: #c5a2ff;
}

.post-taxonomy .badge-orange {
  background: #ffb454;
}

.post-taxonomy .badge-blue {
  background: #8dc7ff;
}

.post-taxonomy .badge-red {
  background: #ff9696;
}

.post-taxonomy .badge-cyan {
  background: #75e6e6;
}

.post-taxonomy .badge-yellow {
  background: #ffe56b;
}

.post-taxonomy .badge-green {
  background: #91e5a3;
}

.post-taxonomy .badge-pink {
  background: #ffacd0;
}

.post-taxonomy .badge-purple {
  background: #d5a1e9;
}

.post-taxonomy .badge-neutral {
  background: #ddd;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 22px;
}

.tags > span {
  margin-right: 3px;
  color: var(--muted);
  font: 700 13px var(--head);
  text-transform: uppercase;
}

.post-content .tag-chip {
  border-color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.35);
}

.post-content .tag-chip:nth-of-type(5n+1) {
  background: #ffe56b;
}

.post-content .tag-chip:nth-of-type(5n+2) {
  background: #91e5a3;
}

.post-content .tag-chip:nth-of-type(5n+3) {
  background: #8dc7ff;
}

.post-content .tag-chip:nth-of-type(5n+4) {
  background: #ffacd0;
}

.post-content .tag-chip:nth-of-type(5n+5) {
  background: #c5a2ff;
}

.post-card .post-taxonomy {
  gap: 5px;
}

.post-card .badge {
  min-height: 21px;
  padding: 2px 7px;
  border-width: 1px;
  box-shadow: none;
  font-size: 11px;
}

.post-card .post-taxonomy {
  margin-bottom: 7px;
}

.post-taxonomy .badge-indigo {
  background: #a9b7ff;
}

.post-content > :first-child {
  margin-top: 0;
}

.post-content > :last-child {
  margin-bottom: 0;
}

.post-content p {
  max-width: none;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.post-content ul,
.post-content ol {
  padding-left: 1.4em;
}

.post-content li + li {
  margin-top: 0.38em;
}

.post-content blockquote {
  margin: 28px 0;
  padding: 16px 20px;
  border-left: 5px solid var(--accent);
  border-radius: 0 10px 10px 0;
  background: #f4f4f4;
  color: #333;
  font-size: 1.05em;
}

.post-content hr {
  height: 3px;
  margin: 36px 0;
  border: 0;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.post-content table {
  width: 100%;
  margin: 28px 0;
  border: 2px solid #222;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.25);
}

.post-content table th {
  background: #1b1b1b;
  color: var(--accent);
  font: 700 14px var(--head);
}

.post-content table th,
.post-content table td {
  border: 0;
  padding: 11px 14px;
}

.post-content table tr + tr td {
  border-top: 1px solid #dedede;
}

.post-content table tbody tr:nth-child(even) td {
  background: #f6f6f6;
}

.post-content table th:first-child {
  border-top-left-radius: 8px;
}

.post-content table th:last-child {
  border-top-right-radius: 8px;
}

.post-content table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 8px;
}

.post-content table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 8px;
}

.emulator-page .post-content table {
  display: table;
  width: 100%;
  max-width: none;
  border: 2px solid #111;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  box-shadow: 4px 4px 0 #000;
}

.emulator-page .post-content table th,
.emulator-page .post-content table td {
  border: 0;
}

.emulator-page .post-content table tr + tr td {
  border-top: 1px solid #d4d4d4;
}

.emulator-page .post-content table td:last-child {
  color: #af7000;
}

.emulator-page .post-content table tbody tr:nth-child(even) td {
  background: #f1f1f1;
}

.emulator-page .post-content table th,
.emulator-page .post-content table td {
  vertical-align: middle;
}

.emulator-page .post-content table td {
  line-height: 1.45;
}

.emulator-page .post-content table td:nth-child(3),
.emulator-page .post-content table td:last-child {
  text-align: center;
}

.emulator-page .post-content table td:last-child {
  padding-top: 9px;
  padding-bottom: 9px;
}

.emulator-page .post-content table tbody tr {
  height: 58px;
}

.emulator-page .post-content table td:first-child {
  display: table-cell;
  vertical-align: middle;
  padding-top: 9px;
  padding-bottom: 9px;
}

.sidebar {
  padding-left: 20px;
}

.sidebar section {
  padding: 15px 15px 5px;
  margin-bottom: 30px;
  background: #fff;
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.sidebar h2 {
  display: table;
  margin: -31px auto 12px;
  padding: 5px 26px;
  background: var(--accent);
  border: var(--border);
  border-radius: 12px 12px 0 0;
  font: 700 20px/1.3 var(--head);
}

.sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.pagination {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 40px 0 0;
  background: #080d17;
  color: #ddd;
}

.site-footer::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(3, 8, 18, 0.84), rgba(3, 8, 18, 0.92)), url("../images/site/header-backdrop-v2-blur.jpg") center/680px auto repeat fixed;
  content: "";
  pointer-events: none;
}

.site-footer > * {
  position: relative;
}

.site-footer a {
  color: #fff;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-grid img {
  width: 220px;
}

.footer-grid p {
  max-width: 480px;
  font-size: 14px;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 230px;
}

.footer-links a {
  padding: 9px 12px;
  border: 1px solid #777;
  border-radius: 8px;
  font: 600 14px var(--head);
}

.footer-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

.footer-links i {
  width: 20px;
  color: var(--accent);
  text-align: center;
}

.footer-links a:hover i {
  color: #000;
}

.copyright {
  padding: 20px 0;
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  color: #bbb;
  font-size: 13px;
}

@media (max-width: 991px) {
  .site-main {
    grid-template-columns: 1fr;
  }
  .sidebar {
    padding-left: 0;
  }
  .platform-grid {
    grid-template-columns: repeat(auto-fill, minmax(125px, 1fr));
  }
}
@media (max-width: 767px) {
  .masthead {
    height: 145px;
    justify-content: center;
    padding: 16px 0 32px;
  }
  .brand img {
    width: 235px;
  }
  .tagline {
    padding: 0 18px;
    font-size: 12px;
  }
  .main-nav {
    overflow: visible;
  }
  .menu-button {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 100%;
    padding: 11px 16px;
    border: 0;
    background: transparent;
    cursor: pointer;
    font: 700 16px var(--head);
  }
  .main-nav > .wrap {
    overflow: visible;
  }
  .main-nav > .wrap > ul {
    display: none;
    flex-direction: column;
    min-width: 0;
    padding: 6px 10px 12px;
  }
  .main-nav.nav-open > .wrap > ul {
    display: flex;
  }
  .main-nav.nav-open > .wrap > ul > li {
    animation: nav-item-in 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }
  .main-nav.nav-open > .wrap > ul > li:nth-child(2) {
    animation-delay: 0.05s;
  }
  .main-nav.nav-open > .wrap > ul > li:nth-child(3) {
    animation-delay: 0.1s;
  }
  .main-nav.nav-open > .wrap > ul > li:nth-child(4) {
    animation-delay: 0.15s;
  }
  .main-nav.nav-open > .wrap > ul > li:nth-child(5) {
    animation-delay: 0.2s;
  }
  .main-nav.nav-open > .wrap > ul > li:nth-child(6) {
    animation-delay: 0.25s;
  }
  .main-nav.nav-open > .wrap > ul > li:nth-child(7) {
    animation-delay: 0.3s;
  }
  @keyframes nav-item-in {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .main-nav > .wrap > ul > li {
    width: 100%;
  }
  .main-nav > .wrap > ul > li:first-child > :first-child {
    border-radius: 11px 11px 0 0;
  }
  .main-nav > .wrap > ul > li:last-child > :first-child {
    border-radius: 0 0 11px 11px;
  }
  .main-nav li ul {
    position: static;
    min-width: 0;
    margin: 0 14px 0;
    padding: 0;
    box-shadow: none;
    border: none;
    border-radius: 0;
    max-height: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    overflow: hidden;
    transition: max-height 0.34s cubic-bezier(0.2, 0.8, 0.2, 1), margin 0.34s cubic-bezier(0.2, 0.8, 0.2, 1), padding 0.34s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.34s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: auto;
  }
  .main-nav li.is-open > ul {
    max-height: 500px;
    margin: 0 14px 6px;
    padding: 6px 0;
    box-shadow: 3px 3px 0 #000;
  }
  .main-nav li:hover ul,
  .main-nav li:focus-within ul {
    display: none;
  }
  .main-nav li.is-open:hover ul,
  .main-nav li.is-open:focus-within ul {
    display: block;
  }
  .main-nav li ul a {
    padding: 9px 13px;
  }
  .main-nav > .wrap > ul > li > a::after,
  .main-nav > .wrap > ul > li > .nav-toggle::after {
    right: auto;
    left: 16px;
    width: calc(100% - 32px);
  }
  .post-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .post-card img {
    min-height: 0;
  }
  .post-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .post-byline {
    justify-content: flex-start;
    text-align: left;
  }
  .post-header h1 {
    font-size: 29px;
  }
  .post-content {
    padding: 20px;
  }
  .review-score {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    display: block;
  }
  .footer-links {
    margin-top: 22px;
  }
}
@media (max-width: 767px) {
  .post-content p {
    text-align: left;
    hyphens: manual;
  }
}
/* Música */
.music-hero {
  margin: 0 0 28px;
  padding: 30px 26px;
  background: linear-gradient(135deg, #0b1026 0%, #173b45 55%, #1d2939 100%);
  color: #fff;
  border-radius: var(--radius);
}

.music-hero h2 {
  margin: 4px 0 10px;
  color: #7fd4e7;
  font: 800 38px var(--head);
}

.music-hero p {
  max-width: 780px;
  margin: 0;
  color: #dcecf2;
}

.music-hero .eyebrow {
  color: #9ee8f5;
}

.music-section {
  margin: 0 0 30px;
}

.music-section .eyebrow {
  margin: 0 0 4px;
}

.music-section > h2 {
  margin: 0 0 8px;
  font: 800 28px var(--head);
}

.music-section > p {
  max-width: 860px;
  margin: 0 0 14px;
}

.music-section > h2 i {
  color: #173b45;
  margin-right: 6px;
}

.music-players {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
  margin: 0 0 16px;
}

.music-player {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 2px solid #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 3px 3px 0 #000;
}

.music-player iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
}

.music-player--bandcamp iframe {
  aspect-ratio: auto;
  height: 471px;
}

.music-player--tracks iframe {
  aspect-ratio: auto;
  height: 120px;
  border-bottom: 1px solid #000;
}

.music-player--tracks iframe:last-of-type {
  border-bottom: 0;
}

.music-player figcaption {
  padding: 10px 14px;
  font: 600 13px/1.45 var(--body);
  color: #333;
  border-top: 1px solid #ddd;
}

.music-player figcaption small {
  display: block;
  margin-top: 2px;
  color: #999;
}

.music-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.music-chips a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  font: 600 13px var(--body);
  text-decoration: none;
  transition: transform 0.15s ease;
}

.music-chips a:hover {
  transform: translateY(-2px);
}

.music-chips i {
  color: #7fd4e7;
}

.music-feature {
  margin: 0 0 30px;
  padding: 24px;
  background: #0b1026;
  color: #fff;
  border-radius: var(--radius);
}

.music-feature .eyebrow {
  color: #9ee8f5;
}

.music-feature h2 {
  margin: 0 0 8px;
  color: #7fd4e7;
  font: 800 30px var(--head);
}

.music-feature > p {
  max-width: 860px;
  margin: 0 0 16px;
  color: #dcecf2;
}

.music-feature .music-players {
  margin: 0;
}

.music-feature small {
  display: block;
  max-width: 860px;
  margin-top: 14px;
  color: #93a7b5;
  font: 600 13px/1.5 var(--body);
}

/* Ports e recomps */
.ports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin: 0;
}

.port-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 12px;
  box-shadow: 3px 3px 0 #000;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.port-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 #000;
}

.port-card span {
  align-self: flex-start;
  padding: 3px 9px;
  background: #222;
  color: #fff;
  border-radius: 999px;
  font: 700 11px/1.4 var(--head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.port-card strong {
  font: 800 17px/1.4 var(--head);
  color: #1a1a1a;
}

.port-card small {
  font: 500 13px/1.5 var(--body);
  color: #555;
}

/* ============================================================
   Backlog pages
   ============================================================ */
.backlog-hero {
  margin: 0 0 28px;
  padding: 30px 26px;
  background: linear-gradient(135deg, #141414, #333);
  color: #fff;
  border-radius: var(--radius);
}

.backlog-hero h2 {
  margin: 4px 0 10px;
  color: var(--accent);
  font: 800 38px var(--head);
}

.backlog-hero h2 i {
  color: var(--accent);
  margin-right: 6px;
}

.backlog-hero p {
  margin: 0;
  color: #fff;
}

.backlog-hero .eyebrow {
  color: #8c58c2;
}

.backlog-hero-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(420px, 100%), 1fr));
  gap: 22px;
  margin: 0 0 32px;
}

.backlog-player-card {
  display: grid;
  grid-template-columns: 182px 1fr;
  gap: 20px;
  align-items: stretch;
  height: 100%;
  padding: 20px;
  background: #111318;
  border: 2px solid #22262e;
  border-radius: 14px;
  box-shadow: 4px 4px 0 #000;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.backlog-player-card:hover {
  transform: translate(-3px, -3px);
  border-color: #c5a2ff;
  box-shadow: 8px 8px 0 #000;
}

.backlog-player-card .team-avatar {
  width: 182px;
  height: 182px;
  border-color: #22262e;
  border-radius: 14px;
  box-shadow: 4px 4px 0 #000;
}

.backlog-player-card .team-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  border-radius: 12px;
  object-fit: cover;
  object-position: top center;
}

.backlog-player-card > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.backlog-player-card h3 {
  margin: 0;
  min-height: 2.4em;
  display: flex;
  align-items: center;
  color: #fff;
  font: 800 20px var(--head);
}

.backlog-player-card p {
  margin: 2px 0 0;
  color: #ccc;
  font-size: 12px;
  font-style: italic;
}

.backlog-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.backlog-jump button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: #111318;
  border: 2px solid #22262e;
  border-radius: 999px;
  color: #dcecf2;
  font: 700 13px var(--head);
  cursor: pointer;
  appearance: none;
  transition: transform 0.15s ease, border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.backlog-jump button:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--accent);
}

.backlog-jump button.is-active {
  background: var(--accent);
  border-color: #000;
  color: #000;
  box-shadow: 3px 3px 0 #000;
}

.backlog-jump button i {
  color: var(--accent);
  font-size: 12px;
}

.backlog-jump button.is-active i {
  color: #000;
}

.backlog-jump button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.backlog-jump button:disabled:hover {
  border-color: #22262e;
  color: #dcecf2;
}

.backlog-jump-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  padding: 1px 7px;
  background: var(--accent);
  border: 2px solid #000;
  border-radius: 999px;
  color: #000;
  font: 800 11px var(--head);
  line-height: 1.4;
}

.backlog-jump button.is-active .backlog-jump-count {
  background: #000;
  color: var(--accent);
}

.backlog-section[hidden] {
  display: none !important;
}

.backlog-table th i,
.backlog-grid-table thead th i {
  margin-right: 6px;
  color: var(--accent);
}

.backlog-hero--player {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.backlog-hero--player .profile-hero {
  flex: 1 1 320px;
  min-width: 0;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: inherit;
}

.backlog-hero--player .profile-hero h2 {
  color: var(--accent);
}

.backlog-hero--player .backlog-stats {
  flex: 0 0 auto;
  min-width: 200px;
}

.backlog-feature {
  position: relative;
}

.backlog-feature > h2 {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.backlog-feature > h2 small {
  color: #999;
  font: 600 14px var(--body);
}

.backlog-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
  margin: 18px 0 0;
}

.backlog-feature-card {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px;
  background: #111318;
  border: 2px solid #22262e;
  border-radius: 14px;
  box-shadow: 4px 4px 0 #000;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.backlog-feature-card:not(.has-review):hover {
  border-color: #7fd4e7;
}

.backlog-feature-card:not(.has-review) {
  cursor: default;
}

.backlog-feature-card.has-review:hover {
  transform: translate(-2px, -2px);
  border-color: #7fd4e7;
  box-shadow: 7px 7px 0 #000;
}

.backlog-feature-status {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  background: #1d212a;
  border: 2px solid #2b3140;
  border-radius: 12px;
  color: #7fd4e7;
  font-size: 26px;
}

.backlog-feature-cover {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  object-fit: cover;
  object-position: center;
  border: 2px solid #2b3140;
  border-radius: 12px;
}

.backlog-feature-body {
  min-width: 0;
}

.backlog-feature-platform {
  margin: 0 0 3px;
  color: #7fd4e7;
  font: 700 11px var(--head);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.backlog-feature-body h3 {
  margin: 0 0 4px;
  color: #fff;
  font: 800 15px/1.3 var(--head);
  overflow-wrap: anywhere;
}

.backlog-feature-mood {
  margin: 0;
  color: #9aa3b2;
  font-size: 13px;
}

.backlog-feature-mood span {
  color: #6b7484;
  font-size: 11px;
}

.backlog-feature-review {
  color: #7fd4e7;
  font-size: 13px;
}

.backlog-flist-head {
  margin: 26px 0 0;
  padding-top: 22px;
  border-top: 2px solid #eee;
}

.backlog-flist-head h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 4px;
  font: 800 18px var(--head);
}

.backlog-flist-head h3 i {
  color: #173b45;
}

.backlog-flist-head p {
  margin: 0;
  color: #888;
  font-size: 13px;
}

.backlog-player-card .backlog-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  align-items: end;
  margin: auto 0 0;
  padding: 14px 0 0;
}

.backlog-player-card .backlog-stat {
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
  height: 60px;
  min-height: 60px;
  box-sizing: border-box;
  padding: 8px;
  border-color: #000;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.backlog-player-card .backlog-stat:nth-child(1) {
  background: #ffcc00;
}

.backlog-player-card .backlog-stat:nth-child(2) {
  background: #c5a2ff;
}

.backlog-player-card .backlog-stat strong {
  font-size: 15px;
  line-height: 1;
  color: #000;
}

.backlog-player-card .backlog-stat span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 9px;
  line-height: 1.2;
  color: #000;
  white-space: nowrap;
  text-align: center;
}

.backlog-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.backlog-stat {
  display: inline-flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 9px 6px;
  background: #1d212a;
  border: 2px solid #2b3140;
  border-radius: 10px;
  text-align: center;
}

.backlog-stat strong {
  color: #7fd4e7;
  font: 800 17px var(--head);
}

.backlog-stat span {
  font: 600 10px var(--body);
  color: #9aa3b2;
}

.backlog-stat.zero strong {
  color: #555c6a;
}

.backlog-section {
  margin: 0 0 28px;
  padding: 28px;
  background: #fff;
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.backlog-section h2 {
  margin: 5px 0 8px;
  color: var(--ink);
  font: 800 28px/1.15 var(--head);
}

.backlog-section .eyebrow {
  margin-top: 0;
}

.backlog-platform {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 22px 0 10px;
  font: 800 16px var(--head);
}

.backlog-platform:first-of-type {
  margin-top: 6px;
}

.backlog-table {
  width: 100%;
  margin: 30px 0 0;
  border: var(--border);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 4px 4px 0 #000;
  overflow: hidden;
  font-size: 14px;
}

.backlog-table th {
  background: #1b1b1b;
  color: var(--accent);
  font: 700 12px var(--head);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.backlog-table th:first-child {
  border-top-left-radius: 9px;
}

.backlog-table th:last-child {
  border-top-right-radius: 9px;
}

.backlog-table td {
  padding: 9px 14px;
  vertical-align: middle;
  border-bottom: 1px solid #eee;
}

.backlog-table th,
.backlog-table td {
  border: 0;
  border-right: 1px solid #ddd;
}

.backlog-table th:last-child,
.backlog-table td:last-child {
  border-right: 0;
}

.backlog-table tbody tr:nth-child(even) td {
  background: #f3f3f3;
}

.backlog-table tbody tr:hover td {
  background: rgba(127, 212, 231, 0.15);
}

.backlog-table tbody tr:last-child td {
  border-bottom: 0;
}

.backlog-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 9px;
}

.backlog-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 9px;
}

.backlog-table td:first-child {
  font: 800 15px var(--head);
}

.backlog-status-col {
  width: 112px;
  text-align: center !important;
}

.backlog-grid-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font: 700 12px var(--head);
  color: #333;
  white-space: nowrap;
}

.backlog-grid-status i {
  color: #173b45;
  font-size: 13px;
}

.backlog-grid-status .fa-play {
  color: #2e7d32;
}

.backlog-grid-status .fa-floppy-disk {
  color: #b8860b;
}

.backlog-grid-status--muted {
  color: #999;
  font: 600 12px var(--head);
}

.backlog-platform-col {
  text-align: center;
  white-space: nowrap;
}

.backlog-score {
  width: 84px;
  text-align: center !important;
}

.backlog-grid-table td.backlog-score {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.backlog-score span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  padding: 3px 7px;
  border: 2px solid #000;
  border-radius: 8px;
  background: #efefef;
  color: #000;
  font: 800 14px var(--head);
  text-shadow: none;
}

.backlog-score-final span {
  box-shadow: 3px 3px 0 #000;
}

.score-10,
.score-9 {
  background: #91e5a3 !important;
  color: #000 !important;
}

.score-8 {
  background: #8dc7ff !important;
}

.score-7 {
  background: #ffe56b !important;
}

.score-6 {
  background: #ffb454 !important;
}

.score-5,
.score-4,
.score-3,
.score-2,
.score-1,
.score-0 {
  background: #ff9696 !important;
  color: #000 !important;
}

.backlog-ratings {
  overflow-x: auto;
  display: block;
}

.backlog-lista {
  min-height: 420px;
}

.backlog-catalog-filters {
  display: block;
  margin: 18px 0 14px;
}

.backlog-filterbar {
  margin: 0 0 14px;
}

.backlog-filterbar-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px 7px 14px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 999px;
  box-shadow: 3px 3px 0 #000;
}

.backlog-filterbar-ico {
  display: inline-flex;
  color: #999;
  font-size: 15px;
}

.backlog-filterbar-input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 4px 0;
  color: var(--ink);
  font: 500 14px var(--body);
}

.backlog-filterbar-input::placeholder {
  color: #999;
}

.backlog-filterbar-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #888;
  font-size: 15px;
  cursor: pointer;
}

.backlog-filterbar-clear:hover {
  background: #f2f2f2;
  color: var(--ink);
}

.backlog-filterbar-clear[hidden] {
  display: none;
}

.backlog-filterbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.backlog-filter {
  position: relative;
  display: inline-flex;
}

.backlog-filter-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border: 2px solid #000;
  border-radius: 999px;
  background: #f2f2f2;
  color: var(--ink);
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.backlog-filter-trigger:hover {
  border-color: var(--accent);
  background: #fff6d6;
}

.backlog-filter-trigger.is-open {
  background: var(--accent);
  border-color: #000;
  color: #000;
}

.backlog-filter-trigger.has-selection {
  border-color: var(--accent);
  box-shadow: 2px 2px 0 var(--accent);
}

.backlog-filter-trigger.has-selection .backlog-filter-chevron {
  display: none;
}

.backlog-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font: 800 11px var(--head);
  box-shadow: 1px 1px 0 #000;
}

.backlog-filter-count[hidden] {
  display: none;
}

.backlog-filter-trigger.is-open .backlog-filter-count {
  background: #fff;
  color: var(--accent);
}

.backlog-filter-chevron {
  font-size: 11px;
  color: #999;
}

.backlog-filter-trigger.is-open .backlog-filter-chevron {
  color: #000;
}

.backlog-filter-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: auto;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 250px;
  max-width: 300px;
  padding: 10px 12px 12px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 12px;
  box-shadow: 4px 4px 0 #000;
}

.backlog-filter-panel[hidden] {
  display: none;
}

.backlog-filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.backlog-filter-head span {
  font: 800 13px var(--head);
  color: var(--ink);
}

.backlog-filter-clear {
  border: 0;
  background: transparent;
  color: var(--accent);
  font: 700 12px var(--body);
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 4px;
}

.backlog-filter-clear:hover {
  text-decoration: underline;
}

.backlog-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-height: 240px;
  overflow-y: auto;
}

.backlog-chip-toggle {
  cursor: pointer;
  position: relative;
}

.backlog-chip-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.backlog-chip-toggle span {
  display: inline-block;
  padding: 4px 10px;
  border: 2px solid #000;
  border-radius: 999px;
  background: #f2f2f2;
  color: var(--ink);
  font: 600 12px var(--body);
  transition: background 0.12s ease, box-shadow 0.12s ease, font-weight 0.12s ease;
}

.backlog-chip-toggle:hover span {
  background: #fff6d6;
}

.backlog-chip-toggle.is-on span {
  background: var(--accent);
  font-weight: 800;
  box-shadow: 2px 2px 0 #000;
}

#backlog-lista-grid,
#backlog-played-grid {
  overflow-x: auto;
}

.backlog-genre-col {
  text-align: center;
}

.backlog-grid-genre {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
  color: #444;
  font: 700 13px var(--head);
}

.backlog-hot-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 6px;
  padding: 2px 7px;
  background: #1b1b1b;
  border: 2px solid #000;
  border-radius: 999px;
  color: var(--accent);
  font: 700 10px var(--head);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  vertical-align: middle;
}

.backlog-date-col {
  text-align: center;
  white-space: nowrap;
  font: 700 12px var(--head);
  color: #555;
}

.backlog-grid-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
}

.gridjs-wrapper {
  border: var(--border);
  border-radius: 12px;
  box-shadow: 4px 4px 0 #000;
  overflow: hidden;
}

.backlog-grid-table thead th {
  background: #1b1b1b !important;
  color: var(--accent) !important;
  font: 700 14px var(--head) !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  border: 0 !important;
  border-bottom: 2px solid #000 !important;
  padding: 12px 14px !important;
  white-space: nowrap;
  text-align: center;
}

.backlog-grid-table thead th:last-child {
  border-bottom: 2px solid #000 !important;
}

.backlog-grid-table tbody td:first-child {
  text-align: left;
}

.backlog-grid-table tbody td {
  padding: 9px 14px !important;
  border: 0 !important;
  border-bottom: 1px solid #eee !important;
  vertical-align: middle;
  background: #fff !important;
  text-align: center;
}

.backlog-grid-table tbody td:last-child {
  border-bottom: 1px solid #eee !important;
}

.backlog-grid-table tbody tr:nth-child(even) td {
  background: #f3f3f3 !important;
}

.backlog-grid-table tbody tr:hover td {
  background: #ffb454 !important;
}

.backlog-grid-table tbody tr:last-child td,
.backlog-grid-table tbody tr:last-child td:last-child {
  border-bottom: 0 !important;
}

.backlog-grid-name {
  font: 800 15px var(--head) !important;
}

.backlog-grid-name-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.backlog-grid-link {
  color: #173b45;
  font: 800 15px var(--head);
  text-decoration: underline dotted;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}

.backlog-grid-link:hover {
  color: var(--accent);
}

.backlog-grid-link-ico {
  margin-left: 5px;
  font-size: 11px;
  color: var(--accent);
}

.backlog-grid-link:hover .backlog-grid-link-ico {
  color: #173b45;
}

.backlog-genre-col {
  text-align: center;
}

.backlog-score-chip,
.backlog-score-empty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  padding: 3px 7px;
  border: 2px solid #000;
  border-radius: 8px;
  background: #efefef;
  color: #000;
  font: 800 14px var(--head) !important;
  text-shadow: none;
}

.backlog-score-empty {
  color: #999;
}

.backlog-score-final-outer > .backlog-score-chip {
  box-shadow: 3px 3px 0 #000;
}

.backlog-score-chip.score-10,
.backlog-score-chip.score-9 {
  background: #91e5a3 !important;
  color: #000 !important;
}

.backlog-score-chip.score-8 {
  background: #8dc7ff !important;
}

.backlog-score-chip.score-7 {
  background: #ffe56b !important;
}

.backlog-score-chip.score-6 {
  background: #ffb454 !important;
}

.backlog-score-chip.score-5,
.backlog-score-chip.score-4,
.backlog-score-chip.score-3,
.backlog-score-chip.score-2,
.backlog-score-chip.score-1,
.backlog-score-chip.score-0 {
  background: #ff9696 !important;
  color: #000 !important;
}

.gridjs-head {
  padding: 0 0 12px;
  border: 0;
  background: transparent;
}

.gridjs-search {
  float: none;
}

.gridjs-search input {
  width: 100%;
  border: var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font: 600 13px var(--body);
  box-shadow: 2px 2px 0 #000;
  background: #fff;
}

.gridjs-footer {
  border: 0;
  padding-top: 14px;
  background: transparent;
}

.gridjs-pagination {
  padding: 0;
  border: 0;
  background: transparent;
  font-family: var(--head);
}

.gridjs-pagination .gridjs-pages {
  justify-content: flex-end;
  gap: 4px;
}

.gridjs-pagination .gridjs-pages button {
  min-width: 30px;
  padding: 5px 9px;
  border: var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: 700 13px var(--head);
  cursor: pointer;
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
}

.gridjs-pagination .gridjs-pages button:hover,
.gridjs-pagination .gridjs-pages button.gridjs-currentPage {
  background: var(--accent);
  box-shadow: 2px 2px 0 #000;
}

.gridjs-pagination .gridjs-pages button.gridjs-currentPage {
  min-width: 34px;
  background: var(--accent);
  border-color: #000;
  color: #1b1b1b;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 3px 3px 0 #000;
  transform: translateY(-1px);
}

.gridjs-pagination .gridjs-pages button.gridjs-currentPage:hover,
.gridjs-pagination .gridjs-pages button.gridjs-currentPage:focus {
  color: #1b1b1b;
  outline: none;
}

.gridjs-pagination .gridjs-pages button:first-child,
.gridjs-pagination .gridjs-pages button:last-child {
  font-size: 18px;
  line-height: 1;
}

.gridjs-pagination .gridjs-pages button:disabled {
  opacity: 0.5;
}

.backlog-grid-table .gridjs-th .gridjs-th-content {
  display: flex;
  align-items: center;
  justify-content: center;
  float: none;
  width: 100%;
}

.backlog-grid-table .gridjs-th:first-child .gridjs-th-content {
  justify-content: flex-start;
}

.backlog-grid-table .gridjs-th:first-child {
  min-width: 250px;
}

.backlog-th {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.backlog-th i {
  font-size: 13px;
}

.backlog-th-label {
  font: 700 14px var(--head) !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.backlog-grid-table th.gridjs-th-sort .gridjs-th-content {
  width: calc(100% - 20px);
}

.backlog-grid-table th.gridjs-th-sort button.gridjs-sort {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  float: none;
}

.backlog-grid-table button.gridjs-sort-neutral {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDEuOTk4IiBoZWlnaHQ9IjQwMS45OTgiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQwMS45OTggNDAxLjk5OCIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPjxwYXRoIGZpbGw9IiNGRjkxNDciIGQ9Ik03My4wOTIgMTY0LjQ1MmgyNTUuODEzYzQuOTQ5IDAgOS4yMzMtMS44MDcgMTIuODQ4LTUuNDI0IDMuNjEzLTMuNjE2IDUuNDI3LTcuODk4IDUuNDI3LTEyLjg0N3MtMS44MTMtOS4yMjktNS40MjctMTIuODVMMjEzLjg0NiA1LjQyNEMyMTAuMjMyIDEuODEyIDIwNS45NTEgMCAyMDAuOTk5IDBzLTkuMjMzIDEuODEyLTEyLjg1IDUuNDI0TDYwLjI0MiAxMzMuMzMxYy0zLjYxNyAzLjYxNy01LjQyNCA3LjkwMS01LjQyNCAxMi44NSAwIDQuOTQ4IDEuODA3IDkuMjMxIDUuNDI0IDEyLjg0NyAzLjYyMSAzLjYxNyA3LjkwMiA1LjQyNCAxMi44NSA1LjQyNHpNMzI4LjkwNSAyMzcuNTQ5SDczLjA5MmMtNC45NTIgMC05LjIzMyAxLjgwOC0xMi44NSA1LjQyMS0zLjYxNyAzLjYxNy01LjQyNCA3Ljg5OC01LjQyNCAxMi44NDdzMS44MDcgOS4yMzMgNS40MjQgMTIuODQ4TDE4OC4xNDkgMzk2LjU3YzMuNjIxIDMuNjE3IDcuOTAyIDUuNDI4IDEyLjg1IDUuNDI4czkuMjMzLTEuODExIDEyLjg0Ny01LjQyOGwxMjcuOTA3LTEyNy45MDZjMy42MTMtMy42MTQgNS40MjctNy44OTggNS40MjctMTIuODQ4IDAtNC45NDgtMS44MTMtOS4yMjktNS40MjctMTIuODQ3LTMuNjE0LTMuNjE2LTcuODk5LTUuNDItMTIuODQ4LTUuNDJ6Ii8+PC9zdmc+");
  opacity: 0.65;
}

.backlog-grid-table button.gridjs-sort-asc {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOTIuMzYyIiBoZWlnaHQ9IjI5Mi4zNjEiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDI5Mi4zNjIgMjkyLjM2MSIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPjxwYXRoIGZpbGw9IiNGRjkxNDciIGQ9Ik0yODYuOTM1IDE5Ny4yODcgMTU5LjAyOCA2OS4zODFjLTMuNjEzLTMuNjE3LTcuODk1LTUuNDI0LTEyLjg0Ny01LjQyNHMtOS4yMzMgMS44MDctMTIuODUgNS40MjRMNS40MjQgMTk3LjI4N0MxLjgwNyAyMDAuOTA0IDAgMjA1LjE4NiAwIDIxMC4xMzRzMS44MDcgOS4yMzMgNS40MjQgMTIuODQ3YzMuNjIxIDMuNjE3IDcuOTAyIDUuNDI1IDEyLjg1IDUuNDI1aDI1NS44MTNjNC45NDkgMCA5LjIzMy0xLjgwOCAxMi44NDgtNS40MjUgMy42MTMtMy42MTMgNS40MjctNy44OTggNS40MjctMTIuODQ3cy0xLjgxNC05LjIzLTUuNDI3LTEyLjg0N3oiLz48L3N2Zz4=");
  background-size: 11px;
  background-position-y: 38%;
  opacity: 1;
}

.backlog-grid-table button.gridjs-sort-desc {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOTIuMzYyIiBoZWlnaHQ9IjI5Mi4zNjIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDI5Mi4zNjIgMjkyLjM2MiIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPjxwYXRoIGZpbGw9IiNGRjkxNDciIGQ9Ik0yODYuOTM1IDY5LjM3N2MtMy42MTQtMy42MTctNy44OTgtNS40MjQtMTIuODQ4LTUuNDI0SDE4LjI3NGMtNC45NTIgMC05LjIzMyAxLjgwNy0xMi44NSA1LjQyNEMxLjgwNyA3Mi45OTggMCA3Ny4yNzkgMCA4Mi4yMjhjMCA0Ljk0OCAxLjgwNyA5LjIyOSA1LjQyNCAxMi44NDdsMTI3LjkwNyAxMjcuOTA3YzMuNjIxIDMuNjE3IDcuOTAyIDUuNDI4IDEyLjg1IDUuNDI4czkuMjMzLTEuODExIDEyLjg0Ny01LjQyOEwyODYuOTM1IDk1LjA3NGMzLjYxMy0zLjYxNyA1LjQyNy03Ljg5OCA1LjQyNy0xMi44NDcgMC00Ljk0OC0xLjgxNC05LjIyOS01LjQyNy0xMi44NXoiLz48L3N2Zz4=");
  background-size: 11px;
  background-position-y: 64%;
  opacity: 1;
}

.backlog-grid-name,
.backlog-grid-link {
  font-size: 16px !important;
}

.backlog-lucky {
  margin: 16px 0 0;
  padding: 26px;
  background: #1b1b1b;
  border-radius: 14px;
  box-shadow: 3px 3px 0 #000;
}

.backlog-lucky-head .eyebrow {
  margin-bottom: 8px;
  color: var(--accent);
}

.backlog-lucky-head h2 {
  margin: 0 0 6px;
  color: #fff;
  font: 800 22px var(--head);
}

.backlog-lucky-head p {
  margin: 0;
  max-width: 46rem;
  color: #999;
  font: 600 14px/1.5 var(--body);
}

.backlog-lucky-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  min-height: 104px;
  margin-top: 18px;
  padding: 18px 20px;
  background: #242424;
  border: 1px dashed #3a3a3a;
  border-radius: 12px;
}

.backlog-lucky-placeholder {
  margin: 0;
  color: #999;
  font: 600 15px var(--body);
}

.backlog-lucky-placeholder strong {
  color: var(--accent);
  font-weight: 800;
}

.backlog-lucky-name {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font: 800 21px var(--head);
}

.backlog-lucky-card a.backlog-lucky-name {
  color: var(--accent);
  text-decoration: underline dotted;
  text-underline-offset: 3px;
}

.backlog-lucky-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.backlog-lucky-tag {
  padding: 3px 10px;
  background: #2e2e2e;
  border-radius: 20px;
  color: #cfcfcf;
  font: 700 12px var(--head);
  letter-spacing: 0.03em;
}

.backlog-lucky-tag-hot {
  background: rgba(255, 204, 0, 0.14);
  color: var(--accent);
}

.backlog-lucky-tag-review {
  background: rgba(127, 212, 231, 0.14);
  color: #7fd4e7;
}

.backlog-lucky-meta {
  color: #8a8a8a;
  font: 600 13px/1.5 var(--body);
}

.backlog-lucky-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 18px;
  background: var(--accent);
  border: 2px solid #000;
  border-radius: 10px;
  box-shadow: 2px 2px 0 #000;
  color: #000;
  cursor: pointer;
  font: 800 14px var(--head);
  letter-spacing: 0.03em;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.backlog-lucky-btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 #000;
}

.backlog-lucky-btn:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 #000;
}

@media (max-width: 640px) {
  .backlog-lucky {
    padding: 20px 18px;
  }
  .backlog-lucky-name {
    font-size: 18px;
  }
  .backlog-player-card {
    grid-template-columns: 137px 1fr;
    gap: 14px;
  }
  .backlog-section,
  .backlog-hero {
    padding: 20px;
  }
  .backlog-player-card .team-avatar,
  .backlog-player-card .team-avatar img {
    width: 137px;
    height: 137px;
  }
  .backlog-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .backlog-feature-grid {
    grid-template-columns: 1fr;
  }
  .backlog-hero--player {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 400px) {
  .backlog-player-card {
    grid-template-columns: 110px 1fr;
    gap: 12px;
    padding: 16px;
  }
  .backlog-player-card .team-avatar,
  .backlog-player-card .team-avatar img {
    width: 110px;
    height: 110px;
  }
}

/*# sourceMappingURL=site.css.map */