/* Games calendar — premium layout */

.gc-app {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
}

/* Readability — games calendar uses smaller UI; lift contrast vs global tokens */
body[data-page="games-calendar"] {
  --color-text-muted: rgba(255, 255, 255, 0.64);
  --color-text-subtle: rgba(255, 255, 255, 0.54);
}

html[data-theme="light"] body[data-page="games-calendar"] {
  --color-text-muted: rgba(0, 0, 0, 0.58);
  --color-text-subtle: rgba(0, 0, 0, 0.46);
}

.gc-chrome {
  position: sticky;
  top: calc(var(--header-height) + 8px);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gc-chrome::before {
  display: none;
}

/* Stats sits subtly above the toolbar — small hairline pill, not a block */
.gc-chrome > .gc-stats {
  align-self: flex-start;
  margin-left: 0.25rem;
}

/* visionOS-grade toolbar material: deeper blur + glossy rim highlight + soft float shadow */
.gc-toolbar.glass {
  --glass-blur: var(--glass-blur-lg);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.014) 38%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    0 1px 3px rgba(0, 0, 0, 0.28),
    0 18px 40px rgba(0, 0, 0, 0.34);
}

html[data-theme="light"] .gc-toolbar.glass {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.78) 100%);
  box-shadow:
    inset 0 1px 0 #fff,
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 18px 40px rgba(0, 0, 0, 0.1);
}

body.gc-menu-open,
body.gc-search-open {
  overflow: hidden;
}

body.gc-menu-open .gc-mobile-sheet {
  pointer-events: auto;
}

.gc-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  padding: 0.35rem 0.65rem 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-text-muted);
  border: 1px solid var(--glass-border-dim);
  background: transparent;
  width: fit-content;
}

.gc-stats__item {
  font-variant-numeric: tabular-nums;
}

.gc-stats__item--accent {
  color: var(--color-text-secondary);
  font-weight: 600;
}

.gc-stats__sep {
  opacity: 0.25;
}

.gc-stats__refresh {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 26px;
  height: 26px;
  padding: 0;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  background: transparent;
  color: var(--color-text-subtle);
  font-size: 0;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.gc-stats--compact .gc-stats__refresh {
  width: auto;
  padding: 0.35rem 0.65rem;
  font-size: var(--text-xs);
}

.gc-stats__refresh:hover:not(:disabled) {
  background: var(--glass-surface-hover);
  color: var(--color-text);
}

.gc-stats__refresh:disabled {
  opacity: 0.6;
  cursor: wait;
}

.gc-spin {
  animation: gc-spin 0.8s linear infinite;
}

@keyframes gc-spin {
  to {
    transform: rotate(360deg);
  }
}

.gc-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  min-height: 320px;
  color: var(--color-text-muted);
}

.gc-loading__spinner {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--glass-border-dim);
  border-top-color: var(--color-accent);
  animation: gc-spin 0.7s linear infinite;
}

.gc-toolbar {
  border-radius: var(--radius-xl);
  padding: 0.55rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.gc-toolbar__row--primary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-sm);
}

@media (min-width: 901px) {
  /* Apple-style header: nav on left, title left-aligned next to it, actions on right */
  .gc-toolbar__row--primary {
    grid-template-columns: auto auto 1fr;
  }

  .gc-toolbar__row--primary .gc-toolbar__center {
    text-align: left;
    padding-left: 0.5rem;
  }

  .gc-toolbar__row--primary .gc-toolbar__quick {
    display: inline-flex;
    justify-self: end;
  }

  /* On desktop the quick cluster only shows discrete actions; menu/search are inline elsewhere */
  .gc-toolbar__row--primary .gc-icon-btn--menu,
  .gc-toolbar__row--primary [data-cal-search-toggle] {
    display: none;
  }
}

.gc-toolbar__center {
  min-width: 0;
  text-align: center;
}

.gc-toolbar__quick {
  display: none;
  align-items: center;
  gap: 6px;
}

.gc-icon-btn {
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  color: var(--color-text-muted);
  cursor: pointer;
  flex-shrink: 0;
}

.gc-icon-btn.glass-pill:hover,
.gc-icon-btn--active.glass-pill {
  color: var(--color-text);
}

.gc-icon-btn--menu.gc-icon-btn--active span {
  opacity: 1;
}

.gc-toolbar__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  margin: 0.25rem 0 0;
}

