/* 겜유TV 전용 — 채팅창·게시판·사이드바 스타일 */

/* ── TV 페이지 공통 ─────────────────────────────────────────── */
.tv-page .ss-section {
  margin-bottom: 0;
}

/* 스트림 목록: 20개 노출 후 스크롤 */
.tv-page .ss-list {
  max-height: 1120px;
}

@media (max-width: 767px) {
  .tv-page .ss-list {
    max-height: 560px;
  }
}

/* ── 겜유Talk 채팅창 ─────────────────────────────────────────── */
.tv-chat {
  background: #0e1117;
  border: 1px solid #1e2535;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  height: 620px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .tv-chat { height: 400px; }
}

@media (max-width: 767px) {
  /* 모바일에서 JS가 .tv-chat을 .tv-page 안으로 이동한 뒤 간격 확보 */
  .tv-page > .tv-chat {
    margin-top: 12px;
    margin-bottom: 0;
  }
}

.tv-chat-hd {
  align-items: center;
  background: #111827;
  border-bottom: 1px solid #1e2535;
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  flex-shrink: 0;
}

.tv-chat-title {
  color: #48CFAD;
  font-size: 14px;
  font-weight: 700;
}

.tv-chat-status {
  font-size: 11px;
  margin-left: auto;
}

.tc-s-connected  { color: #48CFAD; }
.tc-s-connecting { color: #f6c90e; }
.tc-s-error      { color: #fc8181; }

.tv-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 10px;
  scrollbar-width: thin;
  scrollbar-color: #2a3548 transparent;
}

.tv-chat-body::-webkit-scrollbar       { width: 4px; }
.tv-chat-body::-webkit-scrollbar-track { background: transparent; }
.tv-chat-body::-webkit-scrollbar-thumb { background: #2a3548; border-radius: 2px; }

.tv-chat-msgs { display: flex; flex-direction: column; }

.tc-msg {
  font-size: 13px;
  line-height: 1.6;
  padding: 1px 0;
  word-break: break-all;
}

.tc-name {
  color: #48CFAD;
  font-weight: 600;
}

.tc-msg-me .tc-name { color: #6ee7c8; }

.tc-text { color: #ffffff; }

.tv-chat-ft {
  border-top: 1px solid #1e2535;
  flex-shrink: 0;
  padding: 8px 10px;
}

.tv-chat-input-row {
  display: flex;
  gap: 6px;
}

.tv-chat-input {
  background: #141923;
  border: 1px solid #2a3548;
  border-radius: 4px;
  color: #e2e8f0;
  flex: 1;
  font-size: 12px;
  min-width: 0;
  outline: none;
  padding: 6px 10px;
}

.tv-chat-input:focus { border-color: #48CFAD; }

.tv-chat-send-btn {
  background: #48CFAD;
  border: none;
  border-radius: 4px;
  color: #0a0f17;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  transition: background 0.15s;
}

.tv-chat-send-btn:hover { background: #37BC9B; }

.tv-chat-login {
  color: #6b7f94;
  font-size: 12px;
  text-align: center;
  padding: 4px 0;
}

.tv-chat-login a { color: #48CFAD; }
