/* ==========================================================================
   Game Character Template — Kinetic Editorial Style
   Colors:  Brand Red #e61e25, Background #131313, Surface #20201f
   Fonts:   Montserrat (Headline), Inter (Body)

   Scoped entirely under .gc-page to prevent conflict.
   ========================================================================== */

/* ── Font Imports ─────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;800;900&family=Inter:wght@400;500;700&display=swap');

/* ── Design Tokens ─────────────────────────────────────────────────── */
.gc-page {
  --gc-red: #e61e25;
  --gc-bg: #131313;
  --gc-surface: #20201f;
  --gc-surface-high: #2a2a2a;
  --gc-surface-low: #1c1b1b;
  --gc-text: #e5e2e1;
  --gc-text-muted: #9ca3af;
  --gc-outline: #ae8883;
  --gc-white: #ffffff;
  --gc-font-headline: 'Montserrat', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --gc-font-body: 'Inter', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --gc-transition: 150ms ease-in-out;
  --gc-nav-height: var(--renewal-main-nav-height, 5.3125rem);

  margin: 0;
  padding: 0;
  background: var(--gc-bg);
  color: var(--gc-text);
  font-family: var(--gc-font-body);
  font-weight: 400;
  overflow-x: hidden;
  line-height: 1.6;
}

.gc-page.gc-page--with-submenu {
  --renewal-game-submenu-height: 3rem;
  padding-top: calc(var(--renewal-main-nav-height, 5.3125rem) + var(--renewal-game-submenu-height));
}

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

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.gc-hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 1.5rem;
}

@media (min-width: 1024px) {
  .gc-hero {
    padding: 1.5rem 6rem;
  }
}

/* ── Background Layer ── */
.gc-hero__bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gc-hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: opacity 0.4s ease-out;
}

.gc-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--gc-bg) 0%,
    rgba(19, 19, 19, 0.6) 50%,
    transparent 100%
  );
  z-index: 1;
}

.gc-hero__halftone {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#ffffff 1px, transparent 0);
  background-size: 8px 8px;
  opacity: 0.03;
  z-index: 2;
}

/* ── Character Cutout with Costume Switching ── */
.gc-hero__cutout {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 45%;
  z-index: 3;
  pointer-events: none;
  display: block;
  margin: 0;
  padding: 0;
}

/* Mobile: keep character art fully inside hero bounds */
@media (max-width: 767px) {
  .gc-hero__cutout {
    top: 50%;
    right: clamp(0.75rem, 4vw, 1.5rem);
    bottom: auto;
    transform: translateY(-50%);
    width: min(62vw, 22rem);
    height: min(80svh, calc(100% - 1rem));
    max-height: 80svh;
    z-index: 8;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .gc-hero__cutout {
    width: 48%;
    right: 0;
  }
}

/* Desktop: move closer to left (toward character name) */
@media (min-width: 1024px) {
  .gc-hero__cutout {
    width: 45%;
    right: 10%;
  }
}

@media (min-width: 1280px) {
  .gc-hero__cutout {
    width: 40%;
    right: 15%;
  }
}

.gc-hero__cutout-viewport {
  position: relative;
  height: 100%;
  width: 100%;
  transition: transform 0.15s ease-out;
  margin: 0;
  padding: 0;
}

.gc-hero__cutout-img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: bottom center;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  pointer-events: none;
  margin: 0;
  padding: 0;
}

.gc-hero__cutout-img.is-active {
  opacity: 1;
}

@media (max-width: 767px) {
  .gc-hero__cutout-img {
    height: 100%;
    max-height: 80svh;
    object-fit: contain;
    object-position: right center;
  }
}

/* Costume Pagination Dots */
.gc-hero__costume-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
  pointer-events: auto;
}

.gc-hero__costume-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--gc-transition);
  padding: 0;
}

.gc-hero__costume-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.gc-hero__costume-dot.is-active {
  background: var(--gc-red);
  border-color: var(--gc-white);
  transform: scale(1.2);
}

/* ── Accent Title (Background Stroke Text) ── */
.gc-hero__accent-title {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

.gc-hero__accent-title span {
  font-family: var(--gc-font-headline);
  font-size: 12rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  color: transparent;
  white-space: nowrap;
  transition: opacity 0.3s ease-out;
}

@media (min-width: 1024px) {
  .gc-hero__accent-title span {
    font-size: 18rem;
  }
}

/* ── Prev / Next Character Navigation ── */
.gc-hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 80px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gc-white);
  font-size: 2rem;
  font-family: var(--gc-font-headline);
  cursor: pointer;
  transition: all var(--gc-transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gc-hero__nav:hover {
  background: var(--gc-red);
  border-color: var(--gc-red);
}

.gc-hero__nav--prev {
  left: 0;
  border-left: none;
  border-radius: 0 4px 4px 0;
}

.gc-hero__nav--next {
  right: 0;
  border-right: none;
  border-radius: 4px 0 0 4px;
}

/* ── Hero Content ── */
.gc-hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 56rem;
}

