/* FindEdition Anime Experience — Platform 26.4 */
.ent-root.ent-theme-anime {
  --anx-neon-pink: #ff6b9d;
  --anx-neon-purple: #a855f7;
  --anx-neon-cyan: #22d3ee;
  --anx-neon-blue: #6366f1;
  --anx-glass: rgba(255, 255, 255, 0.06);
  --anx-glass-border: rgba(255, 255, 255, 0.12);
  --anx-glow: 0 0 40px rgba(168, 85, 247, 0.25);
  --anx-gradient-hero: linear-gradient(135deg, #2d1b69 0%, #1e1b4b 35%, #07080f 100%);
  --anx-gradient-card: linear-gradient(180deg, rgba(168, 85, 247, 0.15) 0%, rgba(7, 8, 15, 0) 100%);
  --anx-space-section: clamp(2rem, 4vw, 3.5rem);
  --anx-radius-lg: 16px;
  --anx-shadow-card: 0 8px 32px rgba(0, 0, 0, 0.45);
  --anx-heading: #ffffff;
  --anx-heading-soft: #eef0f8;
  --ent-accent: var(--anx-neon-pink);
  --ent-accent-soft: #ffa3c4;
  --ent-teal: var(--anx-neon-cyan);
  --ent-text: #eef0f8;
  --ent-text-soft: #b8c0d4;
  --ent-text-muted: #8b95a8;
  color: var(--ent-text);
}

/* Typography isolation — no inherited dark headings */
.ent-root.ent-theme-anime h1,
.ent-root.ent-theme-anime h2,
.ent-root.ent-theme-anime h3,
.ent-root.ent-theme-anime h4,
.ent-root.ent-theme-anime .ent-section-title,
.ent-root.ent-theme-anime .ent-card__title,
.ent-root.ent-theme-anime .anx-section-title,
.ent-root.ent-theme-anime .anx-aside-title {
  color: var(--anx-heading-soft);
}
.ent-root.ent-theme-anime .ent-person-card__name,
.ent-root.ent-theme-anime .anx-person-card strong {
  color: var(--anx-heading-soft);
}
.ent-root.ent-theme-anime .ent-page-title {
  color: var(--anx-heading);
}

/* Nav */
.anx-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(7, 8, 15, 0.92);
  border-bottom: 1px solid var(--anx-glass-border);
}
.anx-nav__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  flex-wrap: nowrap;
}
.anx-nav__brand {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.875rem;
  color: var(--ent-text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.anx-nav__brand span {
  background: linear-gradient(90deg, var(--anx-neon-pink), var(--anx-neon-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.anx-nav__links {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  margin-left: auto;
}
.anx-nav__link {
  color: var(--ent-text-soft);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}
.anx-nav__link:hover,
.anx-nav__link:focus-visible {
  color: var(--ent-text);
  background: rgba(168, 85, 247, 0.15);
  outline: none;
  box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.4);
}
.anx-nav__link.is-active {
  color: #fff;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.35), rgba(255, 107, 157, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.anx-nav__search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  color: var(--ent-text-soft);
  background: var(--anx-glass);
  border: 1px solid var(--anx-glass-border);
  transition: all 0.2s;
}
.anx-nav__search:hover,
.anx-nav__search:focus-visible {
  color: var(--anx-neon-cyan);
  border-color: var(--anx-neon-cyan);
  outline: none;
}

/* Page shell */
.anx-page {
  padding-bottom: var(--anx-space-section);
}
.anx-section {
  margin-bottom: var(--anx-space-section);
}
.anx-section:last-child {
  margin-bottom: 0;
}

/* Featured hero */
.anx-featured-hero {
  position: relative;
  min-height: clamp(340px, 48vh, 520px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 0 0 var(--anx-radius-lg) var(--anx-radius-lg);
  margin-bottom: var(--anx-space-section);
}
.anx-featured-hero__bg {
  position: absolute;
  inset: 0;
}
.anx-featured-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.anx-featured-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 8, 15, 0.98) 0%, rgba(7, 8, 15, 0.4) 45%, rgba(45, 27, 105, 0.35) 100%);
}
.anx-featured-hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  max-width: 640px;
}
.anx-featured-hero__label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--anx-neon-cyan);
  margin-bottom: 0.5rem;
}
.anx-featured-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
  color: #ffffff;
}
.anx-featured-hero__desc {
  color: var(--ent-text-soft);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.anx-featured-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Grids */
.anx-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.anx-grid--wide {
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}
.anx-grid--compact {
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.75rem;
}

/* Badges */
.anx-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid var(--anx-glass-border);
  background: var(--anx-glass);
}
.anx-badge--airing { color: #4ade80; border-color: rgba(74, 222, 128, 0.35); background: rgba(74, 222, 128, 0.1); }
.anx-badge--completed { color: var(--anx-neon-cyan); border-color: rgba(34, 211, 238, 0.35); }
.anx-badge--season { color: var(--anx-neon-purple); border-color: rgba(168, 85, 247, 0.35); }
.anx-badge--score { color: #fbbf24; border-color: rgba(251, 191, 36, 0.35); }

/* Filter panel */
.anx-discover-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.anx-filter-panel {
  position: sticky;
  top: 4.5rem;
  padding: 1.25rem;
  border-radius: var(--anx-radius-lg);
  background: rgba(18, 22, 36, 0.85);
  border: 1px solid var(--anx-glass-border);
  backdrop-filter: blur(12px);
}
.anx-filter-panel__title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ent-text-muted);
  margin-bottom: 1rem;
}
.anx-filter-group {
  margin-bottom: 1.25rem;
}
.anx-filter-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--ent-text-soft);
}
.anx-filter-group select,
.anx-filter-group input[type="search"] {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--anx-glass-border);
  background: rgba(7, 8, 15, 0.8);
  color: var(--ent-text);
  font-size: 0.875rem;
  appearance: none;
}
.anx-filter-group select:focus-visible,
.anx-filter-group input:focus-visible {
  outline: none;
  border-color: var(--anx-neon-purple);
  box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.35);
}
.anx-filter-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.anx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
}
.anx-btn:focus-visible {
  outline: 2px solid var(--anx-neon-cyan);
  outline-offset: 2px;
}
.anx-btn--primary {
  background: linear-gradient(135deg, var(--anx-neon-purple), var(--anx-neon-pink));
  color: #fff;
  box-shadow: var(--anx-glow);
}
.anx-btn--primary:hover { transform: translateY(-1px); }
.anx-btn--ghost {
  background: transparent;
  color: var(--ent-text-soft);
  border: 1px solid var(--anx-glass-border);
}
.anx-btn--ghost:hover { color: var(--ent-text); border-color: var(--anx-neon-purple); }