.gc-meta-chip {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gc-meta-chip--count {
  color: var(--color-accent);
  border-color: rgba(100, 210, 255, 0.22);
  background: rgba(100, 210, 255, 0.08);
}

.gc-meta-chip--switch1 {
  color: #ff8a8a;
  border-color: rgba(230, 0, 18, 0.25);
}

.gc-meta-chip--switch2 {
  color: #ffd54f;
  border-color: rgba(255, 196, 0, 0.28);
}

.gc-toolbar__search-expand {
  display: none;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    max-height 0.34s var(--ease-out),
    opacity 0.22s var(--ease-out),
    transform 0.34s var(--ease-spring),
    margin 0.28s var(--ease-out);
}

.gc-toolbar__search-expand--open {
  max-height: 64px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 0.5rem;
}

.gc-toolbar__search-expand--open .gc-search__input {
  animation: gc-search-input-in 0.42s var(--ease-spring) 0.08s both;
}

@keyframes gc-search-input-in {
  from {
    opacity: 0;
    transform: translateY(-4px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gc-toolbar__search-expand--open .gc-search__input {
    animation: none;
  }
}

.gc-toolbar__row--desktop {
  display: flex;
}

.gc-toolbar__row--desktop .gc-layout-btn__label {
  display: none;
}

.gc-toolbar__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
}

.gc-toolbar__row--nav {
  justify-content: space-between;
}

.gc-toolbar__nav {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.gc-nav-cluster {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: var(--radius-pill);
}

.gc-nav-cluster .gc-nav-btn {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--color-text-secondary);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.gc-nav-cluster .gc-nav-btn:hover {
  background: var(--glass-bg-hover);
  color: var(--color-text);
}

.gc-nav-cluster .gc-nav-btn:active {
  transform: scale(0.92);
}

.gc-nav-cluster .gc-today.glass-pill {
  min-height: 28px;
  padding: 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

.gc-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  font-size: 1.25rem;
  line-height: 1;
  color: var(--color-text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.gc-nav-btn:hover {
  color: var(--color-text);
}

.gc-today.glass-pill {
  padding: 0.5rem 1rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gc-toolbar__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  margin: 0;
  text-transform: capitalize;
  line-height: 1.1;
}

/* Unified height for platform bar, search, and fav control */
.gc-toolbar {
  --gc-toolbar-control-h: 2.5rem;
}

.gc-toolbar__row--controls {
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.gc-toolbar__row--secondary {
  width: 100%;
}

/* Hide the redundant inline "?" help button on desktop — kept in the quick cluster for mobile */
@media (min-width: 901px) {
  .gc-toolbar__row--secondary .gc-icon-btn--help {
    display: none;
  }
}

.gc-toolbar__row--mobile {
  display: none;
}

.gc-toolbar__row--mobile-head,
.gc-toolbar__row--mobile-top,
.gc-toolbar__row--mobile-sub,
.gc-toolbar__row--mobile-nav,
.gc-toolbar__row--mobile-filters {
  display: none;
}

.gc-upcoming-wrap--mobile,
.gc-mobile-day-shelf,
.gc-mobile-day-preview,
.gc-month-footer {
  display: none;
}

.gc-icon-btn--round {
  border-radius: 50%;
  width: var(--gc-toolbar-control-h, 2.5rem);
  height: var(--gc-toolbar-control-h, 2.5rem);
  min-width: var(--gc-toolbar-control-h, 2.5rem);
  padding: 0;
}

.gc-toolbar__title--mobile {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(0.95rem, 4.5vw, 1.15rem);
  line-height: 1.15;
}

.gc-toolbar__row--mobile-head {
  display: none;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.35rem;
}

.gc-toolbar__mobile-start,
.gc-toolbar__mobile-end {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.gc-toolbar__row--mobile-nav {
  display: none;
  justify-content: center;
}

.gc-toolbar__nav--mobile {
  width: 100%;
  display: flex;
  justify-content: center;
}

.gc-toolbar__nav--mobile .gc-nav-cluster {
  margin: 0 auto;
}

.gc-toolbar__row--mobile-filters {
  display: none;
  align-items: center;
  gap: 0.45rem;
}

.gc-toolbar__row--mobile-filters .gc-toolbar__group--platform {
  flex: 1 1 auto;
  min-width: 0;
}

.gc-toolbar__row--mobile-filters .gc-toolbar__group--fav {
  flex: 0 0 auto;
}

.gc-upcoming--mobile .gc-upcoming__track {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.15rem;
}

.gc-upcoming--mobile .gc-upcoming__track::-webkit-scrollbar {
  display: none;
}

.gc-upcoming-card--mobile {
  flex: 0 0 min(108px, 28vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0;
  min-height: 0;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.gc-upcoming-card--mobile > .gc-cover,
.gc-upcoming-card--mobile > .gc-cover--poster-upcoming {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gc-upcoming-card--mobile .gc-upcoming-card__date {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
  text-align: center;
}

.gc-mobile-day-shelf {
  margin-top: 0.35rem;
}

.gc-mobile-day-panel {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.gc-mobile-day-panel .gc-mobile-day-shelf {
  flex: 1;
  min-height: 0;
  margin-top: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.75rem;
}

.gc-mobile-day-preview {
  margin-top: 0.35rem;
  padding: 0.45rem 0.35rem 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gc-mobile-day-preview__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  margin: 0 0 0.4rem;
  padding: 0.1rem 0.15rem;
  border: none;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.gc-mobile-day-preview__date {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gc-mobile-day-preview__count {
  flex-shrink: 0;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.gc-mobile-day-preview__track {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding-bottom: 0.15rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gc-mobile-day-preview__track::-webkit-scrollbar {
  display: none;
}

.gc-mobile-day-preview__card {
  flex: 0 0 min(4.5rem, 22vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.gc-mobile-day-preview__card-poster,
.gc-mobile-day-preview__card-poster > .gc-cover,
.gc-mobile-day-preview__card-poster > .gc-cover--poster-upcoming {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: calc(var(--radius-sm) + 1px);
  overflow: hidden;
}

.gc-mobile-day-preview__card-title {
  font-size: 0.5625rem;
  font-weight: 700;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gc-mobile-day-preview__empty {
  margin: 0.2rem 0.15rem;
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  text-align: center;
}

.gc-mobile-day-shelf__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 0.55rem;
  padding-bottom: 0.5rem;
}

.gc-mobile-day-shelf__empty {
  margin: 1.5rem 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-align: center;
}

.gc-mobile-day-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  min-width: 0;
}

.gc-mobile-day-card__poster {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gc-mobile-day-card__poster > .gc-cover,
.gc-mobile-day-card__poster > .gc-cover--poster-upcoming {
  width: 100%;
  height: 100%;
}

.gc-mobile-day-card__poster .gc-cover__img,
.gc-mobile-day-card__poster .gc-cover--poster-upcoming .gc-cover__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gc-mobile-day-card__title {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.gc-mobile-day-card__studio {
  font-size: 0.625rem;
  line-height: 1.3;
  color: var(--color-text-muted);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.gc-mobile-day-card__platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  margin-top: 0.1rem;
}

.gc-mobile-day-card__platform {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gc-mobile-day-card__platform .gc-platform-mark,
.gc-mobile-day-card__platform .gc-platform-mark-wrap .gc-platform-mark--img {
  width: 14px;
  height: 14px;
}

.gc-toolbar__row--mobile-nav-day {
  justify-content: space-between;
  align-items: center;
  gap: 0.45rem;
}

.gc-toolbar__row--mobile-nav-day .gc-toolbar__nav--mobile {
  flex: 1 1 auto;
  width: auto;
}

.gc-toolbar__nav-fav {
  flex: 0 0 auto;
}

.gc-month-footer {
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.85rem;
  padding: 0.35rem 0.15rem 0.15rem;
}

.gc-month-footer__link {
  border: none;
  background: transparent;
  color: var(--color-text-secondary);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.35rem 0.15rem;
}

.gc-month-footer__link:hover {
  color: var(--color-text);
}

.gc-toolbar__group {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  min-width: 0;
}

.gc-toolbar__group--view {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
}

.gc-toolbar__tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.55rem;
  width: 100%;
  min-width: 0;
}

.gc-toolbar__divider {
  display: none;
  width: 1px;
  height: 1.75rem;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 1px;
}

.gc-toolbar__group--platform {
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
}

.gc-toolbar__row--controls .gc-toolbar__group--view {
  flex: 0 1 auto;
  max-width: none;
}

.gc-toolbar__row--controls .gc-toolbar__group--platform {
  flex: 1 1 auto;
  min-width: 0;
  margin-left: auto;
  justify-content: flex-end;
}

.gc-toolbar__row--controls .gc-platform-bar {
  flex: 1 1 auto;
  max-width: 100%;
}

.gc-toolbar__row--controls .gc-platform-bar__track {
  justify-content: flex-end;
}

.gc-toolbar__query-strip {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex: 1 1 12rem;
  min-width: 0;
  width: 100%;
}

.gc-toolbar__query-strip .gc-toolbar__group--search {
  flex: 1 1 auto;
  min-width: 0;
  max-width: none;
}

.gc-toolbar__query-strip .gc-search {
  width: 100%;
  max-width: none;
}

.gc-toolbar__query-strip .gc-toolbar__group--fav .gc-icon-btn--fav {
  width: var(--gc-toolbar-control-h);
  height: var(--gc-toolbar-control-h);
  min-width: var(--gc-toolbar-control-h);
  min-height: var(--gc-toolbar-control-h);
  border-radius: 50%;
}

.gc-toolbar__group--fav {
  flex-shrink: 0;
}

/* View bar — layout + scale (iOS segmented) */
.gc-view-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  flex: 0 1 auto;
  width: 100%;
  justify-content: flex-start;
}

.gc-segmented {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  gap: 2px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}

.gc-segmented.glass {
  --glass-blur: var(--glass-blur-sm);
}

.gc-segmented--layout {
  flex-shrink: 0;
}

.gc-segmented--scale .gc-segment {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.38rem 0.72rem;
  white-space: nowrap;
  color: var(--color-text-secondary);
}

.gc-filter-menu__btn {
  text-transform: uppercase;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  color: var(--color-text-secondary);
}

.gc-filter-menu__btn--soon {
  opacity: 0.92;
  color: var(--color-text-muted);
  cursor: help;
}

.gc-segmented--scale {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.gc-segmented--scale::-webkit-scrollbar {
  display: none;
}

.gc-segment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 0.75rem;
  border: none;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--color-text-secondary);
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.gc-segment:hover {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.05);
}

.gc-segment--icon {
  width: 34px;
  min-width: 34px;
  height: 34px;
  padding: 0;
  border-radius: var(--radius-pill);
}

.gc-segment--active {
  background: rgba(255, 255, 255, 0.94);
  color: #0a0a0c;
  font-weight: 650;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.gc-segmented--ios {
  position: relative;
  isolation: isolate;
}

.gc-segmented--ios .gc-segmented__indicator {
  position: absolute;
  top: 3px;
  left: 3px;
  z-index: 0;
  height: calc(100% - 6px);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition:
    transform 0.36s cubic-bezier(0.32, 0.72, 0, 1),
    width 0.36s cubic-bezier(0.32, 0.72, 0, 1);
  pointer-events: none;
  will-change: transform, width;
}

.gc-segmented--ios .gc-segment {
  position: relative;
  z-index: 1;
  background: transparent !important;
  box-shadow: none !important;
}

.gc-segmented--ios .gc-segment--active {
  background: transparent !important;
  color: #0a0a0c;
  box-shadow: none !important;
}

html[data-theme="light"] .gc-segmented--ios .gc-segmented__indicator {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

html[data-theme="light"] .gc-segmented--ios .gc-segment--active {
  color: var(--color-text);
}

.gc-segment--icon.gc-segment--active {
  color: #0a0a0c;
}

.gc-toolbar__group--search {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.gc-notice {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-md);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.gc-notice p {
  margin: 0;
  flex: 1;
  min-width: 12rem;
}

.gc-layout-toggle,
.gc-scale-toggle {
  display: inline-flex;
  flex-wrap: nowrap;
  padding: 2px;
  gap: 1px;
  border-radius: 9px;
  background: rgba(118, 118, 128, 0.22);
}

.gc-platform-toggle {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.4rem;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.gc-layout-btn {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  border: none;
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.gc-layout-btn.is-active {
  background: rgba(255, 255, 255, 0.22);
  color: var(--color-text);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.gc-layout-btn:hover {
  color: var(--color-text);
}

.gc-pill.glass-pill {
  flex-shrink: 0;
  min-height: 34px;
  padding: 0.45rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--color-text-secondary);
}

.gc-pill.glass-pill:hover {
  color: var(--color-text);
}

.gc-pill.glass-pill--active,
.gc-pill--active.glass-pill {
  color: var(--color-text);
  font-weight: 650;
}

.gc-pill--platform.glass-pill--active {
  border-color: rgba(100, 210, 255, 0.4);
  box-shadow:
    var(--shadow-glass),
    0 0 0 1px rgba(100, 210, 255, 0.15);
}

.gc-pill__check {
  margin-left: 0.2rem;
  font-size: 0.625rem;
  opacity: 0.85;
}

.gc-set-chips--platform {
  gap: 0.35rem;
}

.gc-set-chips--platform .gc-set-chip--platform.is-on span {
  font-weight: 600;
}

.gc-toolbar__row--platforms {
  align-items: center;
  width: 100%;
}

.gc-toolbar__tools--filters,
.gc-toolbar__row--secondary .gc-toolbar__tools {
  flex-wrap: wrap;
}

.gc-platform-bar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex: 0 1 auto;
  min-width: 0;
}

.gc-platform-bar__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.35rem;
  min-height: var(--gc-toolbar-control-h, 2.5rem);
  padding: 0.28rem 0.5rem;
  border-radius: var(--radius-pill);
  box-sizing: border-box;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.gc-platform-bar__track::-webkit-scrollbar {
  display: none;
}

.gc-platform-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 2rem;
  height: 2rem;
  padding: 0.22rem 0.45rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-secondary);
  cursor: pointer;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
  flex-shrink: 0;
}

/* Apple-style tooltip on hover — shows platform name + count from title attr */
@media (hover: hover) {
  .gc-platform-chip[title]::after {
    content: attr(title);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    padding: 0.35rem 0.65rem;
    border-radius: 0.5rem;
    background: rgba(20, 20, 22, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
      0 8px 24px rgba(0, 0, 0, 0.45),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 160ms var(--ease-out) 220ms, transform 200ms var(--ease-out) 220ms;
    z-index: 60;
  }

  .gc-platform-chip[title]::before {
    content: "";
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    width: 8px;
    height: 8px;
    transform: translateX(-50%) rotate(45deg) translateY(4px);
    background: rgba(20, 20, 22, 0.97);
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    pointer-events: none;
    opacity: 0;
    transition: opacity 160ms var(--ease-out) 220ms, transform 200ms var(--ease-out) 220ms;
    z-index: 60;
  }

  .gc-platform-chip[title]:hover::after,
  .gc-platform-chip[title]:focus-visible::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  .gc-platform-chip[title]:hover::before,
  .gc-platform-chip[title]:focus-visible::before {
    opacity: 1;
    transform: translateX(-50%) rotate(45deg) translateY(0);
  }
}

html[data-theme="light"] .gc-platform-chip[title]::after {
  background: rgba(255, 255, 255, 0.98);
  color: rgba(0, 0, 0, 0.88);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

html[data-theme="light"] .gc-platform-chip[title]::before {
  background: rgba(255, 255, 255, 0.98);
  border-right-color: rgba(0, 0, 0, 0.1);
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

.gc-platform-chip--all {
  width: 2rem;
  min-width: 2rem;
  padding: 0.22rem;
  color: var(--color-text-muted);
}

/* Small accent dot when this platform has followed releases */
.gc-platform-chip[data-has-fav="true"] > .gc-platform-chip__icon {
  position: relative;
}

.gc-platform-chip[data-has-fav="true"] > .gc-platform-chip__icon::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow:
    0 0 0 1.5px rgba(20, 20, 22, 0.95),
    0 0 8px rgba(100, 210, 255, 0.55);
  animation: gc-fav-dot-pulse 2.2s ease-in-out infinite;
}

@keyframes gc-fav-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 1.5px rgba(20, 20, 22, 0.95), 0 0 8px rgba(100, 210, 255, 0.55); }
  50% { box-shadow: 0 0 0 1.5px rgba(20, 20, 22, 0.95), 0 0 14px rgba(100, 210, 255, 0.8); }
}

@media (prefers-reduced-motion: reduce) {
  .gc-platform-chip[data-has-fav="true"] > .gc-platform-chip__icon::after {
    animation: none;
  }
}

html[data-theme="light"] .gc-platform-chip[data-has-fav="true"] > .gc-platform-chip__icon::after {
  background: #007aff;
  box-shadow:
    0 0 0 1.5px rgba(255, 255, 255, 0.95),
    0 0 8px rgba(0, 122, 255, 0.45);
  animation-name: gc-fav-dot-pulse-light;
}

@keyframes gc-fav-dot-pulse-light {
  0%, 100% { box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.95), 0 0 8px rgba(0, 122, 255, 0.45); }
  50% { box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.95), 0 0 14px rgba(0, 122, 255, 0.7); }
}

.gc-platform-chip--switch1,
.gc-platform-chip--switch2 {
  min-width: 2rem;
  padding-inline: 0.35rem;
}

.gc-platform-chip--playstation,
.gc-platform-chip--xbox,
.gc-platform-chip--pc {
  width: 2rem;
  min-width: 2rem;
  padding: 0.22rem;
}

.gc-platform-chip__label,
.gc-platform-chip__label--all {
  display: none;
}

.gc-platform-chip__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.gc-platform-mark-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  max-width: 100%;
  max-height: 100%;
}

.gc-platform-mark-wrap .gc-platform-mark--img {
  object-fit: contain;
  display: block;
}

.gc-platform-mark-fallback {
  display: none;
  align-items: center;
  justify-content: center;
}

.gc-platform-mark-wrap.is-fallback .gc-platform-mark--img {
  display: none;
}

.gc-platform-mark-wrap.is-fallback .gc-platform-mark-fallback {
  display: inline-flex;
}

/* Platform logo rows — icons only, no text labels */
.gc-platform-icons,
.gc-release__platforms,
.gc-game-sheet__platforms,
.gc-upcoming-card__platforms,
.gc-day-meta__platforms,
.gc-game-row__platforms,
.gc-day-sheet__spotlight-platforms,
.gc-day-sheet__item-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
}

.gc-platform-icons__item,
.gc-day-meta__platform,
.gc-game-sheet__platform,
.gc-upcoming-platform,
.gc-game-row__platform,
.gc-day-sheet__platform {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.gc-day-meta__platform,
.gc-game-row__platform,
.gc-day-sheet__platform {
  width: 1.35rem;
  height: 1.35rem;
}

.gc-day-meta__platform .gc-platform-mark,
.gc-day-meta__platform .gc-platform-mark-wrap .gc-platform-mark--img,
.gc-game-row__platform .gc-platform-mark,
.gc-game-row__platform .gc-platform-mark-wrap .gc-platform-mark--img,
.gc-day-sheet__platform .gc-platform-mark,
.gc-day-sheet__platform .gc-platform-mark-wrap .gc-platform-mark--img {
  height: 0.85rem;
  width: auto;
  max-width: 1.1rem;
}

.gc-day-meta__platform--switch1 .gc-platform-mark--img,
.gc-day-meta__platform--switch2 .gc-platform-mark--img,
.gc-day-meta__platform--switch1 .gc-platform-mark,
.gc-day-meta__platform--switch2 .gc-platform-mark {
  max-width: 1.2rem;
}

.gc-platform-chip__icon .gc-platform-mark,
.gc-platform-chip__icon .gc-platform-mark-wrap .gc-platform-mark--img {
  display: block;
  width: auto;
  height: 1.55rem;
  max-width: 2rem;
  flex-shrink: 0;
}

.gc-platform-chip__icon svg:not(.gc-platform-mark) {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.gc-platform-chip__icon svg {
  display: block;
}

.gc-platform-chip--switch1 .gc-platform-chip__icon,
.gc-platform-chip--switch2 .gc-platform-chip__icon {
  width: 100%;
}

.gc-platform-mark-wrap--switch1 .gc-platform-mark--img,
.gc-platform-mark-wrap--switch2 .gc-platform-mark--img,
.gc-platform-chip--switch1 .gc-platform-chip__icon .gc-platform-mark,
.gc-platform-chip--switch1 .gc-platform-chip__icon .gc-platform-mark-wrap .gc-platform-mark--img,
.gc-platform-chip--switch2 .gc-platform-chip__icon .gc-platform-mark,
.gc-platform-chip--switch2 .gc-platform-chip__icon .gc-platform-mark-wrap .gc-platform-mark--img {
  height: 1.35rem;
  max-width: 2.1rem;
  width: auto;
}

.gc-platform-chip--playstation .gc-platform-chip__icon .gc-platform-mark,
.gc-platform-chip--playstation .gc-platform-chip__icon .gc-platform-mark-wrap .gc-platform-mark--img,
.gc-platform-chip--xbox .gc-platform-chip__icon .gc-platform-mark,
.gc-platform-chip--xbox .gc-platform-chip__icon .gc-platform-mark-wrap .gc-platform-mark--img,
.gc-platform-chip--pc .gc-platform-chip__icon .gc-platform-mark,
.gc-platform-chip--pc .gc-platform-chip__icon .gc-platform-mark-wrap .gc-platform-mark--img {
  height: 1.55rem;
  width: 1.55rem;
  max-width: 1.55rem;
}

.gc-platform-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.gc-platform-chip--active,
.gc-platform-chip--active:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 8px 22px rgba(0, 0, 0, 0.28);
  transform: translateY(-1px);
}

.gc-platform-chip--active .gc-platform-chip__icon {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.gc-platform-edit {
  position: relative;
  width: 2.15rem;
  min-width: 2.15rem;
  height: 2.15rem;
  min-height: 2.15rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}

.gc-platform-edit.is-open,
.gc-platform-edit.has-filter {
  color: var(--color-accent);
  border-color: rgba(100, 210, 255, 0.35);
}

.gc-platform-edit.has-filter::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 6px var(--color-accent);
}

.gc-platform-popover {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 120;
  width: min(320px, calc(100vw - 2rem));
  padding: 0.85rem 0.75rem 0.75rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.gc-platform-popover__list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.gc-platform-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 3rem;
  padding: 0.55rem 0.65rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text);
  text-align: center;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.gc-platform-option:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.gc-platform-option.is-on {
  background: rgba(100, 210, 255, 0.1);
  border-color: rgba(100, 210, 255, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(100, 210, 255, 0.1);
}

/* Hide the noisy radio dot — active state is conveyed by background + border */
.gc-platform-option__radio {
  display: none;
}

.gc-platform-popover__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-text);
}

.gc-platform-option__radio {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: transparent;
}

.gc-platform-option.is-on .gc-platform-option__radio {
  border-color: var(--color-accent);
  background: radial-gradient(circle at center, var(--color-accent) 0 35%, transparent 36%);
  box-shadow: 0 0 0 1px rgba(100, 210, 255, 0.25);
}

.gc-platform-option__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  flex-shrink: 0;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.gc-platform-option__icon .gc-platform-mark,
.gc-platform-option__icon .gc-platform-mark-wrap .gc-platform-mark--img {
  display: block;
  height: 1.35rem;
  width: auto;
  max-width: 1.75rem;
}

.gc-platform-option__icon .gc-platform-mark[width="24"] {
  height: 1.35rem;
  width: 1.35rem;
}

.gc-platform-option__label {
  display: none;
}

.gc-platform-popover__hint {
  margin: 0 0 var(--space-sm);
  font-size: var(--text-xs);
  line-height: 1.45;
  color: var(--color-text-muted);
}

.gc-platform-popover__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.gc-platform-toggle {
  flex: 1;
  min-width: 0;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.gc-platform-toggle::-webkit-scrollbar {
  display: none;
}

.gc-search {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  min-height: var(--gc-toolbar-control-h, 2.5rem);
  padding: 0 0.75rem;
  border-radius: var(--radius-pill);
  min-width: 140px;
  flex: 1;
  max-width: 220px;
  box-sizing: border-box;
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast);
}

.gc-toolbar__query-strip .gc-search:focus-within,
.gc-search--expand:focus-within {
  max-width: none;
}

.gc-search:focus-within {
  border-color: rgba(100, 210, 255, 0.45);
  background: rgba(100, 210, 255, 0.06);
  box-shadow:
    0 0 0 1px rgba(100, 210, 255, 0.18),
    0 8px 22px rgba(0, 0, 0, 0.28);
}

.gc-search__input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  color: var(--color-text);
  font-family: inherit;
  font-size: var(--text-sm);
  caret-color: var(--color-accent);
}

.gc-search__input:focus {
  outline: none;
}

.gc-search__input::placeholder {
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.gc-search:focus-within .gc-search__input::placeholder {
  color: var(--color-text-subtle);
}

html[data-theme="light"] .gc-search:focus-within {
  border-color: rgba(0, 122, 255, 0.45);
  background: rgba(0, 122, 255, 0.06);
  box-shadow:
    0 0 0 1px rgba(0, 122, 255, 0.18),
    0 8px 22px rgba(0, 0, 0, 0.1);
}

html[data-theme="light"] .gc-search__input {
  caret-color: #007aff;
}

/* Mobile options sheet */
.gc-mobile-sheet {
  position: fixed;
  inset: 0;
  z-index: 880;
  pointer-events: none;
  visibility: hidden;
}

.gc-mobile-sheet--open {
  visibility: visible;
}

.gc-mobile-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gc-mobile-sheet__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: min(86vh, 720px);
  border-radius: calc(var(--radius-xl) + 4px) calc(var(--radius-xl) + 4px) 0 0;
  display: flex;
  flex-direction: column;
  transform: translateY(105%);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 -24px 80px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(28, 28, 32, 0.86) 0%, rgba(16, 16, 20, 0.94) 100%);
  backdrop-filter: blur(48px) saturate(180%);
  -webkit-backdrop-filter: blur(48px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.gc-mobile-sheet--open {
  pointer-events: auto;
}

.gc-mobile-sheet--open .gc-mobile-sheet__backdrop {
  opacity: 1;
}

.gc-mobile-sheet--open .gc-mobile-sheet__panel {
  transform: translateY(0);
}

.gc-mobile-sheet__handle {
  width: 36px;
  height: 4px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.2);
  margin: var(--space-sm) auto 0;
  flex-shrink: 0;
}

.gc-mobile-sheet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.4rem 0.75rem;
}

.gc-mobile-sheet__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.gc-mobile-sheet__body {
  overflow-y: auto;
  padding: 0 1.4rem calc(2rem + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* The stats card inside the menu — make it discreet */
.gc-mobile-sheet__body > .gc-stats {
  align-self: flex-start;
  margin: 0;
  padding: 0.35rem 0.7rem 0.35rem 0;
  background: transparent;
  border: none;
  color: var(--color-text-subtle);
  font-size: 0.6875rem;
}

.gc-menu-section h3 {
  margin: 0 0 0.7rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.gc-menu-section .gc-layout-toggle {
  width: 100%;
  margin-bottom: var(--space-sm);
}

.gc-menu-section .gc-layout-btn {
  flex: 1;
  height: auto;
  min-height: 44px;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
}

.gc-menu-section .gc-layout-btn__label {
  display: block;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gc-menu-section .gc-view-bar {
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
}

.gc-menu-section .gc-segmented--scale {
  width: 100%;
}

.gc-scale-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}

.gc-scale-card {
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-muted);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: none;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.gc-scale-card--active {
  color: #000;
  border-color: transparent;
  background: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.gc-platform-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
}

.gc-platform-menu .gc-platform-option {
  min-height: 2.65rem;
  padding: 0.4rem 0.55rem;
}

.gc-platform-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--glass-border-dim);
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text-secondary);
  text-align: center;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.gc-platform-card__label {
  font-size: var(--text-xs);
  font-weight: 600;
  line-height: 1.25;
}

.gc-platform-card--active {
  color: var(--color-text);
  border-color: rgba(100, 210, 255, 0.35);
  background: rgba(100, 210, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.gc-platform-card--switch1.gc-platform-card--active {
  border-color: rgba(230, 0, 18, 0.35);
  background: rgba(230, 0, 18, 0.1);
}

.gc-platform-card--switch2.gc-platform-card--active {
  border-color: rgba(255, 196, 0, 0.4);
  background: rgba(255, 196, 0, 0.1);
}

.gc-search--menu,
.gc-search--expand {
  width: 100%;
  max-width: none;
}

/* Compact stats in mobile sheet — inline, minimal */
.gc-stats--compact {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  gap: 0.4rem;
}

.gc-stats--compact .gc-stats__refresh {
  margin-left: auto;
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--glass-border-dim);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0;
}

.gc-stats--compact .gc-stats__refresh:hover {
  background: rgba(255, 255, 255, 0.08);
}

.gc-stats--compact .gc-stats__item--accent {
  color: var(--color-text);
}

.gc-mobile-sheet__settings {
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xs);
}

.gc-body {
  min-height: 420px;
  animation: gc-fade-in 0.35s ease;
}

@keyframes gc-fade-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gc-data-note {
  font-size: var(--text-xs);
  color: var(--color-text-subtle);
  text-align: center;
  margin: var(--space-md) 0 0;
}

.gc-empty {
  text-align: center;
  color: var(--color-text-muted);
  padding: var(--space-3xl) var(--space-lg);
}

/* Month / week grid */
.gc-grid--month {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--glass-border-dim);
  border: 1px solid var(--glass-border-dim);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 24px 60px rgba(0, 0, 0, 0.4);
  animation: gc-grid-reveal 0.5s var(--ease-out) both;
}

@keyframes gc-grid-reveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Directional slide-in when navigating between months/weeks */
.gc-grid--month.gc-grid--enter-next {
  animation: gc-grid-enter-next 0.42s var(--ease-out) both;
}

.gc-grid--month.gc-grid--enter-prev {
  animation: gc-grid-enter-prev 0.42s var(--ease-out) both;
}

@keyframes gc-grid-enter-next {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes gc-grid-enter-prev {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gc-grid--month,
  .gc-grid--month.gc-grid--enter-next,
  .gc-grid--month.gc-grid--enter-prev {
    animation: none;
  }
}

.gc-grid--month-pro .gc-grid__weekdays,
.gc-grid--month-pro .gc-grid__body {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
}

.gc-grid--month-pro .gc-grid__weekdays {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.03);
}

.gc-grid--month-pro .gc-grid__body {
  /* Apple Calendar: every week row is the same height regardless of content density */
  grid-auto-rows: minmax(150px, 200px);
  align-content: stretch;
}

.gc-grid__head {
  padding: 0.5rem 0.5rem;
  text-align: center;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--color-text-subtle);
  background: transparent;
}

.gc-day {
  position: relative;
  min-height: 0;
  padding: 6px 5px 5px;
  background: rgba(20, 20, 22, 0.88);
  border: none;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  transition: background var(--transition-fast);
}

.gc-day:hover {
  background: rgba(36, 36, 38, 0.94);
}

.gc-day--empty {
  background: transparent;
  min-height: 0;
  border-color: transparent;
}

.gc-day--today {
  background: linear-gradient(180deg, rgba(100, 210, 255, 0.12) 0%, rgba(100, 210, 255, 0.04) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(100, 210, 255, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.gc-day--today .gc-day__num {
  background: var(--color-accent);
  color: #001a26;
  font-weight: 800;
  font-size: 0.6875rem;
  letter-spacing: -0.02em;
  box-shadow:
    0 2px 10px rgba(100, 210, 255, 0.55),
    0 0 0 2px rgba(100, 210, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  animation: gc-today-pulse 2.6s ease-in-out infinite;
}

@keyframes gc-today-pulse {
  0%, 100% {
    box-shadow:
      0 2px 10px rgba(100, 210, 255, 0.55),
      0 0 0 2px rgba(100, 210, 255, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.45);
  }
  50% {
    box-shadow:
      0 2px 14px rgba(100, 210, 255, 0.75),
      0 0 0 4px rgba(100, 210, 255, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.5);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gc-day--today .gc-day__num {
    animation: none;
  }
}

html[data-theme="light"] .gc-day {
  background: rgba(255, 255, 255, 0.96);
}

html[data-theme="light"] .gc-day:hover {
  background: var(--glass-bg-hover);
}

html[data-theme="light"] .gc-day--today {
  background: linear-gradient(180deg, rgba(0, 122, 255, 0.12) 0%, rgba(0, 122, 255, 0.04) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(0, 122, 255, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

html[data-theme="light"] .gc-day--today .gc-day__num {
  background: #007aff;
  color: #fff;
  box-shadow:
    0 2px 10px rgba(0, 122, 255, 0.45),
    0 0 0 2px rgba(0, 122, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  animation-name: gc-today-pulse-light;
}

@keyframes gc-today-pulse-light {
  0%, 100% {
    box-shadow:
      0 2px 10px rgba(0, 122, 255, 0.45),
      0 0 0 2px rgba(0, 122, 255, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow:
      0 2px 14px rgba(0, 122, 255, 0.6),
      0 0 0 4px rgba(0, 122, 255, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.5);
  }
}

/* Light theme grid hairlines */
html[data-theme="light"] .gc-grid--month {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 18px 48px rgba(0, 0, 0, 0.08);
}

html[data-theme="light"] .gc-grid--month-pro .gc-grid__weekdays {
  background: rgba(0, 0, 0, 0.025);
}

html[data-theme="light"] .gc-grid__head {
  color: rgba(0, 0, 0, 0.48);
}

html[data-theme="light"] .gc-day__num {
  color: rgba(0, 0, 0, 0.65);
}

/* Heat tints rebuilt for light: use iOS blue at low alpha */
html[data-theme="light"] .gc-day--heat-1 { background: rgba(0, 122, 255, 0.05); }
html[data-theme="light"] .gc-day--heat-2 { background: rgba(0, 122, 255, 0.09); box-shadow: inset 0 0 0 1px rgba(0, 122, 255, 0.1); }
html[data-theme="light"] .gc-day--heat-3 { background: rgba(0, 122, 255, 0.13); box-shadow: inset 0 0 0 1px rgba(0, 122, 255, 0.15); }
html[data-theme="light"] .gc-day--heat-4 { background: rgba(0, 122, 255, 0.18); box-shadow: inset 0 0 0 1px rgba(0, 122, 255, 0.22); }

html[data-theme="light"] .gc-day--heat-2 .gc-day__num--has,
html[data-theme="light"] .gc-day--heat-3 .gc-day__num--has,
html[data-theme="light"] .gc-day--heat-4 .gc-day__num--has {
  color: #007aff;
}

html[data-theme="light"] .gc-day-meta__title,
html[data-theme="light"] .gc-day-trio__title {
  color: rgba(0, 0, 0, 0.85);
}

html[data-theme="light"] .gc-day-meta__studio,
html[data-theme="light"] .gc-day-trio__studio {
  color: rgba(0, 0, 0, 0.55);
}

html[data-theme="light"] .gc-day__more {
  color: #007aff;
}

html[data-theme="light"] .gc-day__more:hover {
  background: rgba(0, 122, 255, 0.1);
}

html[data-theme="light"] .gc-cover {
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 1px 2px rgba(0, 0, 0, 0.06);
}

.gc-day__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-top: 2px;
}

.gc-day__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.7;
}

.gc-day__dot-more {
  font-size: 0.5rem;
  font-weight: 700;
  color: var(--color-text-subtle);
  margin-left: 2px;
}

.gc-day--selected {
  background: rgba(100, 210, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(100, 210, 255, 0.35);
}

.gc-day__num {
  align-self: flex-end;
  font-size: 0.75rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--color-text-secondary);
  padding: 0;
  min-width: 1.25rem;
  min-height: 1.25rem;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  border-radius: 50%;
  line-height: 1.25rem;
  text-align: center;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.gc-day__num--has:hover {
  background: var(--glass-surface);
  color: var(--color-text);
}

.gc-day__badge {
  display: none !important;
}

.gc-day__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-height: 0;
  margin-top: 1.75rem;
}

.gc-day__featured {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.gc-day__mini-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  max-height: 4.5rem;
  overflow: hidden;
}

.gc-day__more {
  flex: 0 0 auto;
  align-self: flex-start;
  width: auto;
  min-height: 0;
  padding: 0.15rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--color-accent);
  text-align: left;
  border: none;
  border-radius: var(--radius-pill);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.gc-day__more--icon {
  align-self: flex-end;
  padding: 0.15rem 0.5rem;
}

.gc-day__more:hover {
  background: rgba(100, 210, 255, 0.1);
  color: var(--color-accent);
}

.gc-poster-card--featured {
  width: 100%;
  flex: 1 1 auto;
}

.gc-poster-card--featured {
  width: 100%;
}

.gc-poster-card--featured .gc-cover--poster-cell,
.gc-poster-card--featured .gc-cover--poster-cell-hero {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
}

.gc-poster-card--featured .gc-poster-card__title {
  font-size: 0.75rem;
  line-height: 1.3;
  -webkit-line-clamp: 2;
  margin-top: 6px;
}

/* Month cells — wireframe layouts (spotlight / trio / busy) */
.gc-grid--month-pro .gc-day,
.gc-grid--week-pro .gc-day {
  padding: 1.15rem 3px 3px;
  min-height: 0;
  overflow: hidden;
}

.gc-grid--month-pro .gc-day__num,
.gc-grid--week-pro .gc-day__num {
  position: absolute;
  top: 5px;
  right: 6px;
  z-index: 3;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
}

.gc-grid--month-pro .gc-day__content,
.gc-grid--week-pro .gc-day__content {
  margin-top: 0;
  gap: 4px;
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  overflow: hidden;
}

.gc-grid--month-pro .gc-day-meta__title {
  -webkit-line-clamp: 2;
  margin-bottom: 2px;
}

.gc-grid--month-pro .gc-day-meta__studio {
  font-size: 0.625rem;
  line-height: 1.2;
  color: var(--color-text-muted);
}

.gc-grid--month-pro .gc-day-meta__platforms {
  margin-top: 2px;
}

.gc-grid--month-pro .gc-day-meta__platforms .gc-tag {
  font-size: 0.5625rem;
  padding: 0.08rem 0.35rem;
}

.gc-day__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  gap: 5px;
}

.gc-day__body--spotlight,
.gc-day__body--trio {
  flex: 1 1 auto;
}

/* Clickable game targets — layout stays in component rules below */
.gc-release-open {
  cursor: pointer;
  position: relative;
  z-index: 6;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  isolation: isolate;
}

.gc-release-open:focus-visible {
  outline: 2px solid rgba(100, 210, 255, 0.55);
  outline-offset: 2px;
}

/* Apple-style tap feedback — radial flash + slight scale on active */
.gc-release-open::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 65%);
  opacity: 0;
  pointer-events: none;
  z-index: 50;
  transition: opacity 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gc-release-open:active::after {
  opacity: 1;
  transition: opacity 60ms ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .gc-release-open::after { display: none; }
}

html[data-theme="light"] .gc-release-open::after {
  background: radial-gradient(circle at center, rgba(0, 122, 255, 0.18), rgba(0, 122, 255, 0) 65%);
}

/* Same tap feedback for day-sheet item hit buttons */
.gc-day-sheet__item-hit {
  position: relative;
  isolation: isolate;
}

.gc-day-sheet__item-hit::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 65%);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gc-day-sheet__item-hit:active::after {
  opacity: 1;
  transition: opacity 60ms ease-out;
}

/* 1 release — poster + meta */
.gc-day-spotlight,
.gc-day-lead,
.gc-day-trio__card,
.gc-day-row {
  display: flex;
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  text-align: left;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
}

.gc-day-spotlight:hover,
.gc-day-lead:hover,
.gc-day-trio__card:hover,
.gc-day-row:hover {
  background: rgba(255, 255, 255, 0.04);
}

.gc-day-spotlight:hover .gc-cover,
.gc-day-lead:hover .gc-cover,
.gc-day-trio__card:hover .gc-cover {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 28px rgba(0, 0, 0, 0.45),
    0 2px 6px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px) scale(1.015);
}

.gc-day-spotlight:active .gc-cover,
.gc-day-lead:active .gc-cover,
.gc-day-trio__card:active .gc-cover {
  transform: translateY(0) scale(0.98);
  transition-duration: 80ms;
}

.gc-day-spotlight:focus-visible,
.gc-day-lead:focus-visible,
.gc-day-trio__card:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.gc-day-spotlight {
  flex-direction: row;
  align-items: flex-start;
  gap: 6px;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  height: 100%;
}

.gc-day__body--spotlight .gc-day-spotlight {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  position: relative;
  height: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.gc-day-spotlight__art {
  flex: 0 0 48%;
  max-width: 52%;
  min-width: 0;
  line-height: 0;
}

/* App Arcade-style: poster fills entire cell area with title overlay at bottom */
.gc-day__body--spotlight .gc-day-spotlight__art {
  flex: 1 1 auto;
  width: 100%;
  max-width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.gc-day__body--spotlight .gc-day-spotlight__art .gc-cover,
.gc-day__body--spotlight .gc-day-spotlight__art .gc-cover--poster-month-lg {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: var(--radius-sm);
}

.gc-day__body--spotlight .gc-day-spotlight__art .gc-cover__img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 28%;
}

.gc-day__body--spotlight .gc-day-spotlight__meta {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 0.4rem 0.45rem 0.35rem;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 12, 16, 0.78) 45%, rgba(10, 12, 16, 0.96) 100%);
  flex: 0 0 auto;
}

.gc-day__body--spotlight .gc-day-meta__title {
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
  -webkit-line-clamp: 2;
}

.gc-day__body--spotlight .gc-day-meta__studio {
  color: rgba(255, 255, 255, 0.78);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.gc-cover--poster-month-lg,
.gc-cover--poster-month-lg .gc-cover__fallback {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  min-height: 64px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.gc-cover--poster-month-lg .gc-cover__img {
  width: 100%;
  height: 100%;
  min-height: 64px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.gc-day-spotlight__meta,
.gc-day-lead__meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  justify-content: flex-start;
  padding: 0;
  overflow: hidden;
}

.gc-day-meta__copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.gc-day-meta__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin: 0 0 4px;
}

.gc-day-meta__studio {
  display: block;
  font-size: 0.625rem;
  line-height: 1.25;
  color: var(--color-text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0;
}

.gc-day-meta__studio--pub {
  color: var(--color-text-muted);
  margin-top: 1px;
}

.gc-day-meta__platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
  margin-top: 3px;
}

.gc-day-meta__platforms .gc-tag {
  display: none;
}

/* 2–3 releases — poster columns */
.gc-day__body--trio {
  display: grid;
  gap: 3px;
  flex: 1 1 auto;
  min-height: 0;
  align-content: stretch;
}

.gc-day__body--trio-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gc-day__body--trio-3,
.gc-day__body--trio-1 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gc-day-trio__card {
  flex-direction: column;
  align-items: stretch;
  gap: 3px;
  min-width: 0;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

/* Make trio cards into cover-art tiles with title overlay */
.gc-day-trio__art {
  flex: 1 1 auto;
  min-height: 0;
  position: relative;
}

.gc-day-trio__art .gc-cover,
.gc-day-trio__art .gc-cover--poster-month-trio {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: var(--radius-sm);
}

.gc-day-trio__art .gc-cover__img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 30%;
}

.gc-day-trio__copy {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 0.3rem 0.35rem 0.32rem;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 10, 14, 0.78) 50%, rgba(8, 10, 14, 0.96) 100%);
  pointer-events: none;
}

.gc-day-trio__copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.gc-day-trio__art {
  line-height: 0;
}

.gc-cover--poster-month-trio,
.gc-cover--poster-month-trio .gc-cover__fallback {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  min-height: 52px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gc-cover--poster-month-trio .gc-cover__img {
  width: 100%;
  height: 100%;
  min-height: 58px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.gc-day-trio__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  margin: 0 0 1px;
}

.gc-day-trio__studio {
  display: block;
  font-size: 0.5625rem;
  line-height: 1.15;
  color: var(--color-text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 4+ releases — lead poster + title pills (wireframe) */
.gc-day__body--busy {
  gap: 4px;
}

.gc-day__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  align-items: center;
}

.gc-day-pill {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 0.18rem 0.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--glass-border-dim);
  background: var(--glass-surface);
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.gc-day-pill:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border);
}

.gc-day-pill__title {
  font-size: 0.5625rem;
  font-weight: 650;
  line-height: 1.2;
  color: var(--color-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 8rem;
}

.gc-day-lead {
  flex-direction: row;
  align-items: flex-start;
  gap: 5px;
  flex-shrink: 0;
}

.gc-day-lead__art {
  flex: 0 0 40%;
  max-width: 44%;
  min-width: 0;
  line-height: 0;
}

.gc-cover--poster-month-lead,
.gc-cover--poster-month-lead .gc-cover__fallback {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  min-height: 56px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gc-cover--poster-month-lead .gc-cover__img {
  width: 100%;
  height: 100%;
  min-height: 56px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.gc-day-lead .gc-day-meta__title {
  -webkit-line-clamp: 2;
  font-size: 0.75rem;
}

.gc-day__rows {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
}

.gc-day-row {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 0.18rem 0.3rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.gc-day-row__title {
  flex: 1;
  min-width: 0;
  font-size: 0.6875rem;
  font-weight: 650;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--color-text);
}

.gc-day-row__tags {
  flex-shrink: 0;
  max-width: 48%;
  overflow: hidden;
  text-align: right;
}

.gc-day-row__tags .gc-tag {
  font-size: 0.4375rem;
  padding: 0.05rem 0.28rem;
}

/* (+N MORE) */
.gc-grid--month-pro .gc-day__more,
.gc-grid--week-pro .gc-day__more {
  margin-top: 2px;
  align-self: flex-end;
  width: auto;
  min-height: auto;
  padding: 0.15rem 0;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-accent);
  background: transparent;
  border: none;
  border-radius: 0;
}

.gc-grid--month-pro .gc-day__more:hover,
.gc-grid--week-pro .gc-day__more:hover {
  background: rgba(100, 210, 255, 0.12);
}

.gc-grid--month-pro .gc-day--layout-spotlight,
.gc-grid--month-pro .gc-day--layout-trio,
.gc-grid--month-pro .gc-day--layout-busy,
.gc-grid--week-pro .gc-day--layout-spotlight,
.gc-grid--week-pro .gc-day--layout-trio,
.gc-grid--week-pro .gc-day--layout-busy {
  min-height: 0;
}

/* Compact list rows in day cells */
.gc-game-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
  padding: 0.15rem 0.2rem;
  border: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  text-align: left;
  cursor: pointer;
  min-width: 0;
  transition: background var(--transition-fast);
}

.gc-game-row:hover {
  background: rgba(100, 210, 255, 0.1);
}

.gc-game-row__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

.gc-game-row__title {
  flex: 1;
  min-width: 0;
  font-size: 0.75rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gc-game-row__meta {
  flex-shrink: 0;
  max-width: 46%;
  overflow: hidden;
}

.gc-game-row__meta .gc-tag {
  display: none;
}

.gc-game-row__platforms {
  justify-content: flex-end;
}

/* Overlays (portaled to body) */
#gc-overlay-root {
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
}

#gc-overlay-root.gc-overlay-root--open,
body.gc-overlay-open #gc-overlay-root {
  pointer-events: auto;
}

#gc-overlay-root > * {
  pointer-events: auto;
}

body.gc-overlay-open {
  overflow: hidden;
}

.gc-overlay-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1210;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(40px) saturate(165%);
  -webkit-backdrop-filter: blur(40px) saturate(165%);
  animation: gc-backdrop-in 0.32s var(--ease-out) both;
}

@keyframes gc-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Game detail panel — poster / meta / wishlist (liquid glass) */
.gc-game-sheet {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1230;
  width: min(960px, calc(100vw - 1.5rem));
  max-height: min(92vh, 900px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: calc(var(--radius-xl) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  color: var(--color-text);
  background:
    linear-gradient(168deg, rgba(34, 36, 42, 0.82) 0%, rgba(14, 15, 20, 0.9) 100%);
  backdrop-filter: blur(48px) saturate(180%) brightness(1.04);
  -webkit-backdrop-filter: blur(48px) saturate(180%) brightness(1.04);
  animation: gc-sheet-in 0.42s var(--ease-spring) both;
}

.gc-game-sheet.gc-game-sheet--panel {
  --glass-blur: 48px;
}

@keyframes gc-sheet-in {
  from {
    opacity: 0;
    transform: translate(-50%, -46%) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gc-overlay-backdrop,
  .gc-game-sheet {
    animation: none;
  }
}

.gc-game-sheet--panel::before,
.gc-game-sheet--apple::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.03) 22%, transparent 45%),
    radial-gradient(120% 80% at 100% 0%, rgba(100, 210, 255, 0.08), transparent 55%);
  opacity: 0.95;
}

.gc-game-sheet--panel > *,
.gc-game-sheet--apple > * {
  position: relative;
  z-index: 1;
}

.gc-game-sheet__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 12;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-pill);
}

.gc-game-sheet__mobile-bar,
.gc-game-sheet__body {
  position: relative;
  z-index: 1;
}

.gc-game-sheet__mobile-bar {
  display: none;
}

.gc-game-sheet__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.gc-game-sheet__back-circle,
.gc-game-sheet__mobile-follow .gc-follow {
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gc-game-sheet__mobile-title {
  margin: 0;
  min-width: 0;
  flex: 1 1 auto;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(0.875rem, 4vw, 1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gc-game-sheet__mobile-follow .gc-follow--on {
  color: var(--color-accent);
  border-color: rgba(100, 210, 255, 0.35);
  background: rgba(100, 210, 255, 0.12);
}

.gc-game-sheet__top {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) minmax(210px, 248px);
  gap: 1.35rem 1.5rem;
  align-items: start;
  padding: 2rem 3.5rem 1.35rem 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.gc-game-sheet__info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 0.1rem;
}

.gc-game-sheet__aside {
  min-width: 0;
  padding-top: 0.2rem;
}

.gc-game-sheet__poster {
  position: relative;
  width: 200px;
}

.gc-game-sheet__countdown {
  position: absolute;
  left: 50%;
  bottom: -0.45rem;
  transform: translateX(-50%);
  padding: 0.22rem 0.55rem;
  border-radius: var(--radius-pill);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(100, 210, 255, 0.92);
  color: #001a26;
  border: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(100, 210, 255, 0.28);
  z-index: 2;
}

.gc-game-sheet__poster .gc-cover,
.gc-game-sheet__poster .gc-cover--poster-detail {
  width: 200px;
  height: auto;
  border-radius: calc(var(--radius-md) + 2px);
  overflow: hidden;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.55),
    0 8px 20px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.gc-game-sheet__poster .gc-cover__img,
.gc-game-sheet__poster .gc-cover--poster-detail .gc-cover__img {
  width: 200px;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.gc-game-sheet__label {
  display: block;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.12rem;
}

.gc-game-sheet__release {
  margin: 0 0 0.25rem;
}

.gc-game-sheet__release time {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.94);
}

.gc-game-sheet__studio {
  margin: 0 0 0.2rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.gc-game-sheet__studio-link {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.gc-game-sheet__studio-link:hover {
  color: var(--color-accent);
}

.gc-game-sheet__studio-sep {
  color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.gc-game-sheet__synopsis {
  margin-top: 0.35rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-height: 9.5rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.gc-game-sheet__synopsis-label {
  display: block;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
}

.gc-game-sheet__synopsis p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.76);
}

.gc-game-sheet__synopsis--fallback p {
  color: rgba(255, 255, 255, 0.58);
  font-style: italic;
}

.gc-game-sheet__platform-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.15rem;
}

.gc-game-sheet__platforms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.gc-game-sheet__platform {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.gc-game-sheet__platform .gc-platform-mark,
.gc-game-sheet__platform .gc-platform-mark-wrap .gc-platform-mark--img {
  display: block;
  height: 1.1rem;
  width: auto;
  max-width: 1.55rem;
}

.gc-game-sheet__platform .gc-platform-mark[width="24"] {
  height: 1.1rem;
  width: 1.1rem;
}

.gc-game-sheet__rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  height: 1.75rem;
  padding: 0 0.45rem;
  border-radius: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
}

.gc-game-sheet__wishlist {
  min-width: 0;
}

.gc-game-sheet__wishlist-label {
  margin: 0 0 0.7rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.gc-game-sheet__store-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.gc-game-sheet__store-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0.55rem 0.55rem 0.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  text-decoration: none;
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast);
}

.gc-game-sheet__store-row:hover {
  transform: translateX(2px);
  border-color: rgba(100, 210, 255, 0.4);
  background: rgba(100, 210, 255, 0.08);
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.gc-game-sheet__store-row:active {
  transform: translateX(0) scale(0.98);
}

.gc-game-sheet__store-row--direct {
  border-color: rgba(120, 220, 160, 0.32);
  background: rgba(48, 209, 88, 0.06);
}

.gc-game-sheet__store-icon {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.88);
}

.gc-game-sheet__store-name {
  flex: 1;
  min-width: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gc-game-sheet__store-go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.gc-game-sheet__store-row:hover .gc-game-sheet__store-go {
  background: var(--color-accent);
  color: #001a26;
  border-color: var(--color-accent);
}

.gc-game-sheet__wishlist-empty {
  margin: 0;
  font-size: 0.6875rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

/* Legacy hero styles kept for day sheet references */
.gc-game-sheet__hero {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  min-height: 260px;
}

.gc-game-sheet__hero-bg {
  position: absolute;
  inset: -25%;
  background-size: cover;
  background-position: center;
  filter: blur(36px) saturate(1.45) brightness(1.05);
  transform: scale(1.18);
  opacity: 0.7;
  animation: gc-hero-parallax 18s ease-in-out infinite alternate;
}

@keyframes gc-hero-parallax {
  from { transform: scale(1.18) translate(-1.5%, -1%); }
  to   { transform: scale(1.24) translate(1.5%, 1%); }
}

@media (prefers-reduced-motion: reduce) {
  .gc-game-sheet__hero-bg { animation: none; }
}

.gc-game-sheet__hero-fade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(140% 90% at 0% 0%, rgba(100, 210, 255, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(10, 10, 12, 0.18) 0%, rgba(10, 10, 12, 0.55) 55%, rgba(14, 14, 16, 0.96) 92%, rgba(14, 14, 16, 1) 100%);
}

.gc-game-sheet__hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: var(--space-lg);
  align-items: flex-end;
  padding: 2.4rem var(--space-lg) var(--space-md);
}

.gc-game-sheet__hero-poster {
  position: relative;
  flex: 0 0 148px;
  transform: translateY(2px);
  transition: transform var(--transition-base);
}

.gc-game-sheet__hero-poster .gc-cover {
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 8px 18px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.gc-game-sheet__hero-copy {
  flex: 1;
  min-width: 0;
  padding-bottom: 0.5rem;
}

.gc-game-sheet__player-panel {
  position: relative;
  padding: 0 1.75rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gc-game-sheet__player-panel[hidden] {
  display: none !important;
}

.gc-game-sheet__player-panel .gc-game-sheet__player-wrap {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #000;
}

.gc-game-sheet__player-panel .gc-game-sheet__player {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.gc-game-sheet__player-close {
  position: absolute;
  top: 0.35rem;
  right: 2rem;
  z-index: 3;
  width: 1.85rem;
  height: 1.85rem;
}

.gc-game-sheet__media {
  flex-shrink: 0;
  padding: 1rem 1.75rem 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.12);
}

.gc-game-sheet__media-track {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.gc-game-sheet__media-card {
  flex: 0 0 auto;
  position: relative;
  width: min(220px, 42vw);
  border-radius: calc(var(--radius-md) + 2px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.gc-game-sheet__media-card:hover {
  transform: translateY(-2px);
  border-color: rgba(100, 210, 255, 0.35);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.gc-game-sheet__media-card--trailer,
.gc-game-sheet__media-card--shot {
  display: flex;
  flex-direction: column;
}

.gc-game-sheet__media-card--trailer {
  padding: 0;
  font: inherit;
  text-align: left;
}

.gc-game-sheet__media-visual {
  position: relative;
  display: block;
}

.gc-game-sheet__media-thumb,
.gc-game-sheet__media-card--shot img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.04);
}

.gc-game-sheet__media-visual .gc-game-sheet__media-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
  pointer-events: none;
}

.gc-game-sheet__media-card--trailer .gc-game-sheet__media-play svg {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
}

.gc-game-sheet__media-label {
  display: block;
  padding: 0.4rem 0.55rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.35);
}

/* Game media — trailers & screenshots */
.gc-game-media {
  flex-shrink: 0;
  padding: 1rem 1.75rem 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.gc-game-media__group-title {
  margin: 0 0 0.45rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.gc-game-media__track {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.gc-game-media__track::-webkit-scrollbar {
  height: 4px;
}

.gc-game-media__card {
  flex: 0 0 auto;
  width: min(220px, 42vw);
  border-radius: calc(var(--radius-md) + 2px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  scroll-snap-align: start;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.gc-game-media__card:hover {
  transform: translateY(-2px);
  border-color: rgba(100, 210, 255, 0.35);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.gc-game-media__card--trailer,
.gc-game-media__card--shot {
  display: flex;
  flex-direction: column;
}

.gc-game-media__visual {
  position: relative;
  display: block;
}

.gc-game-media__thumb,
.gc-game-media__card--shot img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.04);
}

.gc-game-media__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
  pointer-events: none;
}

.gc-game-media__play svg {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
}

.gc-game-media__label {
  display: block;
  padding: 0.4rem 0.55rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.35);
}

.gc-game-media--compact {
  padding: 0.55rem 0 0;
  border-top: none;
  background: transparent;
  gap: 0.45rem;
}

.gc-game-media--compact .gc-game-media__group-title {
  margin-bottom: 0.3rem;
  font-size: 0.625rem;
}

.gc-game-media--compact .gc-game-media__card {
  width: min(148px, 34vw);
}

.gc-game-media--compact .gc-game-media__card--trailer {
  flex: 0 0 min(148px, 34vw);
}

.gc-game-media--compact .gc-game-media__card--shot {
  flex: 0 0 min(132px, 32vw);
}

.gc-game-media--compact .gc-game-media__label {
  padding: 0.3rem 0.45rem;
  font-size: 0.5625rem;
}

.gc-game-media-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.12rem 0.42rem;
  border-radius: var(--radius-pill);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.gc-game-media-badge svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.gc-day-sheet__spotlight-wrap {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.gc-day-sheet__spotlight-wrap .gc-day-sheet__spotlight-card {
  flex: none;
  width: 100%;
}

.gc-day-sheet__spotlight-media-badge,
.gc-day-sheet__item-media-badge {
  display: block;
  margin: 0.25rem 0 0.35rem;
}

.gc-day-sheet__spotlight-media,
.gc-day-sheet__item-media {
  padding: 0 0.15rem 0.35rem;
}

.gc-day-sheet__item--has-media {
  flex-wrap: wrap;
}

.gc-day-sheet__item--has-media .gc-day-sheet__item-media {
  flex: 1 1 100%;
  order: 3;
  padding: 0 0.75rem 0.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.gc-mobile-day-card__media-badge {
  position: absolute;
  left: 0.35rem;
  bottom: 0.35rem;
  z-index: 2;
  pointer-events: none;
}

.gc-mobile-day-card__media-badge .gc-game-media-badge {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Media lightbox — fullscreen video & screenshot gallery */
.gc-media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(0.75rem, env(safe-area-inset-top)) max(0.75rem, env(safe-area-inset-right))
    max(0.75rem, env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
}

.gc-media-lightbox[hidden] {
  display: none !important;
}

body.gc-media-lightbox-open {
  overflow: hidden;
}

.gc-media-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gc-media-lightbox__panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: min(92vh, 900px);
  display: flex;
  flex-direction: column;
  border-radius: calc(var(--radius-xl) + 2px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
}

.gc-media-lightbox__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gc-media-lightbox__title {
  margin: 0;
  min-width: 0;
  flex: 1 1 auto;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gc-media-lightbox__close {
  flex-shrink: 0;
}

.gc-media-lightbox__body {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem;
}

.gc-media-lightbox__body[hidden] {
  display: none !important;
}

.gc-media-lightbox__video-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gc-media-lightbox__video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.gc-media-lightbox__body--gallery {
  gap: 0.5rem;
  padding: 0.65rem 0.45rem 0.85rem;
}

.gc-media-lightbox__figure {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.gc-media-lightbox__img {
  max-width: 100%;
  max-height: min(72vh, 720px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.gc-media-lightbox__counter {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.gc-media-lightbox__nav {
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gc-media-lightbox__nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.gc-media-lightbox__nav:not(:disabled):hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(100, 210, 255, 0.35);
}

.gc-game-sheet__footer {
  flex-shrink: 0;
  padding: 0.85rem 1.75rem 1.35rem;
}

.gc-game-sheet__title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.gc-game-sheet__studio,
.gc-game-sheet__date {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.68);
}

.gc-game-sheet__platforms {
  margin-bottom: var(--space-sm);
}

.gc-game-sheet__genres {
  margin-bottom: var(--space-md);
}

.gc-game-sheet__entities {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: var(--space-md);
}

.gc-game-sheet--rich,
.gc-game-sheet--has-media {
  width: min(1040px, calc(100vw - 1rem));
  max-height: min(94vh, 940px);
}

.gc-game-sheet__trailer {
  margin-top: var(--space-md);
}

.gc-game-sheet__player-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border-dim);
  background: #000;
  aspect-ratio: 16 / 9;
}

.gc-game-sheet__player {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.gc-game-sheet__video-pills {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
  overflow-x: auto;
  padding-bottom: 2px;
}

.gc-game-sheet__video-pill {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.55rem 0.3rem 0.3rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--glass-border-dim);
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  cursor: pointer;
  max-width: 200px;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.gc-game-sheet__video-pill.is-active {
  border-color: rgba(100, 210, 255, 0.45);
  background: rgba(100, 210, 255, 0.1);
}

.gc-game-sheet__video-pill img {
  width: 2.5rem;
  height: 1.5rem;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.gc-game-sheet__video-pill-label {
  font-size: 0.625rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gc-game-sheet__summary {
  margin-bottom: var(--space-lg);
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.gc-game-sheet__summary h3,
.gc-game-sheet__gallery h3,
.gc-game-sheet__videos h3,
.gc-game-sheet__trailer h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--color-text);
}

.gc-game-sheet__summary p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: -0.005em;
}

.gc-game-sheet__gallery,
.gc-game-sheet__videos {
  margin-top: var(--space-md);
}

.gc-game-sheet__gallery-track {
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
  padding-bottom: var(--space-xs);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.gc-game-sheet__shot {
  flex: 0 0 auto;
  width: min(320px, 78vw);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border-dim);
  scroll-snap-align: start;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  transition: transform var(--transition-fast);
}

.gc-game-sheet__shot:hover {
  transform: scale(1.02);
}

.gc-game-sheet__shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.gc-game-sheet__video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-sm);
}

.gc-game-sheet__video {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border-dim);
  text-decoration: none;
  color: inherit;
}

.gc-game-sheet__video img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.gc-game-sheet__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 0.875rem;
  pointer-events: none;
}

.gc-game-sheet__video-title {
  display: block;
  padding: 0.35rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.45);
}

.gc-wishlist__btn--direct {
  border-color: rgba(120, 220, 160, 0.35);
  background: rgba(80, 200, 140, 0.08);
}

.gc-offline-banner {
  margin: 0 0 var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 180, 80, 0.35);
  background: rgba(255, 160, 60, 0.08);
}

.gc-offline-banner p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.gc-settings__export-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.gc-settings__subscribe {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.gc-settings__text--readonly {
  font-size: 0.6875rem;
  opacity: 0.85;
}

.gc-settings__hint--warn {
  color: #e8a040;
}

.gc-entity-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.gc-entity-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.55rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--glass-border-dim);
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  font-size: var(--text-xs);
  cursor: pointer;
  text-decoration: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.gc-entity-chip:hover {
  border-color: rgba(100, 210, 255, 0.35);
  background: rgba(100, 210, 255, 0.08);
}

.gc-entity-chip__type {
  opacity: 0.55;
  text-transform: uppercase;
  font-size: 0.5625rem;
  letter-spacing: 0.05em;
}

.gc-wishlist {
  margin-bottom: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
}

.gc-wishlist__label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.gc-wishlist__grid {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.gc-wishlist__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--glass-border-dim);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast);
}

.gc-wishlist__btn::after {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14M13 5l7 7-7 7'/></svg>") center/14px no-repeat,
    rgba(255, 255, 255, 0.1);
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.gc-wishlist__btn:hover {
  transform: translateY(-1px);
  border-color: rgba(100, 210, 255, 0.45);
  background: rgba(100, 210, 255, 0.08);
}

.gc-wishlist__btn:hover::after {
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23001a26' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14M13 5l7 7-7 7'/></svg>") center/14px no-repeat,
    var(--color-accent);
  transform: translateX(2px);
}

.gc-wishlist__btn:active {
  transform: scale(0.97);
}

.gc-wishlist__platform {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
}

.gc-wishlist__price {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
}

.gc-game-sheet__footer .gc-game-sheet__entities {
  margin-bottom: 0.65rem;
}

.gc-game-sheet__actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.gc-game-sheet__follow-hint {
  font-size: 0.625rem;
  color: var(--color-text-subtle);
}

/* Day sheet light theme — Apple-style */
html[data-theme="light"] .gc-day-sheet {
  background:
    linear-gradient(168deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 252, 0.96) 100%);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow:
    0 32px 100px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  color: rgba(0, 0, 0, 0.88);
}

html[data-theme="light"] .gc-day-sheet__hero-fade {
  background:
    radial-gradient(140% 90% at 0% 0%, rgba(0, 122, 255, 0.14), transparent 55%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.45) 45%,
      rgba(248, 248, 252, 0.92) 88%,
      rgba(248, 248, 252, 1) 100%
    );
}

html[data-theme="light"] .gc-day-sheet__weekday {
  color: #007aff;
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.6);
}

html[data-theme="light"] .gc-day-sheet__date,
html[data-theme="light"] .gc-day-sheet__count {
  color: rgba(0, 0, 0, 0.88);
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.65);
}

html[data-theme="light"] .gc-day-sheet__count {
  color: rgba(0, 0, 0, 0.62);
}

html[data-theme="light"] .gc-day-sheet__section h3 {
  color: rgba(0, 0, 0, 0.86);
}

html[data-theme="light"] .gc-day-sheet__list {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

html[data-theme="light"] .gc-day-sheet__item {
  background: #ffffff;
}

html[data-theme="light"] .gc-day-sheet__item:hover {
  background: rgba(0, 0, 0, 0.025);
}

html[data-theme="light"] .gc-day-sheet__item-title {
  color: rgba(0, 0, 0, 0.88);
}

html[data-theme="light"] .gc-day-sheet__item-hit:hover .gc-day-sheet__item-title {
  color: #007aff;
}

html[data-theme="light"] .gc-day-sheet__item-studio {
  color: rgba(0, 0, 0, 0.55);
}

html[data-theme="light"] .gc-day-sheet__spotlight-art {
  border-color: rgba(0, 0, 0, 0.08);
}

html[data-theme="light"] .gc-day-sheet__spotlight-shade {
  background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, 0.72) 100%);
}

/* Day sheet — Apple-style liquid glass */
.gc-day-sheet {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1225;
  width: min(680px, calc(100vw - 1.25rem));
  max-height: min(90vh, 820px);
  display: flex;
  flex-direction: column;
  border-radius: calc(var(--radius-xl) + 2px);
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 32px 100px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: var(--color-text);
  background:
    linear-gradient(168deg, rgba(28, 30, 34, 0.92) 0%, rgba(14, 15, 20, 0.96) 100%);
  backdrop-filter: blur(48px) saturate(180%) brightness(1.04);
  -webkit-backdrop-filter: blur(48px) saturate(180%) brightness(1.04);
  transition:
    transform var(--transition-base),
    filter var(--transition-base),
    opacity var(--transition-base);
  animation: gc-sheet-in 0.42s var(--ease-spring) both;
}

body.gc-overlay-detail-open.gc-overlay-day-open .gc-day-sheet {
  transform: translate(-50%, -50%) scale(0.965);
  filter: brightness(0.72) saturate(0.92);
}

#gc-overlay-root.gc-overlay-root--detail .gc-game-sheet {
  z-index: 1240;
}

#gc-overlay-root button {
  -webkit-appearance: none;
  appearance: none;
}

#gc-overlay-root .gc-follow.glass,
#gc-overlay-root .gc-share.glass,
#gc-overlay-root .gc-day-sheet__close.glass,
#gc-overlay-root .gc-game-sheet__close.glass {
  background-color: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--color-text-secondary);
  box-shadow: var(--shadow-glass);
}

#gc-overlay-root .gc-follow.glass:hover,
#gc-overlay-root .gc-share.glass:hover,
#gc-overlay-root .gc-day-sheet__close.glass:hover,
#gc-overlay-root .gc-game-sheet__close.glass:hover {
  background-color: var(--glass-bg-hover);
  border-color: var(--glass-border-bright);
  color: var(--color-text);
}

#gc-overlay-root .gc-follow.glass:active,
#gc-overlay-root .gc-share.glass:active,
#gc-overlay-root .gc-day-sheet__close.glass:active,
#gc-overlay-root .gc-game-sheet__close.glass:active {
  background-color: var(--glass-bg-active);
  transform: scale(0.97);
}

#gc-overlay-root .gc-day-sheet__item-hit:active {
  background: rgba(255, 255, 255, 0.08);
}

.gc-game-sheet__banner {
  position: relative;
  height: 9.5rem;
  overflow: hidden;
}

.gc-game-sheet__banner-art {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center top;
  filter: blur(28px) saturate(1.35);
  transform: scale(1.1);
}

.gc-game-sheet__banner-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 15, 20, 0.08) 0%, rgba(14, 15, 20, 0.92) 88%);
}

