/* ============================================
   Enhanced Manga Single Page (Araz Novel Style)
   ============================================ */

.ao-manga-single {
  background: var(--ao-bg);
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

/* Cinematic Hero */
.ao-single-hero {
  position: relative;
  height: 50px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  overflow: hidden;
}

.ao-single-hero__bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.ao-single-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(10px) brightness(0.3);
  transform: scale(1.1);
}

.ao-single-hero__overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    0deg,
    var(--ao-bg) 0%,
    rgba(11, 13, 23, 0.4) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.ao-single-hero__content {
  position: relative;
  z-index: 3;
}

.ao-single-hero__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.ao-single-hero__title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  margin: 0;
}

.ao-last-update-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
}

.ao-single-body {
  position: relative;
  z-index: 3;
}

.ao-single-body .ao-site-ad-slot {
  max-width: 100%;
  margin: 26px 0;
}

.ao-single-body .ao-site-ad-slot--manga_detail_top {
  margin-top: 0;
}

/* Content Banner with Title & Status Overlay */
.ao-single-content-banner {
  width: 100%;
  height: 280px;
  border-radius: 24px;
  overflow: hidden;
  margin-top: -120px;
  position: relative;
  z-index: 11;
  margin-bottom: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.ao-single-content-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(11, 13, 23, 0.4) 50%,
    rgba(11, 13, 23, 0.9) 100%
  );
  z-index: 2;
}

.ao-single-content-banner__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  /*align-items: center;
    text-align: center;*/
}

.ao-single-content-banner__content .ao-single-hero__title {
  font-size: 36px;
  margin-bottom: 10px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.ao-single-content-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.ao-single-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: -40px;
  position: relative;
  z-index: 10;
  margin-bottom: 30px;
}

/* If banner is present, stats don't need top negative margin.
   Use general sibling selector because modal can be rendered between them. */
.ao-single-content-banner ~ .ao-single-stats {
  margin-top: 0;
}

body.ao-adult-modal-open {
  overflow: hidden;
}

.ao-adult-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.ao-adult-modal.is-hidden {
  display: none;
}

.ao-adult-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 8, 12, 1);
}

.ao-adult-modal__dialog {
  position: relative;
  width: min(520px, 100%);
  border-radius: 16px;
  border: 1px solid rgba(231, 76, 60, 0.35);
  background: linear-gradient(180deg, #1b1f2f 0%, #121522 100%);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  padding: 24px;
  z-index: 1;
}

.ao-adult-modal__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 28px;
  border-radius: 8px;
  background: #e74c3c;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.ao-adult-modal__title {
  margin: 14px 0 10px;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
}

.ao-adult-modal__text {
  margin: 0;
  color: rgba(255, 232, 230, 0.9);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

.ao-adult-modal__confirm {
  margin-top: 18px;
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 12px 16px;
  background: #e74c3c;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.ao-adult-modal__confirm:hover {
  background: #f05a4b;
}

@media (max-width: 600px) {
  .ao-adult-modal__dialog {
    padding: 20px 16px 16px;
  }

  .ao-adult-modal__title {
    font-size: 20px;
  }
}

.ao-stat-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ao-stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--ao-primary);
}

