/**
 * ISLAMI COMICS - FULL READER ROOM CSS (css/reader.css)
 * Match Mockup 14 exactly
 */

:root {
  --reader-bg: #0d1511;
  --reader-sidebar-bg: #121c17;
  --reader-card-bg: #18241e;
  --reader-canvas-bg: #090e0c;
  --reader-border: rgba(255, 255, 255, 0.08);
  --reader-border-focus: rgba(212, 151, 59, 0.4);
  --brand-green: #10b981;
  --brand-green-light: #34d399;
  --brand-green-dark: #065f46;
  --brand-gold: #d4973b;
  --text-light: #f8fafc;
  --text-muted: #94a3b8;
  --text-subtle: #64748b;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.5);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.reader-dark-mode {
  background-color: var(--reader-bg);
  color: var(--text-light);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ==========================================================================
   TOP HEADER NAVBAR
   ========================================================================== */
.reader-header {
  height: 60px;
  background: var(--reader-sidebar-bg);
  border-bottom: 1px solid var(--reader-border);
  display: flex;
  align-items: center;
  z-index: 100;
  flex-shrink: 0;
}

.reader-header-inner {
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-menu-btn {
  display: none;
  color: var(--text-light);
  font-size: 18px;
  padding: 6px;
}

.btn-home-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--reader-border);
  color: var(--text-light);
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-home-pill:hover {
  background: rgba(255, 255, 255, 0.15);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #10b981 0%, #064e3b 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.brand-text-wrap h1 {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.3px;
  color: #fff;
  line-height: 1.1;
}

.brand-text-wrap h1 span {
  color: var(--brand-gold);
}

.brand-tagline {
  font-size: 9.5px;
  color: var(--text-muted);
}

/* Header Center Search */
.header-center {
  flex: 1;
  max-width: 480px;
}

.search-input-wrapper {
  position: relative;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-subtle);
  font-size: 13px;
}

.search-input {
  width: 100%;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--reader-border);
  border-radius: 999px;
  padding: 0 16px 0 36px;
  color: #fff;
  font-size: 12px;
  outline: none;
  transition: all 0.2s ease;
}

.search-input:focus {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav-link-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.btn-studio-header {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--brand-green-light);
  font-size: 12px;
  font-weight: 800;
  transition: all 0.2s ease;
}

.btn-studio-header:hover {
  background: var(--brand-green);
  color: #fff;
}

.notif-bell-btn {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.2s;
}

.notif-bell-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.notif-badge-pill {
  position: absolute;
  top: 2px;
  right: 2px;
  background: #ef4444;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--reader-sidebar-bg);
}

/* User Profile Avatar & Dropdown */
.user-profile-wrapper {
  position: relative;
}

.user-profile-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 4px;
}

.user-profile-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--brand-gold);
}

.user-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dropdown-arrow-icon {
  font-size: 10px;
  color: var(--text-subtle);
}

.user-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 220px;
  background: var(--reader-sidebar-bg);
  border: 1px solid var(--reader-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  display: none;
  flex-direction: column;
  z-index: 120;
}

.user-dropdown-menu.active {
  display: flex;
}

.dropdown-header-info {
  padding: 8px;
  border-bottom: 1px solid var(--reader-border);
  margin-bottom: 4px;
}

.dropdown-user-name {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}

.dropdown-user-email {
  font-size: 10px;
  color: var(--text-muted);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 12px;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

/* ==========================================================================
   MAIN 3-COLUMN WORKSPACE LAYOUT
   ========================================================================== */
.reader-workspace-layout {
  flex: 1;
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  overflow: hidden;
  height: calc(100vh - 60px);
}

/* ==========================================================================
   1. LEFT SIDEBAR: Chapters, Details, Comments
   ========================================================================== */
.reader-sidebar-left {
  background: var(--reader-sidebar-bg);
  border-right: 1px solid var(--reader-border);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 16px;
  gap: 16px;
}

.reader-sidebar-left::-webkit-scrollbar {
  display: none;
}

/* Mini Comic Card Info */
.comic-mini-card {
  display: flex;
  gap: 12px;
}

.comic-mini-cover {
  width: 72px;
  height: 96px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--reader-border);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.comic-mini-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comic-mini-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  min-width: 0;
}