.gc-day-sheet__spotlight-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.gc-day-sheet__list {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

html[data-theme="light"] .gc-pill--active.glass-pill,
html[data-theme="light"] .gc-segment--active,
html[data-theme="light"] .gc-scale-card--active {
  background: var(--glass-bg-active);
  color: var(--color-text);
  box-shadow: var(--shadow-glass);
}

html[data-theme="light"] .gc-day:hover {
  background: var(--glass-bg-hover);
}

.gc-day-sheet__hero {
  position: relative;
  flex: 0 0 auto;
  padding: 1.2rem 1.5rem 1.4rem;
  overflow: hidden;
  min-height: 180px;
}

.gc-day-sheet__mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  opacity: 0.78;
  animation: gc-day-mosaic 22s ease-in-out infinite alternate;
}

@keyframes gc-day-mosaic {
  from { transform: scale(1.05) translate(-1%, -0.5%); }
  to   { transform: scale(1.12) translate(1%, 0.5%); }
}

@media (prefers-reduced-motion: reduce) {
  .gc-day-sheet__mosaic { animation: none; }
}

.gc-day-sheet__mosaic-tile {
  background-size: cover;
  background-position: center;
  filter: blur(3px) saturate(1.35) brightness(1.05);
  transform: scale(1.05);
}