.ao-stat-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.ao-stat-card__icon--volumes {
  background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
}
.ao-stat-card__icon--chapters {
  background: linear-gradient(135deg, #0984e3 0%, #74b9ff 100%);
}
.ao-stat-card__icon--rating {
  background: linear-gradient(135deg, #fdcb6e 0%, #ffeaa7 100%);
}
.ao-stat-card__icon--progress {
  background: linear-gradient(135deg, #00b894 0%, #55efc4 100%);
}

.ao-stat-card__content {
  display: flex;
  flex-direction: column;
}

.ao-stat-card__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
}

.ao-stat-card__value {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.ao-stat-card__bg-icon {
  position: absolute;
  right: -10px;
  bottom: -10px;
  opacity: 0.05;
  transform: rotate(-15deg);
  color: #fff;
}

/* Info Bars */
.ao-info-bars {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 20px;
  margin-bottom: 30px;
  z-index: 10;
}

.ao-info-bar {
  background: rgba(0, 206, 201, 0.05);
  border: 1px solid rgba(0, 206, 201, 0.1);
  border-radius: 14px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.ao-info-bar__icon {
  color: #00cec9;
}

.ao-info-bar__text {
  flex: 1;
  font-size: 14px;
}

.ao-info-bar__text strong {
  color: #00cec9;
  text-transform: uppercase;
  font-size: 11px;
  display: block;
}

.ao-info-bar__text span {
  color: #eee;
  font-weight: 600;
}

.ao-info-bar__link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-weight: 600;
}

/* Progress Card */
.ao-progress-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
}

.ao-progress-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.ao-progress-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.ao-progress-card__chapters-info {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.ao-progress-card__bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.ao-progress-card__fill {
  height: 100%;
  background: linear-gradient(90deg, #6c5ce7 0%, #a29bfe 100%);
  box-shadow: 0 0 15px rgba(108, 92, 231, 0.4);
  border-radius: 10px;
  transition: width 1s ease;
}

/* Main Content Grid */
.ao-single-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.ao-single-cover {
  width: 100%;
  aspect-ratio: 2/3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ao-single-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ao-single-rating-box {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.ao-single-rating-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.ao-rate-manga {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.ao-rate-star {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
}

.ao-rate-star:hover,
.ao-rate-star.active {
  color: #fdcb6e;
  text-shadow: 0 0 10px rgba(253, 203, 110, 0.4);
  transform: scale(1.2);
}

.ao-single-rating-box .ao-rate-manga__label {
  font-size: 13px;
  font-weight: 600;
  color: #fdcb6e;
}

.ao-about-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  padding: 40px;
}
.ao-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--ao-admin-primary);
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  animation: ao-tag-in 0.2s ease;
}

@keyframes ao-tag-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.ao-about-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--ao-primary);
}

.ao-about-card__header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.ao-about-card__desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ao-about-card__meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.ao-meta-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ao-meta-box__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ao-meta-box__icon--puan {
  background: rgba(255, 118, 117, 0.1);
  color: #ff7675;
}
.ao-meta-box__icon--status {
  background: rgba(0, 184, 148, 0.1);
  color: #00b894;
}
.ao-meta-box__icon--date {
  background: rgba(253, 203, 110, 0.1);
  color: #fdcb6e;
}

.ao-meta-box__content {
  display: flex;
  flex-direction: column;
}

.ao-meta-box__label {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
}

.ao-meta-box__value {
  font-size: 13px;
  font-weight: 600;
  color: #eee;
}

.ao-about-card__genres {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 30px;
}

.ao-about-card__alternatives {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 30px;
}

.ao-genres-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ao-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.ao-genres-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ao-genres-list a {
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 12px;
  color: #ccc;
  transition: all 0.2s;
}

.ao-genres-list a:hover {
  background: var(--ao-primary);
  color: #fff;
}

.ao-about-card__actions .ao-btn-lg {
  padding: 20px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ── Library Widget ─────────────────────────────────────────────── */
.ao-library-widget {
  margin-bottom: 14px;
}

.ao-library-widget__label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
}

.ao-library-widget__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* Status buttons */
.ao-lib-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s,
    transform 0.15s;
  cursor: pointer;
  text-align: center;
}
.ao-lib-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  transform: translateY(-1px);
}
.ao-lib-btn svg {
  flex-shrink: 0;
  transition: stroke 0.2s;
}

/* Active states with per-status colours */
.ao-lib-btn--reading.is-active {
  background: rgba(108, 92, 231, 0.18);
  border-color: rgba(108, 92, 231, 0.6);
  color: #a78bfa;
}
.ao-lib-btn--completed.is-active {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.5);
  color: #34d399;
}
.ao-lib-btn--plan.is-active {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.5);
  color: #fbbf24;
}
.ao-lib-btn--dropped.is-active {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.5);
  color: #f87171;
}