/* Active filter chips */
.anx-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.anx-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: var(--ent-text);
}
.anx-chip__remove {
  opacity: 0.7;
  font-size: 0.75rem;
}
.anx-chip__remove:hover { opacity: 1; }

/* Detail page */
.anx-detail-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}
.anx-detail-main { min-width: 0; }
.anx-detail-aside {
  position: sticky;
  top: 4.5rem;
  padding: 1.25rem;
  border-radius: var(--anx-radius-lg);
  background: rgba(18, 22, 36, 0.75);
  border: 1px solid var(--anx-glass-border);
}
.anx-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.anx-stat {
  padding: 0.75rem;
  border-radius: 10px;
  background: var(--anx-glass);
  border: 1px solid var(--anx-glass-border);
  text-align: center;
}
.anx-stat__value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--anx-neon-cyan);
}
.anx-stat__label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ent-text-muted);
  margin-top: 0.15rem;
}
.anx-episode-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.anx-cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.75rem;
}

/* Episode page */
.anx-episode-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--anx-glass-border);
}
.anx-episode-nav__link {
  flex: 1;
  padding: 1rem;
  border-radius: var(--anx-radius-lg);
  background: var(--anx-glass);
  border: 1px solid var(--anx-glass-border);
  color: var(--ent-text-soft);
  font-size: 0.875rem;
  transition: border-color 0.2s, color 0.2s;
}
.anx-episode-nav__link:hover,
.anx-episode-nav__link:focus-visible {
  border-color: var(--anx-neon-purple);
  color: var(--ent-text);
  outline: none;
}
.anx-episode-nav__link.is-next { text-align: right; }
.anx-episode-nav__link.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* Search */
.anx-search-panel {
  position: relative;
  max-width: 720px;
  margin: 0 auto 2rem;
}
.anx-search-panel input[type="search"] {
  width: 100%;
  padding: 1rem 1.25rem 1rem 3rem;
  border-radius: 999px;
  border: 1px solid var(--anx-glass-border);
  background: rgba(18, 22, 36, 0.9);
  color: var(--ent-text);
  font-size: 1rem;
}
.anx-search-panel input:focus-visible {
  outline: none;
  border-color: var(--anx-neon-pink);
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.25);
}
.anx-search-panel__icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ent-text-muted);
  pointer-events: none;
}
.anx-search-scopes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.anx-search-scope {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  color: var(--ent-text-soft);
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
}
.anx-search-scope.is-active,
.anx-search-scope:hover {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.35);
  color: var(--ent-text);
}
.anx-suggest-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.5rem);
  background: rgba(14, 16, 25, 0.98);
  border: 1px solid var(--anx-glass-border);
  border-radius: var(--anx-radius-lg);
  box-shadow: var(--anx-shadow-card);
  max-height: 360px;
  overflow-y: auto;
  z-index: 60;
  display: none;
}
.anx-suggest-dropdown.is-open { display: block; }
.anx-suggest-item {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--ent-text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.875rem;
}
.anx-suggest-item:hover,
.anx-suggest-item.is-focused {
  background: rgba(168, 85, 247, 0.12);
  outline: none;
}
.anx-suggest-item mark {
  background: rgba(255, 107, 157, 0.35);
  color: inherit;
  border-radius: 2px;
}

/* Calendar / list rows */
.anx-list-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: var(--anx-glass);
  border: 1px solid var(--anx-glass-border);
  margin-bottom: 0.5rem;
  transition: border-color 0.2s;
}
.anx-list-row:hover {
  border-color: rgba(168, 85, 247, 0.4);
}
.anx-list-row__date {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--anx-neon-cyan);
  min-width: 4.5rem;
}

