@charset "UTF-8";
/* 赛博霓虹主题 — 覆盖 comic-hall 视觉，不改功能结构 */

:root {
  --cyber-bg: #050a10;
  --cyber-panel: #0d1219;
  --cyber-panel-2: #111a24;
  --cyber-line: rgba(0, 229, 204, .14);
  --cyber-cyan: #00e5cc;
  --cyber-cyan-dim: rgba(0, 229, 204, .55);
  --cyber-pink: #ff4d6d;
  --cyber-pink-hot: #ff2d55;
  --cyber-text: #e8f4ff;
  --cyber-dim: rgba(200, 220, 240, .62);
  --cyber-dock-w: 64px;
  --hall-bg: var(--cyber-bg);
  --hall-panel: var(--cyber-panel-2);
  --hall-panel-2: var(--cyber-panel);
  --hall-line: var(--cyber-line);
  --hall-text: var(--cyber-text);
  --hall-dim: var(--cyber-dim);
  --hall-green: var(--cyber-cyan);
  --hall-red: var(--cyber-pink);
  --site-brand-color: var(--cyber-cyan);
  --site-brand-color-hover: #5fffe8;
}

html,
body:has(.cyber-dock),
body.p-cyber,
body.p-hall-index.p-cyber {
  background:
    url('../images/cyber/bg-grid.svg') repeat,
    radial-gradient(ellipse 80% 50% at 15% -10%, rgba(0, 229, 204, .12), transparent 50%),
    radial-gradient(ellipse 60% 40% at 95% 5%, rgba(255, 77, 109, .1), transparent 45%),
    var(--cyber-bg) !important;
  color: var(--cyber-text);
}

body:has(.cyber-dock),
body.p-cyber {
  padding-top: 72px;
  padding-left: var(--cyber-dock-w);
}

/* —— 左侧图标坞 —— */
.cyber-dock {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 10002;
  width: var(--cyber-dock-w);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 0;
  background: linear-gradient(180deg, #080d14 0%, #050a10 100%);
  border-right: 1px solid var(--cyber-line);
  box-shadow: 4px 0 24px rgba(0, 0, 0, .45);
}

.cyber-dock__logo {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  background: rgba(0, 229, 204, .08);
  border: 1px solid rgba(0, 229, 204, .35);
  overflow: hidden;
  transition: box-shadow .25s, border-color .25s;
}
.cyber-dock__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cyber-dock__logo:hover {
  border-color: var(--cyber-cyan);
  box-shadow: 0 0 16px rgba(0, 229, 204, .35);
}

.cyber-dock__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  padding: 0 8px;
}

.cyber-dock__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 auto;
  color: var(--cyber-dim);
  border-radius: 4px;
  transition: color .2s, background .2s, box-shadow .2s;
  text-decoration: none;
}

.cyber-dock__item .iconfont {
  font-size: 20px;
}

.cyber-dock__item:hover,
.cyber-dock__item.is-active {
  color: var(--cyber-cyan);
  background: rgba(0, 229, 204, .1);
  box-shadow: 0 0 16px rgba(0, 229, 204, .25);
}

.cyber-dock__item.is-active::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  width: 3px;
  height: 20px;
  margin-top: -10px;
  background: var(--cyber-pink);
  box-shadow: 0 0 8px var(--cyber-pink);
}

.cyber-dock__tip {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  padding: 4px 10px;
  font-size: 12px;
  white-space: nowrap;
  color: #fff;
  background: var(--cyber-panel-2);
  border: 1px solid var(--cyber-line);
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s;
  z-index: 10;
}

.cyber-dock__item:hover .cyber-dock__tip {
  opacity: 1;
}

.cyber-dock__foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  padding: 10px 8px 4px;
  border-top: 1px solid rgba(77, 220, 181, .12);
}

.cyber-dock__item--btn {
  border: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

.cyber-dock__item--btn:focus-visible {
  outline: 2px solid rgba(0, 229, 204, .45);
  outline-offset: 2px;
}

/* —— 顶栏赛博化 —— */
body:has(.cyber-dock) .in-header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10001;
  left: var(--cyber-dock-w);
  width: calc(100% - var(--cyber-dock-w));
  height: 72px;
  background: rgba(5, 10, 16, .92);
  border-bottom: 1px solid var(--cyber-line);
}

body:has(.cyber-dock) .container--response,
body:has(.cyber-dock) .in-header__wrap,
body.p-cyber .container--response,
body.p-cyber .in-header__wrap {
  width: 100%;
  max-width: none;
  min-width: 0;
  padding: 0 24px;
}

body:has(.cyber-dock) .in-header__logo-text,
body.p-cyber .in-header__logo-text {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: .06em;
  text-shadow: 0 0 20px rgba(0, 229, 204, .45);
}