/* Loading state */
.ao-lib-btn.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Remove button */
.ao-library-widget__remove {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 8px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  border-radius: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  background: transparent;
  cursor: pointer;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
}
.ao-library-widget__remove:hover {
  color: #f87171;
  border-color: rgba(239, 68, 68, 0.35);
  background: rgba(239, 68, 68, 0.06);
}

/* Keep old select hidden but styled for profile page compatibility */
.ao-reading-list-control {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.ao-reading-list-control__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.ao-reading-list-select {
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.ao-reading-list-select:focus {
  border-color: var(--ao-primary);
  background: rgba(255, 255, 255, 0.08);
}
.ao-reading-list-select option {
  color: #111;
}
.ao-reading-list-control__hint {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}

/* Chapters Section */
.ao-chapters-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.ao-chapters-layout--has-sidebar {
  grid-template-columns: minmax(0, 1fr) 310px;
}

.ao-chapters-section {
  margin-bottom: 0;
  min-width: 0;
}

.ao-chapters-sidebar {
  display: grid;
  gap: 12px;
  position: sticky;
  top: 92px;
  align-self: start;
  z-index: 20;
}

.ao-single-widget-area {
  margin-top: 16px;
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 20;
}

.ao-single-widget-area--bottom {
  margin-top: 12px;
}

.ao-single-widget-area .ao-widget,
.ao-chapters-sidebar .ao-widget {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 14px;
  margin: 0;
}

.ao-single-widget-area .ao-widget-title,
.ao-chapters-sidebar .ao-widget-title {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.35;
  color: #fff;
}

.ao-single-widget-area .ao-widget-series-recs,
.ao-chapters-sidebar .ao-widget-series-recs {
  gap: 8px;
}

.ao-single-widget-area .ao-widget-series-recs__item,
.ao-chapters-sidebar .ao-widget-series-recs__item {
  gap: 8px;
  padding-bottom: 8px;
}

.ao-single-widget-area .ao-widget-series-recs__thumb,
.ao-chapters-sidebar .ao-widget-series-recs__thumb {
  width: 50px;
  height: 70px;
  border-radius: 7px;
}

.ao-single-widget-area .ao-widget-series-recs__body h4,
.ao-chapters-sidebar .ao-widget-series-recs__body h4 {
  font-size: 12px;
}

.ao-single-widget-area .ao-widget-series-recs__chapter,
.ao-chapters-sidebar .ao-widget-series-recs__chapter {
  font-size: 10px;
}

.ao-single-widget-area .ao-widget-series-recs__badges span,
.ao-chapters-sidebar .ao-widget-series-recs__badges span {
  font-size: 9px;
  padding: 2px 5px;
}

.ao-single-widget-area .ao-widget-series-recs--vertical,
.ao-chapters-sidebar .ao-widget-series-recs--vertical {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ao-single-widget-area
  .ao-widget-series-recs--vertical
  .ao-widget-series-recs__item,
.ao-chapters-sidebar
  .ao-widget-series-recs--vertical
  .ao-widget-series-recs__item {
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  padding-bottom: 0;
}

.ao-single-widget-area
  .ao-widget-series-recs--vertical
  .ao-widget-series-recs__thumb,
.ao-chapters-sidebar
  .ao-widget-series-recs--vertical
  .ao-widget-series-recs__thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  border-radius: 0;
}

.ao-single-widget-area
  .ao-widget-series-recs--vertical
  .ao-widget-series-recs__body,
.ao-chapters-sidebar
  .ao-widget-series-recs--vertical
  .ao-widget-series-recs__body {
  padding: 8px;
  gap: 4px;
}

.ao-single-widget-area
  .ao-widget-series-recs--vertical
  .ao-widget-series-recs__body
  h4,
.ao-chapters-sidebar
  .ao-widget-series-recs--vertical
  .ao-widget-series-recs__body
  h4 {
  font-size: 11px;
}

/* If no recommendation section is rendered, keep comments closer to chapters */
.ao-chapters-section + .ao-cmt {
  margin-top: 8px;
}

/* Comments Section */
.ao-comments-section {
  background: rgba(255, 255, 255, 0.02);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.ao-comments-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  color: var(--ao-primary);
}

.ao-comments-header h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

/* Resp */
@media (max-width: 992px) {
  .ao-single-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .ao-info-bars {
    grid-template-columns: 1fr;
  }
  .ao-meta-box__value {
    font-size: 12px;
  }
  .ao-chapters-layout--has-sidebar {
    grid-template-columns: minmax(0, 1fr);
  }
  .ao-chapters-sidebar {
    position: static;
    top: auto;
  }
  .ao-single-widget-area .ao-widget-series-recs--vertical,
  .ao-chapters-sidebar .ao-widget-series-recs--vertical {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Chapters List Enhanced */
.ao-chapters-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  padding: 30px;
  margin-bottom: 40px;
}

.ao-chapters-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.ao-chapters-hdr__title h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.ao-chapters-hdr__title span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.ao-chapter-search {
  position: relative;
  width: 280px;
}

.ao-chapter-search input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 10px 15px 10px 40px;
  color: #fff;
  font-size: 13px;
  transition: all 0.3s;
}

.ao-chapter-search input:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--ao-primary);
}