/* Studio / publisher cards */
.anx-entity-card {
  padding: 1.25rem;
  border-radius: var(--anx-radius-lg);
  background: var(--anx-gradient-card);
  border: 1px solid var(--anx-glass-border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.anx-entity-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--anx-shadow-card);
}
.anx-entity-card__name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--ent-text);
}
.anx-entity-card__meta {
  font-size: 0.8125rem;
  color: var(--ent-text-muted);
  margin-top: 0.25rem;
}

/* Loading skeleton pulse */
.anx-skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
  background-size: 200% 100%;
  animation: anx-shimmer 1.2s infinite;
  border-radius: 8px;
}
@keyframes anx-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .anx-skeleton { animation: none; }
  .anx-btn--primary:hover { transform: none; }
  .anx-entity-card:hover { transform: none; }
}
.anx-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--anx-neon-purple);
  color: #fff;
}
.anx-skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .anx-discover-layout { grid-template-columns: 1fr; }
  .anx-filter-panel { position: static; }
  .anx-detail-grid { grid-template-columns: 1fr; }
  .anx-detail-aside { position: static; }
}
@media (max-width: 768px) {
  .anx-nav__links { display: none; }
  .anx-nav__links.is-open {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-left: 0;
    padding-top: 0.5rem;
  }
  .anx-nav__toggle { display: inline-flex; }
  .anx-featured-hero { min-height: 280px; border-radius: 0; }
  .anx-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
}
@media (min-width: 769px) {
  .anx-nav__toggle { display: none; }
}
@media (min-width: 1920px) {
  .anx-grid--wide { grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); }
}

/* Platform 25.2 — Cinematic hero */
.anx-hero-cinematic {
  position: relative;
  min-height: clamp(380px, 52vh, 560px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-bottom: var(--anx-space-section);
}
.anx-hero-cinematic__bg { position: absolute; inset: 0; }
.anx-hero-cinematic__backdrop { width: 100%; height: 100%; object-fit: cover; }
.anx-hero-cinematic__fallback { width: 100%; height: 100%; }
.anx-hero-cinematic__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,8,15,0.97) 0%, rgba(7,8,15,0.75) 45%, rgba(7,8,15,0.35) 100%),
              linear-gradient(0deg, rgba(7,8,15,0.95) 0%, transparent 50%);
}
.anx-hero-cinematic__inner {
  position: relative;
  z-index: 2;
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: flex-end;
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.anx-hero-cinematic__poster {
  flex-shrink: 0;
  width: clamp(120px, 18vw, 240px);
  border-radius: var(--anx-radius-lg);
  overflow: hidden;
  box-shadow: var(--anx-shadow-card), var(--anx-glow);
  border: 1px solid var(--anx-glass-border);
}
.anx-hero-cinematic__poster img { width: 100%; height: auto; display: block; }
.anx-hero-cinematic__jp {
  font-size: 0.875rem;
  color: var(--anx-neon-cyan);
  margin-bottom: 0.35rem;
  letter-spacing: 0.04em;
}
.anx-hero-cinematic__title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.anx-hero-cinematic__label {
  font-size: 0.8125rem;
  color: var(--ent-text-soft);
  margin-bottom: 0.5rem;
}
.anx-hero-cinematic__label a { color: var(--anx-neon-pink); }
.anx-hero-cinematic__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin: 1rem 0;
  font-size: 0.8125rem;
}
.anx-hero-cinematic__facts div { display: flex; gap: 0.35rem; }
.anx-hero-cinematic__facts dt { color: var(--ent-text-muted); }
.anx-hero-cinematic__facts dd { color: var(--ent-text); font-weight: 600; margin: 0; }
.anx-hero-cinematic__synopsis {
  color: var(--ent-text-soft);
  line-height: 1.65;
  max-width: 52rem;
  margin-bottom: 1rem;
}
.anx-hero-cinematic__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.anx-hero-cinematic__meta-row { margin-top: 0.5rem; }

/* Page hero */
.anx-hero-page {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  margin-bottom: var(--anx-space-section);
  overflow: hidden;
}
.anx-hero-page__bg {
  position: absolute;
  inset: 0;
  background: var(--anx-gradient-hero);
  opacity: 0.85;
}
.anx-hero-page__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(168,85,247,0.25), transparent 60%);
}
.anx-hero-page__content { position: relative; z-index: 1; }
.anx-hero-page__label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--anx-neon-cyan);
  margin-bottom: 0.5rem;
}
.anx-hero-page__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
}
.anx-hero-page__subtitle {
  color: var(--ent-text-soft);
  margin-top: 0.5rem;
  max-width: 40rem;
}

