html {
  box-sizing: border-box;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  background: #282b2c;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  min-height: 100dvh;
  color: #c0c5d2;
  font-family: "Source Code Pro", monospace;
  font-weight: 500;
  line-height: 1.6;
  background:
    radial-gradient(circle at 20% 0%, rgba(101, 75, 101, 0.22), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(123, 160, 207, 0.13), transparent 50%),
    #282b2c;
}

@font-face {
  font-family: "Source Code Pro";
  src: url(/fonts/source_code_pro/SourceCodePro-VariableFont_wght.ttf) format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Rockwell Regular";
  src: url(/fonts/rockwell_regular/rockwell_regular.otf) format("opentype");
  font-display: swap;
}

a {
  color: #c0c5d2;
  background-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: #d5d9e3;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: solid #cbd6da89 1px;
  margin: 10px 0;
}

.rcc-page {
  width: min(1420px, calc(100vw - 28px));
  margin: 0 auto;
  padding: 1rem 0;
}

.rcc-page.is-locked .rcc-filter-tabs,
.rcc-page.is-locked .rcc-confirmed-toggle,
.rcc-page.is-locked .rcc-grid,
.rcc-page.is-locked .rcc-stats-accordion {
  display: none;
}

.rcc-page-header {
  margin-bottom: 0.5rem;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rcc-access-gate {
  margin: 0 auto;
  width: min(420px, 100%);
  padding: 0.75rem 1.75rem;
  padding-top: 1.25rem;
  border: 1px solid rgba(192, 197, 210, 0.3);
  background: rgba(30, 33, 35, 0.92);
}

.rcc-access-gate label {
  display: block;
  margin: 0 0 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d1d5df;
  text-align: center;
}

.rcc-access-controls {
  display: flex;
  gap: 1rem;
}

.rcc-access-input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(192, 197, 210, 0.35);
  background: rgba(24, 27, 28, 0.92);
  color: #d1d5df;
  font-family: "Source Code Pro", monospace;
  font-size: 0.9rem;
  padding: 0.5rem 0.625rem;
}

.rcc-access-input:focus-visible {
  outline: 2px solid #7ba0cf;
  outline-offset: 1px;
}

.rcc-access-button {
  appearance: none;
  border: 1px solid rgba(123, 160, 207, 0.8);
  background: rgba(53, 45, 53, 0.82);
  color: #d1d5df;
  font-family: "Source Code Pro", monospace;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
}

.rcc-access-button:hover,
.rcc-access-button:focus-visible {
  background: rgba(74, 58, 74, 0.86);
}

.rcc-access-message {
  min-height: 1.25rem;
  margin: 0.5rem 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: #aeb5c4;
}

.rcc-access-message.is-error {
  color: #e1a9a9;
}

.rcc-page-header h1 {
  font-family: "Rockwell Regular", serif;
  font-weight: normal;
  text-align: center;
  margin: 0;
  font-size: 4rem;
  letter-spacing: 0.06em;
  text-shadow: 2px 2px 0 rgba(73, 78, 88, 0.24);
  text-transform: uppercase;
  transform: perspective(200px) rotateX(6deg);
  color: #d1d5df;
  margin-top: -0.25rem;
  margin-bottom: -0.5rem;
}

.rcc-page-header h2 {
  font-family: "Rockwell Regular", serif;
  font-weight: normal;
  text-align: center;
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-shadow: 2px 2px 0 rgba(73, 78, 88, 0.24);
  text-transform: uppercase;
  color: #d1d5df;
  margin-top: -0.25rem;
  margin-bottom: 0.5rem;
}

@media only screen and (max-width: 900px) {
  .rcc-page-header h1 {
    font-size: 2.75rem;
    margin-bottom: -0.25rem;
    transform: none;
  }
}

@media only screen and (max-width: 600px) {
  .rcc-page-header h1 {
    font-size: 1.6rem;
    margin: 0;
  }

  .rcc-page-header h2 {
    font-size: 0.95rem;
  }

  .rcc-access-controls {
    flex-direction: column;
  }

  .rcc-access-button {
    width: 100%;
  }
}

.rcc-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.rcc-filter-tab {
  appearance: none;
  border: 1px solid rgba(192, 197, 210, 0.24);
  background: rgba(32, 36, 37, 0.9);
  color: #aeb5c4;
  padding: 0.5rem 0.75rem;
  font-family: "Source Code Pro", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.rcc-filter-tab:hover,
.rcc-filter-tab:focus-visible {
  color: #d1d5df;
  border-color: rgba(192, 197, 210, 0.48);
  transform: translateY(-1px);
}

.rcc-filter-tab:focus-visible {
  outline: 2px solid #7ba0cf;
  outline-offset: 2px;
}

.rcc-filter-tab.is-active,
.rcc-filter-tab[aria-selected="true"] {
  color: #d1d5df;
  border-color: rgba(123, 160, 207, 0.95);
  background: rgba(53, 45, 53, 0.8);
}

.rcc-confirmed-toggle {
  width: auto;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #aeb5c4;
  cursor: pointer;
  user-select: none;
}

.rcc-confirmed-toggle:hover {
  font-style: italic;
}

.rcc-confirmed-toggle input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: #7ba0cf;
  cursor: pointer;
}