.ao-chapter-search svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.3);
}

.ao-chapter-filters {
  display: flex;
  align-items: center;
  margin: 10px;
  gap: 10px;
}

.ao-filter-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.ao-filter-btn:hover,
.ao-filter-btn.active {
  color: var(--ao-primary);
}

.ao-filter-btn--active {
  background: var(--ao-primary) !important;
  color: #fff !important;
  padding: 6px 14px;
  border-radius: 8px;
}

.ao-filter-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 5px;
}

/* Accordion Chapter List (List View) */
.ao-view-list .ao-vol-group {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
}

.ao-view-list .ao-vol-hdr {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.02) 0%,
    transparent 100%
  );
  cursor: pointer;
}

.ao-view-list .ao-vol-hdr__icon {
  width: 48px;
  height: 48px;
  background: #4a69bd;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 20px rgba(74, 105, 189, 0.3);
  overflow: hidden;
}

.ao-view-list .ao-vol-hdr__icon .ao-vol-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.ao-view-list .ao-vol-hdr__info {
  flex: 1;
}
.ao-view-list .ao-vol-hdr__info_title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ao-view-list .ao-vol-hdr__info_title h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.ao-view-list .ao-vol-hdr__info_title p {
  font-size: 14px;
  color: var(--ao-admin-text-muted);
}

