/* ============================================================
   byeol — PC 전용 셸/씬 스타일. 모두 .by-pc-shell 하위 스코프 → 모바일(main.html) 무영향.
   토큰은 byeol-style.css :root 공용. PC = 유튜브형 상단네비 + 넓은 콘텐츠.
   ⚠️ #scene-area 는 프레임워크가 모바일용 position:fixed 로 잡음 → PC 는 흐름 배치로 override(§30).
   ============================================================ */

/* ── 셸 골격 ── */
.by-pc-shell{position:absolute;inset:0;display:flex;flex-direction:column;background:var(--bg-base);color:var(--text-primary);overflow:hidden;}
.by-pc-shell *{box-sizing:border-box;}

/* ── 상단 네비바 ── */
.by-pc-shell .pc-topbar{flex:0 0 auto;height:60px;display:flex;align-items:center;gap:24px;padding:0 24px;background:var(--bg-surface);border-bottom:1px solid var(--border);z-index:20;}
.by-pc-shell .pc-brand{display:flex;align-items:center;gap:8px;cursor:pointer;flex:0 0 auto;}
.by-pc-shell .pc-brand .logo{width:34px;height:34px;border-radius:10px;background:var(--accent);color:#fff;display:flex;align-items:center;justify-content:center;font-size:19px;}
.by-pc-shell .pc-brand .wm{font-size:20px;font-weight:800;letter-spacing:-.5px;}
.by-pc-shell .pc-tabs{display:flex;align-items:center;gap:4px;flex:1 1 auto;}
.by-pc-shell .pc-tab{display:flex;align-items:center;gap:7px;padding:9px 16px;border-radius:12px;font-size:15px;font-weight:600;color:var(--text-secondary);cursor:pointer;transition:background .15s,color .15s;}
.by-pc-shell .pc-tab iconify-icon{font-size:19px;}
.by-pc-shell .pc-tab:hover{background:var(--bg-elevated);color:var(--text-primary);}
.by-pc-shell .pc-tab.active{background:var(--accent-soft);color:var(--accent);font-weight:700;}
.by-pc-shell .pc-actions{display:flex;align-items:center;gap:12px;flex:0 0 auto;}
.by-pc-shell .pc-golive{display:flex;align-items:center;gap:7px;padding:9px 16px;border-radius:12px;background:var(--live);color:#fff;font-size:14px;font-weight:700;cursor:pointer;transition:filter .15s;}
.by-pc-shell .pc-golive:hover{filter:brightness(1.08);}
.by-pc-shell .pc-golive iconify-icon{font-size:18px;}
.by-pc-shell .pc-icon{position:relative;width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--text-secondary);cursor:pointer;transition:background .15s;}
.by-pc-shell .pc-icon:hover{background:var(--bg-elevated);color:var(--text-primary);}
.by-pc-shell .pc-icon iconify-icon{font-size:21px;}
.by-pc-shell .pc-icon .nbadge{position:absolute;top:4px;right:4px;min-width:16px;height:16px;padding:0 4px;border-radius:8px;background:var(--live);color:#fff;font-size:10px;font-weight:700;display:flex;align-items:center;justify-content:center;line-height:1;}
.by-pc-shell .pc-me{display:flex;align-items:center;gap:8px;padding:5px 12px 5px 5px;border-radius:22px;background:var(--bg-elevated);cursor:pointer;transition:filter .15s;}
.by-pc-shell .pc-me:hover{filter:brightness(1.1);}
.by-pc-shell .pc-av{width:32px;height:32px;border-radius:50%;background:var(--accent);color:#fff;display:flex;align-items:center;justify-content:center;font-size:16px;background-size:cover;background-position:center;flex:0 0 auto;}
.by-pc-shell .pc-av.has iconify-icon{display:none;}
.by-pc-shell .pc-me-t{font-size:14px;font-weight:600;max-width:120px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}

/* ── 콘텐츠 영역 (스크롤 스파인) ── */
.by-pc-shell .pc-main{flex:1 1 auto;min-height:0;position:relative;overflow:hidden;}

/* ⚠️ 프레임워크 #scene-area(모바일 position:fixed) → PC 흐름 배치로 되돌림 (§30). margin 리셋 필수. */
.by-pc-shell #scene-area{position:absolute !important;inset:0 !important;margin:0 !important;width:100% !important;height:100% !important;overflow:hidden !important;}
.by-pc-shell #scene-area > [include-scene]{position:absolute;inset:0;}

/* PC 씬 공통: 전면 씬은 절대배치 자식(플렉스 컬럼). 스크롤 씬은 내부 .pc-body 가 담당. */
.by-pc-shell .by-scene{width:100%;height:100%;}
.by-pc-shell #scene-area > [include-scene] > div{width:100%;height:100%;}   /* 씬 루트(.scene-room 등) 높이 채움 */
/* 🔥 모바일 GNB 여백 제거 — byeol-style §41(#scene-area>* padding-bottom:86px)+§44(.by-scene padding 104px)이
   PC 로 새서 height:100% 가 부모 content-box(840-86=754)로 축소 → 다시 -104 = 648 로 케이징됨. PC 는 full 높이 사용. */
.by-pc-shell #scene-area > *{padding-bottom:0 !important;}
.by-pc-shell .by-scene{padding:0 !important; gap:0 !important; min-height:0 !important;}

/* 🔥 전용 PC 씬이 없는 모바일 fallback 씬(채널/커뮤니티/합방/방송/관리)은 단일 컬럼이라 풀폭 스트레치가
   보기 나쁨 → 중앙 정렬 프레임(≈820px)으로 담고 세로 스크롤. 전용 PC 씬(home/room/my)은 미포함(풀폭 유지). */
.by-pc-shell #scene-area > [include-scene="hapbang"] > div,
.by-pc-shell #scene-area > [include-scene="broadcast"] > div,
.by-pc-shell #scene-area > [include-scene="manage"] > div{max-width:940px;margin:0 auto;overflow-y:auto;overflow-x:hidden;}

/* ── PC 커뮤니티 (좌 사이드바 내구독 + 우 피드 2열 매스너리) ── */
.by-pc-shell .cm-pc{height:100%;overflow-y:auto;overflow-x:hidden;background:var(--bg-base);}
.by-pc-shell .cm-pc-wrap{max-width:1100px;margin:0 auto;padding:0 28px 48px;}
.by-pc-shell .cm-pc .topbar{position:static;background:transparent;padding:18px 2px 10px;border:0;height:auto;}
.by-pc-shell .cm-pc .topbar .tt{font-size:24px;font-weight:800;}
.by-pc-shell .cm-pc-cols{display:grid;grid-template-columns:280px minmax(0,1fr);gap:26px;align-items:start;}
.by-pc-shell .cm-pc-side{position:sticky;top:8px;background:var(--bg-surface);border:1px solid var(--border);border-radius:16px;padding:16px 14px;}
.by-pc-shell .cm-side-h{display:flex;align-items:center;gap:6px;font-size:14px;font-weight:700;margin-bottom:10px;color:var(--text-secondary);padding:0 4px;}
.by-pc-shell .cm-side-h iconify-icon{font-size:15px;}
.by-pc-shell .cm-pc-side .story{display:flex;flex-direction:column;overflow:visible;gap:2px;padding:0;}
.by-pc-shell .cm-pc-side .story .st{flex-direction:row;align-items:center;gap:11px;width:100%;padding:8px;border-radius:10px;cursor:pointer;}
.by-pc-shell .cm-pc-side .story .st:hover{background:var(--bg-elevated);}
.by-pc-shell .cm-pc-side .story .st .ring{width:auto;height:auto;padding:2px;flex:0 0 auto;}
.by-pc-shell .cm-pc-side .story .st .a{width:42px;height:42px;}
.by-pc-shell .cm-pc-side .story .st .nm{font-size:13.5px;font-weight:600;max-width:none;text-align:left;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin-top:0;}
.by-pc-shell .cm-pc-main .by-feed{column-count:2;column-gap:18px;}
.by-pc-shell .cm-pc-main .by-feed .post{break-inside:avoid;margin:0 0 18px;display:inline-block;width:100%;box-sizing:border-box;}
.by-pc-shell .cm-pc-main .by-feed .by-empty,.by-pc-shell .cm-pc-main .by-feed > .by-loading{column-span:all;}
@media (max-width:920px){ .by-pc-shell .cm-pc-cols{grid-template-columns:1fr;} .by-pc-shell .cm-pc-main .by-feed{column-count:1;} }

/* ── PC 채널 페이지 (전용 2단: 헤더 풀폭 + 좌 일정/랭킹/멤버 · 우 소통) ── */
.by-pc-shell .ch-pc{height:100%;overflow-y:auto;overflow-x:hidden;background:var(--bg-base);}
.by-pc-shell .ch-pc-wrap{max-width:1200px;margin:0 auto;padding:0 28px 48px;}
.by-pc-shell .ch-pc .ch-top{display:flex;align-items:center;gap:12px;padding:16px 2px;position:static;background:transparent;border:0;}
.by-pc-shell .ch-pc .ch-top .bk{cursor:pointer;width:32px;height:32px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--text-secondary);}
.by-pc-shell .ch-pc .ch-top .bk:hover{background:var(--bg-elevated);}
.by-pc-shell .ch-pc .ch-top .ti{flex:1;font-size:15px;font-weight:700;color:var(--text-muted);}
.by-pc-shell .ch-pc .ch-top .ch-share{cursor:pointer;width:32px;height:32px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--text-secondary);}
.by-pc-shell .ch-pc .ch-top .ch-share:hover{background:var(--bg-elevated);}
/* hero */
.by-pc-shell .ch-pc-hero{border-radius:18px;overflow:hidden;background:var(--bg-surface);border:1px solid var(--border);margin-bottom:26px;}
.by-pc-shell .ch-pc-hero .ch-cover{height:210px;background-size:cover;background-position:center;background-color:var(--bg-elevated);}
.by-pc-shell .ch-pc-hero .ch-head{display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto auto;align-items:center;column-gap:18px;padding:16px 26px 22px;}
.by-pc-shell .ch-pc-hero .ch-head .av{grid-row:1/3;grid-column:1;width:96px;height:96px;border-radius:50%;margin-top:-58px;border:4px solid var(--bg-surface);background-size:cover;background-position:center;background-color:var(--accent);}
.by-pc-shell .ch-pc-hero .ch-head .nm{grid-row:1;grid-column:2;font-size:23px;font-weight:800;align-self:end;}
.by-pc-shell .ch-pc-hero .ch-head .meta{grid-row:2;grid-column:2;font-size:13.5px;color:var(--text-muted);align-self:start;margin-top:4px;}
.by-pc-shell .ch-pc-hero .ch-head .ch-btns{grid-row:1/3;grid-column:3;display:flex;gap:10px;}
.by-pc-shell .ch-pc-hero .ch-btns .b{padding:11px 22px;border-radius:12px;font-size:14px;font-weight:700;cursor:pointer;white-space:nowrap;}
.by-pc-shell .ch-pc-hero .ch-btns .b.sub{background:var(--accent);color:#fff;}
.by-pc-shell .ch-pc-hero .ch-btns .b.sub.on{background:var(--bg-elevated);color:var(--text-secondary);}
.by-pc-shell .ch-pc-hero .ch-btns .b.mem{background:var(--gold);color:#0E0B1A;}
/* 2 cols */
.by-pc-shell .ch-pc-cols{display:grid;grid-template-columns:380px minmax(0,1fr);gap:26px;align-items:start;}
.by-pc-shell .ch-pc-left,.by-pc-shell .ch-pc-right{min-width:0;}
.by-pc-shell .ch-pc .ch-sec{padding:0 0 12px;margin-top:8px;}
.by-pc-shell .ch-pc .ch-sec .h{font-size:15px;font-weight:700;padding:6px 2px 12px;}
.by-pc-shell .ch-pc-right .ch-sec:first-child{margin-top:0;}
@media (max-width:980px){ .by-pc-shell .ch-pc-cols{grid-template-columns:1fr;} }

/* ── 모드 전환 버튼(플로팅) — 모바일/PC 공용 위치, PC 는 상단바 밑 우측 ── */
#by-mode-switch{position:fixed;z-index:60;top:auto;left:auto;bottom:20px;right:20px;width:auto;height:auto;display:inline-flex;align-items:center;gap:6px;padding:10px 16px;border-radius:24px;background:var(--accent);color:#fff;font-size:13px;font-weight:700;cursor:pointer;box-shadow:0 6px 20px rgba(0,0,0,.3);}
#by-mode-switch iconify-icon{font-size:16px;}
#by-mode-switch:hover{filter:brightness(1.08);}

/* ── PC 우측 드로어(메뉴/폼) ── 프레임워크 right 패널의 slide transition 이 이 셸에서 중간(translateX~374px)에
   멈춰 드로어가 화면 밖으로 나가는 버그 → transition 끄고 자체 키프레임으로 확실히 도킹. (.right 는 PC 에서만 생성) */
#side-panel-area .side-panel-container.right{transition:none !important;box-shadow:-16px 0 40px rgba(0,0,0,.35);}
#side-panel-area .side-panel-container.right.show{transform:translateX(0) !important;animation:byPcDrawerIn .34s cubic-bezier(.22,.61,.36,1);}
@keyframes byPcDrawerIn{from{transform:translateX(100%);opacity:.5}to{transform:translateX(0);opacity:1}}

/* ── PC 홈: 라이브 카드 그리드 ── */
.by-pc-shell .pc-home{display:flex;flex-direction:column;height:100%;}
.by-pc-shell .pc-home .pc-hbody{flex:1 1 auto;min-height:0;overflow-y:auto;padding:28px 32px 60px;}
.by-pc-shell .pc-home .pc-hbody > *{max-width:1680px;margin-left:auto;margin-right:auto;}   /* 초광폭에서 그리드 과확산 방지(중앙) */
.by-pc-shell .pc-home .pc-hero{display:flex;align-items:center;justify-content:space-between;margin-bottom:24px;}
.by-pc-shell .pc-home .pc-hero h1{font-size:26px;font-weight:800;letter-spacing:-.6px;}
.by-pc-shell .pc-home .pc-hero .sub{font-size:14px;color:var(--text-muted);margin-top:4px;}
.by-pc-shell .pc-sec-label{font-size:15px;font-weight:700;margin:26px 0 14px;display:flex;align-items:center;gap:8px;}
.by-pc-shell .pc-sec-label .dot{width:8px;height:8px;border-radius:50%;background:var(--live);box-shadow:0 0 0 4px var(--accent-soft);}
.by-pc-shell .pc-chips{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:8px;}
.by-pc-shell .pc-chip{padding:8px 16px;border-radius:20px;background:var(--bg-elevated);color:var(--text-secondary);font-size:13.5px;font-weight:600;cursor:pointer;transition:background .15s,color .15s;}
.by-pc-shell .pc-chip:hover{color:var(--text-primary);}
.by-pc-shell .pc-chip.active{background:var(--accent);color:var(--on-accent);font-weight:700;}
.by-pc-shell .pc-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:20px 18px;}
.by-pc-shell .pc-card{cursor:pointer;display:flex;flex-direction:column;gap:10px;}
.by-pc-shell .pc-card .pc-thumb{position:relative;width:100%;aspect-ratio:16/9;border-radius:14px;overflow:hidden;background:var(--bg-elevated);background-size:cover;background-position:center;transition:transform .18s,box-shadow .18s;}
.by-pc-shell .pc-card:hover .pc-thumb,.by-pc-shell .pc-card:hover .pc-thumb{transform:translateY(-3px);box-shadow:0 10px 28px rgba(0,0,0,.35);}
.by-pc-shell .pc-card .pc-live{position:absolute;top:10px;left:10px;display:flex;align-items:center;gap:5px;padding:4px 9px;border-radius:7px;background:var(--live);color:#fff;font-size:11px;font-weight:800;}
.by-pc-shell .pc-card .pc-live .lv{width:6px;height:6px;border-radius:50%;background:#fff;animation:pcLivePulse 1.4s infinite;}
@keyframes pcLivePulse{0%,100%{opacity:1}50%{opacity:.3}}
.by-pc-shell .pc-card .pc-vw{position:absolute;bottom:10px;right:10px;display:flex;align-items:center;gap:4px;padding:3px 8px;border-radius:6px;background:rgba(0,0,0,.68);color:#fff;font-size:11px;font-weight:700;}
.by-pc-shell .pc-card .pc-cinfo{display:flex;gap:10px;align-items:flex-start;}
.by-pc-shell .pc-card .pc-cav{width:36px;height:36px;border-radius:50%;flex:0 0 auto;background:var(--accent);background-size:cover;background-position:center;}
.by-pc-shell .pc-card .pc-ctxt{min-width:0;flex:1;}
.by-pc-shell .pc-card .pc-ctit{font-size:14px;font-weight:700;line-height:1.35;max-height:2.7em;overflow:hidden;}
.by-pc-shell .pc-card .pc-cbj{font-size:12.5px;color:var(--text-muted);margin-top:3px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.by-pc-shell .pc-empty{padding:80px 20px;text-align:center;color:var(--text-muted);}
.by-pc-shell .pc-empty iconify-icon{font-size:46px;opacity:.5;display:block;margin:0 auto 14px;}

/* ── PC 방(room): 유튜브형. 세로영상=좌[영상]우[사이드], 가로영상=상[영상]하[사이드]. 동일 id 공유. ── */
.by-pc-shell .pc-room{display:flex;height:100%;min-height:0;background:#000;}
.by-pc-shell .pc-room .pr-stage{flex:1 1 auto;min-width:0;position:relative;background:#0a0812;overflow:hidden;}
/* 블러 백드롭(세로 영상 좌우 여백 채움) — 메인 영상과 같은 스트림, 뒤에 깔림 */
.by-pc-shell .pc-room .pr-stage .pr-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:blur(40px) brightness(.55) saturate(1.4);transform:scale(1.2);z-index:0;pointer-events:none;}
/* LIVE 뱃지 (영상 좌상단, 항상 표시) — 시청자수 포함 */
.by-pc-shell .pc-room .pr-stage .pr-livebadge{position:absolute;top:16px;left:16px;z-index:3;display:flex;align-items:center;gap:8px;padding:6px 12px;border-radius:20px;background:rgba(10,8,18,.6);backdrop-filter:blur(8px);color:#fff;font-size:12.5px;font-weight:800;letter-spacing:.3px;}
.by-pc-shell .pc-room .pr-stage .pr-livebadge .lbd{width:7px;height:7px;border-radius:50%;background:var(--live);box-shadow:0 0 0 3px rgba(255,61,113,.25);animation:pcLivePulse 1.4s infinite;}
.by-pc-shell .pc-room .pr-stage .pr-livebadge .lbv{display:flex;align-items:center;gap:4px;font-weight:700;opacity:.92;}
.by-pc-shell .pc-room .pr-stage .pr-livebadge .lbv iconify-icon{font-size:14px;}
.by-pc-shell .pc-room .pr-stage .room-video{position:absolute;inset:0;width:100%;height:100%;z-index:1;background-size:contain;background-repeat:no-repeat;background-position:center;background-color:transparent;}
.by-pc-shell .pc-room .pr-stage .room-video video,.by-pc-shell .pc-room .pr-stage .room-video canvas{width:100%;height:100%;object-fit:contain;background:transparent;position:relative;z-index:1;}
.by-pc-shell .pc-room .pr-side{position:relative;flex:0 0 372px;max-width:372px;display:flex;flex-direction:column;min-height:0;background:var(--bg-surface);border-left:1px solid var(--border);}
/* 좌측 스플리터 (드래그로 폭 조절) */
.by-pc-shell .pc-room .pr-splitter{position:absolute;left:-3px;top:0;width:7px;height:100%;cursor:col-resize;z-index:6;}
.by-pc-shell .pc-room .pr-splitter::before{content:'';position:absolute;left:2px;top:0;width:2px;height:100%;background:transparent;transition:background .15s;}
.by-pc-shell .pc-room .pr-splitter:hover::before{background:var(--accent);}
/* 가로영상: 영상 상단(꽉), 사이드 하단 컬럼 */
/* (가로영상 .land 상/하 전환 제거 — PC 는 영상 좌+채팅 우 공통, object-fit:contain 이 세로/가로 자동 적응) */
/* head */
.by-pc-shell .pc-room .pr-head{flex:0 0 auto;display:flex;align-items:center;gap:10px;padding:14px 16px;border-bottom:1px solid var(--border);}
.by-pc-shell .pc-room .pr-head .bj-chip{flex:1 1 auto;display:flex;align-items:center;gap:10px;min-width:0;}
.by-pc-shell .pc-room .pr-head .bj-chip .av{width:40px;height:40px;border-radius:50%;background:var(--accent);background-size:cover;background-position:center;flex:0 0 auto;}
.by-pc-shell .pc-room .pr-head .bj-meta{min-width:0;flex:1;}
.by-pc-shell .pc-room .pr-head .bj-meta .nm{font-size:15px;font-weight:700;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.by-pc-shell .pc-room .pr-head .bj-meta .fo{font-size:12px;color:var(--text-muted);}
.by-pc-shell .pc-room .pr-head .btn-follow{flex:0 0 auto;padding:7px 14px;border-radius:18px;background:var(--accent);color:#fff;font-size:13px;font-weight:700;cursor:pointer;}
.by-pc-shell .pc-room .pr-head .btn-follow.on{background:var(--bg-elevated);color:var(--text-secondary);}
.by-pc-shell .pc-room .pr-head .r-close{flex:0 0 auto;width:34px;height:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--text-secondary);cursor:pointer;}
.by-pc-shell .pc-room .pr-head .r-close:hover{background:var(--bg-elevated);}
/* ── 아코디언 (채팅/스탯/다른 방송). 항상 하나만 확장 → 전체 높이 사용. ── */
.by-pc-shell .pc-room .pr-acc{flex:1 1 auto;min-height:0;display:flex;flex-direction:column;}
.by-pc-shell .pc-room .pr-sec{display:flex;flex-direction:column;min-height:0;border-top:1px solid var(--border);}
.by-pc-shell .pc-room .pr-sec:not(.open){flex:0 0 auto;}
.by-pc-shell .pc-room .pr-sec.open{flex:1 1 auto;min-height:0;}
.by-pc-shell .pc-room .pr-sec-h{flex:0 0 auto;display:flex;align-items:center;gap:8px;padding:13px 16px;cursor:pointer;font-size:13.5px;font-weight:700;color:var(--text-secondary);user-select:none;}
.by-pc-shell .pc-room .pr-sec.open .pr-sec-h{color:var(--text-primary);}
.by-pc-shell .pc-room .pr-sec-h iconify-icon{font-size:17px;}
.by-pc-shell .pc-room .pr-sec-h .chev{margin-left:auto;font-size:16px;transition:transform .2s;}
.by-pc-shell .pc-room .pr-sec.open .pr-sec-h .chev{transform:rotate(180deg);}
.by-pc-shell .pc-room .pr-sec-b{display:none;flex:1 1 auto;min-height:0;}
.by-pc-shell .pc-room .pr-sec.open .pr-sec-b{display:flex;flex-direction:column;}
/* 채팅 섹션 본문 = 채팅(스크롤) + 입력바(하단 고정) */
.by-pc-shell .pc-room .pr-chatwrap{min-height:0;}
.by-pc-shell .pc-room .chat{position:static;flex:1 1 auto;min-height:0;max-height:none !important;overflow-y:auto;padding:12px 16px;display:flex;flex-direction:column;justify-content:flex-end;gap:8px;}   /* max-height:none = 모바일 .chat 40vh 캡(=327px) 누수 제거해 전체 채움. 하단 정렬. */
.by-pc-shell .pc-room .chat .msg{flex:0 0 auto;}
.by-pc-shell .pc-room .chat .msg.mfade{opacity:1;}   /* PC 사이드채팅은 페이드 안 함(로그 유지) */
.by-pc-shell .pc-room .room-bar{position:static;flex:0 0 auto;display:flex;align-items:center;gap:8px;padding:12px 16px;border-top:1px solid var(--border);background:var(--bg-surface);}
.by-pc-shell .pc-room .room-bar .chat-in{flex:1 1 auto;min-width:0;background:var(--bg-elevated);border:0;border-radius:20px;padding:11px 15px;color:var(--text-primary);font-size:14px;outline:none;}
.by-pc-shell .pc-room .room-bar .r-gift{flex:0 0 auto;width:42px;height:42px;border-radius:50%;background:var(--accent);color:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;}
.by-pc-shell .pc-room .room-bar .r-gift iconify-icon{font-size:20px;}
/* 스탯 섹션 본문 = 지표 + 후원 TOP */
.by-pc-shell .pc-room .pr-sec[data-sec="stats"] .pr-sec-b{overflow-y:auto;padding:2px 0 12px;}
.by-pc-shell .pc-room .pr-metrics{flex:0 0 auto;display:flex;align-items:center;gap:8px;padding:8px 16px 12px;flex-wrap:wrap;}
.by-pc-shell .pc-room .pr-metrics .pill-view{display:flex;align-items:center;gap:5px;padding:5px 10px;border-radius:14px;background:var(--bg-elevated);font-size:12.5px;font-weight:700;color:var(--text-secondary);}
.by-pc-shell .pc-room .pr-metrics .pill-view.star{color:var(--gold);}
.by-pc-shell .pc-room .pr-metrics .pill-view iconify-icon{font-size:14px;}
.by-pc-shell .pc-room .pr-metrics .rail-ic{width:34px;height:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--text-secondary);cursor:pointer;}
.by-pc-shell .pc-room .pr-metrics .rail-ic:first-of-type{margin-left:auto;}
.by-pc-shell .pc-room .pr-metrics .rail-ic:hover{background:var(--bg-elevated);}
/* 후원 TOP 랭킹 (3칸 항상, 빈칸=CTA) */
.by-pc-shell .pc-room .pr-rank-lbl{display:flex;align-items:center;gap:5px;font-size:12px;font-weight:700;color:var(--gold);padding:4px 16px 8px;}
.by-pc-shell .pc-room .pc-rank{display:flex;flex-direction:column;gap:7px;padding:0 16px;}
.by-pc-shell .pc-room .pcr-row{display:flex;align-items:center;gap:9px;padding:9px 11px;border-radius:11px;background:var(--bg-elevated);cursor:pointer;transition:filter .15s;}
.by-pc-shell .pc-room .pcr-row:hover{filter:brightness(1.08);}
.by-pc-shell .pc-room .pcr-medal{font-size:16px;flex:0 0 auto;width:22px;text-align:center;}
.by-pc-shell .pc-room .pcr-medal.dim{filter:grayscale(1) opacity(.5);}
.by-pc-shell .pc-room .pcr-av{width:28px;height:28px;border-radius:50%;flex:0 0 auto;background:var(--accent);background-size:cover;background-position:center;}
.by-pc-shell .pc-room .pcr-nm{flex:1;min-width:0;font-size:13.5px;font-weight:600;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.by-pc-shell .pc-room .pcr-amt{flex:0 0 auto;font-size:12.5px;font-weight:700;color:var(--gold);display:flex;align-items:center;gap:3px;}
.by-pc-shell .pc-room .pcr-row.empty{background:transparent;border:1px dashed var(--border);}
.by-pc-shell .pc-room .pcr-row.empty:hover{border-color:var(--accent);background:var(--accent-soft);}
.by-pc-shell .pc-room .pcr-cta{flex:1;font-size:12.5px;font-weight:600;color:var(--text-secondary);}
.by-pc-shell .pc-room .pcr-row.empty iconify-icon{font-size:16px;color:var(--accent);flex:0 0 auto;}
/* 채널 소식 섹션 (이 BJ 일정+소통글) */
.by-pc-shell .pc-room .pr-sec[data-sec="more"] .pr-sec-b{overflow-y:auto;}
.by-pc-shell .pc-room .pc-news{padding:8px 16px 14px;}
.by-pc-shell .pc-room .pcn-sec{margin-bottom:14px;}
.by-pc-shell .pc-room .pcn-h{display:flex;align-items:center;gap:6px;font-size:12px;font-weight:700;color:var(--text-secondary);margin-bottom:8px;}
.by-pc-shell .pc-room .pcn-h iconify-icon{font-size:15px;}
.by-pc-shell .pc-room .pcn-it{display:flex;align-items:center;gap:8px;padding:9px 11px;border-radius:10px;background:var(--bg-elevated);margin-bottom:6px;}
.by-pc-shell .pc-room .pcn-ti{flex:1;min-width:0;font-size:13px;font-weight:600;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.by-pc-shell .pc-room .pcn-dt{flex:0 0 auto;font-size:11.5px;color:var(--accent);font-weight:700;}
.by-pc-shell .pc-room .pcn-it.post .pcn-ti2{font-size:12.5px;color:var(--text-secondary);line-height:1.5;max-height:3em;overflow:hidden;}
.by-pc-shell .pc-room .pcn-empty{padding:14px;text-align:center;color:var(--text-muted);font-size:12.5px;background:var(--bg-elevated);border-radius:10px;}
.by-pc-shell .pc-room .pcn-cta{display:flex;align-items:center;justify-content:center;gap:6px;padding:11px;border-radius:11px;background:var(--accent-soft);color:var(--accent);font-size:13px;font-weight:700;cursor:pointer;margin-top:4px;}
.by-pc-shell .pc-room .pcn-cta:hover{filter:brightness(1.05);}

/* ── PC 마이: 2컬럼(좌 프로필/지갑/채널 · 우 활동/설정). 내부 컴포넌트는 모바일 스타일 재사용. ── */
.by-pc-shell .pc-my{overflow:hidden;}
.by-pc-shell .pc-my .pc-my-body{height:100%;overflow-y:auto;max-width:1080px;margin:0 auto;padding:28px 32px 48px;}
.by-pc-shell .pc-my .pc-my-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:20px;}
.by-pc-shell .pc-my .pc-my-head .tt{font-size:24px;font-weight:800;letter-spacing:-.5px;}
.by-pc-shell .pc-my .pc-my-cols{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.15fr);gap:32px;align-items:start;}
.by-pc-shell .pc-my .by-footer{margin-top:36px;}

@media (max-width:1023px){
  /* PC 셸이 좁아지면 그리드만 촘촘히(전환 버튼으로 모바일 유도) */
  .by-pc-shell .pc-grid{grid-template-columns:repeat(auto-fill,minmax(200px,1fr));}
  .by-pc-shell .pc-tab span{display:none;}
  .by-pc-shell .pc-my .pc-my-cols{grid-template-columns:1fr;}
}