.gc-day-sheet__hero-fade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(140% 90% at 0% 0%, rgba(100, 210, 255, 0.18), transparent 55%),
    linear-gradient(
      180deg,
      rgba(10, 10, 12, 0.18) 0%,
      rgba(10, 10, 12, 0.55) 45%,
      rgba(14, 15, 20, 0.95) 88%,
      rgba(14, 15, 20, 1) 100%
    );
}

.gc-day-sheet__hero-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.gc-day-sheet__grab {
  display: none;
  width: 36px;
  height: 4px;
  margin: 0 auto;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
}

.gc-day-sheet__hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-left: auto;
}

.gc-day-sheet__close {
  flex-shrink: 0;
}

.gc-day-sheet__hero-copy {
  position: relative;
  z-index: 1;
}

.gc-day-sheet__weekday {
  margin: 0 0 0.3rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.gc-day-sheet__date {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

.gc-day-sheet__count {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.gc-day-sheet__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 1.2rem 1.5rem 1.5rem;
  -webkit-overflow-scrolling: touch;
}

.gc-day-sheet__section {
  margin-bottom: 1.5rem;
}

.gc-day-sheet__section:last-child {
  margin-bottom: 0;
}

.gc-day-sheet__section h3 {
  margin: 0 0 0.8rem;
  padding: 0;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.022em;
  text-transform: none;
  color: var(--color-text);
}

.gc-day-sheet__spotlight-track {
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
  padding: 2px var(--space-xs) var(--space-xs);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.gc-day-sheet__spotlight-card {
  flex: 0 0 min(280px, 78vw);
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform var(--transition-fast);
}

.gc-day-sheet__spotlight-card:hover {
  transform: scale(1.02);
}

.gc-day-sheet__spotlight-art {
  position: relative;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.gc-day-sheet__spotlight-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.82) 100%);
}

.gc-day-sheet__spotlight-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--space-md);
  text-align: left;
}

.gc-day-sheet__spotlight-badge {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.5625rem;
  font-weight: 700;
  color: var(--color-accent);
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(100, 210, 255, 0.35);
}

.gc-day-sheet__spotlight-title {
  display: block;
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.gc-day-sheet__spotlight-studio {
  display: block;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.35rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gc-day-sheet__spotlight-tags .gc-tag {
  font-size: 0.5rem;
}

.gc-day-sheet__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--glass-border-dim);
  border: 1px solid var(--glass-border-dim);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.gc-day-sheet__item {
  display: flex;
  align-items: stretch;
  background: rgba(22, 22, 26, 0.94);
  transition: background var(--transition-fast);
}

.gc-day-sheet__item:hover {
  background: rgba(34, 34, 38, 0.96);
}

.gc-day-sheet__item-hit {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0.95rem;
  border: none;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.gc-day-sheet__item-hit:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
  border-radius: 2px;
}

.gc-day-sheet__item-poster {
  flex-shrink: 0;
  line-height: 0;
}

.gc-day-sheet__item-poster .gc-cover--poster-row {
  width: 52px;
  height: 78px;
}

.gc-day-sheet__item-poster .gc-cover--poster-row .gc-cover__img {
  width: 52px;
  height: 78px;
}

.gc-day-sheet__item-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.gc-day-sheet__item-title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--color-text);
}

.gc-day-sheet__item-hit:hover .gc-day-sheet__item-title {
  color: var(--color-accent);
}

.gc-day-sheet__item-studio {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gc-day-sheet__item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
}

.gc-day-sheet__item-tags .gc-tag {
  font-size: 0.5rem;
}

.gc-day-sheet__item-chevron {
  flex-shrink: 0;
  opacity: 0.35;
  display: flex;
  align-items: center;
}

.gc-day-sheet__item-side {
  display: flex;
  align-items: center;
  padding-right: 0.65rem;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.gc-day-sheet__item-side .gc-follow {
  margin: 0;
}

/* Poster cards */
.gc-poster-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  min-width: 0;
  transition: transform var(--transition-fast);
}

.gc-poster-card:hover {
  transform: translateY(-2px);
}

.gc-poster-card__art {
  line-height: 0;
}

.gc-poster-card__info {
  min-width: 0;
}

.gc-poster-card__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.625rem;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--color-text);
}

.gc-poster-card__title--lg {
  font-size: var(--text-base);
  line-height: 1.3;
  -webkit-line-clamp: 2;
}

.gc-poster-card__title--xl {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  line-height: 1.15;
  -webkit-line-clamp: 3;
  margin: 0;
}

.gc-poster-card--cell:not(.gc-poster-card--featured) {
  width: 44px;
  flex: 0 0 44px;
}

.gc-poster-card--cell:not(.gc-poster-card--featured) .gc-poster-card__title {
  -webkit-line-clamp: 2;
  font-size: 0.5625rem;
}

.gc-poster-card--row {
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-sm);
  width: 100%;
}

.gc-poster-card--hero {
  width: min(100%, 168px);
  margin: 0 auto;
}

.gc-poster-card--hero .gc-poster-card__title {
  font-size: var(--text-lg);
  -webkit-line-clamp: 2;
  text-align: center;
}

.gc-poster-card--panel {
  flex-shrink: 0;
}

/* Release cards */
.gc-release {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.gc-release:hover {
  transform: none;
}

.gc-release:hover .gc-cover {
  border-color: rgba(100, 210, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 22px rgba(0, 0, 0, 0.38);
}

.gc-release--hero .gc-cover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 24px rgba(0, 0, 0, 0.35);
}

.gc-release--thumb {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.gc-release--thumb .gc-release__info {
  display: none;
}

.gc-release__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding: 0 1px;
}

.gc-cover {
  position: relative;
  border-radius: calc(var(--radius-sm) + 1px);
  overflow: hidden;
  aspect-ratio: 2 / 3;
  width: 100%;
  flex-shrink: 0;
  background:
    radial-gradient(120% 80% at 50% 100%, hsl(var(--cover-hue, 210deg), 28%, 16%) 0%, rgba(6, 9, 14, 0.98) 70%),
    linear-gradient(180deg, rgba(12, 16, 24, 0.95) 0%, rgba(4, 6, 10, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 4px 14px rgba(0, 0, 0, 0.32),
    0 1px 2px rgba(0, 0, 0, 0.24);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

/* App Store-style glossy highlight overlay: top sheen + bottom darkening for depth */
.gc-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.02) 18%, transparent 38%, transparent 70%, rgba(0, 0, 0, 0.2) 100%);
  mix-blend-mode: overlay;
  opacity: 0.85;
}

/* Subtle inner rim — keeps the cover feeling crisp like an Apple icon */
.gc-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.18),
    inset 0 0 0 1.5px rgba(0, 0, 0, 0.25);
  -webkit-mask: linear-gradient(180deg, #000 0%, #000 100%);
}

.gc-cover--panel {
  width: 108px;
  flex-shrink: 0;
}

.gc-cover--hero {
  width: 100%;
}

.gc-cover--thumb,
.gc-cover--xs {
  width: 100%;
}

.gc-cover--sm {
  width: 52px;
  flex-shrink: 0;
}

.gc-cover--detail {
  width: min(100%, 200px);
  margin: 0 auto;
}

.gc-cover__img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.gc-cover--poster-cell,
.gc-cover--poster-xs,
.gc-cover--poster-row,
.gc-cover--poster-panel,
.gc-cover--poster-hero,
.gc-cover--poster-detail,
.gc-cover--poster-upcoming {
  aspect-ratio: 2 / 3;
}

.gc-cover--poster-cell {
  width: 44px;
  height: 66px;
}

.gc-cover--poster-xs {
  width: 44px;
  height: 66px;
}

.gc-cover--poster-row {
  width: 56px;
  height: 84px;
  flex-shrink: 0;
}

.gc-cover--poster-panel {
  width: 96px;
  height: 144px;
  flex-shrink: 0;
}

.gc-cover--poster-hero {
  width: min(100%, 168px);
  height: 252px;
  margin: 0 auto;
}

.gc-cover--poster-detail {
  width: min(100%, 200px);
  height: 300px;
  margin: 0 auto;
}

.gc-cover--poster-upcoming {
  width: 100%;
  height: 132px;
}

.gc-cover--poster-cell .gc-cover__img,
.gc-cover--poster-xs .gc-cover__img,
.gc-cover--poster-row .gc-cover__img,
.gc-cover--poster-panel .gc-cover__img,
.gc-cover--poster-hero .gc-cover__img,
.gc-cover--poster-detail .gc-cover__img,
.gc-cover--poster-upcoming .gc-cover__img {
  object-fit: cover;
  padding: 0;
}

.gc-cover__img.is-broken {
  display: none;
}

.gc-cover__fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--cover-hue, 210deg), 80%, 72%);
  background: linear-gradient(
    160deg,
    hsl(var(--cover-hue, 210deg), 42%, 22%) 0%,
    hsl(calc(var(--cover-hue, 210deg) + 40deg), 35%, 12%) 100%
  );
}

.gc-cover__initial {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.gc-cover__shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.08) 50%, transparent 65%);
  animation: gc-shimmer 2.4s ease-in-out infinite;
}

@keyframes gc-shimmer {
  0%,
  100% {
    opacity: 0.3;
    transform: translateX(-30%);
  }
  50% {
    opacity: 0.7;
    transform: translateX(30%);
  }
}

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

.gc-release__title {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.gc-release__meta,
.gc-studio-meta {
  display: block;
  font-size: 0.625rem;
  line-height: 1.35;
  color: var(--color-text-subtle);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gc-day-list-item p.gc-studio-meta,
.gc-list-row p.gc-studio-meta,
.gc-day-panel__body p.gc-studio-meta {
  margin: 0 0 var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.gc-release__tags,
.gc-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}

.gc-tag {
  font-size: 0.5625rem;
  font-weight: 500;
  padding: 0.12rem 0.4rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text-secondary);
  border: none;
  letter-spacing: 0.01em;
}

.gc-tag--muted {
  background: var(--glass-surface);
  color: var(--color-text-secondary);
  border-color: var(--glass-border-dim);
}

.gc-tag--switch1 {
  background: rgba(230, 0, 18, 0.12);
  color: #ff6b6b;
  border-color: rgba(230, 0, 18, 0.28);
}

.gc-tag--switch2 {
  background: rgba(255, 196, 0, 0.12);
  color: #ffd54f;
  border-color: rgba(255, 196, 0, 0.3);
}

.gc-tag--ps {
  background: rgba(0, 112, 204, 0.12);
  color: #64b5f6;
  border-color: rgba(0, 112, 204, 0.28);
}

.gc-tag--xbox {
  background: rgba(16, 124, 16, 0.12);
  color: #81c784;
  border-color: rgba(16, 124, 16, 0.28);
}

.gc-tag--pc {
  background: rgba(100, 210, 255, 0.1);
  color: var(--accent-games);
  border-color: rgba(100, 210, 255, 0.22);
}

.gc-pill--switch1.gc-pill--active {
  box-shadow: inset 0 0 0 1px rgba(230, 0, 18, 0.35);
}

.gc-pill--switch2.gc-pill--active {
  box-shadow: inset 0 0 0 1px rgba(255, 196, 0, 0.4);
}

/* Week view */
.gc-grid--week {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gc-week-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
}

.gc-week-col__head {
  flex-shrink: 0;
  padding: 0.28rem 0.15rem;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--color-text-subtle);
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  margin: 0;
}

.gc-week-col .gc-day {
  flex: 1;
  min-height: 0;
  border-radius: 0;
}

/* Day view */
.gc-day-view {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.gc-day-view__head {
  padding: 0 0.15rem;
  margin: 0;
}

.gc-day-view__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 650;
  letter-spacing: -0.03em;
}

.gc-day-view__list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.gc-day-list-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 0.55rem 0.65rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gc-day-list-item__body {
  flex: 1;
  min-width: 0;
}

.gc-icon-btn--fav.gc-icon-btn--active {
  color: #ff7b9c;
  border-color: rgba(255, 100, 130, 0.45);
  background: rgba(255, 100, 130, 0.12);
}

.gc-icon-btn--fav.gc-icon-btn--muted {
  opacity: 0.55;
}

.gc-meta-chip--fav {
  color: #ff9bb5;
  border: 1px solid rgba(255, 100, 130, 0.25);
  background: rgba(255, 100, 130, 0.08);
}

.gc-entity-fav {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--glass-border-dim);
  background: var(--glass-surface);
  color: var(--color-text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gc-entity-fav--on {
  color: #ff7b9c;
  border-color: rgba(255, 100, 130, 0.35);
  background: rgba(255, 100, 130, 0.1);
}

.gc-detail__studios {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: var(--space-md);
}

.gc-detail__studio-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.gc-day-view__hero {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  align-items: start;
  gap: var(--space-lg);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 640px) {
  .gc-day-view__hero {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

.gc-day-view__hero-meta {
  width: 100%;
  text-align: center;
}

.gc-settings__hint {
  margin: 0 0 var(--space-sm);
  font-size: var(--text-xs);
  color: var(--color-text-subtle);
  line-height: 1.45;
}

.gc-settings__toggle {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: var(--text-sm);
  cursor: pointer;
}

.gc-settings__add-row {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.gc-settings__text {
  flex: 1;
  min-width: 0;
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border-dim);
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  font: inherit;
}

.gc-chip--fav.is-on {
  border-color: rgba(255, 100, 130, 0.35);
  background: rgba(255, 100, 130, 0.1);
  color: #ffb3c6;
}

.gc-day-list-item {
  display: flex;
  width: 100%;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  border: 1px solid var(--glass-border-dim);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.gc-day-list-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(100, 210, 255, 0.25);
}

.gc-day-list-item .gc-poster-card__title {
  margin: 0 0 var(--space-xs);
  font-size: var(--text-base);
  display: block;
}

.gc-day-list-item p {
  margin: 0 0 var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.gc-link-btn {
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: var(--text-sm);
  cursor: pointer;
  padding: 0;
}

/* Year view — 12 mini calendars (Apple Calendar macOS) */
.gc-grid--year {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg) var(--space-md);
  padding: var(--space-sm) 0;
}

.gc-year-mini {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.85rem 0.95rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
  position: relative;
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast),
    transform var(--transition-fast);
}

.gc-year-mini:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--glass-border-dim);
  transform: translateY(-1px);
  z-index: 10;
}