body:has(.cyber-dock) .in-header__nav .nav-item,
body.p-cyber .in-header__nav .nav-item {
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
  border-radius: 0;
  background: rgba(255, 255, 255, .04);
  border: 1px solid transparent;
}

body:has(.cyber-dock) .in-header__nav .nav-item.active,
body:has(.cyber-dock) .in-header__nav .nav-item:hover,
body.p-cyber .in-header__nav .nav-item.active,
body.p-cyber .in-header__nav .nav-item:hover {
  background: linear-gradient(135deg, rgba(255, 77, 109, .9), rgba(255, 45, 85, .75));
  border-color: rgba(255, 77, 109, .5);
  box-shadow: 0 0 20px rgba(255, 77, 109, .35);
}

body:has(.cyber-dock) .in-header__search .input,
body.p-cyber .in-header__search .input {
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  border-radius: 0;
  border-color: rgba(0, 229, 204, .25);
  background: rgba(0, 229, 204, .06);
}

body:has(.cyber-dock) .in-header__search .button,
body.p-cyber .in-header__search .button {
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  border-radius: 0;
  background: linear-gradient(135deg, var(--cyber-cyan), #00b8a3);
  box-shadow: 0 0 16px rgba(0, 229, 204, .4);
}

/* —— 用户/创作者中心：与首页一致的顶栏留白与宽度 —— */
body.page-user,
body.p-author-index,
body.p-comic-info,
body.p-author-comic {
  padding-top: 72px;
}

body.page-user .in-header__wrap,
body.p-author-index .in-header__wrap,
body.p-comic-info .in-header__wrap,
body.p-author-comic .in-header__wrap {
  width: calc(100% - 76px) !important;
  max-width: calc(100vw - 76px);
  min-width: 0;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media screen and (min-width: 1256px) {
  body.page-user .in-header__wrap,
  body.p-author-index .in-header__wrap,
  body.p-comic-info .in-header__wrap,
  body.p-author-comic .in-header__wrap {
    min-width: 1180px;
  }
}

/* —— 主布局 —— */
body:has(.cyber-dock) .hall-shell,
body:has(.cyber-dock) .cyber-shell,
body.p-cyber .hall-shell,
body.p-cyber .cyber-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 20px;
  width: calc(100% - 48px);
  max-width: 1600px;
  margin: 20px auto 28px;
}

body:has(.cyber-dock) .hall-sidebar,
body.p-cyber .hall-sidebar {
  display: none;
}

/* —— 主推 Hero —— */
.cyber-hero.hall-hero {
  height: auto;
  min-height: 380px;
  overflow: hidden;
}

.cyber-hero.hall-hero:after {
  display: none;
}

.cyber-hero {
  position: relative;
  min-height: 380px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid var(--cyber-line);
  background: var(--cyber-panel-2);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

.cyber-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cyber-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.cyber-hero__glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    url('../images/cyber/hero-glow.svg') no-repeat center/cover,
    linear-gradient(105deg, rgba(5, 10, 16, .92) 0%, rgba(5, 10, 16, .55) 45%, rgba(5, 10, 16, .25) 100%);
  pointer-events: none;
}

.cyber-hero__body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 380px;
  padding: 32px 32px 40px;
}

.cyber-hero__badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 800;
  color: #050a10;
  background: var(--cyber-cyan);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  box-shadow: 0 0 14px rgba(0, 229, 204, .5);
}

.cyber-hero__title {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 0 30px rgba(0, 229, 204, .25);
}

.cyber-hero__desc {
  max-width: 520px;
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--cyber-dim);
}

.cyber-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.cyber-hero__tags span {
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--cyber-cyan-dim);
  border: 1px solid rgba(0, 229, 204, .3);
  background: rgba(0, 229, 204, .08);
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.cyber-hero__stats {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.cyber-hero__stat {
  font-size: 12px;
  color: var(--cyber-dim);
}

.cyber-hero__stat b {
  display: block;
  margin-top: 2px;
  font-size: 18px;
  font-weight: 900;
  color: var(--cyber-cyan);
}

.cyber-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
  padding-bottom: 2px;
}

.cyber-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 28px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  transition: transform .15s, box-shadow .15s;
}

.cyber-btn:hover {
  transform: translateY(-2px);
}