.comic-mini-title {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.comic-mini-author {
  font-size: 11px;
  color: var(--text-muted);
}

.comic-mini-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.comic-mini-rating {
  font-size: 10.5px;
  font-weight: 700;
  color: #f59e0b;
  display: flex;
  align-items: center;
  gap: 3px;
}

.comic-mini-badge {
  background: rgba(16, 185, 129, 0.2);
  color: var(--brand-green-light);
  border: 1px solid rgba(16, 185, 129, 0.4);
  font-size: 8px;
  font-weight: 900;
  padding: 1px 4px;
  border-radius: 3px;
}

.comic-mini-meta {
  font-size: 9.5px;
  color: var(--text-subtle);
}

/* Action Buttons */
.comic-action-row {
  display: flex;
  gap: 8px;
}

.btn-add-library {
  flex: 1;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--reader-border);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-add-library:hover {
  background: var(--brand-green);
  border-color: var(--brand-green);
}

.btn-bookmark-action {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--reader-border);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.2s ease;
}

.btn-bookmark-action:hover {
  color: var(--brand-gold);
  border-color: var(--brand-gold);
}

/* Sidebar Tab Header */
.sidebar-tab-header {
  display: flex;
  border-bottom: 1px solid var(--reader-border);
  padding-bottom: 2px;
}

.sidebar-tab-btn {
  flex: 1;
  padding: 8px 4px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  position: relative;
  transition: all 0.2s ease;
}

.sidebar-tab-btn.active {
  color: #fff;
}

.sidebar-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-green);
  border-radius: 2px;
}

.sidebar-tab-panel {
  display: none;
  flex-direction: column;
}

.sidebar-tab-panel.active {
  display: flex;
}

/* Chapters Header Bar */
.chapters-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.chapters-count-text {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
}

.btn-sort-chapters {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-gold);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Chapter List Scroll */
.chapters-list-scroll {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.chapter-item-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chapter-item-card:hover {
  background: rgba(255, 255, 255, 0.07);
}

.chapter-item-card.active {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.4);
}