/* Class Tag */
.gc-hero__class-tag {
  display: inline-block;
  background: var(--gc-red);
  color: var(--gc-white);
  font-family: var(--gc-font-headline);
  font-weight: 900;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.28rem 0.95rem 0.28rem 0.8rem;
  margin-bottom: 1rem;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 0 100%);
  transition: opacity 0.3s ease-out;
}

/* Character Name */
.gc-hero__name {
  font-family: var(--gc-font-headline);
  font-size: 3.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  line-height: 0.8;
  color: var(--gc-white);
  margin: 0 0 0.5rem;
}

.gc-hero__name-first {
  display: block;
  transition: opacity 0.3s ease-out;
}

.gc-hero__name-last {
  display: block;
  color: var(--gc-red);
  transition: opacity 0.3s ease-out;
}

@media (min-width: 1024px) {
  .gc-hero__name {
    font-size: 9rem;
  }
}

/* Voice Actor */
.gc-hero__voice-actor {
  font-family: var(--gc-font-headline);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gc-text-muted);
  margin: 0 0 2rem;
  display: block;
  transition: opacity 0.3s ease-out;
}

.gc-hero__voice-actor-label {
  color: var(--gc-text-muted);
}

.gc-hero__voice-actor-label::after {
  content: ':';
  margin-right: 0.35rem;
}

.gc-hero__voice-actor-value {
  color: var(--gc-text-muted);
}

/* ── CTA Buttons ── */
.gc-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.gc-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--gc-font-headline);
  font-weight: 900;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--gc-transition);
}

.gc-btn--primary {
  background: var(--gc-red);
  color: var(--gc-white);
}

.gc-btn--primary:hover {
  background: var(--gc-white);
  color: var(--gc-red);
}

.gc-btn--secondary {
  background: var(--gc-surface-high);
  color: var(--gc-white);
}

.gc-btn--secondary:hover {
  background: var(--gc-white);
  color: var(--gc-bg);
}

.gc-btn__icon {
  transition: transform var(--gc-transition);
}

.gc-btn:hover .gc-btn__icon {
  transform: translateX(4px);
}

/* ==========================================================================
   MODALS
   ========================================================================== */
.gc-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gc-modal[hidden] {
  display: none;
}

.gc-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.gc-modal__container {
  position: relative;
  z-index: 1;
  width: 92vw;
  max-width: 68rem;
  max-height: 88vh;
  background: #090909;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
}

.gc-modal__container--command {
  max-width: 66rem;
}

.gc-modal__container--video {
  max-width: 70rem;
}

.gc-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.gc-modal__title {
  font-family: var(--gc-font-headline);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gc-white);
}

.gc-modal__close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  color: var(--gc-white);
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--gc-transition);
  z-index: 2;
}

.gc-modal__close-icon {
  display: block;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-1px);
}

.gc-modal__close--header {
  position: static;
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: auto;
}

.gc-modal__close:hover {
  background: var(--gc-red);
  border-color: var(--gc-red);
}

.gc-modal__body {
  flex: 1;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050505;
}

.gc-modal__img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.gc-modal__embed {
  width: 100%;
  height: 78vh;
  border: none;
}

.gc-modal__video-wrap {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}

.gc-modal__youtube {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   INFO & STATS SECTION
   ========================================================================== */
.gc-info-stats {
  background: linear-gradient(
    to bottom,
    rgba(28, 27, 27, 0) 0%,
    rgba(28, 27, 27, 0.72) 44%,
    var(--gc-surface-low) 100%
  );
  border-bottom: 1px solid var(--gc-surface-high);
  padding: 3rem 1.5rem;
}

@media (min-width: 1024px) {
  .gc-info-stats {
    padding: 3rem 6rem;
  }
}

.gc-info-stats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .gc-info-stats__grid {
    grid-template-columns: 7fr 5fr;
  }
}

/* ── Tabs ── */
.gc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  border-bottom: 2px solid var(--gc-surface-high);
  margin-bottom: 2rem;
  overflow: visible;
}