.cyber-btn--cyan {
  color: #050a10;
  background: linear-gradient(135deg, var(--cyber-cyan), #00c4ad);
  box-shadow: 0 0 24px rgba(0, 229, 204, .45);
}

.cyber-btn--pink {
  color: #fff;
  background: linear-gradient(135deg, var(--cyber-pink), var(--cyber-pink-hot));
  box-shadow: 0 0 24px rgba(255, 77, 109, .4);
}

.cyber-hero__cover {
  width: 200px;
  flex-shrink: 0;
  align-self: center;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  border: 2px solid rgba(0, 229, 204, .35);
  box-shadow: 0 0 40px rgba(0, 229, 204, .2);
}

.cyber-hero__cover img {
  width: 100%;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* —— 分类斜切条 —— */
.cyber-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  padding: 14px 16px;
  background: var(--cyber-panel-2);
  border: 1px solid var(--cyber-line);
}

.cyber-cats__label {
  flex: 0 0 100%;
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 800;
  color: var(--cyber-cyan);
  letter-spacing: .08em;
}

.cyber-cats a {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyber-dim);
  text-decoration: none;
  background: rgba(255, 255, 255, .04);
  border: 1px solid transparent;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: all .18s;
}

.cyber-cats a:hover,
.cyber-cats a.is-active {
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 77, 109, .85), rgba(255, 45, 85, .7));
  border-color: rgba(255, 77, 109, .5);
  box-shadow: 0 0 16px rgba(255, 77, 109, .3);
}

/* —— 编辑精选横滑卡片 —— */
.cyber-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cyber-section-head h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
}

.cyber-section-head h3::before {
  content: "// ";
  color: var(--cyber-pink);
}

.cyber-section-head .more {
  font-size: 13px;
  font-weight: 700;
  color: var(--cyber-cyan);
}

.cyber-card-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.cyber-card {
  position: relative;
  min-width: 0;
}

.cyber-card .cover {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3/4;
  clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
  border: 1px solid var(--cyber-line);
  transition: border-color .2s, box-shadow .2s;
}

.cyber-card .cover:hover {
  border-color: rgba(0, 229, 204, .5);
  box-shadow: 0 0 24px rgba(0, 229, 204, .2);
}

.cyber-card .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cyber-card .ribbon {
  position: absolute;
  top: 8px;
  left: 0;
  z-index: 2;
  padding: 2px 10px 2px 6px;
  font-size: 10px;
  font-weight: 900;
  color: #fff;
  background: var(--cyber-pink);
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.cyber-card .ribbon.is-new {
  background: var(--cyber-cyan);
  color: #050a10;
}

.cyber-card .score {
  position: absolute;
  right: 6px;
  bottom: 6px;
  z-index: 2;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 900;
  color: #050a10;
  background: var(--cyber-cyan);
  border-radius: 2px;
}

.cyber-card .comic__title {
  margin: 10px 0 4px;
  font-size: 14px;
  font-weight: 800;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.cyber-card .comic__title a {
  color: #fff;
}

.cyber-card .comic__feature {
  font-size: 12px;
  color: var(--cyber-dim);
}

/* —— 右侧 TOP10 —— */
.cyber-rank-panel {
  position: sticky;
  top: 88px;
  padding: 18px;
  background: var(--cyber-panel-2);
  border: 1px solid var(--cyber-line);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}

.cyber-rank-panel h3 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
}

.cyber-rank-panel h3 em {
  font-style: normal;
  color: var(--cyber-pink);
}

.cyber-rank-item {
  display: grid;
  grid-template-columns: 32px 48px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  text-decoration: none;
  color: inherit;
  transition: background .15s;
}

.cyber-rank-item:hover {
  background: rgba(0, 229, 204, .06);
}

.cyber-rank-item .num {
  font-size: 14px;
  font-weight: 900;
  color: var(--cyber-dim);
  font-variant-numeric: tabular-nums;
  min-width: 22px;
  text-align: center;
}

.cyber-rank-item .num--1 { color: var(--cyber-pink); text-shadow: 0 0 12px rgba(255, 77, 109, .6); }
.cyber-rank-item .num--2 { color: var(--cyber-cyan); }
.cyber-rank-item .num--3 { color: #ffc857; }

.cyber-rank-item .thumb {
  width: 48px;
  height: 64px;
  overflow: hidden;
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 92%);
  border: 1px solid var(--cyber-line);
}

.cyber-rank-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cyber-rank-item .info .name {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.cyber-rank-item .info .meta {
  font-size: 11px;
  color: var(--cyber-dim);
  margin-top: 2px;
}

.cyber-rank-item .heat {
  font-size: 11px;
  font-weight: 800;
  color: var(--cyber-pink);
  white-space: nowrap;
}

.cyber-rank-more {
  display: block;
  margin-top: 14px;
  padding: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--cyber-cyan);
  text-decoration: none;
  border: 1px dashed rgba(0, 229, 204, .35);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.cyber-rank-more:hover {
  background: rgba(0, 229, 204, .08);
}

/* —— 底部推广条（纯 CSS/SVG 设计，无图片） —— */
.cyber-promo {
  position: relative;
  margin: 8px auto 24px;
  max-width: 1600px;
  width: calc(100% - 48px);
  height: 112px;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 204, .2);
  background: #0a1018;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  box-shadow: 0 0 28px rgba(255, 77, 109, .1), inset 0 1px 0 rgba(0, 229, 204, .06);
}

.cyber-promo__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    url('../images/cyber/promo-bg.svg') repeat,
    linear-gradient(118deg, #0f1620 0%, #0a1018 55%, #121820 100%);
}

.cyber-promo__glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 55% 120% at 8% 50%, rgba(255, 77, 109, .22), transparent 70%),
    radial-gradient(ellipse 40% 100% at 92% 40%, rgba(0, 229, 204, .14), transparent 65%);
  pointer-events: none;
}