/* Hover preview popover — Apple-style covers fan */
.gc-year-mini__preview {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -8px) scale(0.94);
  margin-top: 8px;
  min-width: 240px;
  max-width: 280px;
  padding: 0.7rem 0.7rem 0.75rem;
  border-radius: var(--radius-md);
  background: rgba(20, 20, 22, 0.96);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  border: 1px solid var(--glass-border);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: 0;
  pointer-events: none;
  z-index: 20;
  transition: opacity var(--transition-fast), transform var(--transition-base);
}

.gc-year-mini:hover .gc-year-mini__preview {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  pointer-events: auto;
}

@media (hover: none) {
  .gc-year-mini__preview {
    display: none;
  }
}

.gc-year-mini__preview::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: rgba(20, 20, 22, 0.96);
  border-left: 1px solid var(--glass-border);
  border-top: 1px solid var(--glass-border);
}

.gc-year-mini__preview-head {
  margin-bottom: 0.5rem;
}

.gc-year-mini__preview-title {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.gc-year-mini__preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
}

.gc-year-mini__preview-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.gc-year-mini__preview-card .gc-cover,
.gc-year-mini__preview-card .gc-cover--poster-xs {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
}

.gc-year-mini__preview-card-title {
  font-size: 0.5625rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text-secondary);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* Light theme preview */
html[data-theme="light"] .gc-year-mini__preview {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

html[data-theme="light"] .gc-year-mini__preview::before {
  background: rgba(255, 255, 255, 0.96);
  border-left-color: rgba(0, 0, 0, 0.08);
  border-top-color: rgba(0, 0, 0, 0.08);
}

html[data-theme="light"] .gc-year-mini__preview-title {
  color: #007aff;
}

html[data-theme="light"] .gc-year-mini__preview-card-title {
  color: rgba(0, 0, 0, 0.72);
}

/* When mini-month is near the right edge or bottom, adjust position */
.gc-grid--year .gc-year-mini:nth-last-child(-n+4) .gc-year-mini__preview {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 8px;
}

.gc-grid--year .gc-year-mini:nth-last-child(-n+4) .gc-year-mini__preview::before {
  top: auto;
  bottom: -5px;
  border-left: none;
  border-top: none;
  border-right: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

html[data-theme="light"] .gc-grid--year .gc-year-mini:nth-last-child(-n+4) .gc-year-mini__preview::before {
  border-right-color: rgba(0, 0, 0, 0.08);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.gc-year-mini:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.gc-year-mini__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem;
  margin-bottom: 0.15rem;
}

.gc-year-mini__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--color-accent);
  text-transform: capitalize;
}

.gc-year-mini__count {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--color-text-subtle);
  font-variant-numeric: tabular-nums;
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-pill);
  background: var(--glass-surface);
}

.gc-year-mini__weekdays,
.gc-year-mini__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.gc-year-mini__dow {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--color-text-subtle);
  padding: 0.2rem 0;
}

.gc-year-mini__day {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.55rem;
  font-size: 0.6875rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  color: var(--color-text-secondary);
  border-radius: 50%;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.gc-year-mini__day--blank {
  visibility: hidden;
}

/* Heat tint shows density per day */
.gc-year-mini__day--heat-1 { color: var(--color-text); background: rgba(100, 210, 255, 0.1); }
.gc-year-mini__day--heat-2 { color: var(--color-text); background: rgba(100, 210, 255, 0.2); }
.gc-year-mini__day--heat-3 { color: #001a26; background: rgba(100, 210, 255, 0.55); font-weight: 700; }
.gc-year-mini__day--heat-4 { color: #001a26; background: rgba(100, 210, 255, 0.9); font-weight: 700; box-shadow: 0 0 12px rgba(100, 210, 255, 0.45); }

.gc-year-mini__day--today {
  background: var(--color-accent);
  color: #001a26;
  font-weight: 800;
  box-shadow:
    0 2px 10px rgba(100, 210, 255, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.gc-year-mini__day--today.gc-year-mini__day--heat-1,
.gc-year-mini__day--today.gc-year-mini__day--heat-2,
.gc-year-mini__day--today.gc-year-mini__day--heat-3,
.gc-year-mini__day--today.gc-year-mini__day--heat-4 {
  background: var(--color-accent);
  color: #001a26;
}

html[data-theme="light"] .gc-year-mini:hover {
  background: rgba(0, 0, 0, 0.025);
}

html[data-theme="light"] .gc-year-mini__title {
  color: #007aff;
}

html[data-theme="light"] .gc-year-mini__day--heat-1 { background: rgba(0, 122, 255, 0.08); }
html[data-theme="light"] .gc-year-mini__day--heat-2 { background: rgba(0, 122, 255, 0.18); }
html[data-theme="light"] .gc-year-mini__day--heat-3 { color: #fff; background: rgba(0, 122, 255, 0.55); }
html[data-theme="light"] .gc-year-mini__day--heat-4 { color: #fff; background: rgba(0, 122, 255, 0.9); }
html[data-theme="light"] .gc-year-mini__day--today {
  background: #007aff;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 122, 255, 0.45);
}

/* List view */
.gc-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.gc-list-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.gc-list-row__hit {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-xs);
  margin: calc(var(--space-xs) * -1);
  border: none;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.gc-list-row:hover {
  transform: translateY(-1px);
  border-color: var(--glass-border-dim);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.gc-list-row__body {
  flex: 1;
  min-width: 0;
}

.gc-list-row__date {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.gc-list-row h3 {
  margin: 0 0 0.25rem;
  font-size: var(--text-base);
}

.gc-list-row p {
  margin: 0 0 var(--space-xs);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.gc-list-row__actions {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex-shrink: 0;
}

.gc-list-row__open {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--glass-border-dim);
  background: var(--glass-surface);
  color: var(--color-text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gc-follow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--glass-border-dim);
  background: var(--glass-surface);
  color: var(--color-text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gc-follow--on {
  color: var(--accent-music);
  border-color: rgba(255, 100, 130, 0.35);
  background: rgba(255, 100, 130, 0.1);
}

/* Day panel (all releases on a day) — Apple Reminders list-style */
.gc-day-panel {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1225;
  width: min(560px, calc(100vw - 2rem));
  max-height: min(85vh, 720px);
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 32px 100px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(168deg, rgba(28, 30, 34, 0.92) 0%, rgba(14, 15, 20, 0.96) 100%);
  backdrop-filter: blur(48px) saturate(180%);
  -webkit-backdrop-filter: blur(48px) saturate(180%);
  animation: gc-sheet-in 0.42s var(--ease-spring) both;
}

.gc-day-panel__head {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  padding: 1.2rem 1.5rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gc-day-panel__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  flex: 1;
}

.gc-day-panel__count {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text-subtle);
  font-variant-numeric: tabular-nums;
}

.gc-day-panel__list {
  overflow-y: auto;
  padding: 0.75rem 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.gc-day-panel__item {
  display: flex;
  gap: 0.85rem;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border-dim);
  transition: background var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
}

.gc-day-panel__item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--glass-border);
  transform: translateY(-1px);
}

.gc-day-panel__item--featured {
  border-color: rgba(100, 210, 255, 0.32);
  background: linear-gradient(90deg, rgba(100, 210, 255, 0.08) 0%, rgba(100, 210, 255, 0.04) 100%);
}

.gc-day-panel__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.gc-day-panel__body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.2;
}

.gc-day-panel__body p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.35;
}

.gc-day-panel__actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.3rem;
}

/* Detail modal */
.gc-detail-backdrop {
  position: fixed;
  inset: 0;
  z-index: 920;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gc-detail {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1230;
  width: min(420px, calc(100vw - 2rem));
  max-height: min(90vh, 640px);
  overflow-y: auto;
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
}

.gc-detail__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
}

.gc-detail h2 {
  margin: var(--space-md) 0 var(--space-sm);
  font-family: var(--font-display);
  font-size: var(--text-xl);
}

.gc-detail__meta {
  margin-bottom: var(--space-md);
}

.gc-detail__meta.gc-studio-meta {
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.gc-detail__date {
  font-size: var(--text-sm);
  color: var(--color-text-subtle);
  margin: var(--space-md) 0;
}

.gc-detail__genres {
  margin-bottom: var(--space-md);
}

/* Settings panel v2 */
.gc-settings-backdrop {
  position: fixed;
  inset: 0;
  z-index: 940;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: gc-set-fade-in 0.22s ease;
}

@keyframes gc-set-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.gc-settings.gc-settings-v2 {
  position: fixed;
  z-index: 950;
  top: max(var(--space-sm), env(safe-area-inset-top, 0px));
  right: max(var(--space-sm), env(safe-area-inset-right, 0px));
  bottom: max(var(--space-sm), env(safe-area-inset-bottom, 0px));
  left: max(var(--space-sm), env(safe-area-inset-left, 0px));
  width: auto;
  max-width: none;
  padding: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transform: translateY(12px) scale(0.985);
  opacity: 0;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s ease;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.gc-settings-open .gc-settings.gc-settings-v2 {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.gc-settings-open {
  overflow: hidden;
}

.gc-set-shell {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--glass-surface) 96%, transparent) 0%,
    color-mix(in srgb, var(--glass-surface) 88%, #050508) 100%
  );
}

.gc-set-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 1.1rem 1.15rem 0.85rem;
  border-bottom: 1px solid var(--glass-border-dim);
  flex-shrink: 0;
}

.gc-set-eyebrow {
  margin: 0 0 0.15rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  opacity: 0.85;
}

.gc-set-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.gc-set-close {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
}

.gc-set-layout {
  display: grid;
  grid-template-columns: 13.5rem minmax(0, 1fr);
  flex: 1;
  min-height: 0;
}

.gc-set-nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 0.65rem;
  border-right: 1px solid var(--glass-border-dim);
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.08);
}

.gc-set-nav__item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.6rem 0.7rem;
  border: none;
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--color-text-muted);
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast);
}

.gc-set-nav__item:hover {
  background: var(--glass-bg-hover);
  color: var(--color-text);
}

.gc-set-nav__item.is-active {
  background: color-mix(in srgb, var(--color-accent) 14%, transparent);
  color: var(--color-accent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--color-accent) 22%, transparent);
}

.gc-set-nav__icon {
  display: inline-flex;
  opacity: 0.9;
}

.gc-set-nav__label {
  line-height: 1.2;
}

.gc-set-panel {
  overflow-y: auto;
  padding: 1rem 1.15rem 1.25rem;
  -webkit-overflow-scrolling: touch;
}

.gc-set-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border-dim);
  border-radius: var(--radius-lg);
  padding: 1rem;
  margin-bottom: 0.85rem;
}

.gc-set-card:last-child {
  margin-bottom: 0;
}

.gc-set-card__head h3 {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.gc-set-card__hint,
.gc-set-group__hint {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--color-text-subtle);
}

.gc-set-group {
  margin-top: 0.85rem;
}

.gc-set-group__title {
  margin: 0 0 0.45rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text);
}

.gc-set-group__hint {
  margin: 0 0 0.55rem;
}

.gc-set-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.gc-set-field__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.gc-set-segment {
  display: flex;
  padding: 0.2rem;
  gap: 0.15rem;
  border-radius: var(--radius-pill);
}

.gc-set-segment__btn,
.gc-settings-v2 .theme-toggle-row button {
  flex: 1;
  min-height: 2.25rem;
  padding: 0.35rem 0.75rem;
  border: none;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--color-text-muted);
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.gc-set-segment__btn.is-active,
.gc-settings-v2 .theme-toggle-row button.is-active {
  background: var(--glass-surface);
  color: var(--color-text);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}

.gc-set-select-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.gc-set-select {
  width: 100%;
  min-height: 2.5rem;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border-dim);
  background: rgba(0, 0, 0, 0.15);
  color: var(--color-text);
  font: inherit;
  font-size: 0.875rem;
}

.gc-set-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.gc-set-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.42rem 0.72rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid var(--glass-border-dim);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}

.gc-set-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.gc-set-chip.is-on {
  background: color-mix(in srgb, var(--color-accent) 14%, transparent);
  border-color: color-mix(in srgb, var(--color-accent) 30%, transparent);
  color: var(--color-accent);
}

.gc-set-chip--fav.is-on {
  background: color-mix(in srgb, #ff6482 12%, transparent);
  border-color: color-mix(in srgb, #ff6482 32%, transparent);
  color: #ff8fa3;
}

.gc-set-chip__x {
  opacity: 0.7;
  font-size: 0.9em;
}

.gc-set-switch {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  cursor: pointer;
}

.gc-set-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.gc-set-switch__track {
  position: relative;
  flex-shrink: 0;
  width: 2.75rem;
  height: 1.55rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  transition: background var(--transition-fast);
}

.gc-set-switch__track::after {
  content: "";
  position: absolute;
  top: 0.15rem;
  left: 0.15rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition-fast);
}

.gc-set-switch input:checked + .gc-set-switch__track {
  background: var(--color-accent);
}

.gc-set-switch input:checked + .gc-set-switch__track::after {
  transform: translateX(1.15rem);
}

.gc-set-switch__text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.35;
}

.gc-set-inline,
.gc-set-copy-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.gc-set-input {
  flex: 1;
  min-width: 0;
  min-height: 2.5rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border-dim);
  background: rgba(0, 0, 0, 0.12);
  color: inherit;
  font: inherit;
  font-size: 0.875rem;
}

.gc-set-input--readonly {
  font-size: 0.6875rem;
  opacity: 0.85;
}

.gc-set-btn {
  justify-content: center;
  min-height: 2.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
}

.gc-set-btn--primary {
  background: color-mix(in srgb, var(--color-accent) 18%, transparent);
  border-color: color-mix(in srgb, var(--color-accent) 35%, transparent);
}

.gc-set-btn--ghost {
  opacity: 0.85;
}

.gc-set-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.gc-set-actions--stack {
  flex-direction: column;
}

.gc-set-actions--stack .gc-set-btn {
  width: 100%;
}

.gc-set-subscribe {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--glass-border-dim);
}

.gc-set-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--glass-border-dim);
}

.gc-set-note {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--color-text-subtle);
}

.gc-set-note--warn {
  color: #e8a040;
}

@media (min-width: 901px) {
  .gc-settings.gc-settings-v2 {
    top: var(--space-md);
    right: var(--space-md);
    bottom: var(--space-md);
    left: auto;
    width: min(52rem, calc(100vw - 2rem));
    max-height: calc(100dvh - 2rem);
  }
}

@media (max-width: 900px) {
  .gc-settings.gc-settings-v2 {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    transform: translateY(100%);
    max-height: min(92dvh, 720px);
  }

  .gc-settings-open .gc-settings.gc-settings-v2 {
    transform: translateY(0);
  }

  .gc-set-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
  }

  .gc-set-nav {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    border-right: none;
    border-bottom: 1px solid var(--glass-border-dim);
    padding: 0.55rem 0.65rem;
    gap: 0.35rem;
    scrollbar-width: none;
  }

  .gc-set-nav::-webkit-scrollbar {
    display: none;
  }

  .gc-set-nav__item {
    flex: 0 0 auto;
    width: auto;
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
  }

  .gc-set-nav__icon {
    display: none;
  }

  .gc-set-panel {
    padding: 0.85rem 0.9rem 1.1rem;
  }

  .gc-set-topbar {
    padding: 0.9rem 0.9rem 0.7rem;
  }
}

.site-header__settings {
  display: none;
}

body[data-page="games-calendar"] .site-header__support {
  display: none !important;
}

body[data-page="games-calendar"] .site-header__settings {
  display: inline-flex !important;
}

body[data-page="games-calendar"] .cal-page {
  padding-top: var(--space-xs);
  padding-bottom: var(--space-md);
  max-width: min(100%, 1920px);
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(var(--space-sm), 2vw, var(--space-lg));
  min-height: calc(100dvh - var(--header-height));
  display: flex;
  flex-direction: column;
}