.gc-tabs__btn {
  padding: 0.75rem 1.5rem;
  font-family: var(--gc-font-headline);
  font-weight: 900;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gc-text-muted);
  background: none;
  border: none;
  border-bottom: 4px solid transparent;
  cursor: pointer;
  transition: all var(--gc-transition);
  margin-bottom: -2px;
  white-space: nowrap;
  flex: 0 0 auto;
}

.gc-tabs__btn:hover {
  color: var(--gc-white);
}

.gc-tabs__btn.is-active {
  color: var(--gc-red);
  border-bottom-color: var(--gc-red);
}

/* ── Panels ── */
.gc-panels__panel {
  display: none;
}

.gc-panels__panel.is-active {
  display: block;
}

.gc-panels__content {
  font-family: var(--gc-font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gc-text-muted);
  max-width: 42rem;
  height: auto;
  overflow: visible;
}

.gc-panels__content h3,
.gc-panels__content h4 {
  font-family: var(--gc-font-headline);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  color: var(--gc-white);
  margin: 0 0 1rem;
}

.gc-panels__content h3 {
  font-size: 1.5rem;
}

.gc-panels__content h4 {
  font-size: 1.25rem;
}

.gc-panels__content p {
  margin: 0 0 1rem;
}

.gc-panels__content ul,
.gc-panels__content ol {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}

/* Meta (Origin/Affiliation) */
.gc-panels__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--gc-surface-high);
}

.gc-panels__meta-item {
  display: flex;
  flex-direction: column;
}

.gc-panels__meta-label {
  font-family: var(--gc-font-headline);
  font-size: 0.625rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8f96a3;
  margin-bottom: 0.25rem;
}

.gc-panels__meta-value {
  font-family: var(--gc-font-headline);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gc-white);
  transition: opacity 0.3s ease-out;
}

/* ── Performance Matrix ── */
.gc-info-stats__stats {
  display: flex;
  width: 100%;
}

.gc-performance-matrix {
  --gc-matrix-accent: var(--primary-container, var(--gc-red));
  --gc-matrix-bg: var(--background, var(--gc-bg));
  --gc-matrix-muted: var(--on-surface-variant, var(--gc-text-muted));

  width: 100%;
  max-width: 450px;
  margin-left: auto;
  background: var(--gc-matrix-bg);
  padding: 2rem 1.5rem 1.5rem;
  box-shadow: 10px 10px 0 0 rgba(0, 0, 0, 1);
  position: relative;
}

.gc-performance-matrix__accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gc-matrix-accent);
}

.gc-performance-matrix__header {
  margin-bottom: 1.75rem;
}

.gc-performance-matrix__title {
  font-family: var(--gc-font-headline);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--gc-white);
  margin: 0;
}

.gc-performance-matrix__title-accent {
  color: var(--gc-white);
}

.gc-performance-matrix__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.6rem;
}

.gc-performance-stat__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.gc-performance-stat__label {
  font-family: var(--gc-font-headline);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gc-matrix-muted);
}

.gc-performance-stat__value {
  font-family: var(--gc-font-headline);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 900;
  color: var(--gc-white);
}

.gc-performance-stat__segments {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 2px;
  height: 12px;
}

.gc-performance-stat__segment {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gc-performance-stat__segment.is-filled {
  background: var(--gc-matrix-accent);
  border-color: var(--gc-matrix-accent);
}

.gc-beginner-recommendation__ribbon {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.gc-beginner-recommendation__label {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 1 1 auto;
  font-family: var(--gc-font-headline);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.25;
  background: var(--gc-matrix-accent);
  color: var(--gc-white);
  padding: 0.75rem 2.35rem 0.75rem 1rem;
  clip-path: polygon(0 0, calc(100% - 1.35rem) 0, 100% 50%, calc(100% - 1.35rem) 100%, 0 100%);
  min-width: 0;
  white-space: normal;
}

.gc-beginner-recommendation__stars {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  transform: skewX(-12deg);
  flex-shrink: 0;
}

.gc-beginner-recommendation__star {
  font-size: 1.55rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.38);
}

.gc-beginner-recommendation__star.is-filled {
  color: var(--gc-white);
}

@media (max-width: 767px) {
  .gc-performance-matrix {
    max-width: 100%;
    margin-left: 0;
    padding: 1.25rem 1rem 1rem;
  }

  .gc-performance-matrix__header {
    margin-bottom: 1.25rem;
  }

  .gc-performance-matrix__title {
    font-size: 1.55rem;
  }

  .gc-beginner-recommendation__ribbon {
    gap: 0.75rem;
  }

  .gc-beginner-recommendation__label {
    padding: 0.7rem 2rem 0.7rem 0.9rem;
  }

  .gc-beginner-recommendation__star {
    font-size: 1.3rem;
  }
}

/* ==========================================================================
   CHARACTER ROSTER SECTION
   ========================================================================== */
.gc-roster {
  background: var(--gc-bg);
  padding: 4rem 1.5rem;
}

@media (min-width: 1024px) {
  .gc-roster {
    padding: 4rem 6rem;
  }
}

.gc-roster__container {
  max-width: 80rem;
  margin: 0 auto;
}

.gc-roster__title {
  font-family: var(--gc-font-headline);
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--gc-white);
  margin: 0 0 0.5rem;
}