.chapter-thumb {
  width: 38px;
  height: 38px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.chapter-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chapter-info {
  flex: 1;
  min-width: 0;
}

.chapter-num-title {
  display: flex;
  flex-direction: column;
}

.ch-num {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
}

.ch-title {
  font-size: 10px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chapter-pages-meta {
  font-size: 9px;
  color: var(--text-subtle);
  margin-top: 1px;
}

.chapter-status-icon {
  font-size: 12px;
  flex-shrink: 0;
}

.chapter-status-icon.active {
  color: var(--brand-green);
}

.chapter-status-icon.locked {
  color: var(--text-subtle);
}

.btn-show-more-chapters {
  width: 100%;
  margin-top: 10px;
  padding: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  border: 1px dashed var(--reader-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s;
}

.btn-show-more-chapters:hover {
  color: #fff;
  border-color: var(--brand-green);
  background: rgba(255, 255, 255, 0.04);
}

/* ==========================================================================
   2. CENTER CANVAS WORKSPACE
   ========================================================================== */
.reader-center-stage {
  background: var(--reader-canvas-bg);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  height: 100%;
}

/* Top Floating Bar */
.stage-top-toolbar {
  height: 48px;
  background: rgba(18, 28, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--reader-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 20;
  flex-shrink: 0;
}

.stage-toolbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.select-zoom-mode {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--reader-border);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 11.5px;
  font-weight: 700;
  outline: none;
  cursor: pointer;
}

.select-zoom-mode option {
  background: var(--reader-sidebar-bg);
  color: #fff;
}

.page-stepper-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--reader-border);
  border-radius: 999px;
  padding: 2px 8px;
}

.btn-step-page {
  color: var(--text-muted);
  font-size: 10px;
  padding: 2px 4px;
}

.btn-step-page:hover {
  color: #fff;
}

.page-counter-text {
  font-size: 11.5px;
  font-weight: 800;
  color: #fff;
}

.stage-toolbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-stage-tool {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  transition: all 0.2s;
}

.btn-stage-tool:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* Comic Canvas Full Fit Area */
.comic-canvas-scroller {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  position: relative;
  min-height: 0;
  box-sizing: border-box;
}

.comic-rendered-page {
  width: 100%;
  max-width: 820px;
  height: 100%;
  max-height: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  filter: brightness(100%);
  transition: filter 0.2s ease, background 0.3s ease;
  box-sizing: border-box;
}

/* Canvas Styles Modes */
.comic-rendered-page.sepia-mode {
  background: #fbf0d9 !important;
  filter: sepia(0.35) brightness(95%);
}

.comic-rendered-page.night-mode {
  background: #111814 !important;
  filter: brightness(80%) contrast(110%);
}

/* Panel Layouts */
.comic-panel {
  border: 2px solid #18221b;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Panel 1 */
.panel-hero-1 {
  flex: 1.35;
  min-height: 0;
  height: auto;
}

.panel-narration-box {
  position: absolute;
  top: 8px;
  left: 8px;
  max-width: 270px;
  background: #ffffff;
  border: 1.5px solid #18221b;
  border-radius: 6px;
  padding: 6px 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.narration-tag {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.8px;
  background: #10b981;
  color: #fff;
  padding: 1px 4px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 2px;
}

.narration-text {
  font-size: 9.5px;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

/* Panels 2 & 3 Split */
.comic-panels-split-row {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.panel-split {
  height: 100%;
  min-height: 0;
}

.panel-speech-bubble {
  position: absolute;
  background: #ffffff;
  border: 1.5px solid #18221b;
  border-radius: 12px;
  padding: 6px 10px;
  font-size: 9px;
  font-weight: 700;
  color: #111827;
  line-height: 1.25;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  max-width: 160px;
  z-index: 2;
}

.bubble-left {
  top: 8px;
  left: 8px;
}

.bubble-right {
  top: 8px;
  right: 8px;
}

/* Panel 4 Wide */
.panel-wide-4 {
  flex: 1;
  min-height: 0;
  height: auto;
}

.bubble-center-bottom {
  top: 8px;
  right: 10px;
  max-width: 240px;
}

.bubble-center-bottom {
  top: 12px;
  right: 14px;
  max-width: 250px;
}

/* Bottom Stage Floating Toolbar */
.stage-bottom-toolbar {
  background: rgba(18, 28, 23, 0.9);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--reader-border);
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 20;
  flex-shrink: 0;
}

.stage-playback-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-playback-nav {
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--reader-border);
  color: var(--text-light);
  font-size: 11px;
  font-weight: 700;
  transition: all 0.2s;
}

.btn-playback-nav:hover {
  background: var(--brand-green);
}

.scrub-slider-wrap {
  flex: 1;
  display: flex;
  align-items: center;
}

.scrub-range-slider {
  width: 100%;
  accent-color: var(--brand-green);
  cursor: pointer;
}

.stage-viewmodes-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.btn-viewmode-pill {
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--reader-border);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: all 0.2s;
}

.btn-viewmode-pill:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn-viewmode-pill.active {
  background: var(--brand-green);
  color: #fff;
  border-color: var(--brand-green);
}

/* ==========================================================================
   3. RIGHT SIDEBAR: About & Reading Settings
   ========================================================================== */
.reader-sidebar-right {
  background: var(--reader-sidebar-bg);
  border-left: 1px solid var(--reader-border);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 16px;
  gap: 20px;
}

.reader-sidebar-right::-webkit-scrollbar {
  display: none;
}

.right-box-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.right-box-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.right-comic-title {
  font-size: 16px;
  font-weight: 900;
  color: #fff;
}

.right-comic-genre {
  font-size: 11px;
  color: var(--text-subtle);
}

.right-comic-rating {
  font-size: 11.5px;
  font-weight: 800;
  color: #f59e0b;
  display: flex;
  align-items: center;
  gap: 4px;
}

.right-comic-desc {
  font-size: 11.5px;
  color: #cbd5e1;
  line-height: 1.5;
}

.btn-toggle-more-desc {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-gold);
  align-self: flex-start;
}

/* Right Actions */
.right-actions-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.btn-continue-read-main {
  width: 100%;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--brand-green);
  color: #fff;
  font-size: 12.5px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.btn-continue-read-main:hover {
  background: var(--brand-green-light);
}

.btn-download-comic-main {
  width: 100%;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--reader-border);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-download-comic-main:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Social Reaction Row */
.right-social-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--reader-border);
}