body[data-page="games-calendar"] .cal-page > [data-calendar-app] {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

body[data-page="games-calendar"] .gc-app {
  flex: 1;
  min-height: 0;
  gap: var(--space-md);
  width: 100%;
}

body[data-page="games-calendar"] .page-wrap.category-page--games {
  max-width: none;
}

body[data-page="games-calendar"] .gc-body {
  min-height: 0;
}

@media (min-width: 901px) {
  .gc-toolbar__row--controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .gc-toolbar__row--controls .gc-toolbar__group--platform {
    flex: 1 1 auto;
    margin-left: auto;
    max-width: min(56vw, 640px);
  }

  .gc-toolbar__row--secondary {
    display: flex;
    align-items: center;
    padding-top: 0.15rem;
  }

  .gc-toolbar__row--secondary .gc-toolbar__tools {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.45rem 0.55rem;
    width: 100%;
  }

  .gc-toolbar__quick .gc-icon-btn--fav {
    display: none;
  }

  .gc-toolbar__group--filters {
    flex: 0 0 auto;
  }

  .gc-toolbar__group--filters .gc-filter-menu__btn,
  .gc-toolbar__group--filters .gc-icon-btn--help {
    min-height: var(--gc-toolbar-control-h);
    height: var(--gc-toolbar-control-h);
    display: inline-flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
  }

  .gc-toolbar__query-strip {
    flex: 1 1 0;
    min-width: 11rem;
    margin-left: auto;
  }

  .gc-toolbar__meta {
    display: none;
  }
}

@media (min-width: 901px) and (max-width: 1200px) {
  .gc-toolbar__row--controls {
    flex-wrap: wrap;
  }

  .gc-toolbar__row--controls .gc-toolbar__group--view {
    flex: 1 1 100%;
  }

  .gc-toolbar__row--controls .gc-toolbar__group--platform {
    flex: 1 1 100%;
    margin-left: 0;
    max-width: 100%;
  }

  .gc-toolbar__row--controls .gc-platform-bar__track {
    justify-content: flex-start;
  }
}

body[data-page="games-calendar"] .gc-data-note {
  padding-bottom: calc(var(--space-lg) + env(safe-area-inset-bottom, 0px));
}

/* Locale toggle hidden on calendar (covered by settings) — theme toggle now shown in header */
body[data-page="games-calendar"] #locale-toggle,
body[data-page="games-calendar"] .nav-drawer__section--locale {
  display: none !important;
}

.gc-settings-v2 .theme-toggle-row {
  width: 100%;
  display: flex;
  padding: 0.2rem;
  gap: 0.15rem;
  border-radius: var(--radius-pill);
}

@media (max-width: 900px) {
  .gc-chrome {
    top: calc(var(--header-height) + var(--space-sm));
  }

  .gc-chrome::before {
    opacity: 0.3;
  }

  .gc-stats:not(.gc-stats--compact) {
    display: none;
  }

  .gc-toolbar {
    padding: var(--space-sm) var(--space-md);
  }

  .gc-toolbar__row--desktop {
    display: none;
  }

  .gc-toolbar__row--primary {
    display: none;
  }

  .gc-toolbar__row--mobile-head,
  .gc-toolbar__row--mobile-top,
  .gc-toolbar__row--mobile-sub,
  .gc-toolbar__row--mobile-nav,
  .gc-toolbar__row--mobile-filters {
    display: flex;
  }

  .gc-toolbar__row--mobile-top {
    display: grid;
  }

  .gc-upcoming-wrap--desktop {
    display: none;
  }

  .gc-upcoming-wrap--mobile {
    display: block;
  }

  .gc-app--month-pro .gc-month-footer {
    display: flex;
  }

  .gc-app--month-pro .gc-mobile-day-preview {
    display: none;
  }

  .gc-app--mobile-day .gc-mobile-day-shelf,
  .gc-app--mobile-day .gc-mobile-day-panel {
    display: flex;
  }

  .gc-app--mobile-day .gc-mobile-day-preview,
  .gc-app--mobile-day .gc-month-footer,
  .gc-app--mobile-day .gc-upcoming-wrap--mobile {
    display: none !important;
  }

  .gc-app--mobile-day .gc-body {
    flex: 1;
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .gc-app--mobile-day .gc-toolbar__title--mobile {
    font-size: clamp(0.78rem, 3.6vw, 0.95rem);
    letter-spacing: 0.04em;
  }

  .gc-grid--month-compact {
    padding: 0.35rem 0.25rem 0.15rem;
    border-radius: var(--radius-md);
  }

  .gc-grid--month-compact .gc-grid__weekdays {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0;
    padding-bottom: 0.35rem;
    margin-bottom: 0.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .gc-grid--month-compact .gc-grid__head {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    color: rgba(255, 255, 255, 0.58);
    padding: 0.2rem 0;
  }

  .gc-grid--month-compact .gc-grid__head--sat {
    color: rgba(100, 180, 255, 0.92);
  }

  .gc-grid--month-compact .gc-grid__head--sun {
    color: rgba(255, 120, 120, 0.92);
  }

  .gc-grid--month-compact .gc-grid__body {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0;
  }

  .gc-grid--month-compact .gc-day {
    position: relative;
    min-height: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .gc-grid--month-compact .gc-day--empty {
    min-height: 0;
    background: transparent;
    pointer-events: none;
  }

  /* Mobile calendar — Nintendo Today style: big serif numbers + dot indicators */
  .gc-grid--month-compact .gc-day--compact {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
  }

  .gc-grid--month-compact .gc-day--compact .gc-day__num {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.4rem;
    min-height: 2.4rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    font-variant-numeric: lining-nums tabular-nums;
    letter-spacing: -0.02em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.95);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: color var(--transition-fast), transform var(--transition-fast);
  }

  .gc-grid--month-compact .gc-day--compact .gc-day__num:active {
    transform: scale(0.92);
  }

  /* Weekend coloring — Nintendo style */
  .gc-grid--month-compact .gc-day--sat .gc-day__num {
    color: #5fa3ff;
  }

  .gc-grid--month-compact .gc-day--sun .gc-day__num {
    color: #ff6b6b;
  }

  /* Days from neighbour months (faded) */
  .gc-grid--month-compact .gc-day--other-month .gc-day__num {
    color: rgba(255, 255, 255, 0.18);
    font-weight: 400;
  }

  .gc-grid--month-compact .gc-day--other-month.gc-day--sat .gc-day__num {
    color: rgba(95, 163, 255, 0.22);
  }

  .gc-grid--month-compact .gc-day--other-month.gc-day--sun .gc-day__num {
    color: rgba(255, 107, 107, 0.22);
  }

  /* Tiny dot ABOVE the number for days with releases */
  .gc-grid--month-compact .gc-day__num--has::after {
    content: "";
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 6px rgba(100, 210, 255, 0.6);
  }

  .gc-grid--month-compact .gc-day--sat .gc-day__num--has::after {
    background: #5fa3ff;
    box-shadow: 0 0 6px rgba(95, 163, 255, 0.6);
  }

  .gc-grid--month-compact .gc-day--sun .gc-day__num--has::after {
    background: #ff6b6b;
    box-shadow: 0 0 6px rgba(255, 107, 107, 0.6);
  }

  .gc-grid--month-compact .gc-day--other-month .gc-day__num--has::after {
    opacity: 0.3;
  }

  /* Today: triangle marker above + accent underline */
  .gc-grid--month-compact .gc-day--today .gc-day__num {
    background: transparent;
    color: var(--color-accent);
    font-weight: 700;
  }

  .gc-grid--month-compact .gc-day--today .gc-day__num::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid var(--color-accent);
    filter: drop-shadow(0 0 4px rgba(100, 210, 255, 0.55));
  }

  /* Selected day */
  .gc-grid--month-compact .gc-day--selected .gc-day__num {
    background: rgba(100, 210, 255, 0.16);
    color: var(--color-text);
    box-shadow: inset 0 0 0 1px rgba(100, 210, 255, 0.4);
  }

  .gc-grid--month-compact .gc-day__content {
    display: none !important;
  }

  /* Light theme overrides for mobile Nintendo grid */
  html[data-theme="light"] .gc-grid--month-compact .gc-day--compact .gc-day__num {
    color: rgba(0, 0, 0, 0.86);
  }
  html[data-theme="light"] .gc-grid--month-compact .gc-day--sat .gc-day__num { color: #0066d6; }
  html[data-theme="light"] .gc-grid--month-compact .gc-day--sun .gc-day__num { color: #d63b3b; }
  html[data-theme="light"] .gc-grid--month-compact .gc-day--other-month .gc-day__num {
    color: rgba(0, 0, 0, 0.2);
  }
  html[data-theme="light"] .gc-grid--month-compact .gc-day--today .gc-day__num {
    color: #007aff;
  }
  html[data-theme="light"] .gc-grid--month-compact .gc-day--today .gc-day__num::before {
    border-top-color: #007aff;
    filter: drop-shadow(0 0 4px rgba(0, 122, 255, 0.45));
  }

  /* Weekday header coloring (matching numbers) */
  .gc-grid--month-compact .gc-grid__head--sat { color: #5fa3ff; }
  .gc-grid--month-compact .gc-grid__head--sun { color: #ff6b6b; }
  html[data-theme="light"] .gc-grid--month-compact .gc-grid__head--sat { color: #0066d6; }
  html[data-theme="light"] .gc-grid--month-compact .gc-grid__head--sun { color: #d63b3b; }

  .gc-grid--month-compact .gc-grid__head {
    font-family: var(--font-display);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    padding: 0.45rem 0;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
  }

  .gc-app--month-pro .gc-grid--month-pro:not(.gc-grid--month-compact) .gc-day__content {
    display: none !important;
  }

  .gc-app--month-pro .gc-grid--month-pro:not(.gc-grid--month-compact) .gc-day {
    min-height: 2.65rem;
    padding: 0.4rem 0 0.55rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
  }

  .gc-app--month-pro .gc-grid--month-pro:not(.gc-grid--month-compact) .gc-day__num {
    position: static;
    top: auto;
    right: auto;
    font-size: 0.8125rem;
    font-weight: 700;
  }

  .gc-app--month-pro .gc-grid--month-pro:not(.gc-grid--month-compact) .gc-day--selected {
    background: transparent;
    box-shadow: none;
  }

  .gc-app--month-pro .gc-grid--month-pro:not(.gc-grid--month-compact) .gc-day--selected .gc-day__num {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    color: var(--color-text);
  }

  .gc-app--month-pro .gc-grid--month-pro:not(.gc-grid--month-compact) .gc-day__num--has::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-accent);
  }

  .gc-app--month-pro .gc-grid--month-pro .gc-day--heat-1,
  .gc-app--month-pro .gc-grid--month-pro .gc-day--heat-2,
  .gc-app--month-pro .gc-grid--month-pro .gc-day--heat-3,
  .gc-app--month-pro .gc-grid--month-pro .gc-day--heat-4 {
    background: transparent;
  }

  .gc-app--month-pro .gc-grid__weekdays {
    font-size: 0.5625rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .gc-app--month-pro .gc-grid__body {
    gap: 0;
  }

  .gc-app--month-pro .gc-body {
    gap: 0.25rem;
  }

  .gc-app--month-pro .gc-chrome {
    gap: 0.35rem;
  }

  .gc-app--month-pro .gc-upcoming-wrap--mobile {
    margin-bottom: 0.1rem;
  }

  .gc-toolbar__row--mobile-filters .gc-toolbar__group--fav {
    flex: 0 0 auto;
  }

  .gc-toolbar__search-expand {
    display: block;
  }

  .gc-toolbar__nav .gc-today {
    padding: 0.35rem 0.65rem;
    font-size: 0.5625rem;
  }

  .gc-nav-btn {
    width: 32px;
    height: 32px;
  }

  .gc-toolbar__title {
    font-size: 1rem;
  }

  .gc-meta-chip {
    font-size: 0.5rem;
  }

  .gc-grid--year {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gc-upcoming__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
  }

  .gc-upcoming__track {
    display: flex;
    gap: 0.4rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .gc-upcoming-card--compact {
    min-height: 4.5rem;
  }

  .gc-upcoming-card {
    flex: 0 0 min(200px, 72vw);
    scroll-snap-align: start;
  }

  .gc-upcoming__grid .gc-upcoming-card {
    flex: unset;
    scroll-snap-align: unset;
  }

  body[data-page="games-calendar"] .cal-page {
    padding-inline: var(--space-xs);
  }

  .gc-grid--month-pro {
    grid-auto-rows: auto;
  }

  .gc-grid--month-pro .gc-day {
    min-height: 0;
    padding: 0.35rem 2px 0.25rem;
  }

  .gc-grid--week-pro .gc-day {
    min-height: 100px;
    padding: 6px;
  }

  .gc-day__featured {
    grid-template-columns: 1fr;
  }

  .gc-day-spotlight__art {
    flex: 0 0 40%;
    max-width: 44%;
  }

  .gc-cover--poster-month-trio,
  .gc-cover--poster-month-trio .gc-cover__img {
    min-height: 48px;
    height: auto;
  }

  .gc-cover--poster-month-lg,
  .gc-cover--poster-month-lg .gc-cover__img,
  .gc-cover--poster-month-lg .gc-cover__fallback {
    width: 100%;
    min-height: 64px;
    height: auto;
  }

  .gc-cover--poster-month-lead,
  .gc-cover--poster-month-lead .gc-cover__img,
  .gc-cover--poster-month-lead .gc-cover__fallback {
    width: 100%;
    min-height: 56px;
    height: auto;
  }

  .gc-upcoming-card {
    flex: 0 0 min(200px, 72vw);
  }

  .gc-poster-card--cell:not(.gc-poster-card--featured) {
    width: 38px;
    flex-basis: 38px;
  }

  .gc-cover--poster-cell:not(.gc-cover--poster-featured) {
    width: 38px;
    height: 57px;
  }

  .gc-poster-card--featured .gc-cover--poster-cell {
    width: 100%;
    height: auto;
  }

  .gc-grid__head,
  .gc-week-col__head {
    padding: 0.22rem 0.1rem;
    font-size: 0.5625rem;
  }

  .gc-grid--week-pro {
    grid-template-columns: repeat(7, minmax(88px, 1fr));
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .gc-week-col {
    scroll-snap-align: start;
    min-width: 88px;
  }

  .gc-game-sheet {
    top: var(--header-height, 56px);
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    max-height: none;
    height: calc(100dvh - var(--header-height, 56px));
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    animation: gc-sheet-mobile-in 0.34s var(--ease-spring) both;
  }

  @keyframes gc-sheet-mobile-in {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .gc-game-sheet::after {
    display: none;
  }

  .gc-game-sheet__close {
    display: none;
  }

  .gc-game-sheet__mobile-bar {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
    padding: 0.65rem 0.85rem 0.55rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .gc-game-sheet__body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .gc-game-sheet__top {
    grid-template-columns: minmax(108px, 38vw) minmax(0, 1fr);
    padding: 0.85rem 0.85rem 0.65rem;
    gap: 0.75rem;
    border-bottom: none;
  }

  .gc-game-sheet__poster,
  .gc-game-sheet__poster .gc-cover,
  .gc-game-sheet__poster .gc-cover--poster-detail,
  .gc-game-sheet__poster .gc-cover__img,
  .gc-game-sheet__poster .gc-cover--poster-detail .gc-cover__img {
    width: 100%;
  }

  .gc-game-sheet__poster .gc-cover,
  .gc-game-sheet__poster .gc-cover--poster-detail {
    aspect-ratio: 2 / 3;
    height: auto;
  }

  .gc-game-sheet__title {
    display: none;
  }

  .gc-game-sheet__info {
    gap: 0.55rem;
    padding-top: 0.15rem;
  }

  .gc-game-sheet__label {
    display: block;
    font-size: 0.5625rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.12rem;
  }

  .gc-game-sheet__release time {
    font-size: 0.8125rem;
  }

  .gc-game-sheet__studio {
    font-size: 0.75rem;
    line-height: 1.35;
  }

  .gc-game-sheet__studio-link {
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .gc-game-sheet__platform-row {
    margin-top: 0.15rem;
  }

  .gc-game-sheet__aside {
    display: none;
  }

  .gc-game-sheet__synopsis {
    max-height: none;
    margin: 0 0.85rem 0.75rem;
    padding: 0.75rem 0.85rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .gc-game-sheet__synopsis-label {
    font-size: 0.625rem;
    letter-spacing: 0.12em;
  }

  .gc-game-sheet__synopsis p {
    font-size: 0.8125rem;
    line-height: 1.55;
  }

  .gc-game-media {
    padding: 0 0.85rem 1rem;
    margin-top: 0;
    gap: 0.65rem;
  }

  .gc-game-media__track {
    gap: 0.55rem;
    padding-bottom: 0.25rem;
  }

  .gc-game-media__card {
    width: min(220px, 72vw);
  }

  .gc-game-media__card--trailer {
    flex: 0 0 min(220px, 72vw);
  }

  .gc-game-media__card--shot {
    flex: 0 0 min(200px, 68vw);
  }

  .gc-media-lightbox__panel {
    width: 100%;
    max-height: 100dvh;
    border-radius: var(--radius-lg);
  }

  .gc-media-lightbox__body--gallery {
    padding-inline: 0.25rem;
  }

  .gc-media-lightbox__nav {
    width: 2.25rem;
    height: 2.25rem;
  }

  .gc-media-lightbox__img {
    max-height: min(68vh, 640px);
  }

  .gc-game-sheet__player-panel:not([hidden]) {
    display: block;
    padding: 0 0.85rem 0.75rem;
  }

  .gc-game-sheet__footer {
    display: none;
  }

  .gc-game-sheet__store-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.35rem;
  }

  .gc-game-sheet__hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: calc(var(--space-xl) + 0.5rem);
  }

  .gc-game-sheet__hero-poster {
    flex-basis: auto;
  }

  .gc-game-sheet__hero-copy {
    width: 100%;
  }

  .gc-day-sheet {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    max-width: none;
    max-height: min(94vh, 780px);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .gc-day-sheet__hero {
    padding-top: var(--space-sm);
  }

  .gc-day-sheet__hero-bar {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: var(--space-sm);
  }

  .gc-day-sheet__grab {
    display: block;
    margin-bottom: 0.35rem;
  }

  .gc-day-sheet__hero-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .gc-day-sheet__spotlight-card {
    flex-basis: min(260px, 84vw);
  }

  .gc-detail,
  .gc-day-panel {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    max-width: none;
    max-height: min(92vh, 720px);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    padding-bottom: calc(var(--space-xl) + env(safe-area-inset-bottom, 0px));
    animation: gc-sheet-up 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  }

  @keyframes gc-sheet-up {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }

  .gc-list-row {
    flex-wrap: wrap;
  }

  .gc-list-row__body {
    flex: 1 1 calc(100% - 72px);
  }

  .gc-list-row__actions {
    width: 100%;
    justify-content: flex-end;
    padding-top: var(--space-xs);
    border-top: 1px solid var(--glass-border-dim);
    margin-top: var(--space-xs);
  }
}

@media (min-width: 901px) {
  .gc-mobile-sheet {
    display: none;
  }

  .gc-toolbar__quick {
    display: none;
  }
}

.gc-data-note__hint {
  opacity: 0.78;
}

@media (min-width: 769px) {
  .gc-data-note__hint {
    display: none;
  }
}

/* Upcoming panel — hero + 2×2 grid */
.gc-upcoming {
  border-radius: calc(var(--radius-lg) + 2px);
  padding: 0.95rem 1rem 1.05rem;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.018) 48%, rgba(8, 12, 18, 0.35) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 10px 36px rgba(0, 0, 0, 0.28);
}

.gc-upcoming__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0 0.1rem;
  min-height: 0;
}

.gc-upcoming__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.gc-upcoming__hint {
  font-size: 0.5625rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: right;
  line-height: 1.35;
  max-width: 11rem;
}

.gc-upcoming__layout {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 720px) {
  .gc-upcoming__layout {
    grid-template-columns: minmax(240px, 0.92fr) minmax(0, 1.08fr);
    align-items: stretch;
    gap: 0.7rem;
  }
}

.gc-upcoming__hero-slot {
  display: block;
  min-width: 0;
}

.gc-upcoming__hero-slot .gc-upcoming-card.gc-upcoming-card--hero {
  width: 100%;
  min-height: 260px;
}

.gc-upcoming__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  align-content: stretch;
  min-height: 0;
}

.gc-upcoming__track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

/* HERO upcoming card — Apple Arcade "Today" treatment */
.gc-upcoming-card.gc-upcoming-card--hero {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px;
  padding: 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  background: rgba(20, 20, 22, 0.6);
  color: inherit;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform var(--transition-base),
    border-color var(--transition-fast),
    box-shadow var(--transition-base);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 28px rgba(0, 0, 0, 0.32);
}

.gc-upcoming-card.gc-upcoming-card--hero:hover {
  transform: translateY(-3px);
  border-color: rgba(100, 210, 255, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 44px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(100, 210, 255, 0.18);
}

.gc-upcoming-card.gc-upcoming-card--hero:hover > .gc-cover .gc-cover__img,
.gc-upcoming-card.gc-upcoming-card--hero:hover > .gc-cover--poster-hero .gc-cover__img {
  transform: scale(1.04);
}

/* Cover takes the whole card as background */
.gc-upcoming-card.gc-upcoming-card--hero > .gc-cover,
.gc-upcoming-card.gc-upcoming-card--hero > .gc-cover--poster-hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  border: none;
  aspect-ratio: auto;
  z-index: 0;
}

.gc-upcoming-card.gc-upcoming-card--hero > .gc-cover .gc-cover__img,
.gc-upcoming-card.gc-upcoming-card--hero > .gc-cover--poster-hero .gc-cover__img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: center 28%;
  transition: transform 0.7s var(--ease-out);
}

/* Strong gradient at the bottom so text is always legible over any cover */
.gc-upcoming-card.gc-upcoming-card--hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(8, 10, 14, 0.18) 0%,
    rgba(8, 10, 14, 0.04) 35%,
    rgba(8, 10, 14, 0.72) 78%,
    rgba(8, 10, 14, 0.92) 100%
  );
}

.gc-upcoming-card.gc-upcoming-card--hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(140% 90% at 0% 0%, rgba(100, 210, 255, 0.22), transparent 50%);
  opacity: 0.7;
}

.gc-upcoming-card.gc-upcoming-card--hero .gc-upcoming-card__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.1rem 1.05rem;
}

.gc-upcoming-card.gc-upcoming-card--hero .gc-upcoming-card__countdown {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.22rem 0.6rem;
  border-radius: var(--radius-pill);
  background: rgba(100, 210, 255, 0.92);
  color: #001a26;
  border: none;
  align-self: flex-start;
  width: fit-content;
  margin: 0;
  box-shadow: 0 4px 14px rgba(100, 210, 255, 0.4);
}

.gc-upcoming-card.gc-upcoming-card--hero .gc-upcoming-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.1vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0;
}

.gc-upcoming-card.gc-upcoming-card--hero .gc-upcoming-card__studio {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gc-upcoming-card.gc-upcoming-card--hero .gc-upcoming-card__date {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
  margin: 0;
}

.gc-upcoming-card.gc-upcoming-card--hero .gc-upcoming-card__platforms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.15rem;
}

.gc-upcoming-card.gc-upcoming-card--hero .gc-upcoming-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
  margin-top: 0.2rem;
}

.gc-upcoming-card.gc-upcoming-card--hero .gc-upcoming-card__tags .gc-tag {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Stretch hero to match track height on wide screens */
@media (min-width: 720px) {
  .gc-upcoming__layout {
    align-items: stretch;
  }
}

.gc-upcoming__grid::-webkit-scrollbar,
.gc-upcoming__track::-webkit-scrollbar {
  display: none;
}

.gc-upcoming-platform {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.gc-upcoming-platform .gc-platform-mark,
.gc-upcoming-platform .gc-platform-mark-wrap .gc-platform-mark--img {
  display: block;
  height: 1.05rem;
  width: auto;
  max-width: 1.45rem;
}

.gc-upcoming-platform .gc-platform-mark[width="24"] {
  height: 1.05rem;
  width: 1.05rem;
}

.gc-upcoming-card--compact .gc-upcoming-platform {
  width: 1.45rem;
  height: 1.45rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.gc-upcoming-card--compact .gc-upcoming-platform .gc-platform-mark,
.gc-upcoming-card--compact .gc-upcoming-platform .gc-platform-mark-wrap .gc-platform-mark--img {
  height: 0.9rem;
  max-width: 1.2rem;
}

.gc-upcoming-card--compact .gc-upcoming-platform .gc-platform-mark[width="24"] {
  height: 0.9rem;
  width: 0.9rem;
}

.gc-cover--poster-upcoming,
.gc-cover--upcoming {
  width: 52px;
  height: 70px;
  flex-shrink: 0;
  aspect-ratio: 2 / 3;
}

.gc-upcoming-card > .gc-cover--poster-upcoming,
.gc-upcoming-card > .gc-cover {
  flex-shrink: 0;
}

.gc-upcoming-card > .gc-cover--poster-upcoming .gc-cover__img,
.gc-upcoming-card > .gc-cover .gc-cover__img {
  width: 52px;
  height: 70px;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

.gc-upcoming-card > .gc-cover--poster-upcoming .gc-cover__fallback,
.gc-upcoming-card > .gc-cover .gc-cover__fallback {
  width: 52px;
  height: 70px;
  border-radius: 7px;
}

.gc-cover--poster-cell-hero {
  width: 100%;
}

.gc-upcoming-card {
  flex: unset;
  width: auto;
  min-width: 0;
  scroll-snap-align: unset;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0.55rem;
  padding: 0.45rem 0.55rem;
  border-radius: calc(var(--radius-sm) + 1px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.gc-upcoming-card--compact {
  align-items: center;
  min-height: 4.85rem;
  height: 100%;
}

.gc-upcoming-card:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.14);
}

.gc-upcoming-card--compact:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.gc-upcoming-card--next {
  border-color: rgba(100, 210, 255, 0.35);
  background: rgba(100, 210, 255, 0.08);
  box-shadow: none;
}

.gc-upcoming-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
  flex: 1;
  justify-content: center;
}

.gc-upcoming-card__studio {
  font-size: 0.625rem;
  color: var(--color-text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.25;
}

.gc-upcoming-card__countdown {
  display: block;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0;
}

.gc-upcoming-card__countdown--compact {
  font-size: 0.5rem;
  letter-spacing: 0.05em;
}

.gc-upcoming-card__title {
  font-size: 0.6875rem;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.gc-upcoming-card__date {
  display: block;
  font-size: 0.5625rem;
  color: var(--color-text-subtle);
}

.gc-upcoming-card__platforms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.22rem;
  margin-top: 0.12rem;
}

.gc-upcoming-card__tags {
  margin-top: 2px;
  flex-wrap: nowrap;
  overflow: hidden;
  gap: 2px;
}

.gc-upcoming-card__tags .gc-tag {
  font-size: 0.5625rem;
  padding: 0.08rem 0.36rem;
}

/* Empty state */
.gc-empty-state {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
}

.gc-empty-state__icon {
  color: var(--color-text-subtle);
  opacity: 0.5;
  margin-bottom: var(--space-md);
}

.gc-empty-state h2 {
  margin: 0 0 var(--space-sm);
  font-family: var(--font-display);
  font-size: var(--text-xl);
}

.gc-empty-state p {
  margin: 0 auto var(--space-lg);
  max-width: 36ch;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.gc-empty-state__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

/* Skeleton loading — Apple-style shimmer */
.gc-skeleton {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  min-height: 420px;
  animation: gc-skeleton-fade 0.3s var(--ease-out) both;
}

@keyframes gc-skeleton-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.gc-skeleton__strip {
  height: 200px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.09) 50%, rgba(255, 255, 255, 0) 65%) 0 0 / 220% 100% no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--glass-border-dim);
  animation: gc-shimmer-load 1.6s var(--ease-out) infinite;
}

.gc-skeleton__grid {
  display: grid;
  gap: 1px;
  flex: 1;
  padding: 1px;
  border-radius: var(--radius-lg);
  background: var(--glass-border-dim);
  border: 1px solid var(--glass-border-dim);
  overflow: hidden;
}

.gc-skeleton__grid--month,
.gc-skeleton__grid--week {
  grid-template-columns: repeat(7, 1fr);
  grid-auto-rows: minmax(112px, 1fr);
}

.gc-skeleton__grid--year {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  background: transparent;
  border: none;
  padding: 0;
}

.gc-skeleton__grid--year .gc-skeleton__cell {
  min-height: 200px;
}

.gc-skeleton__grid--day {
  grid-template-columns: 1fr;
}

.gc-skeleton__cell {
  min-height: 72px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.07) 50%, rgba(255, 255, 255, 0) 65%) 0 0 / 220% 100% no-repeat,
    rgba(20, 20, 22, 0.88);
  animation: gc-shimmer-load 1.6s var(--ease-out) infinite;
}

.gc-skeleton__cell:nth-child(2n) { animation-delay: 0.12s; }
.gc-skeleton__cell:nth-child(3n) { animation-delay: 0.24s; }
.gc-skeleton__cell:nth-child(5n) { animation-delay: 0.36s; }

@keyframes gc-shimmer-load {
  0% { background-position: -110% 0, 0 0; }
  100% { background-position: 110% 0, 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  .gc-skeleton__strip,
  .gc-skeleton__cell { animation: none; }
}

html[data-theme="light"] .gc-skeleton__strip {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 65%) 0 0 / 220% 100% no-repeat,
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.02) 100%);
}