.rcc-confirmed-toggle.is-disabled {
  opacity: 0.45;
}

.rcc-confirmed-toggle input:disabled {
  cursor: not-allowed;
}

.rcc-page-header p {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  color: #aeb5c4;
}

.rcc-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.rcc-card {
  font-family: "Source Code Pro", monospace;
  display: flex;
  max-width: 18%;
  width: 100%;
  flex-direction: column;
  appearance: none;
  border: 1px solid rgba(192, 197, 210, 0.2);
  overflow: hidden;
  background: #202425;
  padding: 0;
  margin: 0;
  text-align: left;
  cursor: pointer;
  color: inherit;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.28);
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.rcc-card:hover,
.rcc-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(192, 197, 210, 0.5);
  background: #262b2c;
}

.rcc-card:focus-visible {
  outline: 2px solid #7ba0cf;
  outline-offset: 2px;
}

.rcc-card-poster {
  display: block;
  width: 100%;
  object-fit: cover;
  background: #1a1d1e;
  user-select: none;
  pointer-events: none;
}

.rcc-card-poster--placeholder {
  aspect-ratio: 3 / 4.235;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-style: italic;
  font-family: "Rockwell Regular", serif;
  color: #9097a8;
  border-top: 1px solid rgba(192, 197, 210, 0.1);
  border-bottom: 1px solid rgba(192, 197, 210, 0.1);
  background:
    repeating-linear-gradient(-45deg,
      rgba(73, 78, 88, 0.22) 0,
      rgba(73, 78, 88, 0.22) 10px,
      rgba(40, 44, 49, 0.6) 10px,
      rgba(40, 44, 49, 0.6) 20px),
    #1a1d1e;
}

.rcc-info-bar--short {
  padding: 0.5rem 0.5625rem;
  border-top: 1px solid rgba(192, 197, 210, 0.15);
}

.rcc-card-title,
.rcc-card-date {
  margin: 0;
}

.rcc-card-title {
  font-size: 0.76rem;
  color: #d1d5df;
}

.rcc-card-date {
  margin-top: 1px;
  font-size: 0.72rem;
  color: #aab0bf;
}

.rcc-card-date--top {
  margin: 0;
  padding: 6px 9px;
  border-bottom: 1px solid rgba(192, 197, 210, 0.15);
  background: #1c2021;
  letter-spacing: 0.03em;
}

.rcc-card-series {
  display: inline-block;
  font-style: italic;
  font-size: 0.7rem;
  color: #c9adc9;
}

.rcc-stats-accordion {
  margin: 2rem auto;
  max-width: 1200px;
}

.rcc-stats-details {
  border: 1px solid rgba(192, 197, 210, 0.25);
  background: #1f2324;
  overflow: hidden;
}

.rcc-stats-summary {
  cursor: pointer;
  list-style: none;
  user-select: none;
  padding: 10px 12px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(53, 45, 53, 0.8);
  color: #d1d5df;
  text-align: center;
}

.rcc-stats-summary::-webkit-details-marker {
  display: none;
}

.rcc-stats-summary::after {
  content: " +";
  color: #7ba0cf;
}

.rcc-stats-details[open] .rcc-stats-summary::after {
  content: " -";
}

.rcc-stats-content {
  padding: 12px;
  display: grid;
  gap: 12px;
}

.rcc-stats-block h2 {
  margin: 0 0 5px;
  font-size: 0.9rem;
  color: #d1d5df;
}

.rcc-stat-sublist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rcc-stat-sublist li {
  margin-bottom: 4px;
  font-size: 0.8rem;
  color: #aab0bf;
}

.rcc-info-bar--full {
  color: #c0c5d2;
  font-size: 0.92rem;
  padding-bottom: 1rem;
}

.rcc-link--full {
  color: #c0c5d2;
  text-decoration: underline;
  font-size: 0.92rem;
}

.rcc-series-title {
  font-size: 0.9rem;
}

.rcc-nominees {
  color: #b7b7b7;
}

.rcc-lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 11, 12, 0.87);
  backdrop-filter: blur(2px);
}