.btn-social-react {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
  padding: 6px 2px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.btn-social-react i {
  font-size: 15px;
  margin-bottom: 2px;
}

.btn-social-react:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn-social-react small {
  font-size: 8px;
  color: var(--text-subtle);
}

/* Reading Settings Controls */
.setting-group-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.setting-sub-title {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.brightness-slider-container {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  border: 1px solid var(--reader-border);
}

.brightness-range {
  flex: 1;
  accent-color: var(--brand-green);
  cursor: pointer;
}

.style-toggle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.style-toggle-grid:has(:nth-child(2):last-child) {
  grid-template-columns: 1fr 1fr;
}

.btn-style-pill {
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--reader-border);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  transition: all 0.2s;
}

.btn-style-pill:hover {
  color: #fff;
}

.btn-style-pill.active {
  background: rgba(16, 185, 129, 0.2);
  border-color: var(--brand-green);
  color: var(--brand-green-light);
  font-weight: 800;
}

.textsize-toggle-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--reader-border);
  border-radius: var(--radius-sm);
  padding: 4px;
}

.btn-textsize-btn {
  padding: 4px 14px;
  border-radius: 4px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.2s;
}

.btn-textsize-btn:hover {
  background: var(--brand-green);
}

.textsize-val-badge {
  font-size: 11px;
  font-weight: 800;
  color: var(--brand-gold);
}

/* ==========================================================================
   DESKTOP VISIBILITY & MOBILE RESPONSIVE RULES (Mockup 2 Mobile Adaption)
   ========================================================================== */
.mobile-reader-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 110;
}

/* Hide mobile-specific components on Desktop */
@media (min-width: 821px) {
  .btn-mob-back-arrow,
  .btn-mob-icon-action,
  .mobile-comic-hero-card,
  .mobile-stage-top-stepper,
  .mobile-bottom-controls-card,
  .mobile-chapters-drawer-card {
    display: none !important;
  }
}

@media (max-width: 1100px) and (min-width: 821px) {
  .reader-workspace-layout {
    grid-template-columns: 260px 1fr;
  }
  .reader-sidebar-right {
    display: none;
  }
}