.cyber-promo__deco {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 38%;
  pointer-events: none;
  overflow: hidden;
}

.cyber-promo__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 204, .25);
}

.cyber-promo__ring--1 {
  right: -20px;
  top: 50%;
  width: 140px;
  height: 140px;
  margin-top: -70px;
  box-shadow: 0 0 24px rgba(0, 229, 204, .12);
}

.cyber-promo__ring--2 {
  right: 40px;
  top: 50%;
  width: 88px;
  height: 88px;
  margin-top: -44px;
  border-color: rgba(255, 77, 109, .35);
  box-shadow: 0 0 18px rgba(255, 77, 109, .15);
}

.cyber-promo__beam {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    -32deg,
    transparent,
    transparent 14px,
    rgba(0, 229, 204, .04) 14px,
    rgba(0, 229, 204, .04) 15px
  );
  mask-image: linear-gradient(90deg, transparent, #000 35%);
}

.cyber-promo__frame {
  position: absolute;
  inset: 6px 10px;
  z-index: 2;
  pointer-events: none;
  background: url('../images/cyber/promo-frame.svg') center/100% 100% no-repeat;
  opacity: .75;
}

.cyber-promo__content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 100%;
  padding: 0 40px;
}

.cyber-promo__text {
  flex: 1;
  min-width: 0;
}

.cyber-promo__tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 12px;
  font-size: 11px;
  font-weight: 800;
  color: var(--cyber-cyan);
  letter-spacing: .06em;
  border: 1px solid rgba(0, 229, 204, .35);
  background: rgba(0, 229, 204, .1);
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.cyber-promo__title {
  margin: 0;
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 900;
  line-height: 1.3;
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 229, 204, .12);
}

.cyber-promo__sub {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--cyber-dim);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.cyber-promo__cta {
  flex-shrink: 0;
  min-width: 132px;
  height: 44px;
  padding: 0 28px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.cyber-promo__cta::after {
  content: " ›";
  font-size: 17px;
}

@media screen and (max-width: 768px) {
  .cyber-promo {
    height: auto;
    min-height: 100px;
  }
  .cyber-promo__deco {
    width: 50%;
    opacity: .5;
  }
  .cyber-promo__content {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px;
    gap: 14px;
  }
  .cyber-promo__sub {
    white-space: normal;
  }
}

/* —— 下方区块统一赛博化 —— */
body:has(.cyber-dock) .in-sec-wr,
body.p-cyber .in-sec-wr {
  width: calc(100% - 48px);
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}

body:has(.cyber-dock) .in-sec__head span,
body.p-cyber .in-sec__head span {
  font-size: 20px;
  font-weight: 900;
}

body:has(.cyber-dock) .in-sec__head span::before,
body.p-cyber .in-sec__head span::before {
  content: "// ";
  color: var(--cyber-pink);
}

body:has(.cyber-dock) .in-comic--type-b .cover,
body.p-cyber .in-comic--type-b .cover {
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  border: 1px solid var(--cyber-line);
}

body:has(.cyber-dock) .in-rank-box .head span::before,
body.p-cyber .in-rank-box .head span::before {
  content: "// ";
  color: var(--cyber-cyan);
}

body:has(.cyber-dock) .footer-wrapper,
body.p-cyber .footer-wrapper {
  margin-left: 0;
  border-top: 1px solid var(--cyber-line);
}

body:has(.cyber-dock) .in-aside-handle,
body.p-cyber .in-aside-handle {
  right: 16px;
}

@media screen and (max-width: 1280px) {
  body:has(.cyber-dock) .hall-shell,
  body:has(.cyber-dock) .cyber-shell,
  body.p-cyber .hall-shell,
  body.p-cyber .cyber-shell {
    grid-template-columns: 1fr;
  }
  .cyber-rank-panel {
    position: static;
  }
  .cyber-card-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media screen and (max-width: 1024px) {
  .cyber-card-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .cyber-hero__body {
    grid-template-columns: 1fr;
  }
  .cyber-hero__cover {
    display: none;
  }
}