.gc-roster__title-accent {
  color: var(--gc-red);
}

/* ── Filter Buttons ── */
.gc-roster__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.gc-roster__filter-btn {
  padding: 0.5rem 1.25rem;
  font-family: var(--gc-font-headline);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gc-text-muted);
  background: var(--gc-surface);
  border: 1px solid var(--gc-surface-high);
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--gc-transition);
}

.gc-roster__filter-btn:hover {
  color: var(--gc-white);
  border-color: var(--gc-white);
}

.gc-roster__filter-btn.is-active {
  background: var(--gc-red);
  border-color: var(--gc-red);
  color: var(--gc-white);
}

.gc-roster__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 1.5rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .gc-roster__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .gc-roster__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Roster Item */
.gc-roster__item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: opacity 0.3s ease-out;
}

.gc-roster__item.gc-hidden {
  display: none;
}

.gc-roster__link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform var(--gc-transition);
  cursor: pointer;
}

.gc-roster__link--static {
  cursor: default;
}

/* Hover: white outline + zoom in on image */
.gc-roster__link:not(.gc-roster__link--static):hover .gc-roster__image-wrap {
  outline: 2px solid var(--gc-white);
  outline-offset: 2px;
}

.gc-roster__link:not(.gc-roster__link--static):hover .gc-roster__image {
  transform: scale(1.08);
}

.gc-roster__link:not(.gc-roster__link--static):hover .gc-roster__name {
  color: var(--gc-red);
}

.gc-roster__image-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--gc-surface);
  border-radius: 8px;
  transition: outline var(--gc-transition), outline-offset var(--gc-transition);
}

.gc-roster__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease-out;
}

.gc-roster__image--placeholder {
  background: linear-gradient(135deg, var(--gc-surface) 0%, var(--gc-surface-high) 100%);
}

.gc-roster__name {
  font-family: var(--gc-font-headline);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gc-white);
  text-align: center;
  transition: color var(--gc-transition);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
/* Character switching fade */
.gc-hero.gc-switching .gc-hero__bg-image,
.gc-hero.gc-switching [data-gc-accent-title],
.gc-hero.gc-switching [data-gc-class-tag],
.gc-hero.gc-switching [data-gc-name-first],
.gc-hero.gc-switching [data-gc-name-last],
.gc-hero.gc-switching [data-gc-voice-actor] {
  opacity: 0;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 639px) {
  .gc-hero {
    min-height: 500px;
  }

  .gc-hero__name {
    font-size: 3.15rem;
  }

  .gc-hero__class-tag {
    font-size: 0.5rem;
    letter-spacing: 0.1em;
    padding: 0.2rem 0.55rem;
  }

  .gc-hero__accent-title span {
    font-size: 6rem;
  }

  .gc-hero__voice-actor {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
    display: inline-flex;
  }

  .gc-hero__voice-actor-label::after {
    content: '';
    margin-right: 0;
  }

  .gc-hero__voice-actor-value {
    display: block;
    color: var(--gc-white);
  }

  .gc-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
  }

  .gc-roster__title {
    font-size: 1.75rem;
  }

  .gc-panels__meta {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  .gc-hero__name {
    position: relative;
    z-index: 40;
  }

  .gc-hero__name-first,
  .gc-hero__name-last {
    position: relative;
    z-index: 41;
  }

  .gc-hero__nav {
    width: 30px;
    height: 38px;
    font-size: 1.125rem;
    top: auto;
    bottom: 0.75rem;
    transform: none;
    border-radius: 4px;
  }

  .gc-hero__nav--next {
    right: 0.75rem;
    left: auto;
    border: 1px solid rgba(255, 255, 255, 0.22);
  }

  .gc-hero__nav--prev {
    right: calc(0.75rem + 30px + 0.65rem);
    left: auto;
    border: 1px solid rgba(255, 255, 255, 0.22);
  }

  .gc-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    scrollbar-width: none;
  }

  .gc-tabs::-webkit-scrollbar {
    display: none;
  }
}