/* Tabs */
.anx-tabs {
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--anx-glass-border);
  -webkit-overflow-scrolling: touch;
}
.anx-tabs__btn {
  flex-shrink: 0;
  padding: 0.6rem 1rem;
  border: none;
  background: transparent;
  color: var(--ent-text-soft);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.anx-tabs__btn:hover,
.anx-tabs__btn:focus-visible {
  color: var(--ent-text);
  outline: none;
  box-shadow: inset 0 -2px 0 var(--anx-neon-purple);
}
.anx-tabs__btn.is-active {
  color: #fff;
  background: rgba(168, 85, 247, 0.2);
  box-shadow: inset 0 -2px 0 var(--anx-neon-pink);
}
.anx-tab-panel[hidden] { display: none !important; }
.anx-section-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.anx-prose { color: var(--ent-text-soft); line-height: 1.7; }
.anx-muted { color: var(--ent-text-muted); font-size: 0.875rem; }
.anx-genre-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.anx-aside-title { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.anx-aside-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
  color: var(--ent-text-soft);
}
.anx-btn--block { width: 100%; margin-top: 1rem; text-align: center; }
.anx-person-card {
  display: block;
  padding: 1rem;
  border-radius: 10px;
  background: var(--anx-glass);
  border: 1px solid var(--anx-glass-border);
  transition: border-color 0.2s;
}
.anx-person-card:hover { border-color: rgba(168, 85, 247, 0.45); }
.anx-stream-list { list-style: none; padding: 0; }
.anx-stream-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--anx-glass-border);
  color: var(--ent-text-soft);
}

/* Shelf track */
.anx-shelf__track {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.anx-shelf__item {
  flex: 0 0 clamp(130px, 14vw, 180px);
  scroll-snap-align: start;
}
.anx-featured-hero__fallback { width: 100%; height: 100%; background: var(--anx-gradient-hero); }
.anx-featured-hero__jp { font-size: 0.875rem; color: var(--anx-neon-cyan); margin-bottom: 0.35rem; }

/* Discover toolbar */
.anx-discover-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 1rem;
}
.anx-discover-toolbar__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.anx-view-toggle {
  display: flex;
  border-radius: 999px;
  border: 1px solid var(--anx-glass-border);
  overflow: hidden;
}
.anx-view-toggle__btn {
  padding: 0.4rem 0.85rem;
  font-size: 0.8125rem;
  background: transparent;
  border: none;
  color: var(--ent-text-soft);
  cursor: pointer;
}
.anx-view-toggle__btn.is-active {
  background: rgba(168, 85, 247, 0.25);
  color: #fff;
}
.anx-pagination { margin-top: 2rem; }
.anx-home .anx-section { scroll-margin-top: 5rem; }

@media (max-width: 768px) {
  .anx-hero-cinematic__inner { flex-direction: column; align-items: flex-start; }
  .anx-hero-cinematic__poster { width: 100px; }
  .anx-hero-cinematic { min-height: 320px; }
}
@media (max-width: 320px) {
  .anx-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .anx-tabs__btn { padding: 0.5rem 0.65rem; font-size: 0.8125rem; }
}
@media (min-width: 2560px) {
  .anx-hero-cinematic__inner { max-width: 2200px; margin: 0 auto; }
}

/* Platform 25.3 — Compare, reviews, forms */
.anx-compare-table-wrap { overflow-x: auto; margin-bottom: 1.5rem; }
.anx-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.anx-compare-table th,
.anx-compare-table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--anx-glass-border);
  text-align: left;
  color: var(--ent-text);
}
.anx-compare-table thead th { background: rgba(168, 85, 247, 0.12); color: var(--ent-text); }
.anx-inline-form { display: inline; }
.anx-link-btn {
  background: none;
  border: none;
  color: var(--anx-neon-cyan);
  font-size: 0.75rem;
  cursor: pointer;
  padding: 0;
}
.anx-review-form { display: grid; gap: 0.75rem; max-width: 36rem; }
.anx-label { display: grid; gap: 0.35rem; font-size: 0.875rem; color: var(--ent-text-soft); }
.anx-input {
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--anx-glass-border);
  background: rgba(14, 16, 25, 0.9);
  color: var(--ent-text);
  font: inherit;
}
.anx-input:focus-visible {
  outline: none;
  border-color: var(--anx-neon-purple);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.25);
}
.anx-review-card {
  padding: 1rem 1.25rem;
  border-radius: var(--anx-radius-lg);
  background: var(--anx-glass);
  border: 1px solid var(--anx-glass-border);
  margin-bottom: 0.75rem;
}
.anx-review-card__score {
  font-weight: 800;
  color: var(--anx-neon-pink);
  margin-bottom: 0.35rem;
}
.anx-flash {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.anx-flash--success {
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.35);
  color: var(--anx-neon-cyan);
}
.anx-section-title { color: var(--ent-text); }
.anx-hero-cinematic__title { color: #fff; }
.anx-hero-page__title { color: var(--ent-text); }
.anx-grid--list { grid-template-columns: 1fr !important; }
.anx-grid--list .anx-card { max-width: 100%; }

/* Platform 25.4 — Native anime cards */
.anx-card {
  border-radius: var(--anx-radius-lg);
  overflow: hidden;
  background: var(--anx-glass);
  border: 1px solid var(--anx-glass-border);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.anx-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: var(--anx-shadow-card);
}
.anx-card__link { display: block; color: inherit; text-decoration: none; }
.anx-card__frame {
  position: relative;
  aspect-ratio: 2/3;
  background: var(--ent-bg-soft);
  overflow: hidden;
}
.anx-card__frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.anx-card__fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--anx-neon-cyan);
}
.anx-card__score {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  background: rgba(7, 8, 15, 0.85);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.35);
}
.anx-card__badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(7, 8, 15, 0.85);
  color: var(--anx-neon-cyan);
  border: 1px solid rgba(0, 245, 255, 0.35);
}
.anx-card__progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: rgba(0,0,0,0.4);
}
.anx-card__progress span {
  display: block;
  height: 100%;
  background: var(--anx-neon-pink);
}
.anx-card__body { padding: 0.75rem; }
.anx-card__title {
  margin: 0 0 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--anx-heading-soft);
}
.anx-card__jp {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  color: var(--anx-neon-cyan);
  line-height: 1.2;
}
.anx-card__meta {
  margin: 0;
  font-size: 0.75rem;
  color: var(--ent-text-muted);
}
.anx-card__genres {
  margin: 0.35rem 0 0;
  font-size: 0.6875rem;
  color: var(--ent-text-soft);
  line-height: 1.3;
}
.anx-shelf__item .anx-card { height: 100%; }