.ao-vol-hdr__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.ao-vol-progress-mini {
  flex: 1;
  max-width: 600px;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.ao-vol-progress-mini__fill {
  height: 100%;
  background: #4a69bd;
  border-radius: 10px;
}

.ao-vol-perc {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

.ao-view-list .ao-vol-toggle {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Chapter Rows in Accordion */
.ao-view-list .ao-ch-list {
  padding: 0 20px 20px;
  max-height: 630px; /* ~10 bölüm */
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--ao-border-light) transparent;
}

.ao-view-list .ao-ch-list::-webkit-scrollbar {
  width: 4px;
}

.ao-view-list .ao-ch-list::-webkit-scrollbar-track {
  background: transparent;
}

.ao-view-list .ao-ch-list::-webkit-scrollbar-thumb {
  background: var(--ao-border-light);
  border-radius: 4px;
}

.ao-view-list .ao-ch-list::-webkit-scrollbar-thumb:hover {
  background: var(--ao-primary);
}

.ao-ch-loadmore {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 12px;
  padding: 10px 16px;
  border: 1px dashed var(--ao-border-light);
  border-radius: 10px;
  background: transparent;
  color: var(--ao-text-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.ao-ch-loadmore:hover {
  border-color: var(--ao-primary);
  color: var(--ao-primary);
}

.ao-ch-loadmore.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

.ao-view-list .ao-ch-row {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 18px 20px;
  overflow: hidden;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  transition: all 0.3s;
}

.ao-view-list .ao-ch-row::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: var(--ch-progress, 0%);
  background: linear-gradient(90deg, #6c5ce7, #a29bfe);
  border-radius: 0 2px 2px 0;
  transition: width 0.4s ease;
  pointer-events: none;
}

.ao-view-list .ao-ch-row.read::after {
  background: linear-gradient(90deg, #00b894, #55efc4);
}

.ao-view-list .ao-ch-row:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

.ao-view-list .ao-ch-row__icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  overflow: hidden;
  flex-shrink: 0;
}

.ao-view-list .ao-ch-row__icon.has-thumb {
  background: transparent;
}

.ao-view-list .ao-ch-row__icon .ao-ch-row__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ao-view-list .ao-ch-row__main {
  flex: 1;
}

.ao-ch-row__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.ao-view-list .ao-ch-row__name {
  font-size: 15px;
  font-weight: 700;
  color: #eee;
  text-decoration: none;
}

.ao-view-list .ao-ch-row__date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.ao-ch-row__reads {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.25);
}

.ao-view-list .ao-ch-row__actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-left: auto;
}

.ao-view-list .ao-ch-read-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.ao-view-list .ao-ch-read-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}

.ao-dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  flex-shrink: 0;
}

.ao-ch-row.read .ao-dot {
  background: #00b894;
  box-shadow: 0 0 8px rgba(0, 184, 148, 0.5);
}

.ao-ch-row.read .ao-ch-read-btn {
  color: #00b894;
  background: rgba(0, 184, 148, 0.07);
  border-color: rgba(0, 184, 148, 0.2);
}

.ao-ch-go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(108, 92, 231, 0.35);
}

.ao-ch-go:hover {
  transform: scale(1.12);
  box-shadow: 0 4px 16px rgba(108, 92, 231, 0.55);
  color: #fff;
}

.ao-ch-go svg {
  flex-shrink: 0;
}

.ao-ch-row-perc {
  position: absolute;
  bottom: 5px;
  right: 15px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 700;
}

.ao-ch-new-tag {
  /* flex-shrink-0 */
  flex-shrink: 0;

  /* text-[10px] */
  font-size: 10px;

  /* font-bold */
  font-weight: 700;

  /* text-white */
  color: #ffffff;

  /* bg-gradient-to-r from-red-500 to-pink-500 */
  background: linear-gradient(to right, #ef4444, #ec4899);

  /* px-1.5 (6px) py-0.5 (2px) */
  padding: 2px 6px;

  /* rounded-full */
  border-radius: 9999px;

  /* shadow-sm */
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);

  /* İçeriği hizalamak için eklenmesi gerekenler */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  animation: pulse-glow 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow:
      0 0 4px rgba(239, 68, 68, 0.4),
      0 0 8px rgba(236, 72, 153, 0.3);
    transform: scale(1);
  }

  50% {
    box-shadow:
      0 0 8px rgba(239, 68, 68, 0.6),
      0 0 16px rgba(236, 72, 153, 0.4);
    transform: scale(1.05);
  }
}

@media (max-width: 768px) {
  .ao-vol-hdr {
    padding: 15px;
    gap: 12px;
  }
  .ao-vol-hdr__icon {
    width: 36px;
    height: 36px;
  }
  .ao-vol-hdr__info h4 {
    font-size: 15px;
  }
  .ao-vol-progress-mini {
    display: none;
  }
  .ao-ch-row__actions {
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  .ao-single-grid {
    grid-template-columns: 1fr;
  }
  .ao-single-left {
    max-width: 280px;
    margin: 0 auto;
  }
  .ao-single-hero {
    height: 150px;
  }
  .ao-single-hero__title {
    font-size: 32px;
  }
  .ao-about-card {
    padding: 25px;
  }
  .ao-about-card__meta-grid {
    grid-template-columns: 1fr;
  }
  .ao-ch-row__actions {
    display: none;
  }
  .ao-chapters-hdr__actions {
    width: 100%;
  }
  .ao-chapter-search {
    width: 100%;
  }
}

/* Volume Grid Layout */
.ao-vol-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.ao-vol-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #1e293b;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ao-vol-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.ao-vol-card__cover {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
}

