/* ============================================================
   AURORA DOCK theme — manhwa18.com redesign (home / info / reader)
   Scoped under body.aurora so other pages keep the legacy style.
   Design tokens:
     bg #0A0A12 | panel rgba(255,255,255,.035) | border rgba(255,255,255,.09)
     text #E9E9F2 | muted #A9A9C0 / #8B8BA0 / #63637A
     primary #8B7CFF | primary-deep #6A5AE8 | cyan #55E0FF
     red #E5464D | green #5ADB8A
     fonts: 'Space Grotesk' (body) / 'JetBrains Mono' (labels, numbers)
   ============================================================ */

/* ---------- 1. Base / global overrides ---------- */
body.aurora {
  background: #0A0A12 !important;
  color: #E9E9F2;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.aurora a { color: #E9E9F2; text-decoration: none; }
body.aurora a:hover { color: #8B7CFF; }
body.aurora ::selection { background: rgba(139, 124, 255, .35); }
body.aurora input::placeholder { color: #63637A; }
body.aurora ::-webkit-scrollbar { width: 8px; height: 8px; }
body.aurora ::-webkit-scrollbar-thumb { background: #26263A; border-radius: 4px; }
body.aurora .main-wrapper { background: transparent; }

@keyframes auFadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes auDrift { 0% { transform: translate(0, 0); } 50% { transform: translate(30px, -20px); } 100% { transform: translate(0, 0); } }
@keyframes auFillA { from { width: 0; } to { width: 100%; } }
@keyframes auFillB { from { width: 0; } to { width: 100%; } }

/* aurora background blobs */
.au-backdrop { position: fixed; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.au-backdrop .au-blob1 { position: absolute; top: -180px; left: 12%; width: 640px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(139, 124, 255, .17), transparent 65%); animation: auDrift 14s ease-in-out infinite; }
.au-backdrop .au-blob2 { position: absolute; bottom: -220px; right: -80px; width: 560px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(85, 224, 255, .1), transparent 65%); animation: auDrift 18s ease-in-out infinite reverse; }

/* ---------- 2. Navbar (global — every page loads aurora.css) / footer ---------- */
#navbar.au-nav {
  background: rgba(16, 16, 26, .82) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  box-shadow: none !important;
  font-family: 'Space Grotesk', system-ui, sans-serif;
}
#navbar.au-nav .au-brand { font-weight: 700; font-size: 19px; letter-spacing: -.5px; color: #E9E9F2 !important; }
#navbar.au-nav .au-brand b { background: linear-gradient(120deg, #8B7CFF, #55E0FF); -webkit-background-clip: text; background-clip: text; color: transparent; }
#navbar.au-nav .nav-link { color: #8B8BA0 !important; font-weight: 600; font-size: 13.5px; border-radius: 10px; padding: 8px 12px; transition: all .15s; }
#navbar.au-nav .nav-link:hover { color: #E9E9F2 !important; background: rgba(255, 255, 255, .05); }
#navbar.au-nav .au-nav-cta { background: rgba(139, 124, 255, .16); color: #8B7CFF !important; }
#navbar.au-nav .au-nav-cta:hover { background: rgba(139, 124, 255, .25); color: #8B7CFF !important; }
#navbar.au-nav .form-control-navbar {
  background: rgba(10, 10, 18, .6) !important;
  border: 1px solid rgba(255, 255, 255, .1) !important;
  color: #E9E9F2 !important;
  border-radius: 10px 0 0 10px;
  font-family: 'Space Grotesk', sans-serif;
}
#navbar.au-nav .form-control-navbar::placeholder { color: #63637A; }
#navbar.au-nav .btn-navbar { background: rgba(10, 10, 18, .6) !important; border: 1px solid rgba(255, 255, 255, .1); border-left: 0; color: #8B8BA0; border-radius: 0 10px 10px 0; }
#navbar.au-nav .dropdown-menu { background: #12121D; border: 1px solid rgba(255, 255, 255, .1); border-radius: 14px; }
#navbar.au-nav .dropdown-item { color: #C6C6D6; }
#navbar.au-nav .dropdown-item:hover { background: rgba(139, 124, 255, .12); color: #8B7CFF; }
#navbar.au-nav .au-nav-avatar { border: 2px solid rgba(139, 124, 255, .5); }
body.aurora #footer { background: rgba(16, 16, 26, .8); border-top: 1px solid rgba(255, 255, 255, .07); color: #63637A; position: relative; z-index: 1; }

/* ---------- 3. Dock (desktop quick nav) ---------- */
.au-dock {
  position: fixed; left: 14px; top: 50%; transform: translateY(-50%); z-index: 60;
  display: flex; flex-direction: column; gap: 6px;
  background: rgba(16, 16, 26, .8);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .09); border-radius: 18px; padding: 10px 8px;
}
.au-dock .au-dock-logo { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg, #8B7CFF, #55E0FF); display: grid; place-items: center; font-weight: 700; font-size: 13px; color: #0A0A12; margin-bottom: 6px; }
.au-dock a { width: 40px; height: 40px; border-radius: 12px; color: #8B8BA0; font-size: 15px; display: grid; place-items: center; transition: all .15s; }
.au-dock a:hover { background: rgba(139, 124, 255, .14); color: #8B7CFF; }
.au-dock a.active { background: rgba(139, 124, 255, .16); color: #8B7CFF; }

/* ---------- 4. Layout wrapper / cards / type ---------- */
.au-wrap { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; padding: 24px 20px 90px 96px; }
.au-card { background: rgba(255, 255, 255, .035); border: 1px solid rgba(255, 255, 255, .09); border-radius: 20px; padding: 24px; }
.au-mono { font-family: 'JetBrains Mono', monospace; }
.au-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 2.5px; color: #63637A; }
.au-h { font-weight: 700; font-size: 18px; letter-spacing: -.3px; margin: 0; color: #55E0FF; }
.au-muted { color: #63637A; }
.au-fadeup { animation: auFadeUp .5s ease both; }

/* buttons */
.au-btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 11px 22px; border-radius: 12px; border: 0; background: linear-gradient(120deg, #8B7CFF, #6A5AE8); color: #0A0A12 !important; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 13.5px; cursor: pointer; box-shadow: 0 12px 32px -10px rgba(139, 124, 255, .55); transition: transform .15s; }
.au-btn:hover { transform: translateY(-2px); color: #0A0A12 !important; }
.au-btn--ghost { background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .12); color: #E9E9F2 !important; box-shadow: none; font-weight: 600; }
.au-btn--ghost:hover { border-color: #8B7CFF; color: #8B7CFF !important; transform: none; }
.au-btn--on { background: rgba(139, 124, 255, .16); border: 1px solid #8B7CFF; color: #8B7CFF !important; box-shadow: none; font-weight: 600; }
.au-btn--on:hover { transform: none; color: #8B7CFF !important; }

/* tab pills */
.au-tabs { display: flex; gap: 5px; flex-wrap: wrap; }
.au-tab { padding: 7px 15px; border-radius: 9px; border: 1px solid rgba(255, 255, 255, .1); background: rgba(10, 10, 18, .4); color: #8B8BA0; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 12px; cursor: pointer; transition: all .15s; }
.au-tab:hover { color: #E9E9F2; }
.au-tab.active { border-color: #8B7CFF; background: rgba(139, 124, 255, .16); color: #8B7CFF; }

/* legacy AdminLTE card compat (sidebar cards, admin tools, notes…) */
body.aurora .card.card-dark { background: rgba(255, 255, 255, .035) !important; border: 1px solid rgba(255, 255, 255, .09) !important; border-radius: 20px; box-shadow: none; overflow: hidden; }
body.aurora .card.card-dark > .card-header { background: transparent !important; border-bottom: 1px solid rgba(255, 255, 255, .07); }
body.aurora .card.card-dark .card-title { color: #55E0FF; font-weight: 700; letter-spacing: -.2px; }
body.aurora .card.card-dark .card-body,
body.aurora .card.card-dark .card-body.bg-dark { background: transparent !important; }
body.aurora .bg-ojisan { background: linear-gradient(120deg, #8B7CFF, #6A5AE8) !important; color: #0A0A12 !important; }
body.aurora .badge-info.bg-ojisan { color: #0A0A12 !important; }
body.aurora .btn-back-to-top { background: rgba(16, 16, 26, .85); border: 1px solid rgba(255, 255, 255, .1); color: #8B7CFF; border-radius: 12px; z-index: 70; }

/* ============================================================
   5. HOME
   ============================================================ */

/* hero row */
.au-hero-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: stretch; }

/* featured deck card */
.au-hero { flex: 1.7 1 440px; position: relative; border-radius: 20px; overflow: hidden; border: 1px solid rgba(139, 124, 255, .28); background: rgba(255, 255, 255, .035); display: flex; flex-direction: column; }
.au-hero-glow { position: absolute; inset: 0; background: radial-gradient(520px 260px at 80% 0%, rgba(139, 124, 255, .14), transparent 60%); pointer-events: none; }
.au-hero-ghost { position: absolute; left: 18px; top: -26px; font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 150px; line-height: 1; letter-spacing: -10px; color: rgba(233, 233, 242, .045); pointer-events: none; user-select: none; }
.au-hero-inner { position: relative; flex: 1; display: flex; gap: 30px; padding: 26px 26px 20px; flex-wrap: wrap; }
.au-deck { flex: 0 0 200px; align-self: center; position: relative; height: 270px; cursor: pointer; }
.au-deck-card { position: absolute; left: 22px; top: 0; width: 168px; aspect-ratio: 2/3; border-radius: 12px; background-size: cover; background-position: center; background-color: #191926; border: 1px solid rgba(255, 255, 255, .09); box-shadow: 0 18px 44px -14px rgba(0, 0, 0, .75); transition: transform .45s cubic-bezier(.2, .8, .2, 1), opacity .45s; }
.au-deck-card.pos0 { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 1; z-index: 3; border-color: rgba(139, 124, 255, .5); }
.au-deck-card.pos1 { transform: translate(-26px, 10px) rotate(-7deg) scale(.94); opacity: .6; z-index: 2; border-color: rgba(255, 255, 255, .12); }
.au-deck-card.pos2 { transform: translate(26px, 12px) rotate(7deg) scale(.9); opacity: .35; z-index: 1; border-color: rgba(255, 255, 255, .09); }
.au-deck-card.posH { transform: translate(0, 26px) scale(.85); opacity: 0; z-index: 0; border-color: transparent; }
.au-hero-content { flex: 1; min-width: 250px; display: flex; flex-direction: column; }
.au-hero-eyebrow { display: flex; align-items: center; gap: 10px; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 2.5px; color: #55E0FF; }
.au-hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: #55E0FF; box-shadow: 0 0 10px #55E0FF; display: inline-block; }
.au-hero-title { font-weight: 700; font-size: clamp(24px, 2.8vw, 34px); line-height: 1.06; letter-spacing: -1px; margin: 12px 0 8px; }
.au-hero-title a { color: #E9E9F2; }
.au-hero-meta { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #8B8BA0; margin-bottom: 10px; }
.au-hero-desc { color: #A9A9C0; font-size: 13.5px; line-height: 1.65; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.au-hero-actions { display: flex; gap: 14px; align-items: center; margin-top: auto; padding-top: 16px; flex-wrap: wrap; }
.au-ticks { display: flex; gap: 2px; }
.au-tick { background: none; border: 0; border-bottom: 2px solid rgba(255, 255, 255, .1); color: rgba(233, 233, 242, .28); font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 10.5px; padding: 5px 7px; cursor: pointer; transition: all .2s; }
.au-tick:hover { color: #8B7CFF; }
.au-tick.active { color: #8B7CFF; border-bottom-color: #8B7CFF; }
.au-hero-bar { position: relative; height: 3px; background: rgba(255, 255, 255, .06); }
.au-hero-bar > div { height: 100%; background: linear-gradient(90deg, #8B7CFF, #55E0FF); width: 0; }
.au-hero-bar > div.animA { animation: auFillA 6s linear forwards; }
.au-hero-bar > div.animB { animation: auFillB 6s linear forwards; }
.au-deck-slide { display: none; }
.au-deck-slide.active { display: block; }

/* notifications panel */
.au-notif { flex: 1 1 320px; background: rgba(255, 255, 255, .035); border: 1px solid rgba(255, 255, 255, .09); border-radius: 20px; padding: 20px; display: flex; flex-direction: column; }
.au-notif-head { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.au-notif-ico { width: 28px; height: 28px; border-radius: 8px; background: rgba(85, 224, 255, .12); border: 1px solid rgba(85, 224, 255, .3); display: grid; place-items: center; font-size: 13px; color: #55E0FF; flex: none; }
.au-notif-title { font-weight: 700; font-size: 15.5px; letter-spacing: -.2px; margin: 0; }
.au-notif-count { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; font-weight: 700; color: #FFF; background: #E5464D; padding: 2px 7px; border-radius: 5px; }
.au-notif-list { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.au-notif-row { display: flex; align-items: center; gap: 11px; padding: 8px 10px 8px 8px; border-radius: 12px; background: rgba(10, 10, 18, .4); border: 1px solid rgba(255, 255, 255, .06); transition: all .15s; }
.au-notif-row:hover { border-color: rgba(139, 124, 255, .4); }
.au-notif-cover { flex: 0 0 40px; width: 40px; height: 54px; border-radius: 8px; background-size: cover; background-position: center; background-color: #191926; border: 1px solid rgba(255, 255, 255, .09); display: block; }
.au-notif-body { min-width: 0; flex: 1; }
.au-notif-name { font-size: 13px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; color: #E9E9F2; }
.au-notif-ch { display: flex; align-items: center; gap: 6px; color: #63637A; font-size: 11.5px; margin-top: 3px; }
.au-notif-new { font-family: 'JetBrains Mono', monospace; font-size: 9px; font-weight: 700; color: #FFF; background: #E5464D; padding: 3px 7px; border-radius: 5px; flex: none; }
.au-notif-empty { flex: 1; display: grid; place-items: center; color: #63637A; font-size: 13px; padding: 20px 0; text-align: center; }

/* continue reading bar */
.au-continue { display: flex; align-items: center; gap: 16px; margin-top: 14px; background: rgba(139, 124, 255, .07); border: 1px solid rgba(139, 124, 255, .25); border-radius: 16px; padding: 14px 20px; flex-wrap: wrap; }
.au-continue .au-label { color: #8B7CFF; letter-spacing: 2px; }
.au-continue-name { font-weight: 600; font-size: 14px; }
.au-continue-link { font-weight: 700; font-size: 13px; color: #8B7CFF !important; white-space: nowrap; margin-left: auto; }

/* rankings */
.au-rank { margin-top: 34px; position: relative; overflow: hidden; }
.au-rank-ghost { position: absolute; top: -40px; right: -10px; font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 150px; letter-spacing: -8px; color: rgba(139, 124, 255, .05); pointer-events: none; user-select: none; }
.au-rank-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; position: relative; }
.au-rank-tabs { margin-left: auto; display: flex; gap: 4px; background: rgba(10, 10, 18, .5); border: 1px solid rgba(255, 255, 255, .08); border-radius: 11px; padding: 4px; }
.au-rank-tab { padding: 7px 16px; border-radius: 8px; border: 0; background: transparent; color: #63637A; font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 10.5px; cursor: pointer; transition: all .15s; }
.au-rank-tab.active { background: rgba(139, 124, 255, .18); color: #8B7CFF; }
.au-rank-panel { display: none; gap: 16px; flex-wrap: wrap; position: relative; }
.au-rank-panel.active { display: flex; }
.au-champ { flex: 1 1 280px; max-width: 380px; position: relative; border-radius: 18px; overflow: hidden; border: 1px solid rgba(85, 224, 255, .4); background: linear-gradient(160deg, rgba(85, 224, 255, .1), rgba(139, 124, 255, .06) 55%, rgba(10, 10, 18, .5)); padding: 22px; display: flex; flex-direction: column; color: #E9E9F2 !important; transition: transform .18s; }
.au-champ:hover { transform: translateY(-4px); color: #E9E9F2 !important; }
.au-champ-ghost { position: absolute; top: -30px; right: -8px; font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 140px; line-height: 1; letter-spacing: -8px; color: rgba(85, 224, 255, .09); pointer-events: none; user-select: none; }
.au-champ-tag { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 2.5px; font-weight: 700; color: #55E0FF; margin-bottom: 18px; position: relative; }
.au-champ-body { display: flex; gap: 16px; position: relative; }
.au-champ-cover { flex: 0 0 92px; aspect-ratio: 2/3; border-radius: 10px; background-size: cover; background-position: center; background-color: #191926; border: 1px solid rgba(255, 255, 255, .14); box-shadow: 0 14px 34px -10px rgba(85, 224, 255, .35); }
.au-champ-info { min-width: 0; display: flex; flex-direction: column; justify-content: center; gap: 7px; }
.au-champ-name { font-weight: 700; font-size: 19px; letter-spacing: -.4px; line-height: 1.2; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.au-champ-stat { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #A9A9C0; }
.au-champ-stat.hl { color: #8B7CFF; }
.au-champ-heat { margin-top: 18px; position: relative; }
.au-champ-heat .row1 { display: flex; justify-content: space-between; margin-bottom: 6px; }
.au-champ-heat .bar { height: 5px; background: rgba(255, 255, 255, .07); border-radius: 3px; overflow: hidden; }
.au-champ-heat .bar > div { height: 100%; width: 100%; background: linear-gradient(90deg, #8B7CFF, #55E0FF); }
.au-rank-rows { flex: 2 1 440px; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.au-rank-row { position: relative; display: flex; align-items: center; gap: 14px; padding: 9px 16px 9px 12px; border-radius: 14px; border: 1px solid rgba(255, 255, 255, .07); overflow: hidden; color: #E9E9F2 !important; background: rgba(10, 10, 18, .4); transition: border-color .18s; }
.au-rank-row:hover { border-color: #8B7CFF; }
.au-rank-heat { position: absolute; inset: 0 auto 0 0; background: linear-gradient(90deg, rgba(139, 124, 255, .16), rgba(85, 224, 255, .03)); border-right: 1px solid rgba(139, 124, 255, .25); }
.au-rank-num { font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 22px; letter-spacing: -1px; color: rgba(233, 233, 242, .25); width: 34px; flex: none; position: relative; }
.au-rank-num.top { color: #8B7CFF; }
.au-rank-cover { flex: 0 0 34px; width: 34px; height: 51px; border-radius: 6px; background-size: cover; background-position: center; background-color: #191926; border: 1px solid rgba(255, 255, 255, .09); position: relative; }
.au-rank-main { min-width: 0; position: relative; flex: 1; }
.au-rank-title { font-size: 13.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.au-rank-sub { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: #63637A; margin-top: 3px; }
.au-rank-pct { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; color: rgba(233, 233, 242, .35); position: relative; flex: none; width: 38px; text-align: right; }

/* latest updates feed */
.au-feed { margin-top: 14px; }
.au-feed-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.au-feed-panel { display: none; position: relative; padding-left: 4px; }
.au-feed-panel.active { display: block; }
.au-feed-group { position: relative; padding-left: 24px; border-left: 2px solid rgba(139, 124, 255, .16); }
.au-feed-dot { position: absolute; left: -5px; top: 1px; width: 8px; height: 8px; border-radius: 50%; background: #8B7CFF; box-shadow: 0 0 12px rgba(139, 124, 255, .9); }
.au-feed-label { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: 2.5px; color: #55E0FF; line-height: 1; padding-bottom: 14px; }
.au-feed-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 8px; padding-bottom: 22px; }
.au-feed-item { display: flex; align-items: center; gap: 12px; padding: 9px 12px 9px 9px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, .06); background: rgba(10, 10, 18, .4); transition: all .15s; color: #E9E9F2 !important; }
.au-feed-item:hover { border-color: #8B7CFF; background: rgba(139, 124, 255, .07); }
.au-feed-cover { flex: 0 0 46px; width: 46px; height: 69px; border-radius: 7px; background-size: cover; background-position: center; background-color: #191926; border: 1px solid rgba(255, 255, 255, .07); }
.au-feed-body { min-width: 0; flex: 1; }
.au-feed-title { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.au-feed-chs { display: flex; flex-direction: column; gap: 4px; margin-top: 6px; }
.au-feed-chrow { display: flex; align-items: center; gap: 7px; }
.au-chip { font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700; color: #8B7CFF; background: rgba(139, 124, 255, .12); border: 1px solid rgba(139, 124, 255, .3); padding: 2px 8px; border-radius: 999px; white-space: nowrap; max-width: 130px; overflow: hidden; text-overflow: ellipsis; }
.au-chip-new { font-family: 'JetBrains Mono', monospace; font-size: 8.5px; font-weight: 700; color: #0A0A12; background: #55E0FF; padding: 2px 6px; border-radius: 999px; }
.au-chip-hot { font-family: 'JetBrains Mono', monospace; font-size: 8.5px; font-weight: 700; color: #FFF; background: #E5464D; padding: 2px 6px; border-radius: 999px; }
.au-feed-time { margin-left: auto; font-family: 'JetBrains Mono', monospace; font-size: 10px; color: #63637A; white-space: nowrap; }
.au-feed-more { margin-top: 4px; width: 100%; padding: 12px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, .1); background: rgba(10, 10, 18, .4); color: #A9A9C0 !important; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 13px; cursor: pointer; text-align: center; display: block; }
.au-feed-more:hover { border-color: #8B7CFF; color: #8B7CFF !important; }

/* ad slots keep neutral boxes */
.au-adslot { margin-top: 14px; display: flex; justify-content: center; overflow: hidden; border-radius: 16px; }

/* ============================================================
   6. INFO PAGE (bento)
   ============================================================ */
.au-crumb { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 2px; color: #63637A; margin-bottom: 20px; text-transform: uppercase; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.au-crumb a { color: #63637A; }
.au-crumb a:hover { color: #8B7CFF; }
.au-crumb .cur { color: #8B7CFF; }

.au-bento { display: flex; flex-wrap: wrap; gap: 14px; }
.au-bento-cover { flex: 1 1 230px; max-width: 270px; padding: 14px; }
.au-cover-art { aspect-ratio: 2/3; border-radius: 12px; background-size: cover; background-position: center; background-color: #191926; border: 1px solid rgba(255, 255, 255, .06); }
.au-bento-hero { flex: 2 1 460px; padding: 30px; display: flex; flex-direction: column; }
.au-info-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: 2.5px; color: #55E0FF; margin-bottom: 12px; text-transform: uppercase; }
.au-info-title { font-weight: 700; font-size: clamp(28px, 4vw, 44px); line-height: 1.05; letter-spacing: -1.5px; margin: 0 0 8px; background: linear-gradient(100deg, #E9E9F2, #8B7CFF); -webkit-background-clip: text; background-clip: text; color: transparent; }
.au-info-alt { color: #63637A; font-size: 13.5px; margin-bottom: 18px; }
.au-info-alt a { color: #8B8BA0; }
.au-info-alt a:hover { color: #8B7CFF; }
.au-genres { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: auto; }
.au-genre { font-size: 12px; font-weight: 600; color: #A9A9C0 !important; border: 1px solid rgba(255, 255, 255, .1); padding: 5px 12px; border-radius: 9px; background: rgba(255, 255, 255, .03); }
.au-genre:hover { border-color: #8B7CFF; color: #8B7CFF !important; }
.au-info-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 22px; }

/* social action row (like / dislike / follow / rate / share) */
.au-social { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.au-social a { display: inline-flex; align-items: center; gap: 7px; padding: 9px 14px; border-radius: 11px; border: 1px solid rgba(255, 255, 255, .1); background: rgba(10, 10, 18, .4); color: #A9A9C0 !important; font-weight: 600; font-size: 12.5px; cursor: pointer; transition: all .15s; }
.au-social a:hover { border-color: #8B7CFF; color: #8B7CFF !important; }
.au-social a .fas { color: #8B7CFF; }
.au-social .au-social-item { position: relative; }
/* rating popover reuse */
body.aurora .series-rating { position: relative; }
body.aurora .series-rating input[type="checkbox"] { display: none; }
body.aurora .series-evaluation { display: none; position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: rgba(16, 16, 26, .97); border: 1px solid rgba(255, 255, 255, .12); border-radius: 12px; padding: 9px 12px; white-space: nowrap; z-index: 20; box-shadow: 0 16px 40px -10px rgba(0, 0, 0, .8); }
body.aurora .series-rating input:checked ~ .series-evaluation { display: block; }
body.aurora .series-evaluation { direction: rtl; }
body.aurora .star-evaluate-item { color: #4A4A5E; cursor: pointer; font-size: 17px; padding: 0 2px; display: inline-block; }
body.aurora .star-evaluate-item:hover,
body.aurora .star-evaluate-item:hover ~ .star-evaluate-item { color: #8B7CFF; }
/* share popover */
body.aurora .au-share { position: relative; }
body.aurora .au-share input[type="checkbox"] { display: none; }
body.aurora .sharing-box { display: none; position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: rgba(16, 16, 26, .97); border: 1px solid rgba(255, 255, 255, .12); border-radius: 12px; padding: 8px 10px; z-index: 20; white-space: nowrap; }
body.aurora .au-share input:checked ~ .sharing-box { display: block; }
body.aurora .sharing-box .sharing-item { display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 9px; background: rgba(139, 124, 255, .12); color: #8B7CFF !important; margin: 0 3px; }

/* stat tiles */
.au-stats { flex: 1 1 100%; display: flex; flex-wrap: wrap; gap: 14px; }
.au-stat { flex: 1 1 150px; background: rgba(255, 255, 255, .035); border: 1px solid rgba(255, 255, 255, .09); border-radius: 18px; padding: 18px 20px; }
.au-stat .k { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 2px; color: #63637A; margin-bottom: 7px; text-transform: uppercase; }
.au-stat .v { font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 22px; }
.au-stat--hl { background: rgba(139, 124, 255, .08); border-color: rgba(139, 124, 255, .3); }
.au-stat--hl .k, .au-stat--hl .v { color: #8B7CFF; }
.au-stat .v.ok { color: #5ADB8A; }

/* synopsis + details row */
.au-syn { flex: 3 1 420px; padding: 26px; }
.au-syn-body { color: #A9A9C0; font-size: 14px; line-height: 1.8; overflow: hidden; max-height: 116px; transition: max-height .35s ease; }
.au-syn-body.open { max-height: 2000px; }
.au-syn-more { margin-top: 12px; color: #8B7CFF; font-weight: 600; font-size: 13px; cursor: pointer; background: none; border: 0; font-family: 'Space Grotesk', sans-serif; padding: 0; }
.au-details { flex: 1 1 280px; padding: 26px; }
.au-detail-row { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, .06); font-size: 13px; }
.au-detail-row:last-child { border-bottom: 0; }
.au-detail-row .k { color: #63637A; flex: none; }
.au-detail-row .v { font-weight: 600; text-align: right; min-width: 0; }

/* chapters grid */
.au-chapters { flex: 1 1 100%; padding: 26px; }
.au-chapters-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.au-chsearch { display: flex; align-items: center; gap: 8px; background: rgba(10, 10, 18, .6); border: 1px solid rgba(255, 255, 255, .1); border-radius: 11px; padding: 9px 14px; min-width: 180px; }
.au-chsearch input { background: none; border: 0; outline: 0; color: #E9E9F2; font-family: 'Space Grotesk', sans-serif; font-size: 13.5px; width: 100%; }
.au-chsort { border: 1px solid rgba(255, 255, 255, .1); background: rgba(10, 10, 18, .6); color: #A9A9C0; border-radius: 11px; padding: 9px 16px; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 12.5px; cursor: pointer; }
.au-chsort:hover { border-color: #8B7CFF; color: #8B7CFF; }
.au-chgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 8px; }
.au-chtile { border: 1px solid rgba(255, 255, 255, .1); background: rgba(10, 10, 18, .5); border-radius: 12px; padding: 12px 14px; cursor: pointer; transition: all .15s; position: relative; display: block; color: #E9E9F2 !important; }
.au-chtile:hover { border-color: #8B7CFF; background: rgba(139, 124, 255, .09); }
.au-chtile-top { display: flex; align-items: center; gap: 8px; min-width: 0; }
.au-chtile-num { font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 13.5px; color: #E9E9F2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.au-chtile-date { font-size: 11px; color: #63637A; margin-top: 5px; font-family: 'JetBrains Mono', monospace; }
.au-chempty { text-align: center; color: #63637A; font-size: 13.5px; padding: 24px 0 6px; display: none; }

/* info page column split (chapters + legacy sidebar) */
.au-info-cols { display: flex; gap: 14px; margin-top: 14px; align-items: flex-start; flex-wrap: wrap; }
.au-info-main { flex: 2 1 560px; min-width: 0; display: flex; flex-direction: column; gap: 14px; }
.au-info-side { flex: 1 1 280px; min-width: 260px; display: flex; flex-direction: column; gap: 14px; }
.au-info-side .card.card-dark { margin-bottom: 0; }

/* legacy sidebar bits inside aurora */
body.aurora .series-users { padding: 16px !important; }
body.aurora .series-owner img { border-radius: 12px; }
body.aurora .others-list li { border-color: rgba(255, 255, 255, .06); }

/* ============================================================
   7. READER
   ============================================================ */
body.aurora-reader { background: #0E0E18 !important; }
body.aurora-reader.au-bg-black { background: #050508 !important; }
body.aurora-reader.au-bg-paper { background: #E9E4F0 !important; }
body.aurora-reader #footer { display: none; }
/* compact navbar on reader (scrolls away; floating pill takes over) */
body.aurora-reader #navbar { padding-top: 2px; padding-bottom: 2px; position: relative; z-index: 50; }
body.aurora-reader #navbar .nav-link { padding-top: 6px; padding-bottom: 6px; font-size: 13px; }
/* keep the top pill below the navbar while at page top */
.au-topbar.au-atop { top: 62px; }

.au-reader-wrap { position: relative; z-index: 1; padding-bottom: 130px; min-height: 100vh; }

/* vertical progress rail */
.au-rail { position: fixed; top: 0; right: 0; bottom: 0; width: 4px; background: rgba(255, 255, 255, .05); z-index: 90; }
.au-rail > div { width: 100%; height: 0; background: linear-gradient(180deg, #8B7CFF, #55E0FF); }
body.aurora-reader.au-bg-paper .au-rail { background: rgba(0, 0, 0, .07); }

/* floating top pill */
.au-topbar { position: fixed; top: 16px; left: 50%; z-index: 80; transform: translate(-50%, 0); transition: transform .28s ease, opacity .28s; display: flex; align-items: center; gap: 12px; background: rgba(16, 16, 26, .88); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(255, 255, 255, .1); border-radius: 999px; padding: 8px 8px 8px 18px; box-shadow: 0 16px 44px -12px rgba(0, 0, 0, .8); max-width: min(94vw, 640px); }
.au-topbar.au-hidden { transform: translate(-50%, -140%); opacity: 0; pointer-events: none; }
.au-topbar .sep { width: 1px; height: 18px; background: rgba(255, 255, 255, .12); flex: none; }
.au-topbar .back { background: none; border: 0; color: #A9A9C0 !important; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 13px; cursor: pointer; padding: 4px 0; white-space: nowrap; }
.au-topbar .back:hover { color: #8B7CFF !important; }
.au-topbar .name { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.au-topbar .name .ch { color: #8B7CFF; font-family: 'JetBrains Mono', monospace; font-size: 12px; }
.au-topbar .pct { font-family: 'JetBrains Mono', monospace; font-size: 11.5px; color: #63637A; white-space: nowrap; }
.au-topbar .rbtn { background: rgba(255, 255, 255, .06); border: 0; color: #A9A9C0; border-radius: 999px; padding: 8px 14px; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 12px; cursor: pointer; flex: none; }
.au-topbar .rbtn:hover { color: #8B7CFF; }

/* settings popover */
.au-settings { position: fixed; top: 74px; left: 50%; transform: translateX(-50%); z-index: 85; background: rgba(16, 16, 26, .95); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, .12); border-radius: 18px; padding: 18px; width: 260px; box-shadow: 0 20px 50px -12px rgba(0, 0, 0, .9); animation: auFadeUp .2s ease both; display: none; }
.au-settings.open { display: block; }
.au-settings .grp { display: flex; gap: 6px; margin-bottom: 16px; }
.au-settings .grp:last-child { margin-bottom: 0; }
.au-settings .au-label { display: block; margin-bottom: 10px; }
.au-set-opt { flex: 1; padding: 9px 0; border-radius: 10px; border: 1px solid rgba(255, 255, 255, .1); background: rgba(10, 10, 18, .6); color: #A9A9C0; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 12px; cursor: pointer; }
.au-set-opt.active { border-color: #8B7CFF; background: rgba(139, 124, 255, .16); color: #8B7CFF; }

/* content column */
.au-reader-col { margin: 0 auto; max-width: min(100%, 900px); padding-top: 78px; }
.au-reader-col.w-sm { max-width: min(100%, 720px); }
.au-reader-col.w-fit { max-width: 100%; }
#chapter-content { min-height: 40vh; }
#chapter-content img { display: block; width: 100%; height: auto; margin: 0 auto; border: 0; background: rgba(255, 255, 255, .03); }

/* server chips + report row */
.au-server-row { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; padding: 14px 12px 4px; }
.au-server-row .au-tab { text-decoration: none; }

/* end-of-chapter block */
.au-endblock { padding: 56px 20px; text-align: center; }
.au-endblock .over { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: 3px; color: #63637A; margin-bottom: 10px; }
.au-endblock .title { font-weight: 700; font-size: 26px; letter-spacing: -.8px; color: #E9E9F2; margin-bottom: 22px; }
body.aurora-reader.au-bg-paper .au-endblock .title { color: #241E33; }
.au-endblock .acts { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* bottom pill */
.au-botbar { position: fixed; bottom: 20px; left: 50%; z-index: 80; transform: translate(-50%, 0); transition: transform .28s ease; display: flex; align-items: center; gap: 4px; background: rgba(16, 16, 26, .9); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(255, 255, 255, .1); border-radius: 999px; padding: 6px; box-shadow: 0 16px 40px -10px rgba(0, 0, 0, .8); }
.au-botbar.au-hidden { transform: translate(-50%, 150%); }
.au-botbar a, .au-botbar button { display: grid; place-items: center; border: 0; background: none; cursor: pointer; }
.au-botbar .nav { width: 42px; height: 42px; border-radius: 50%; color: #E9E9F2 !important; font-size: 15px; }
.au-botbar .nav:hover { background: rgba(255, 255, 255, .07); }
.au-botbar .nav.disabled { color: #3A3A4E !important; pointer-events: none; }
.au-botbar .nav.next-hl { background: linear-gradient(120deg, #8B7CFF, #55E0FF); color: #0A0A12 !important; }
.au-botbar .nav.next-hl:hover { transform: scale(1.06); }
.au-botbar .mid { height: 42px; border-radius: 999px; color: #E9E9F2 !important; font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 12.5px; padding: 0 16px; }
.au-botbar .mid:hover { background: rgba(255, 255, 255, .07); }

/* chapter drawer (existing #chapters markup restyled) */
body.aurora-reader #chapters.rd_sidebar { position: fixed; top: 0; right: 0; bottom: 0; left: auto; width: min(340px, 88vw); z-index: 95; background: rgba(16, 16, 26, .97); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-left: 1px solid rgba(255, 255, 255, .1); display: none; }
body.aurora-reader #chapters .rdtoggle_body { height: 100%; display: flex; flex-direction: column; overflow: hidden; }
body.aurora-reader #chapters .rd_sidebar-header { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-bottom: 1px solid rgba(255, 255, 255, .08); }
body.aurora-reader #chapters .rd_sidebar-header .img { flex: 0 0 42px; width: 42px; height: 58px; border-radius: 9px; background-size: cover !important; background-position: center !important; border: 1px solid rgba(255, 255, 255, .1); display: block; }
body.aurora-reader #chapters .rd_sidebar-name h5 { margin: 0; font-size: 14.5px; font-weight: 700; }
body.aurora-reader #chapters #chap_list { flex: 1; overflow-y: auto; padding: 10px; margin: 0; list-style: none; }
body.aurora-reader #chapters #chap_list li { border: 0; }
body.aurora-reader #chapters #chap_list li a { display: flex; align-items: center; padding: 11px 12px; border-radius: 11px; font-size: 13px; font-weight: 600; color: #C6C6D6; }
body.aurora-reader #chapters #chap_list li a:hover { background: rgba(255, 255, 255, .06); color: #E9E9F2; }
body.aurora-reader #chapters #chap_list li.current a { background: rgba(139, 124, 255, .15); color: #8B7CFF; }
body.aurora-reader .black-click { position: fixed; inset: 0; background: rgba(5, 5, 10, .6); z-index: 94; backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); display: none; }

/* comments card on dark reader */
.au-comments { max-width: 1024px; margin: 20px auto 0; padding: 0 14px; }
body.aurora-reader.au-bg-paper .au-comments { filter: none; }

/* ============================================================
   8. Legacy-layout pages (list / genre / search / ranking)
   Bootstrap-based markup kept; themed via body.aurora scope.
   ============================================================ */
body.aurora .main-wrapper { position: relative; z-index: 1; }

/* breadcrumb strip */
body.aurora .breadcrumb { background: transparent; padding: 12px 4px; margin: 0; }
body.aurora .breadcrumb li { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; }
body.aurora .breadcrumb li a { color: #63637A; }
body.aurora .breadcrumb li a:hover { color: #8B7CFF; }
body.aurora .breadcrumb li.active a { color: #8B7CFF; }

/* form controls (sort select, search inputs, selects) */
body.aurora .form-control,
body.aurora select.form-control {
  background: rgba(10, 10, 18, .6) !important;
  border: 1px solid rgba(255, 255, 255, .1) !important;
  color: #E9E9F2 !important;
  border-radius: 10px !important;
}
body.aurora .form-control:focus { border-color: #8B7CFF !important; box-shadow: 0 0 0 3px rgba(139, 124, 255, .18) !important; }
body.aurora select.form-control option { background: #12121D; color: #E9E9F2; }
body.aurora .input-group .btn,
body.aurora .btn.bg-main-color { background: linear-gradient(120deg, #8B7CFF, #6A5AE8) !important; color: #0A0A12 !important; border: 0 !important; font-weight: 700; border-radius: 0 10px 10px 0; }
body.aurora .btn-warning { background: linear-gradient(120deg, #8B7CFF, #6A5AE8) !important; border: 0 !important; color: #0A0A12 !important; font-weight: 700; border-radius: 10px; }
body.aurora .custom-control-label { color: #A9A9C0; }
body.aurora .custom-control-input:checked ~ .custom-control-label::before { background: #8B7CFF; border-color: #8B7CFF; }
body.aurora label { color: #8B8BA0; font-weight: 600; }

/* manga thumb grid items */
body.aurora .thumb-item-flow .thumb-wrapper { border-radius: 12px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .08); transition: border-color .18s, transform .18s; }
body.aurora .thumb-item-flow:hover .thumb-wrapper { border-color: #8B7CFF; transform: translateY(-3px); }
body.aurora .thumb-item-flow .series-title a { font-weight: 600; font-size: 13.5px; color: #E9E9F2; }
body.aurora .thumb-item-flow .series-title a:hover { color: #8B7CFF; }
body.aurora .thumb-detail .chapter-title a { color: #C6C6D6; font-size: 12px; }
body.aurora .manga-badge .badge-info { background: rgba(16, 16, 26, .85) !important; color: #55E0FF !important; font-family: 'JetBrains Mono', monospace; font-size: 9.5px; border: 1px solid rgba(85, 224, 255, .3); }
body.aurora .manga-badge .badge-danger { background: #E5464D !important; font-family: 'JetBrains Mono', monospace; font-size: 9.5px; }

/* pagination */
body.aurora .pagination_wrap { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; padding: 18px 0 4px; }
body.aurora .paging_item { font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 12px; color: #8B8BA0; background: rgba(10, 10, 18, .5); border: 1px solid rgba(255, 255, 255, .09); border-radius: 10px; padding: 8px 13px; }
body.aurora .paging_item:hover { border-color: #8B7CFF; color: #8B7CFF; }
body.aurora .paging_item.current { background: rgba(139, 124, 255, .18); border-color: #8B7CFF; color: #8B7CFF; }
body.aurora .paging_item.disabled { opacity: .35; pointer-events: none; }

/* genre filter list (sidebar) + search genre picker */
body.aurora .filter-type_item a { color: #A9A9C0; font-size: 12.5px; font-weight: 600; }
body.aurora .filter-type_item a:hover { color: #8B7CFF; }
body.aurora .search-gerne_item .genre_label { color: #A9A9C0; cursor: pointer; font-size: 13px; }
body.aurora .search-gerne_item .genre_label:hover { color: #8B7CFF; }
body.aurora .search-border-left { border-left: 1px solid rgba(255, 255, 255, .07); }
body.aurora .search-advance_toggle { color: #8B7CFF; font-weight: 600; }

/* user ranking page — aurora champion + rows (mirrors home rankings, avatar variant) */
.au-uchamp { flex: 1 1 280px; max-width: 380px; position: relative; border-radius: 18px; overflow: hidden; border: 1px solid rgba(85, 224, 255, .4); background: linear-gradient(160deg, rgba(85, 224, 255, .1), rgba(139, 124, 255, .06) 55%, rgba(10, 10, 18, .5)); padding: 22px; display: flex; flex-direction: column; color: #E9E9F2 !important; transition: transform .18s; }
.au-uchamp:hover { transform: translateY(-4px); color: #E9E9F2 !important; }
.au-uchamp .ava { flex: 0 0 92px; width: 92px; height: 92px; border-radius: 16px; background-size: cover; background-position: center; background-color: #191926; border: 1px solid rgba(255, 255, 255, .14); box-shadow: 0 14px 34px -10px rgba(85, 224, 255, .35); }
.au-uchamp .ach { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: #A9A9C0; }
.au-uchamp .ach img { border-radius: 4px; }
.au-rank-ava { flex: 0 0 40px; width: 40px; height: 40px; border-radius: 11px; background-size: cover; background-position: center; background-color: #191926; border: 1px solid rgba(255, 255, 255, .09); position: relative; }
.au-rank-ach { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; color: #63637A; }
.au-rank-ach img { border-radius: 3px; }

/* history page — Vue <manga-history> + generic legacy cards */
body.aurora .card:not(.card-dark) { background: rgba(255, 255, 255, .035) !important; border: 1px solid rgba(255, 255, 255, .09); border-radius: 20px; color: #E9E9F2; box-shadow: none; }
body.aurora .card:not(.card-dark) .card-header { background: transparent; border-bottom: 1px solid rgba(255, 255, 255, .07); }
body.aurora .card:not(.card-dark) .card-title { color: #55E0FF; font-weight: 700; }
body.aurora .table { color: #C6C6D6; }
body.aurora .table td, body.aurora .table th { border-color: rgba(255, 255, 255, .07); }
body.aurora .table thead th { color: #63637A; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; border-bottom: 1px solid rgba(255, 255, 255, .1); }
body.aurora .table-hover tbody tr:hover { background: rgba(139, 124, 255, .06); color: #E9E9F2; }
body.aurora .others-list li { border-color: rgba(255, 255, 255, .06); }
body.aurora .page-item .page-link { background: rgba(10, 10, 18, .5); border: 1px solid rgba(255, 255, 255, .09); color: #8B8BA0; }
body.aurora .page-item.active .page-link { background: rgba(139, 124, 255, .18); border-color: #8B7CFF; color: #8B7CFF; }
body.aurora .btn-danger, body.aurora .btn-primary { border-radius: 10px; }

/* ============================================================
   9. Responsive
   ============================================================ */
@media (max-width: 991.98px) {
  .au-dock { display: none; }
  .au-wrap { padding: 18px 12px 70px; }
}
@media (max-width: 767.98px) {
  .au-hero-inner { gap: 18px; padding: 20px 16px 16px; }
  .au-deck { flex: 0 0 150px; height: 210px; }
  .au-deck-card { width: 128px; left: 12px; }
  .au-card { padding: 18px; border-radius: 16px; }
  .au-bento-cover { max-width: 46vw; }
  .au-bento-hero { padding: 20px; }
  .au-chgrid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .au-topbar { max-width: 96vw; gap: 8px; padding-left: 12px; }
  .au-topbar .pct { display: none; }
  .au-rank-tabs { margin-left: 0; }
}