@media (prefers-reduced-motion: reduce) {
  .anx-card:hover { transform: none; }
}

/* Platform 26.4 — Enterprise navigation & UX */
.anx-header { position: sticky; top: 0; z-index: 100; }
.anx-nav--enterprise { border-bottom: 1px solid var(--anx-glass-border); background: rgba(7, 8, 15, 0.94); backdrop-filter: blur(20px); }
.anx-nav__inner--enterprise { flex-wrap: nowrap; min-height: 3.25rem; }
.anx-nav__brand { flex-shrink: 0; white-space: nowrap; }
.anx-nav__primary {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  flex-wrap: nowrap;
}
.anx-nav__primary .anx-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.anx-nav__primary .anx-nav__link.is-overflow-hidden,
.anx-nav__primary [data-anx-nav-item].is-overflow-hidden { display: none !important; }
.anx-nav__link--dropdown {
  border: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}
.anx-nav__chevron { font-size: 0.625rem; opacity: 0.7; margin-left: 0.15rem; }
.anx-nav__dropdown { position: relative; flex-shrink: 0; }
.anx-nav__dropdown-panel {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 12rem;
  padding: 0.5rem;
  border-radius: var(--anx-radius-lg);
  background: rgba(14, 16, 28, 0.98);
  border: 1px solid var(--anx-glass-border);
  box-shadow: var(--anx-shadow-card);
  z-index: 120;
}
.anx-nav__dropdown-panel--mega {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
  gap: 0.75rem 1.25rem;
  min-width: min(90vw, 28rem);
  max-height: min(70vh, 24rem);
  overflow-y: auto;
}
.anx-nav__dropdown-panel[hidden] { display: none !important; }
.anx-nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  color: var(--ent-text-soft);
  font-size: 0.8125rem;
  white-space: nowrap;
}
.anx-nav__dropdown-item:hover,
.anx-nav__dropdown-item.is-active { color: #fff; background: rgba(168, 85, 247, 0.2); }
.anx-nav__mega-label {
  grid-column: 1 / -1;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ent-text-muted);
  margin: 0.25rem 0 0;
  padding: 0 0.35rem;
}
.anx-nav__mega-group {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 10rem;
}
.anx-nav__mega-group .anx-nav__mega-label {
  grid-column: unset;
  margin-bottom: 0.15rem;
}
.anx-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  margin-left: auto;
}
.anx-nav__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.5rem;
  border-radius: 999px;
  border: 1px solid var(--anx-glass-border);
  background: var(--anx-glass);
  color: var(--ent-text-soft);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.anx-nav__action:hover,
.anx-nav__action.is-active { color: var(--anx-neon-cyan); border-color: var(--anx-neon-cyan); }
.anx-nav__kbd { font-size: 0.625rem; opacity: 0.65; display: none; }
@media (min-width: 1024px) { .anx-nav__kbd { display: inline; } }