.ao-vol-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ao-vol-card:hover .ao-vol-card__cover img {
  transform: scale(1.1);
}

.ao-vol-card__index {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--ao-primary);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  z-index: 10;
}

.ao-vol-card__count {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  padding: 4px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  z-index: 10;
}

.ao-vol-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 15px 15px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  z-index: 5;
}

.ao-vol-card__info {
  display: flex;
  flex-direction: column;
}

.ao-vol-card__name {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.ao-vol-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.ao-vol-card__dot {
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.ao-vol-card__hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 13, 23, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 15;
}

.ao-vol-card:hover .ao-vol-card__hover {
  opacity: 1;
}

.ao-vol-read-now {
  background: #fff;
  border: none;
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.ao-vol-read-now:hover {
  transform: scale(1.05);
  background: var(--ao-primary);
  color: #fff;
}

.ao-vol-card__nav {
  display: flex;
  gap: 8px;
}

.ao-vol-nav-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.ao-vol-nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.ao-ch-hdr-sub {
  margin: 30px 0 15px;
}

.ao-ch-hdr-sub h4 {
  margin: 0;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ao-ch-hdr-sub h4::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 600px) {
  .ao-vol-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ── Quick Preview ──────────────────────────────────────────────────── */
.ao-qp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 8px;
  padding: 7px 12px;
  background: var(--ao-bg-alt);
  border: 1px solid var(--ao-border-light);
  border-radius: var(--ao-radius-sm, 6px);
  color: var(--ao-text-muted);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.ao-qp-btn:hover {
  background: var(--ao-primary);
  border-color: var(--ao-primary);
  color: #fff;
}

.ao-qp-btn svg {
  flex-shrink: 0;
}

/* Cover wrapper must be positioned for the overlay */
.ao-qp-cover {
  position: relative;
  overflow: hidden;
}

/* Overlay that sits on top of the original cover image */
.ao-qp-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ao-qp-overlay.is-visible {
  opacity: 1;
}

/* Individual slides – only the active one is shown */
.ao-qp-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.ao-qp-slide.is-active {
  opacity: 1;
}

/* Small chapter-name label at the bottom of the overlay */
.ao-qp-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6px 8px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================
   VIP Gate
   ============================================ */
.ao-vip-gate {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 48px 24px;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.06) 0%,
    rgba(217, 119, 6, 0.1) 100%
  );
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 14px;
  text-align: center;
}

.ao-vip-gate__icon {
  color: #f59e0b;
  filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.4));
}

.ao-vip-gate__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--ao-text, #1e293b);
  margin: 0;
}

.ao-vip-gate__desc {
  font-size: 15px;
  color: var(--ao-text-muted, #64748b);
  max-width: 400px;
  margin: 0;
}

.ao-vip-gate__member {
  font-size: 14px;
  color: var(--ao-text-muted, #64748b);
  margin: 0;
}

/* ---- VIP Locked Chapter Row ---- */
.ao-ch-row.is-locked {
  position: relative;
  cursor: default;
  overflow: hidden;
}

.ao-ch-row.is-locked .ao-ch-row__main {
  filter: blur(3px);
  user-select: none;
  pointer-events: none;
}

.ao-ch-row.is-locked .ao-ch-row__icon {
  opacity: 0.35;
  pointer-events: none;
}

.ao-ch-row.is-locked:hover {
  background: transparent;
  transform: none;
}

.ao-ch-vip-lock {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 14px;
  background: linear-gradient(
    90deg,
    transparent 40%,
    rgba(245, 158, 11, 0.05) 100%
  );
  pointer-events: none;
}

.ao-ch-vip-lock__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.15),
    rgba(217, 119, 6, 0.2)
  );
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 6px;
  color: #f59e0b;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

