/* ================================
   GPTube MVP 공통 스타일 (초기화 + 레이아웃)
   2025-11-27 전체 교체본
   ================================ */

/* 기본 리셋 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Noto Sans KR", sans-serif;
  background: radial-gradient(circle at top, #1b2740 0, #050814 55%, #02030a 100%);
  color: #ffffff;
  line-height: 1.5;
}

/* 스크롤바 */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #2f3d5a;
  border-radius: 4px;
}

/* 전체 페이지 */
.page-root {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 16px 40px;
}

/* 헤더 */
.app-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.app-subtitle {
  font-size: 13px;
  color: #9fb0d8;
  margin-top: 4px;
}

/* 방 코드 / 상태 */
.room-top {
  margin: 16px 0;
  padding: 14px 18px;
  background: rgba(8, 15, 32, 0.96);
  border-radius: 18px;
  border: 1px solid rgba(90, 112, 185, 0.55);
}
.room-label {
  font-size: 13px;
  color: #97a6cf;
}
.room-status {
  margin-top: 6px;
  font-size: 12px;
  color: #9aa7d3;
}

/* 버튼 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  gap: 6px;
  transition: .1s ease;
}
.btn-primary {
  background: #ff7a3c;
  color: #10121b;
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(141, 161, 221, 0.9);
  color: #e2e7ff;
}

/* ===== 영상 카드 공통 ===== */
.section-card {
  background: rgba(5, 11, 28, 0.98);
  border-radius: 18px;
  padding: 14px 16px 16px;
  border: 1px solid rgba(76, 105, 187, 0.9);
  box-shadow: 0 16px 30px rgba(0,0,0,0.55);
}
.section-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

.video-box {
  position: relative;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid rgba(104,140,227,0.8);
}
.video-box video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.video-overlay-label {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  background: rgba(3,11,37,0.85);
  border: 1px solid rgba(158,188,255,0.8);
}

/* ===== 핵심: 영상 레이아웃 분할 섹션 ===== */
.video-layout {
  display: flex;
  flex-direction: column;  /* 기본: 세로 분할 */
  gap: 18px;
}

/* 노트북 & 태블릿 가로 모드: 좌우 분할 */
@media screen and (min-width: 900px) {
  .video-layout {
    flex-direction: row !important;    /* 가로 정렬 */
    justify-content: center;
    align-items: stretch;
  }

  .video-layout .section-card {
    flex: 1 1 0;
  }
}

/* 모바일 세로에서는 세로 유지 */
@media screen and (max-width: 899px) and (orientation: portrait) {
  .video-box {
    min-height: 220px;
  }
}

/* 로그 / 채팅 */
.log-panel {
  margin-top: 16px;
  padding: 10px 13px;
  background: rgba(4, 9, 24, 0.96);
  border-radius: 16px;
  border: 1px solid rgba(73, 97, 166, 0.9);
  font-size: 12px;
  max-height: 220px;
  overflow-y: auto;
}

/* ===== 핵심: 영상 레이아웃 분할 섹션 ===== */
.video-layout {
  display: flex;
  flex-direction: column;  /* 기본: 세로 분할 */
  gap: 18px;
}

/* 화면 폭이 600px 이상이면 무조건 좌우 분할 */
@media screen and (min-width: 600px) {
  .video-layout {
    flex-direction: row !important;    /* 가로 정렬 */
    justify-content: center;
    align-items: stretch;
  }

  .video-layout .section-card {
    flex: 1 1 0;
  }
}
/* 채팅 입력창 넓게 / 키우기 */
.chat-form {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

#chatInput {
  flex: 1 1 auto;
  padding: 14px 16px;
  font-size: 20px;
  border-radius: 12px;
  border: 1px solid rgba(140, 160, 200, 0.8);
  background: rgba(0, 0, 0, 0.35);
  color: white;
}

.chat-form button {
  padding: 10px 18px;
  font-size: 18px;
  border-radius: 12px;
  white-space: nowrap;
}
.room-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}
.room-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}
/* 방 코드 + 버튼 한 줄 전체 */
.room-row {
  display: flex;
  flex-wrap: wrap;   /* 화면이 좁으면 아래 줄로 자연스럽게 내려가게 */
  gap: 8px;
  align-items: center;
}

/* 방 입장 / 퇴장 버튼을 서로 나란히 */
.room-actions {
  display: flex;
  gap: 8px;
}