/* Command palette */
.anx-palette { position: fixed; inset: 0; z-index: 200; display: flex; align-items: flex-start; justify-content: center; padding: 10vh 1rem 1rem; }
.anx-palette[hidden] { display: none !important; }
.anx-palette__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.65); }
.anx-palette__panel {
  position: relative;
  width: min(640px, 100%);
  max-height: min(75vh, 520px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: var(--anx-radius-lg);
  border: 1px solid var(--anx-glass-border);
  background: rgba(12, 14, 24, 0.98);
  box-shadow: var(--anx-shadow-card), var(--anx-glow);
}
.anx-palette__header { display: flex; align-items: center; gap: 0.75rem; padding: 0.85rem 1rem; border-bottom: 1px solid var(--anx-glass-border); }
.anx-palette__icon { color: var(--ent-text-muted); }
.anx-palette__input { flex: 1; border: none; background: transparent; color: var(--ent-text); font-size: 1rem; outline: none; }
.anx-palette__hint { font-size: 0.6875rem; padding: 0.15rem 0.4rem; border-radius: 4px; background: var(--anx-glass); color: var(--ent-text-muted); }
.anx-palette__scopes { display: flex; gap: 0.25rem; padding: 0.5rem 1rem; overflow-x: auto; border-bottom: 1px solid var(--anx-glass-border); }
.anx-palette__scope {
  flex-shrink: 0; padding: 0.35rem 0.65rem; border-radius: 999px; border: 1px solid transparent;
  background: transparent; color: var(--ent-text-soft); font-size: 0.75rem; cursor: pointer;
}
.anx-palette__scope.is-active { background: rgba(168,85,247,0.25); color: #fff; border-color: var(--anx-glass-border); }
.anx-palette__section { padding: 0.5rem 0; }
.anx-palette__label { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ent-text-muted); padding: 0.35rem 1rem; margin: 0; }
.anx-palette__list, .anx-palette__results { overflow-y: auto; max-height: 240px; }
.anx-palette__item {
  display: flex; align-items: center; gap: 0.65rem; padding: 0.6rem 1rem; color: var(--ent-text-soft);
  text-decoration: none; font-size: 0.875rem;
}
.anx-palette__item:hover, .anx-palette__item.is-focused { background: rgba(168,85,247,0.15); color: #fff; }
.anx-palette__item mark { background: rgba(255,107,157,0.35); color: inherit; }

/* Mobile bar & drawer */
.anx-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 0.35rem 0.5rem calc(0.35rem + env(safe-area-inset-bottom));
  background: rgba(7, 8, 15, 0.96);
  border-top: 1px solid var(--anx-glass-border);
  backdrop-filter: blur(16px);
  justify-content: space-around;
}
.anx-mobile-bar__item {
  display: flex; flex-direction: column; align-items: center; gap: 0.15rem;
  padding: 0.35rem 0.5rem; min-width: 3rem; min-height: 2.75rem;
  border: none; background: transparent; color: var(--ent-text-muted); font-size: 0.625rem; cursor: pointer;
}
.anx-mobile-bar__item.is-active { color: var(--anx-neon-cyan); }
.anx-mobile-bar__item i { font-size: 1.1rem; }
.anx-page--with-mobile-bar { padding-bottom: calc(4.5rem + env(safe-area-inset-bottom)); }
.anx-drawer { position: fixed; inset: 0; z-index: 150; }
.anx-drawer[hidden] { display: none !important; }
.anx-drawer__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.anx-drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(88vw, 320px);
  background: rgba(12, 14, 24, 0.98); border-left: 1px solid var(--anx-glass-border);
  display: flex; flex-direction: column; overflow: hidden;
  transform: translateX(100%); transition: transform 0.25s ease;
}
.anx-drawer.is-open .anx-drawer__panel { transform: translateX(0); }
.anx-drawer__head { display: flex; justify-content: space-between; align-items: center; padding: 1rem; border-bottom: 1px solid var(--anx-glass-border); color: var(--ent-text); }
.anx-drawer__close { border: none; background: transparent; color: var(--ent-text-soft); font-size: 1.25rem; cursor: pointer; min-width: 2.75rem; min-height: 2.75rem; }
.anx-drawer__body { overflow-y: auto; padding: 0.5rem 0 1.5rem; }
.anx-drawer__link, .anx-drawer__sublink { display: block; padding: 0.75rem 1.25rem; color: var(--ent-text-soft); font-size: 0.9375rem; }
.anx-drawer__sublink { padding-left: 2rem; font-size: 0.875rem; }
.anx-drawer__accordion summary { padding: 0.75rem 1.25rem; cursor: pointer; color: var(--ent-text); font-weight: 600; list-style: none; }
.anx-drawer__accordion summary::-webkit-details-marker { display: none; }