html[data-theme="light"] .gc-skeleton__cell {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 65%) 0 0 / 220% 100% no-repeat,
    rgba(0, 0, 0, 0.04);
}

/* Detail enhancements */
.gc-detail__cover {
  position: relative;
}

.gc-detail__countdown {
  position: absolute;
  bottom: var(--space-sm);
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-accent);
  border: 1px solid rgba(100, 210, 255, 0.35);
  white-space: nowrap;
}

.gc-detail__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.gc-detail__actions .gc-follow {
  width: auto;
  min-width: 44px;
  padding: 0 1rem;
}

/* —— Month calendar (scrollable, readable) —— */
.gc-app--month-pro {
  width: 100%;
  gap: var(--space-sm);
}

.gc-app--month-pro .gc-body {
  flex: 1;
  min-height: 0;
}

.gc-app--month-pro .gc-body > .gc-grid--month-pro {
  width: 100%;
}

.gc-app--month-pro .gc-upcoming {
  flex-shrink: 0;
  padding: 0.45rem 0.55rem 0.5rem;
  margin-bottom: 0.15rem;
}

.gc-app--month-pro .gc-upcoming__head h2 {
  font-size: 0.6875rem;
}

.gc-app--month-pro .gc-toolbar__title {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

@media (min-width: 1100px) {
  .gc-cover--poster-month-lg,
  .gc-cover--poster-month-lg .gc-cover__img,
  .gc-cover--poster-month-lg .gc-cover__fallback {
    min-height: 88px;
  }

  .gc-cover--poster-month-trio,
  .gc-cover--poster-month-trio .gc-cover__img {
    min-height: 68px;
  }

  .gc-cover--poster-month-lead,
  .gc-cover--poster-month-lead .gc-cover__img,
  .gc-cover--poster-month-lead .gc-cover__fallback {
    min-height: 72px;
  }

  .gc-day-meta__title {
    font-size: 0.8125rem;
  }
}

@media (min-width: 1400px) {
  .gc-cover--poster-month-lg,
  .gc-cover--poster-month-lg .gc-cover__img,
  .gc-cover--poster-month-lg .gc-cover__fallback {
    min-height: 100px;
  }

  .gc-cover--poster-month-trio,
  .gc-cover--poster-month-trio .gc-cover__img {
    min-height: 78px;
  }
}

/* Legacy viewport-fit (unused) */
.gc-app--month-fit {
  height: calc(100dvh - var(--header-height) - 0.5rem);
  min-height: 560px;
}

.gc-app--month-fit .gc-chrome {
  flex-shrink: 0;
  gap: 6px;
  top: calc(var(--header-height) + 4px);
}

.gc-app--month-fit .gc-stats {
  display: none;
}

.gc-app--month-fit .gc-toolbar {
  padding: 6px 10px;
}

.gc-app--month-fit .gc-toolbar__title {
  font-size: 1.05rem;
  line-height: 1.15;
}

.gc-app--month-fit .gc-toolbar__row--primary {
  gap: 6px;
}

.gc-app--month-fit .gc-upcoming {
  flex-shrink: 0;
  padding: 6px 10px;
  border-radius: var(--radius-md);
}

.gc-app--month-fit .gc-upcoming__head {
  margin-bottom: 4px;
}

.gc-app--month-fit .gc-upcoming__head h2 {
  font-size: 0.625rem;
}

.gc-app--month-fit .gc-upcoming-card {
  flex: 0 0 92px;
  padding: 5px;
  gap: 4px;
}

.gc-app--month-fit .gc-cover--poster-upcoming {
  height: 64px;
}

.gc-app--month-fit .gc-upcoming-card__title {
  font-size: 0.5625rem;
  -webkit-line-clamp: 1;
}

.gc-app--month-fit .gc-upcoming-card__tags {
  display: none;
}

.gc-app--month-fit .gc-body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.gc-app--month-fit .gc-body > .gc-grid--month {
  flex: 1;
  min-height: 0;
  height: 100%;
  grid-template-rows: 24px repeat(6, minmax(0, 1fr));
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
}

.gc-app--month-fit .gc-grid__head {
  padding: 0.25rem 0.15rem;
  font-size: 0.5625rem;
}

.gc-app--month-fit .gc-day {
  position: relative;
  min-height: 0;
  padding: 2px;
  overflow: hidden;
}

.gc-app--month-fit .gc-day--empty {
  min-height: 0;
}

.gc-app--month-fit .gc-day__num {
  position: absolute;
  top: 1px;
  right: 2px;
  z-index: 2;
  align-self: auto;
  font-size: 0.5625rem;
  padding: 0.05rem 0.3rem;
  line-height: 1.15;
}

.gc-app--month-fit .gc-day__badge {
  top: -3px;
  right: -4px;
  min-width: 12px;
  height: 12px;
  font-size: 0.5rem;
  line-height: 12px;
}

.gc-app--month-fit .gc-day__content {
  margin-top: 1.35rem;
}

.gc-app--month-fit .gc-poster-card--featured .gc-poster-card__title {
  font-size: 0.5625rem;
}

.gc-app--month-fit .gc-day__mini-list {
  max-height: 4.25rem;
}

.gc-app--month-fit .gc-game-row__title {
  font-size: 0.625rem;
}

.gc-app--month-fit .gc-data-note {
  display: none;
}

.gc-app--month-fit .gc-poster-card:hover {
  transform: none;
}

.gc-app--month-fit .gc-poster-card:hover .gc-cover {
  border-color: rgba(100, 210, 255, 0.35);
}

@media (min-width: 1100px) {
  .gc-poster-card--featured .gc-poster-card__title {
    font-size: 0.8125rem;
  }
}

/* Week view */
.gc-app--week-pro .gc-day {
  min-height: 0;
}

.gc-app--week-pro .gc-day__featured {
  grid-template-columns: 1fr;
}

.gc-app--week-fit {
  height: calc(100dvh - var(--header-height) - 0.75rem);
  min-height: 480px;
}

.gc-app--week-fit .gc-stats {
  display: none;
}

.gc-app--week-fit .gc-body {
  flex: 1;
  min-height: 0;
  overflow: auto;
}

.gc-app--week-fit .gc-data-note {
  display: none;
}

.gc-icon-btn--help-mobile {
  display: none;
}

@media (max-width: 768px) {
  .gc-upcoming-card {
    flex: 0 0 160px;
  }

  .gc-cover--poster-upcoming {
    height: 140px;
  }

  .gc-empty-state {
    padding: var(--space-2xl) var(--space-md);
  }

  .gc-toolbar__group--filters {
    display: none;
  }

  .gc-icon-btn--help-mobile {
    display: inline-flex;
  }
}

/* Month heat map — release density */
.gc-day--heat-1 {
  background: rgba(100, 210, 255, 0.035);
}

.gc-day--heat-2 {
  background: rgba(100, 210, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(100, 210, 255, 0.08);
}

.gc-day--heat-3 {
  background: rgba(100, 210, 255, 0.11);
  box-shadow: inset 0 0 0 1px rgba(100, 210, 255, 0.14);
}

.gc-day--heat-4 {
  background: rgba(100, 210, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(100, 210, 255, 0.22);
}

.gc-day--heat-2 .gc-day__num--has,
.gc-day--heat-3 .gc-day__num--has,
.gc-day--heat-4 .gc-day__num--has {
  color: var(--color-accent);
}

/* Toolbar quick filters */
.gc-toolbar__group--filters {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex-wrap: wrap;
}

.gc-filter-menu {
  position: relative;
}

.gc-filter-menu__btn.is-active {
  color: var(--color-accent);
  border-color: rgba(100, 210, 255, 0.35);
}

.gc-filter-menu__panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 120;
  min-width: 240px;
  max-width: min(360px, 70vw);
  max-height: 340px;
  overflow-y: auto;
  padding: 0.7rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  background: rgba(22, 22, 26, 0.96);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: gc-popover-in 0.22s var(--ease-out) both;
}

@keyframes gc-popover-in {
  from {
    opacity: 0;
    transform: translateY(-4px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

.gc-filter-menu__item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.gc-filter-menu__item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.gc-filter-menu__item.is-on {
  color: var(--color-accent);
  background: rgba(100, 210, 255, 0.1);
}

.gc-filter-menu__item input {
  flex-shrink: 0;
  accent-color: var(--color-accent);
}

html[data-theme="light"] .gc-filter-menu__panel {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

html[data-theme="light"] .gc-filter-menu__item:hover {
  background: rgba(0, 0, 0, 0.04);
}

html[data-theme="light"] .gc-filter-menu__item.is-on {
  color: #007aff;
  background: rgba(0, 122, 255, 0.1);
}

.gc-icon-btn--help {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
}

/* Share button */
.gc-share {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.gc-game-sheet__actions {
  flex-wrap: wrap;
}

/* Keyboard shortcuts overlay — Apple Help-style */
.gc-shortcuts {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1235;
  width: min(460px, calc(100vw - 1.5rem));
  padding: 1.5rem 1.6rem 1.6rem;
  border-radius: calc(var(--radius-xl) + 4px);
  background:
    linear-gradient(168deg, rgba(28, 30, 34, 0.92) 0%, rgba(14, 15, 20, 0.96) 100%);
  backdrop-filter: blur(48px) saturate(180%);
  -webkit-backdrop-filter: blur(48px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 32px 100px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  animation: gc-sheet-in 0.42s var(--ease-spring) both;
}

.gc-shortcuts__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1.25rem;
}

.gc-shortcuts__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.gc-shortcuts__list {
  display: grid;
  grid-template-columns: minmax(72px, auto) 1fr;
  gap: 0.7rem 1.1rem;
  margin: 0;
  align-items: center;
}

.gc-shortcuts__list dt {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.65rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 1px 2px rgba(0, 0, 0, 0.32);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-text);
  min-width: 2.4rem;
  text-align: center;
}

.gc-shortcuts__list dd {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-text-secondary);
}

html[data-theme="light"] .gc-shortcuts {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow:
    0 32px 100px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

html[data-theme="light"] .gc-shortcuts__list dt {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 1px 3px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
  .gc-shortcuts {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    padding-bottom: calc(var(--space-xl) + env(safe-area-inset-bottom, 0px));
  }
}

/* Agenda — Apple Reminders style */
.gc-agenda {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: 0 0 var(--space-lg);
  max-width: 720px;
  margin: 0 auto;
}

.gc-agenda__day {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Hide the legacy rail (cleaner Reminders look) */
.gc-agenda__rail {
  display: none;
}

.gc-agenda__day-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0 0.25rem;
  margin-bottom: 0.25rem;
}

.gc-agenda__day-head time {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.022em;
  color: var(--color-text);
  text-transform: capitalize;
}

.gc-agenda__day-meta {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--color-text-subtle);
  font-variant-numeric: tabular-nums;
}

.gc-agenda__items {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--glass-border-dim);
  border: 1px solid var(--glass-border-dim);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.gc-agenda__item {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0.95rem;
  border: none;
  border-radius: 0;
  background: rgba(20, 20, 22, 0.94);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition-fast), padding-left var(--transition-fast);
  position: relative;
}

.gc-agenda__item:hover {
  background: rgba(34, 34, 38, 0.96);
}

.gc-agenda__item:active {
  background: rgba(44, 44, 48, 0.96);
}

.gc-agenda__item--personal {
  background: linear-gradient(90deg, rgba(100, 210, 255, 0.08) 0%, rgba(20, 20, 22, 0.94) 30%);
}

.gc-agenda__item--personal::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--color-accent);
}

.gc-agenda__item > .gc-cover--poster-row,
.gc-agenda__item > .gc-cover {
  flex-shrink: 0;
  width: 52px;
  height: 78px;
}

.gc-agenda__item > .gc-cover--poster-row .gc-cover__img,
.gc-agenda__item > .gc-cover .gc-cover__img {
  width: 52px;
  height: 78px;
}

.gc-agenda__item-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.gc-agenda__countdown {
  display: inline-block;
  align-self: flex-start;
  padding: 0.1rem 0.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(100, 210, 255, 0.12);
  margin: 0 0 0.15rem;
}

.gc-agenda__title {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0;
}

.gc-agenda__item:hover .gc-agenda__title {
  color: var(--color-accent);
}

.gc-agenda__item .gc-studio-meta {
  margin: 0;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.3;
}

.gc-agenda__item .gc-release__tags {
  display: flex;
  gap: 0.2rem;
  margin-top: 0.2rem;
  flex-wrap: wrap;
}

/* Light theme */
html[data-theme="light"] .gc-agenda__items {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

html[data-theme="light"] .gc-agenda__item {
  background: #ffffff;
}

html[data-theme="light"] .gc-agenda__item:hover {
  background: rgba(0, 0, 0, 0.02);
}

html[data-theme="light"] .gc-agenda__item--personal {
  background: linear-gradient(90deg, rgba(0, 122, 255, 0.08) 0%, #ffffff 30%);
}

html[data-theme="light"] .gc-agenda__item--personal::before {
  background: #007aff;
}

html[data-theme="light"] .gc-agenda__day-head time {
  color: rgba(0, 0, 0, 0.85);
}

html[data-theme="light"] .gc-agenda__countdown {
  color: #007aff;
  background: rgba(0, 122, 255, 0.12);
}

html[data-theme="light"] .gc-agenda__item:hover .gc-agenda__title {
  color: #007aff;
}

/* My week */
.gc-myweek__head {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gc-myweek__head h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: var(--text-xl);
}

.gc-myweek__head p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.gc-myweek__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

.gc-agenda--myweek {
  padding-top: 0;
}

/* Entity pages (studio / publisher / series) */
.gc-entity-page .cal-page {
  max-width: 1180px;
}

.gc-app--entity .gc-data-note {
  margin-top: var(--space-lg);
  text-align: center;
  opacity: 0.65;
}

.gc-entity-hero {
  padding: 0;
  border-radius: calc(var(--radius-xl) + 4px);
  margin-bottom: var(--space-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 52px rgba(0, 0, 0, 0.34);
}

.gc-entity-hero__mobile-bar,
.gc-entity-hero__profile {
  display: none;
}

.gc-entity-hero__back-circle,
.gc-entity-hero__follow-circle {
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-text);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.gc-entity-hero__follow-circle.is-on {
  color: var(--color-accent);
  border-color: rgba(100, 210, 255, 0.35);
  background: rgba(100, 210, 255, 0.12);
}

.gc-entity-section__track {
  display: none;
  gap: 0.55rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.15rem;
}

.gc-entity-section__track::-webkit-scrollbar {
  display: none;
}

.gc-entity-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 42%);
  min-height: 220px;
}

.gc-entity-hero__main {
  padding: 1.5rem 1.6rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.75rem;
  background:
    linear-gradient(135deg, rgba(100, 210, 255, 0.07) 0%, rgba(191, 90, 242, 0.05) 100%),
    rgba(255, 255, 255, 0.03);
}

.gc-entity-hero__type {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.2rem 0.62rem;
  border-radius: var(--radius-pill);
  background: rgba(100, 210, 255, 0.14);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.gc-entity-hero__identity {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.gc-entity-hero__logo {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.gc-entity-hero__logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gc-entity-hero__logo-fallback {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text-secondary);
}

.gc-entity-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.6vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.05;
}

.gc-entity-hero__count {
  margin: 0.2rem 0 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gc-entity-hero__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.gc-entity-hero__follow {
  padding: 0.55rem 1rem 0.55rem 0.85rem;
  border: 1px solid rgba(100, 210, 255, 0.32);
  background: rgba(100, 210, 255, 0.08);
  color: var(--color-text);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.gc-entity-hero__follow.is-on {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #001a26;
}

.gc-entity-hero__back {
  font-weight: 500;
  font-size: 0.8125rem;
}

.gc-entity-hero__collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  padding: 0.55rem;
  background: rgba(0, 0, 0, 0.22);
  min-height: 220px;
}

.gc-entity-hero__collage--solo {
  grid-template-columns: 1fr;
  padding: 0;
}

.gc-entity-hero__collage--solo .gc-entity-hero__poster {
  border-radius: 0;
  min-height: 220px;
}

.gc-entity-hero__collage--empty {
  background:
    linear-gradient(160deg, rgba(100, 210, 255, 0.12), rgba(191, 90, 242, 0.08)),
    rgba(255, 255, 255, 0.02);
}

.gc-entity-hero__poster {
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center top;
  min-height: 100px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.gc-entity-section {
  margin-bottom: var(--space-md);
  padding: 1.1rem 1.2rem 1.25rem;
  border-radius: calc(var(--radius-xl) + 2px);
}

.gc-entity-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.gc-entity-section__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gc-entity-section__meta {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.gc-entity-section__empty {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.gc-entity-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr));
  gap: 0.65rem;
}

.gc-entity-section__grid--all {
  grid-template-columns: repeat(auto-fill, minmax(8.5rem, 1fr));
}

.gc-entity-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
  padding: 0.45rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  cursor: pointer;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.gc-entity-card:hover {
  transform: translateY(-2px);
  border-color: rgba(100, 210, 255, 0.35);
}

.gc-entity-card__poster {
  aspect-ratio: 2 / 3;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.gc-entity-card__poster .gc-cover {
  width: 100%;
  height: 100%;
}

.gc-entity-card__date {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.gc-entity-card__platforms {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.gc-entity-card__title {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gc-entity-card--upcoming {
  flex: 0 0 min(108px, 28vw);
  scroll-snap-align: start;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 0;
}

.gc-entity-card--upcoming:hover {
  transform: none;
  border-color: transparent;
}

.gc-entity-card--catalog .gc-entity-card__title {
  order: 2;
}

.gc-entity-card--catalog .gc-entity-card__date {
  order: 3;
}

.gc-entity-card--catalog .gc-entity-card__platforms {
  order: 4;
}

.gc-entity-hero__type--desktop {
  display: inline-flex;
}

@media (max-width: 900px) {
  .gc-entity-page .cal-page {
    padding-inline: var(--space-xs);
  }

  .gc-entity-hero {
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-sm);
  }

  .gc-entity-hero__mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1rem 0.65rem;
  }

  .gc-entity-hero__mobile-bar .gc-entity-hero__logo {
    width: 5.25rem;
    height: 5.25rem;
    margin: 0 auto;
  }

  .gc-entity-hero__profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.35rem 1rem 1.1rem;
    gap: 0.25rem;
  }

  .gc-entity-hero__profile .gc-entity-hero__type {
    display: none;
  }

  .gc-entity-hero__profile h1 {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
    text-align: center;
  }

  .gc-entity-hero__profile .gc-entity-hero__count {
    text-align: center;
  }

  .gc-entity-hero__layout {
    display: none;
  }

  .gc-entity-hero__type--desktop {
    display: none;
  }

  .gc-entity-section {
    padding: 0.85rem 0.75rem 1rem;
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-sm);
  }

  .gc-entity-section__head h2 {
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
  }

  .gc-entity-section__grid {
    display: none;
  }

  .gc-entity-section__track {
    display: flex;
  }

  .gc-entity-section__grid--all {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.4rem;
  }

  .gc-entity-card--catalog {
    padding: 0.3rem;
    gap: 0.28rem;
  }

  .gc-entity-card--catalog .gc-entity-card__platforms {
    display: none;
  }

  .gc-entity-card--catalog .gc-entity-card__title {
    font-size: 0.6875rem;
  }

  .gc-entity-card--catalog .gc-entity-card__date {
    font-size: 0.5625rem;
  }

  .gc-entity-card--upcoming .gc-entity-card__date {
    text-align: center;
    text-transform: none;
    letter-spacing: 0.01em;
  }
}

@media (min-width: 901px) {
  .gc-entity-section__track {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr));
    overflow: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  .gc-entity-card--upcoming {
    flex: unset;
    scroll-snap-align: unset;
    padding: 0.45rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
  }

  .gc-entity-card--upcoming:hover {
    transform: translateY(-2px);
    border-color: rgba(100, 210, 255, 0.35);
  }
}

@media (max-width: 820px) {
  .gc-entity-hero__layout {
    grid-template-columns: 1fr;
  }

  .gc-entity-hero__collage {
    min-height: 160px;
    order: -1;
  }
}

html[data-theme="light"] .gc-entity-hero {
  border-color: rgba(0, 0, 0, 0.08);
}

html[data-theme="light"] .gc-entity-hero__main {
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.05), rgba(191, 90, 242, 0.03)), #fff;
}

html[data-theme="light"] .gc-entity-hero__follow.is-on {
  color: #fff;
}

@media (max-width: 768px) {
  .gc-view-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .gc-segmented--scale {
    width: 100%;
  }

  .gc-agenda__item {
    align-items: flex-start;
  }
}

/* — Apple-style polish (calendar app) — */
body[data-page="games-calendar"] .ambient__orb {
  opacity: 0.22;
}

body[data-page="games-calendar"] .site-header {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

body[data-page="games-calendar"] .cal-page {
  padding-top: 0;
}

.gc-grid--month-pro .gc-grid__weekdays {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.gc-grid--month-pro .gc-day--empty {
  background: transparent;
  min-height: 0;
}

.gc-grid--month-pro .gc-day--empty:hover {
  background: rgba(0, 0, 0, 0.28);
}

html[data-theme="light"] .gc-grid--month {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.08);
}

html[data-theme="light"] .gc-day {
  background: rgba(255, 255, 255, 0.92);
}

html[data-theme="light"] .gc-day:hover {
  background: var(--glass-bg-hover);
}

html[data-theme="light"] .gc-pill--active,
html[data-theme="light"] .gc-segment--active,
html[data-theme="light"] .gc-scale-card--active {
  background: var(--glass-bg-active);
  color: var(--color-text);
  box-shadow: var(--shadow-glass);
}

html[data-theme="light"] .gc-segmented,
html[data-theme="light"] .gc-layout-toggle,
html[data-theme="light"] .gc-scale-toggle,
html[data-theme="light"] .gc-platform-toggle {
  background: rgba(120, 120, 128, 0.16);
}

html[data-theme="light"] .gc-agenda__item,
html[data-theme="light"] .gc-day-list-item,
html[data-theme="light"] .gc-day-view__hero,
html[data-theme="light"] .gc-myweek__head {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(0, 0, 0, 0.08);
}

/* —— Mobile-only calendar shell (distinct from desktop) —— */
body.gc-mobile-cal[data-page="games-calendar"] {
  --header-height: 48px;
  --gc-toolbar-control-h: 2.75rem;
  --gc-mobile-touch: 2.75rem;
}

body.gc-mobile-cal[data-page="games-calendar"] .site-header {
  top: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  height: var(--header-height);
  padding: 0 0.5rem 0 0.65rem;
  border-left: none;
  border-right: none;
  border-top: none;
}

body.gc-mobile-cal[data-page="games-calendar"] .site-header__inner {
  gap: 0.5rem;
}

body.gc-mobile-cal[data-page="games-calendar"] .site-brand {
  padding: 0.2rem 0.65rem 0.2rem 0.4rem;
}

body.gc-mobile-cal[data-page="games-calendar"] .site-brand__wordmark {
  font-size: 0.875rem;
}

body.gc-mobile-cal[data-page="games-calendar"] .cal-page {
  padding: 0;
  min-height: calc(100dvh - var(--header-height));
  max-width: none;
}

body.gc-mobile-cal[data-page="games-calendar"] .gc-app--mobile-ui {
  gap: 0;
  height: calc(100dvh - var(--header-height));
  max-height: calc(100dvh - var(--header-height));
  overflow: hidden;
}

body.gc-mobile-cal[data-page="games-calendar"] .ambient__orb {
  opacity: 0.1;
}

@media (max-width: 900px) {
  .gc-app--mobile-ui .gc-chrome--mobile {
    position: relative;
    top: auto;
    z-index: 45;
    flex-shrink: 0;
    gap: 0;
    margin: 0;
    padding: 0;
    background: rgba(8, 8, 10, 0.96);
    backdrop-filter: blur(20px) saturate(1.25);
    -webkit-backdrop-filter: blur(20px) saturate(1.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  html[data-theme="light"] .gc-app--mobile-ui .gc-chrome--mobile {
    background: rgba(248, 248, 250, 0.97);
    border-bottom-color: rgba(0, 0, 0, 0.08);
  }

  .gc-app--mobile-ui .gc-toolbar--mobile.glass {
    padding: 0.45rem 0.55rem 0.5rem;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    background-image: none;
  }

  .gc-app--mobile-ui .gc-toolbar__row--mobile-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.35rem;
  }

  .gc-app--mobile-ui .gc-toolbar__row--mobile-sub {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
  }

  .gc-app--mobile-ui .gc-toolbar__row--mobile-filters,
  .gc-app--mobile-ui .gc-toolbar__row--mobile-filters-only {
    margin-bottom: 0;
  }

  .gc-app--mobile-ui .gc-toolbar__title--mobile {
    font-size: clamp(0.9375rem, 4.2vw, 1.0625rem);
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.15;
    padding: 0 0.25rem;
  }

  .gc-app--mobile-ui .gc-icon-btn--round {
    width: var(--gc-mobile-touch);
    height: var(--gc-mobile-touch);
    min-width: var(--gc-mobile-touch);
  }

  .gc-app--mobile-ui .gc-nav-cluster--mobile {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0.15rem;
    gap: 0.15rem;
  }

  .gc-app--mobile-ui .gc-nav-cluster--mobile .gc-nav-btn {
    width: var(--gc-mobile-touch);
    height: var(--gc-mobile-touch);
    min-width: var(--gc-mobile-touch);
    font-size: 1.125rem;
  }

  .gc-app--mobile-ui .gc-nav-cluster--mobile .gc-today {
    min-height: var(--gc-mobile-touch);
    padding: 0 0.85rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  .gc-app--mobile-ui .gc-toolbar__row--mobile-sub .gc-follow {
    width: var(--gc-mobile-touch);
    height: var(--gc-mobile-touch);
    min-width: var(--gc-mobile-touch);
  }

  .gc-app--mobile-ui .gc-platform-toggle--quick {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.1rem;
  }

  .gc-app--mobile-ui .gc-platform-toggle--quick::-webkit-scrollbar {
    display: none;
  }

  .gc-app--mobile-ui .gc-platform-toggle--quick .gc-pill {
    min-height: 2.25rem;
    padding: 0.45rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
  }

  .gc-app--mobile-ui .gc-mobile-stage {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .gc-app--mobile-ui .gc-mobile-stage--home {
    overflow: hidden;
  }

  .gc-app--mobile-ui .gc-mobile-stage--day {
    overflow: hidden;
  }

  .gc-app--mobile-ui .gc-mobile-scroll--day {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
  }

  .gc-app--mobile-ui .gc-mobile-scroll--home {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
  }

  .gc-app--mobile-ui .gc-upcoming-wrap--mobile {
    display: block;
    flex-shrink: 0;
    margin: 0;
    padding: 0.35rem 0.55rem 0.15rem;
  }

  .gc-app--mobile-ui .gc-upcoming--mobile {
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .gc-app--mobile-ui .gc-upcoming--mobile .gc-upcoming__head {
    margin: 0 0.1rem 0.35rem;
    padding: 0;
  }

  .gc-app--mobile-ui .gc-upcoming--mobile .gc-upcoming__head h2 {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  .gc-app--mobile-ui .gc-upcoming-card--mobile {
    flex: 0 0 3.6rem;
    gap: 0.35rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    background: transparent;
    border: none;
  }

  .gc-app--mobile-ui .gc-upcoming-card--mobile > .gc-cover,
  .gc-app--mobile-ui .gc-upcoming-card--mobile > .gc-cover--poster-upcoming {
    width: 3.6rem;
    height: 5.4rem;
    border-radius: calc(var(--radius-sm) + 2px);
    overflow: hidden;
    box-shadow:
      0 6px 16px rgba(0, 0, 0, 0.42),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .gc-app--mobile-ui .gc-upcoming-card--mobile .gc-upcoming-card__body {
    padding: 0;
    margin: 0;
    gap: 0;
    width: 100%;
  }

  .gc-app--mobile-ui .gc-upcoming-card--mobile .gc-upcoming-card__title {
    display: none;
  }

  .gc-app--mobile-ui .gc-upcoming-card--mobile .gc-upcoming-card__countdown,
  .gc-app--mobile-ui .gc-upcoming-card--mobile .gc-upcoming-card__tags {
    display: none;
  }

  .gc-app--mobile-ui .gc-upcoming-card--mobile .gc-upcoming-card__date {
    font-size: 0.5625rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    text-align: center;
    width: 100%;
  }

  /* Track: horizontal scroll, scroll-snap */
  .gc-app--mobile-ui .gc-upcoming-wrap--mobile .gc-upcoming__track,
  .gc-app--mobile-ui .gc-upcoming-wrap--mobile .gc-upcoming__grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible;
    gap: 0.55rem;
    padding: 0.25rem 0.45rem 0.4rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    grid-template-columns: none;
    grid-template-rows: none;
  }

  .gc-app--mobile-ui .gc-upcoming-wrap--mobile .gc-upcoming__track::-webkit-scrollbar,
  .gc-app--mobile-ui .gc-upcoming-wrap--mobile .gc-upcoming__grid::-webkit-scrollbar {
    display: none;
  }

  .gc-app--mobile-ui .gc-upcoming-wrap--mobile .gc-upcoming-card--mobile {
    scroll-snap-align: start;
  }

  /* Hide the hero variant inside mobile upcoming — use only compact cards */
  .gc-app--mobile-ui .gc-upcoming-wrap--mobile .gc-upcoming-card--hero {
    flex: 0 0 3.6rem;
  }

  .gc-app--mobile-ui .gc-body--mobile-scroll {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.35rem 0.55rem calc(0.65rem + var(--mobile-bar-clearance));
  }

  .gc-app--mobile-ui .gc-body--mobile-month {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    overflow: hidden;
  }

  .gc-app--mobile-ui .gc-body--mobile-month > .gc-notice,
  .gc-app--mobile-ui .gc-body--mobile-month > .gc-empty,
  .gc-app--mobile-ui .gc-body--mobile-month > .gc-empty-state {
    flex-shrink: 0;
    margin: 0.35rem 0.55rem;
    font-size: 0.8125rem;
  }

  .gc-app--mobile-ui .gc-body--mobile-month .gc-grid--month-compact {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0.15rem 0.45rem 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    background-image: none;
  }

  .gc-app--mobile-ui .gc-body--mobile-month .gc-grid--month-compact .gc-grid__weekdays {
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 5;
    background: linear-gradient(180deg, rgba(8, 8, 12, 0.96) 0%, rgba(8, 8, 12, 0.78) 100%);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  html[data-theme="light"] .gc-app--mobile-ui .gc-body--mobile-month .gc-grid--month-compact .gc-grid__weekdays {
    background: linear-gradient(180deg, rgba(252, 252, 254, 0.96) 0%, rgba(252, 252, 254, 0.78) 100%);
    border-bottom-color: rgba(0, 0, 0, 0.05);
  }

  .gc-app--mobile-ui .gc-body--mobile-month .gc-grid--month-compact .gc-grid__body {
    flex: 1;
    min-height: 0;
    grid-template-rows: repeat(6, minmax(0, 1fr));
    align-content: stretch;
  }

  .gc-app--mobile-ui .gc-body--mobile-month > .gc-month-footer {
    flex-shrink: 0;
    margin: 0;
    padding: 0.55rem 0.85rem calc(0.7rem + var(--mobile-bar-clearance));
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.32) 100%);
  }

  .gc-app--mobile-ui .gc-month-footer__link {
    min-height: var(--gc-mobile-touch);
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 0.35rem 0.25rem;
  }

  .gc-app--mobile-ui .gc-offline-banner {
    flex-shrink: 0;
    margin: 0.35rem 0.55rem 0;
    padding: 0.5rem 0.65rem;
    font-size: 0.75rem;
    border-radius: var(--radius-md);
  }

  .gc-app--mobile-ui .gc-offline-banner p {
    margin: 0;
    line-height: 1.35;
  }

  .gc-app--mobile-ui .gc-toolbar__search-expand {
    padding-top: 0.35rem;
  }

  .gc-app--mobile-ui .gc-toolbar__search-expand .gc-search__input {
    font-size: 1rem;
    min-height: var(--gc-mobile-touch);
    padding: 0.55rem 0.85rem;
  }

  .gc-app--mobile-ui.gc-app--mobile-day .gc-mobile-day-panel {
    flex: 1;
    min-height: 0;
  }

  .gc-app--mobile-ui.gc-app--mobile-day .gc-mobile-day-shelf__grid {
    gap: 0.65rem 0.55rem;
    padding: 0.5rem 0.55rem calc(0.95rem + var(--mobile-bar-clearance));
  }

  .gc-app--mobile-ui.gc-app--mobile-day .gc-mobile-day-card {
    gap: 0.45rem;
  }

  .gc-app--mobile-ui.gc-app--mobile-day .gc-mobile-day-card__title {
    font-size: 0.8125rem;
    line-height: 1.25;
  }

  .gc-app--mobile-ui.gc-app--mobile-day .gc-mobile-day-card__studio {
    font-size: 0.6875rem;
    line-height: 1.3;
  }

  .gc-app--mobile-ui.gc-app--mobile-day .gc-mobile-day-card__platform .gc-platform-mark,
  .gc-app--mobile-ui.gc-app--mobile-day .gc-mobile-day-card__platform .gc-platform-mark-wrap .gc-platform-mark--img {
    width: 16px;
    height: 16px;
  }

  .gc-app--mobile-ui.gc-app--mobile-day .gc-mobile-day-shelf__empty {
    font-size: 0.875rem;
    padding: 2rem 1rem;
  }

  .gc-app--mobile-ui .gc-toolbar__row--mobile-nav-day .gc-nav-cluster--mobile {
    max-width: none;
  }
}

/* ============================================================================
   SENIOR UI POLISH — clean / crystal / Apple
   Last-pass refinements that sit on top of the rest of the file.
   Keep all rules here so they win the cascade and act as the source of truth
   for the premium feel.
   ============================================================================ */

/* Smoother global font rendering */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Spring as the default for most micro-interactions */
:root {
  --ease-apple: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-quart: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-crystal: 0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 12px 32px rgba(0, 0, 0, 0.32),
    0 2px 6px rgba(0, 0, 0, 0.18);
  --shadow-crystal-light:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 12px 32px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.04);
}

/* Hide scrollbars in scroll-snap tracks but keep momentum scrolling */
.gc-upcoming__track,
.gc-upcoming__grid,
.gc-platform-bar__track,
.gc-segmented--scale,
.gc-day-sheet__spotlight-track,
.gc-game-sheet__gallery-track {
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.gc-upcoming__track::-webkit-scrollbar,
.gc-upcoming__grid::-webkit-scrollbar,
.gc-platform-bar__track::-webkit-scrollbar,
.gc-segmented--scale::-webkit-scrollbar,
.gc-day-sheet__spotlight-track::-webkit-scrollbar,
.gc-game-sheet__gallery-track::-webkit-scrollbar {
  display: none;
}

/* Calendar grid — softer hairlines + premium shadow */
.gc-grid--month-pro {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 0 0.5px rgba(255, 255, 255, 0.04),
    0 24px 60px rgba(0, 0, 0, 0.38);
}

html[data-theme="light"] .gc-grid--month-pro {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.04);
  box-shadow:
    0 0 0 0.5px rgba(0, 0, 0, 0.04),
    0 16px 44px rgba(0, 0, 0, 0.07);
}

/* All glass-pill buttons share the same crystal feel */
.glass-pill {
  transition:
    background-color 220ms var(--ease-apple),
    border-color 220ms var(--ease-apple),
    box-shadow 220ms var(--ease-apple),
    transform 220ms var(--ease-apple),
    color 220ms var(--ease-apple);
}

.glass-pill:active {
  transform: scale(0.96);
}

/* Cards/buttons inside lists: unified focus ring */
.gc-day-spotlight:focus-visible,
.gc-day-lead:focus-visible,
.gc-day-trio__card:focus-visible,
.gc-day-row:focus-visible,
.gc-upcoming-card:focus-visible,
.gc-day-panel__item:focus-visible,
.gc-day-sheet__item-hit:focus-visible,
.gc-game-sheet__store-row:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: inherit;
}

/* Subtle paged scroll for any horizontal track */
.gc-upcoming__track,
.gc-upcoming__grid,
.gc-platform-bar__track {
  scroll-padding-inline: 0.55rem;
  scroll-behavior: smooth;
}

/* Smoother number tap-feedback on Nintendo-style mobile calendar */
@media (max-width: 900px) {
  .gc-grid--month-compact .gc-day__num {
    transition:
      transform 180ms var(--ease-apple),
      color 180ms var(--ease-apple),
      background 180ms var(--ease-apple);
  }

  .gc-grid--month-compact .gc-day__num:active {
    transform: scale(0.88);
  }

  /* Nicer ambient feel behind the compact grid */
  .gc-app--mobile-ui .gc-body--mobile-month .gc-grid--month-compact {
    position: relative;
  }

  .gc-app--mobile-ui .gc-body--mobile-month .gc-grid--month-compact::before {
    content: "";
    position: absolute;
    inset: -10% -20% auto -20%;
    height: 60%;
    background: radial-gradient(60% 80% at 50% 0%, rgba(100, 210, 255, 0.07), transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  .gc-app--mobile-ui .gc-body--mobile-month .gc-grid--month-compact > * {
    position: relative;
    z-index: 1;
  }
}

/* Upcoming poster cards — crystal lift on tap */
.gc-upcoming-card {
  transition:
    transform 240ms var(--ease-quart),
    box-shadow 240ms var(--ease-quart),
    border-color 220ms var(--ease-apple);
}

.gc-upcoming-card:active {
  transform: scale(0.97);
}

/* Game-sheet store rows: crystal hover lift */
.gc-game-sheet__store-row {
  transition:
    transform 240ms var(--ease-quart),
    background 220ms var(--ease-apple),
    border-color 220ms var(--ease-apple),
    box-shadow 220ms var(--ease-apple);
}

/* Modal backdrop: deeper blur, true Apple sheet feel */
.gc-overlay-backdrop {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(36px) saturate(170%);
  -webkit-backdrop-filter: blur(36px) saturate(170%);
}

/* Apple Calendar dot indicators harmonised */
.gc-grid--month-compact .gc-day__num--has::after {
  transition: transform 180ms var(--ease-apple);
}
.gc-grid--month-compact .gc-day__num:active::after {
  transform: translateX(-50%) scale(1.25);
}

/* When user has any followed entity/release, the Upcoming hero glow becomes
   stronger so personalised recommendations feel earned. */
body[data-page="games-calendar"]:has(.gc-platform-chip[data-has-fav="true"])
  .gc-upcoming-card.gc-upcoming-card--hero {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 10px 36px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(100, 210, 255, 0.18);
}

/* Reusable shimmer for skeleton-friendly elements */
@keyframes gc-crystal-shimmer {
  0% { background-position: -120% 0; }
  100% { background-position: 220% 0; }
}

/* iOS-style spring on day-sheet entry */
.gc-day-sheet {
  animation: gc-sheet-in 0.48s var(--ease-apple) both;
}

/* Disable parallax animations on Reduce Motion (belt-and-braces) */
@media (prefers-reduced-motion: reduce) {
  .gc-game-sheet__hero-bg,
  .gc-day-sheet__mosaic,
  .ambient__orb,
  .gc-day--today .gc-day__num,
  .gc-platform-chip[data-has-fav="true"] > .gc-platform-chip__icon::after {
    animation: none !important;
  }
}

/* Safe-area-aware bottom space for mobile views */
@media (max-width: 900px) {
  body[data-page="games-calendar"] {
    padding-bottom: var(--safe-bottom);
  }

  .gc-app--mobile-ui {
    padding-bottom: 0;
  }
}

/* —— Pro UI v53: interactions + Apple polish —— */

.gc-toolbar__row--mobile-scale {
  margin-bottom: 0.35rem;
}

.gc-segmented--mobile-scale {
  width: 100%;
}

.gc-segmented--mobile-scale .gc-segment {
  flex: 1;
  min-height: var(--gc-mobile-touch);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gc-mobile-scroll--home,
.gc-mobile-scroll--day,
.gc-body--mobile-scroll {
  position: relative;
  transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
}

.gc-mobile-scroll--home {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
}

.gc-ptr {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  height: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gc-ptr--visible {
  opacity: 1;
}

.gc-ptr__ring {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.gc-ptr__svg {
  opacity: 0.85;
  transition: transform 0.25s ease;
}

.gc-ptr--ready .gc-ptr__svg {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.gc-ptr--loading .gc-ptr__ring {
  animation: gc-ptr-spin 0.85s linear infinite;
}

@keyframes gc-ptr-spin {
  to { transform: rotate(360deg); }
}

.gc-ptr__label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.gc-quick-menu {
  position: fixed;
  z-index: 980;
  min-width: 11.5rem;
  max-width: min(18rem, calc(100vw - 24px));
  padding: 0.35rem;
  border-radius: calc(var(--radius-lg) + 2px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  animation: gc-quick-in 0.22s cubic-bezier(0.32, 0.72, 0, 1) both;
}

@keyframes gc-quick-in {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(4px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.gc-quick-menu__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: none;
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--color-text);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease;
}

.gc-quick-menu__item:hover,
.gc-quick-menu__item:focus-visible {
  background: var(--glass-bg-hover);
}

.gc-quick-menu__item svg {
  flex-shrink: 0;
  opacity: 0.88;
}

.gc-quick-menu__divider {
  height: 1px;
  margin: 0.25rem 0.5rem;
  background: var(--glass-border-dim);
}

.gc-day-reorder-handle {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  border: none;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-text-subtle);
  cursor: grab;
  touch-action: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.gc-day-reorder-handle:active {
  cursor: grabbing;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-text);
}

.gc-day-sheet__item {
  display: flex;
  align-items: stretch;
  gap: 0.35rem;
}

.gc-day-sheet__item .gc-day-sheet__item-hit {
  flex: 1;
  min-width: 0;
}

.gc-day-sheet__item.gc-day-reorder--dragging {
  opacity: 0.35;
}

.gc-day-reorder-ghost {
  position: fixed;
  z-index: 999;
  pointer-events: none;
  opacity: 0.92;
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-lg);
}

.gc-mobile-day-card-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.gc-mobile-day-card-wrap .gc-day-reorder-handle {
  align-self: flex-end;
  width: 2rem;
  height: 1.5rem;
  border-radius: var(--radius-pill);
}

.gc-mobile-day-card-wrap.gc-day-reorder--dragging {
  opacity: 0.4;
}

.gc-mobile-day-shelf__grid--reorder {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.gc-mobile-day-shelf__grid--reorder .gc-mobile-day-card-wrap {
  width: 100%;
}

.gc-mobile-day-shelf__grid--reorder .gc-mobile-day-card {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 0.65rem;
  width: 100%;
  text-align: left;
  padding: 0.65rem;
  border-radius: calc(var(--radius-lg) + 2px);
}

.gc-mobile-day-shelf__grid--reorder .gc-mobile-day-card__poster {
  grid-row: 1 / span 3;
}

/* Apple polish — softer radii + motion */
body[data-page="games-calendar"] .gc-toolbar.glass,
body[data-page="games-calendar"] .gc-toolbar--mobile.glass {
  border-radius: calc(var(--radius-xl) + 4px);
}

body[data-page="games-calendar"] .gc-chrome--mobile .gc-toolbar--mobile {
  margin: 0.35rem 0.5rem 0;
  border-radius: calc(var(--radius-xl) + 2px);
}

.gc-nav-cluster {
  border-radius: var(--radius-pill);
}

.gc-body[data-cal-swipe] {
  animation: gc-view-in 0.38s cubic-bezier(0.32, 0.72, 0, 1) both;
}

@keyframes gc-view-in {
  from {
    opacity: 0.65;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gc-upcoming-card,
.gc-mobile-day-card,
.gc-day-sheet__item-hit,
.gc-month-footer {
  border-radius: calc(var(--radius-lg) + 2px);
}

.gc-grid--month-compact .gc-day--compact .gc-day__num {
  border-radius: var(--radius-pill);
}

.gc-toolbar.glass,
.gc-mobile-sheet__panel,
.gc-day-sheet,
.gc-game-sheet {
  transition:
    box-shadow 0.32s cubic-bezier(0.32, 0.72, 0, 1),
    transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
}

@media (prefers-reduced-motion: reduce) {
  .gc-segmented--ios .gc-segmented__indicator,
  .gc-body[data-cal-swipe],
  .gc-quick-menu,
  .gc-ptr--loading .gc-ptr__ring {
    animation: none !important;
    transition: none !important;
  }
}