/* MOBILE VIEW - EXACT MATCH WITH MOCKUP 2 & 100% BOUNDED */
@media (max-width: 820px) {
  html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    position: relative;
    box-sizing: border-box;
  }

  body.reader-dark-mode {
    height: auto !important;
    min-height: 100vh;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    background: #090e0c !important;
  }

  /* Header adjustments for mobile */
  .reader-header {
    height: 52px;
    background: #0d1511;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }

  .reader-header-inner {
    padding: 0 10px !important;
    gap: 6px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }

  .header-left {
    gap: 6px;
    min-width: 0;
    flex: 1;
  }

  .btn-mob-back-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #fff;
    font-size: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
    transition: background 0.2s;
  }

  .btn-mob-back-arrow:hover {
    background: rgba(255, 255, 255, 0.12);
  }

  .mobile-menu-btn {
    display: none;
  }

  .btn-home-pill, 
  .header-center, 
  .header-right .nav-link-btn, 
  .header-right .btn-studio-header {
    display: none !important;
  }

  .brand-logo {
    gap: 6px;
    min-width: 0;
  }

  .brand-icon {
    width: 26px;
    height: 26px;
    font-size: 12px;
    border-radius: 6px;
    flex-shrink: 0;
  }

  .brand-text-wrap {
    min-width: 0;
  }

  .brand-text-wrap h1 {
    font-size: 11.5px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .brand-tagline {
    display: none;
  }

  .header-right {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
  }

  .btn-mob-icon-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #cbd5e1;
    font-size: 13px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s;
  }

  .btn-mob-icon-action:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
  }

  .notif-bell-btn {
    width: 28px;
    height: 28px;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .notif-badge-pill {
    top: 3px;
    right: 3px;
    font-size: 8px;
    padding: 0 3px;
  }

  .user-profile-avatar {
    width: 26px;
    height: 26px;
  }

  .dropdown-arrow-icon {
    font-size: 7px;
  }

  /* Main Workspace Layout */
  .reader-workspace-layout {
    display: block !important;
    height: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    padding-bottom: 20px;
    box-sizing: border-box;
  }

  .reader-sidebar-left,
  .reader-sidebar-right,
  .stage-top-toolbar,
  .stage-bottom-toolbar {
    display: none !important;
  }

  .reader-center-stage {
    display: block !important;
    height: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    background: transparent !important;
    box-sizing: border-box;
  }

  /* 1. Mobile Comic Hero Info Card */
  .mobile-comic-hero-card {
    background: #111a15;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin: 8px 10px 8px 10px !important;
    padding: 10px !important;
    width: calc(100% - 20px) !important;
    max-width: calc(100% - 20px) !important;
    box-sizing: border-box !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .mobile-comic-hero-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
  }

  .mobile-comic-hero-cover {
    width: 50px;
    height: 68px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
  }

  .mobile-comic-hero-details {
    flex: 1;
    min-width: 0;
  }

  .mobile-comic-hero-title {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-comic-hero-author {
    font-size: 11px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .author-verified-badge {
    color: #10b981;
    font-size: 10px;
  }

  .mobile-comic-hero-rating-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 2px;
  }

  .rating-badge {
    font-size: 10.5px;
    font-weight: 800;
    color: #f59e0b;
    display: flex;
    align-items: center;
    gap: 2px;
    white-space: nowrap;
  }

  .best-seller-badge {
    font-size: 8.5px;
    font-weight: 800;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0 4px;
    border-radius: 3px;
    letter-spacing: 0.2px;
    white-space: nowrap;
  }

  .mobile-comic-hero-meta {
    font-size: 9.5px;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-comic-hero-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
  }

  .btn-mob-hero-action {
    width: 42px;
    height: 50px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #cbd5e1;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
  }

  .btn-mob-hero-action:hover, .btn-mob-hero-action.active {
    background: rgba(16, 185, 129, 0.15);
    border-color: #10b981;
    color: #34d399;
  }

  .btn-mob-hero-action span {
    font-size: 8.5px;
    font-weight: 700;
    color: #94a3b8;
  }

  /* 2. Mobile Stage Top Stepper */
  .mobile-stage-top-stepper {
    background: #111a15;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin: 0 10px 8px 10px !important;
    padding: 6px 8px !important;
    width: calc(100% - 20px) !important;
    max-width: calc(100% - 20px) !important;
    box-sizing: border-box !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
  }

  .btn-mob-chapter-select {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    flex: 1;
    min-width: 0;
  }

  .btn-mob-chapter-select span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .btn-mob-chapter-select i.fa-chevron-down {
    font-size: 8px;
    color: #94a3b8;
    flex-shrink: 0;
  }

  .mob-stepper-center {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
  }

  .btn-mob-arrow {
    color: #94a3b8;
    font-size: 9px;
    padding: 2px 4px;
    cursor: pointer;
  }

  .btn-mob-arrow:hover {
    color: #fff;
  }

  .btn-mob-fullscreen {
    color: #94a3b8;
    font-size: 11px;
    padding: 2px 4px;
    cursor: pointer;
    flex-shrink: 0;
  }

  .btn-mob-fullscreen:hover {
    color: #fff;
  }

  /* 3. Canvas Scroller & Rendered Page */
  /* 3. Canvas Scroller & Rendered Page - Full Height & No Cropping */
  .comic-canvas-scroller {
    padding: 0 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    height: auto !important;
    display: block !important;
  }

  .comic-rendered-page {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    height: auto !important;
    max-height: none !important;
    min-height: auto !important;
    padding: 8px !important;
    gap: 8px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4) !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    flex: none !important;
  }

  .comic-panel {
    border: 2px solid #18221b !important;
    border-radius: 6px !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.25) !important;
    background-size: cover !important;
    background-position: center !important;
  }

  /* Panel 1: Top Hero Panorama */
  .panel-hero-1 {
    width: 100% !important;
    height: 210px !important;
    min-height: 210px !important;
    flex: none !important;
    border-radius: 6px !important;
    box-sizing: border-box !important;
    display: block !important;
  }

  .panel-narration-box {
    position: absolute !important;
    top: 8px !important;
    left: 8px !important;
    max-width: 85% !important;
    background: #ffffff !important;
    border: 1.5px solid #18221b !important;
    border-radius: 6px !important;
    padding: 5px 8px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) !important;
    z-index: 2 !important;
    box-sizing: border-box !important;
  }

  .narration-tag {
    font-size: 8px !important;
    font-weight: 900 !important;
    letter-spacing: 0.5px !important;
    background: #10b981 !important;
    color: #fff !important;
    padding: 1px 4px !important;
    border-radius: 3px !important;
    display: inline-block !important;
    margin-bottom: 2px !important;
  }

  .narration-text {
    font-size: 9.5px !important;
    font-weight: 600 !important;
    color: #111827 !important;
    line-height: 1.3 !important;
  }

  /* Panels 2 & 3: Middle Split Panels */
  .comic-panels-split-row {
    width: 100% !important;
    box-sizing: border-box !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 8px !important;
    height: 165px !important;
    min-height: 165px !important;
    flex: none !important;
  }

  .panel-split {
    height: 165px !important;
    min-height: 165px !important;
    flex: none !important;
    border-radius: 6px !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .panel-speech-bubble {
    position: absolute !important;
    background: #ffffff !important;
    border: 1.5px solid #18221b !important;
    border-radius: 10px !important;
    padding: 4px 6px !important;
    font-size: 8.5px !important;
    font-weight: 700 !important;
    color: #111827 !important;
    line-height: 1.25 !important;
    max-width: 90% !important;
    box-sizing: border-box !important;
    z-index: 2 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
  }

  .bubble-left {
    top: 6px !important;
    left: 6px !important;
    right: auto !important;
  }

  .bubble-right {
    top: 6px !important;
    left: 6px !important;
    right: auto !important;
  }

  /* Panel 4: Bottom Wide Panel */
  .panel-wide-4 {
    width: 100% !important;
    height: 180px !important;
    min-height: 180px !important;
    flex: none !important;
    border-radius: 6px !important;
    box-sizing: border-box !important;
    display: block !important;
  }

  .bubble-center-bottom {
    top: 8px !important;
    left: 8px !important;
    max-width: 85% !important;
  }

  /* 4. Mobile Bottom Controls Card */
  .mobile-bottom-controls-card {
    background: #111a15;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin: 8px 10px !important;
    padding: 10px !important;
    width: calc(100% - 20px) !important;
    max-width: calc(100% - 20px) !important;
    box-sizing: border-box !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .mob-scrubber-row {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
  }

  .btn-mob-scrub-nav {
    font-size: 11px;
    font-weight: 700;
    color: #cbd5e1;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .mob-range-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 0;
  }

  .mob-scrub-range {
    width: 100%;
    accent-color: #10b981;
    height: 4px;
    cursor: pointer;
  }

  .mob-viewmodes-scroll-row {
    display: flex;
    align-items: center;
    gap: 5px;
    overflow-x: auto;
    width: 100%;
    box-sizing: border-box;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .mob-viewmodes-scroll-row::-webkit-scrollbar {
    display: none;
  }

  .btn-mob-viewmode {
    white-space: nowrap;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.2s;
  }

  .btn-mob-viewmode.active {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10b981;
    color: #34d399;
    font-weight: 800;
  }

  .mob-settings-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .mob-setting-box {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
  }

  .mob-direction-full-row {
    grid-column: 1 / -1 !important;
  }

  .mob-setting-label {
    font-size: 9.5px;
    font-weight: 700;
    color: #94a3b8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mob-slider-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 3px 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    height: 28px;
    box-sizing: border-box;
  }

  .mob-brightness-slider {
    width: 100%;
    accent-color: #10b981;
    height: 3px;
    cursor: pointer;
  }

  .mob-textsize-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 2px 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 28px;
    box-sizing: border-box;
  }

  .btn-mob-ts {
    color: #fff;
    font-weight: 800;
    font-size: 11px;
    padding: 1px 6px;
    cursor: pointer;
  }

  .mob-ts-val {
    font-size: 10.5px;
    font-weight: 800;
    color: var(--brand-gold);
  }

  .mob-direction-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    height: 28px;
    box-sizing: border-box;
    width: 100%;
  }

  .btn-mob-dir {
    padding: 4px 6px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.2s;
  }

  .btn-mob-dir.active {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10b981;
    color: #34d399;
    font-weight: 800;
  }

  /* 5. Mobile Chapters Drawer / Bottom Sheet */
  .mobile-chapters-drawer-card {
    background: #111a15;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin: 8px 10px !important;
    padding: 12px 10px !important;
    width: calc(100% - 20px) !important;
    max-width: calc(100% - 20px) !important;
    box-sizing: border-box !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden !important;
  }

  .mob-drawer-handle-bar {
    width: 32px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    margin: 0 auto 2px auto;
  }

  .mob-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mob-drawer-title {
    font-size: 12.5px;
    font-weight: 800;
    color: #fff;
  }

  .btn-close-mob-drawer {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 3px;
  }

  .btn-close-mob-drawer:hover {
    color: #fff;
  }

  .mob-drawer-search-wrap {
    position: relative;
    width: 100%;
    box-sizing: border-box;
  }

  .mob-drawer-search-wrap input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 6px 10px 6px 28px;
    font-size: 11px;
    color: #fff;
    outline: none;
    box-sizing: border-box;
  }

  .mob-drawer-search-wrap .search-icon {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 11px;
  }

  /* 2-Column Chapters Grid */
  .mob-chapters-2col-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 6px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .mob-ch-card {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    padding: 5px 6px !important;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    cursor: pointer;
    min-width: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    transition: all 0.2s;
  }

  .mob-ch-card:hover {
    background: rgba(255, 255, 255, 0.07);
  }

  .mob-ch-card.active {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid #10b981;
  }

  .mob-ch-num {
    font-size: 10px !important;
    font-weight: 800;
    color: #94a3b8;
    min-width: 14px;
    flex-shrink: 0;
  }

  .mob-ch-card.active .mob-ch-num {
    color: #10b981;
  }

  .mob-ch-thumb {
    width: 24px !important;
    height: 24px !important;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
  }

  .mob-ch-info {
    flex: 1 1 0% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .mob-ch-title {
    font-size: 9px !important;
    font-weight: 700;
    color: #fff;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: block !important;
    width: 100% !important;
  }

  .mob-ch-pages {
    font-size: 7.5px !important;
    color: #64748b;
    margin-top: 1px;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: block !important;
    width: 100% !important;
  }

  .mob-ch-status {
    font-size: 9.5px !important;
    flex-shrink: 0;
    margin-left: auto;
  }

  .mob-ch-status.unlocked {
    color: #10b981;
  }

  .mob-ch-status.locked {
    color: #64748b;
  }

  .btn-mob-view-all-chapters {
    width: 100%;
    padding: 7px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: #cbd5e1;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.2s;
  }

  .btn-mob-view-all-chapters:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }
}