.rcc-lightbox-panel {
  width: 90vw;
  max-width: 90vw;
  max-height: 90vh;
  height: auto;
  display: flex;
  flex-direction: column;
  background: #1d2122;
  border: 1px solid rgba(192, 197, 210, 0.25);
  overflow: hidden;
}

.rcc-lightbox-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  background: rgba(53, 45, 53, 0.86);
  border-bottom: 1px solid rgba(192, 197, 210, 0.2);
}

.rcc-lightbox-count {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: #d1d5df;
}

@media only screen and (max-width: 600px) {
  .rcc-lightbox-count {
    font-size: 0.75rem;
  }
}

.rcc-lightbox-close {
  background: none;
  border: 1px solid rgba(192, 197, 210, 0.45);
  color: #c0c5d2;
  font-size: 0.88rem;
  cursor: pointer;
  line-height: 1;
  padding: 5px 7px;
  font-family: inherit;
}

.rcc-lightbox-close:hover {
  background: rgba(192, 197, 210, 0.12);
}

.rcc-lightbox-body {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  align-items: stretch;
  gap: 0.25rem;
  padding: 1rem;
  min-height: 0;
}

.rcc-lightbox-nav {
  appearance: none;
  border: 1px solid rgba(192, 197, 210, 0.35);
  background: rgba(40, 43, 44, 0.9);
  color: #c0c5d2;
  cursor: pointer;
  font-size: 1rem;
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  align-self: center;
}

.rcc-lightbox-nav:hover {
  background: rgba(60, 46, 60, 0.9);
}

.rcc-lightbox-nav img {
  width: 18px;
  height: 18px;
  display: block;
  filter: invert(1);
}

.rcc-lightbox-nav--next img {
  transform: rotate(180deg);
}

.rcc-lightbox-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.rcc-lightbox-media {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(260px, 30%) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.rcc-lightbox-poster {
  width: 100%;
  height: 100%;
  max-height: calc(100dvh - 120px);
  object-fit: contain;
  background: #151819;
  border: 1px solid rgba(192, 197, 210, 0.15);
  user-select: none;
  pointer-events: none;
}

.rcc-lightbox-swipe-surface {
  touch-action: pan-y;
  transition: transform 0.16s ease;
}

.rcc-lightbox-swipe-surface.is-swipe-active {
  transition: none;
}

.rcc-lightbox-poster--placeholder {
  aspect-ratio: 3 / 4.235;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Rockwell Regular", serif;
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-style: italic;
  color: #9ca3b3;
  background:
    repeating-linear-gradient(-45deg,
      rgba(73, 78, 88, 0.24) 0,
      rgba(73, 78, 88, 0.24) 14px,
      rgba(30, 34, 38, 0.72) 14px,
      rgba(30, 34, 38, 0.72) 28px),
    #151819;
}

.rcc-lightbox-info {
  max-height: calc(100dvh - 120px);
  overflow-y: auto;
}

@media only screen and (max-width: 980px) {
  .rcc-card {
    max-width: calc(30% - 0.5rem);
  }

  .rcc-lightbox-panel {
    width: min(760px, calc(100vw - 18px));
    max-height: calc(100dvh - 18px);
  }

  .rcc-lightbox-body {
    grid-template-columns: 1fr;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .rcc-lightbox-nav {
    display: none;
  }

  .rcc-lightbox-media {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 0.75rem;
  }

  .rcc-lightbox-poster {
    height: auto;
    max-height: auto;
  }

  .rcc-lightbox-info {
    max-height: none;
    overflow: visible;
  }
}

@media only screen and (max-width: 600px) {
  .rcc-page {
    width: calc(100vw - 2rem);
  }

  .rcc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .rcc-card {
    max-width: calc(50% - 0.5rem);
  }

  .rcc-card-title {
    font-size: 0.73rem;
  }

  .rcc-card-date,
  .rcc-card-series {
    font-size: 0.68rem;
  }

  .rcc-lightbox-overlay {
    padding: 4px;
  }

  .rcc-lightbox-panel {
    width: min(520px, calc(100vw - 12px));
    max-height: auto;
    height: 90%;
  }

  .rcc-lightbox-poster {
    width: calc(100% - 24px);
    max-height: none;
    margin: 12px;
    margin-bottom: 0;
  }

  .rcc-lightbox-topbar {
    padding: 7px 8px;
  }

  .rcc-lightbox-body {
    padding: 8px;
    gap: 8px;
  }

  .rcc-info-bar--full {
    padding: 12px;
    font-size: 0.85rem;
    padding-top: 0;
    padding-bottom: 24px;
  }

  .rcc-link--full {
    font-size: 0.85rem;
  }

  .rcc-card:hover,
  .rcc-card:focus-visible {
    transform: none;
    border: 1px solid rgba(192, 197, 210, 0.2);
    background: #202425;
  }
}