/* Admin listesinde VIP badge */
.ao-badge-vip {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
}

/* ============================================
   Series Journey
   ============================================ */
.ao-journey {
  background: var(--ao-card);
  border: 1px solid var(--ao-border);
  border-radius: var(--ao-radius-lg);
  padding: 24px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.ao-journey::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at top left,
    rgba(99, 102, 241, 0.1) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.ao-journey__header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ao-journey__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--ao-radius);
  background: var(--ao-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ao-journey__title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--ao-primary);
}
.ao-journey__subtitle {
  font-size: 12px;
  color: var(--ao-text-muted);
  margin-top: 2px;
}

.ao-journey__summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.ao-journey__pct {
  font-size: 28px;
  font-weight: 800;
  color: var(--ao-primary);
  line-height: 1;
}
.ao-journey__chapters-read {
  font-size: 13px;
  color: var(--ao-text-muted);
  white-space: nowrap;
}

/* Progress bar */
.ao-journey__bar-wrap {
  position: relative;
  padding-bottom: 22px;
  margin-top: 8px;
}
.ao-journey__bar-track {
  position: relative;
  height: 6px;
  background: var(--ao-border);
  border-radius: 99px;
  overflow: visible;
}
.ao-journey__bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--ao-primary), #a78bfa);
  border-radius: 99px;
  transition: width 0.6s ease;
}

.ao-journey__milestone {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.ao-journey__milestone-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--ao-border);
  overflow: hidden;
  background: var(--ao-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ao-text-muted);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.ao-journey__milestone-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px) brightness(0.45);
  transition: filter 0.4s;
}
.ao-journey__milestone.is-unlocked .ao-journey__milestone-avatar {
  border-color: var(--ao-primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25);
}
.ao-journey__milestone.is-unlocked .ao-journey__milestone-avatar img {
  filter: none;
}

.ao-journey__bar-labels {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.ao-journey__bar-label {
  position: absolute;
  transform: translateX(-50%);
  font-size: 11px;
  color: var(--ao-text-muted);
  white-space: nowrap;
}

/* Next milestone banner */
.ao-journey__next {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.18);
  border-radius: var(--ao-radius);
  padding: 12px 16px;
  color: var(--ao-primary);
  font-size: 13px;
}
.ao-journey__next-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  opacity: 0.75;
  flex-shrink: 0;
}
.ao-journey__next-text {
  color: var(--ao-text);
  font-weight: 600;
}

/* Character locks */
.ao-journey__chars-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--ao-text-muted);
  margin-bottom: 14px;
}
.ao-journey__chars-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.ao-journey__char {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.ao-journey__char-pct {
  font-size: 11px;
  font-weight: 700;
  color: var(--ao-text-muted);
}
.ao-journey__char-avatar {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px dashed var(--ao-border);
  overflow: hidden;
  background: var(--ao-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ao-text-muted);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.ao-journey__char-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(5px) brightness(0.4);
  transition: filter 0.4s;
}
.ao-journey__char-lock {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
  transition: opacity 0.3s;
}
.ao-journey__char.is-unlocked .ao-journey__char-avatar {
  border-style: solid;
  border-color: var(--ao-primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}
.ao-journey__char.is-unlocked .ao-journey__char-avatar img {
  filter: none;
}
.ao-journey__char.is-unlocked .ao-journey__char-lock {
  opacity: 0;
}
.ao-journey__char.is-unlocked .ao-journey__char-pct {
  color: var(--ao-primary);
}
.ao-journey__char-name {
  font-size: 11px;
  color: var(--ao-text-muted);
  text-align: center;
  max-width: 72px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .ao-journey {
    padding: 16px;
    gap: 14px;
  }
  .ao-journey__pct {
    font-size: 22px;
  }
  .ao-journey__char-avatar {
    width: 52px;
    height: 52px;
  }
}