/* FAB */
.anx-fab { position: fixed; bottom: calc(4.75rem + env(safe-area-inset-bottom)); right: 1rem; z-index: 85; }
.anx-fab__trigger {
  width: 3rem; height: 3rem; border-radius: 999px; border: none;
  background: linear-gradient(135deg, var(--anx-neon-purple), var(--anx-neon-pink));
  color: #fff; box-shadow: var(--anx-glow); cursor: pointer;
}
.anx-fab__menu {
  position: absolute; bottom: calc(100% + 0.5rem); right: 0; min-width: 11rem;
  padding: 0.35rem; border-radius: var(--anx-radius-lg); background: rgba(12,14,24,0.98);
  border: 1px solid var(--anx-glass-border); box-shadow: var(--anx-shadow-card);
}
.anx-fab__menu[hidden] { display: none !important; }
.anx-fab__item {
  display: flex; align-items: center; gap: 0.5rem; width: 100%; padding: 0.55rem 0.75rem;
  border: none; background: transparent; color: var(--ent-text-soft); font-size: 0.8125rem;
  text-decoration: none; cursor: pointer; border-radius: 8px;
}
.anx-fab__item:hover { background: rgba(168,85,247,0.15); color: #fff; }

/* Breadcrumbs & page header */
.anx-breadcrumbs { margin-bottom: 0.75rem; }
.anx-breadcrumbs__list { display: flex; flex-wrap: wrap; gap: 0.35rem; list-style: none; padding: 0; margin: 0; font-size: 0.8125rem; }
.anx-breadcrumbs__item { color: var(--ent-text-muted); }
.anx-breadcrumbs__item:not(:last-child)::after { content: '/'; margin-left: 0.35rem; opacity: 0.5; }
.anx-breadcrumbs__item a { color: var(--anx-neon-cyan); }
.anx-breadcrumbs__item span[aria-current] { color: var(--ent-text-soft); }
.anx-page-header { position: relative; padding: clamp(1.5rem, 4vw, 2.5rem) 0; margin-bottom: var(--anx-space-section); overflow: hidden; }
.anx-page-header__inner { position: relative; z-index: 1; }
.anx-page-header__row { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.anx-page-header__actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.anx-page-header__stats { margin-top: 1.25rem; }

/* Filter sheet mobile */
.anx-filter-trigger {
  display: none;
}
.anx-filter-sheet {
  display: none;
}
.anx-filter-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 1.25rem; height: 1.25rem; padding: 0 0.35rem;
  border-radius: 999px; background: var(--anx-neon-pink); color: #fff; font-size: 0.6875rem; font-weight: 700;
}
.anx-filter-desktop { display: block; }
@media (min-width: 1025px) {
  .anx-filter-desktop .anx-filter-panel { position: sticky; top: 5rem; }
}
@media (max-width: 1024px) {
  .anx-filter-desktop { display: none; }
}
@media (max-width: 1024px) {
  .anx-filter-trigger { display: inline-flex; }
  .anx-filter-sheet {
    display: block;
    position: fixed; inset: 0; z-index: 130;
    pointer-events: none; visibility: hidden;
  }
  .anx-filter-sheet.is-open { pointer-events: auto; visibility: visible; }
  .anx-filter-sheet__backdrop {
    position: absolute; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; transition: opacity 0.2s;
  }
  .anx-filter-sheet.is-open .anx-filter-sheet__backdrop { opacity: 1; }
  .anx-filter-sheet__panel {
    position: absolute; left: 0; right: 0; bottom: 0; max-height: 85vh;
    overflow-y: auto; padding: 1rem;
    background: rgba(12,14,24,0.98); border-top: 1px solid var(--anx-glass-border);
    border-radius: var(--anx-radius-lg) var(--anx-radius-lg) 0 0;
    transform: translateY(100%); transition: transform 0.25s ease;
  }
  .anx-filter-sheet.is-open .anx-filter-sheet__panel { transform: translateY(0); }
}

/* Tab transitions */
.anx-tab-panel { animation: anx-tab-in 0.2s ease; }
@keyframes anx-tab-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Desktop: hide mobile chrome */
@media (min-width: 769px) {
  .anx-mobile-bar { display: none !important; }
  .anx-page--with-mobile-bar { padding-bottom: var(--anx-space-section); }
  .anx-fab { bottom: 1.5rem; }
}
@media (max-width: 768px) {
  .anx-nav__primary, .anx-nav__actions .anx-nav__kbd { display: none !important; }
  .anx-nav__actions { margin-left: auto; }
  .anx-mobile-bar { display: flex; }
  .anx-nav__inner--enterprise { padding: 0.5rem 0; }
}
@media (prefers-reduced-motion: reduce) {
  .anx-tab-panel { animation: none; }
  .anx-drawer__panel, .anx-filter-sheet__panel { transition: none; }
}

/* Platform 26.5 — Enterprise content ecosystem */
.anx-collapse { border: 1px solid var(--anx-glass-border); border-radius: var(--anx-radius-md); margin-bottom: 1rem; }
.anx-collapse__summary { cursor: pointer; padding: 0.85rem 1rem; font-weight: 600; list-style: none; display: flex; gap: 0.5rem; align-items: center; }
.anx-collapse__summary::-webkit-details-marker { display: none; }
.anx-collapse__body { padding: 0 1rem 1rem; }
.anx-facts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.75rem; }
.anx-facts-grid dt { font-size: 0.75rem; color: var(--anx-muted); text-transform: uppercase; }
.anx-facts-grid dd { margin: 0; font-weight: 500; }
.anx-facts-grid--full { grid-column: 1 / -1; }
.anx-stat-grid--extended { margin: 1rem 0; }
.anx-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 0.75rem; }
.anx-gallery__img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--anx-radius-sm); }
.anx-gallery__caption { font-size: 0.8rem; color: var(--anx-muted); margin-top: 0.35rem; }
.anx-music-list { list-style: none; padding: 0; margin: 0; }
.anx-music-list__item { display: flex; justify-content: space-between; align-items: center; padding: 0.65rem 0; border-bottom: 1px solid var(--anx-glass-border); gap: 1rem; }
.anx-ai-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.anx-ai-card { border: 1px solid var(--anx-glass-border); border-radius: var(--anx-radius-md); padding: 1rem; background: rgba(255,255,255,0.02); }
.anx-ai-card__head { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.anx-ai-card__head h3 { margin: 0; font-size: 1rem; }
.anx-timeline { list-style: none; padding: 0; margin: 0; border-left: 2px solid var(--anx-neon-pink); }
.anx-timeline__item { padding: 0.5rem 0 0.5rem 1rem; }
.anx-timeline__date { display: block; font-size: 0.8rem; color: var(--anx-muted); }
.anx-spoiler summary { cursor: pointer; color: var(--anx-neon-pink); font-weight: 600; }
.anx-progress-banner { background: rgba(255,255,255,0.03); border-radius: var(--anx-radius-md); padding: 0.75rem 1rem; }

/* Platform 26.6 — Discover polish & card consistency */
.anx-page--discover { padding-top: 0; }
.anx-discover-applied { color: var(--anx-neon-cyan); }
.anx-filter-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.anx-filter-count--panel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  background: var(--anx-neon-purple);
  color: #fff;
}
.anx-filter-active {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--anx-glass-border);
}
.anx-chip--removable {
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.anx-chip--removable:hover {
  background: rgba(168, 85, 247, 0.28);
  border-color: var(--anx-neon-purple);
}
.anx-chip--removable i { font-size: 0.625rem; opacity: 0.85; }
.anx-chip__clear {
  background: transparent;
  border-style: dashed;
  text-decoration: none;
}
.anx-filter-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 0.35rem;
}
.anx-filter-section:last-of-type { border-bottom: none; }
.anx-filter-section__title {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.65rem 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ent-text);
  user-select: none;
}
.anx-filter-section__title::-webkit-details-marker { display: none; }
.anx-filter-section__title::after {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 0.625rem;
  opacity: 0.6;
  transition: transform 0.2s;
}
.anx-filter-section[open] .anx-filter-section__title::after { transform: rotate(180deg); }
.anx-filter-section__body { padding-bottom: 0.75rem; }
.anx-filter-section__body .anx-filter-group:last-child { margin-bottom: 0; }
.anx-discover-toolbar--sheet {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--anx-glass-border);
}
.anx-filter-desktop .anx-filter-panel {
  max-height: calc(100vh - 6rem);
  overflow-y: auto;
  scrollbar-width: thin;
}
.anx-card__studio {
  margin: 0.25rem 0 0;
  font-size: 0.6875rem;
  color: var(--anx-neon-cyan);
  line-height: 1.3;
}
.anx-card__badge--continue {
  background: rgba(34, 211, 238, 0.9);
  color: #071018;
}
.anx-card__actions {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem;
  background: linear-gradient(transparent, rgba(7, 8, 15, 0.92));
  opacity: 0;
  transform: translateY(0.35rem);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
.anx-card:hover .anx-card__actions,
.anx-card:focus-within .anx-card__actions {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.anx-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(14, 16, 28, 0.85);
  color: #fff;
  font-size: 0.75rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.anx-card__action:hover,
.anx-card__action:focus-visible {
  background: rgba(168, 85, 247, 0.35);
  border-color: var(--anx-neon-purple);
  transform: translateY(-1px);
  outline: none;
}
.anx-card__action.is-saved { color: #fbbf24; border-color: rgba(251, 191, 36, 0.5); }
.anx-card--skeleton { pointer-events: none; }
.anx-card--skeleton .anx-card__frame { aspect-ratio: 2/3; min-height: 12rem; }
.anx-skeleton--title { height: 1rem; width: 85%; margin-bottom: 0.5rem; border-radius: 4px; }
.anx-skeleton--meta { height: 0.75rem; width: 60%; border-radius: 4px; }
.anx-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.anx-quick-view {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.anx-quick-view[hidden] { display: none !important; }
.anx-quick-view__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 5, 12, 0.75);
  backdrop-filter: blur(4px);
}
.anx-quick-view__panel {
  position: relative;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.25rem;
  max-width: min(92vw, 32rem);
  padding: 1.25rem;
  border-radius: var(--anx-radius-lg);
  background: rgba(14, 16, 28, 0.98);
  border: 1px solid var(--anx-glass-border);
  box-shadow: var(--anx-shadow-card);
}
.anx-quick-view__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  border: none;
  background: transparent;
  color: var(--ent-text-soft);
  cursor: pointer;
  font-size: 1rem;
}
.anx-quick-view__poster {
  border-radius: var(--anx-radius-md);
  overflow: hidden;
  aspect-ratio: 2/3;
  background: rgba(255, 255, 255, 0.04);
}
.anx-quick-view__poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
.anx-quick-view__title { margin: 0 0 0.5rem; font-size: 1.125rem; color: var(--anx-heading); }
.anx-quick-view__synopsis { margin: 0 0 1rem; font-size: 0.875rem; color: var(--ent-text-soft); line-height: 1.5; }
@media (max-width: 520px) {
  .anx-quick-view__panel { grid-template-columns: 1fr; }
  .anx-quick-view__poster { max-width: 8rem; }
}
@media (prefers-reduced-motion: reduce) {
  .anx-card__actions { transition: none; }
  .anx-filter-section__title::after { transition: none; }
}

