html, body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  background: #000;
}

/* 검정 여백 유지 */
#stage{
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

/* 2420×1668 영역(스케일 대상) */
#wrap{
  width: 2420px;
  height: 1668px;
  transform-origin: center center;
  position: relative;
}

/* iframe */
#frame{
  width: 2420px;
  height: 1668px;
  border: 0;
  display: block;
  background: #000;
}

/* ✅ 흰색 디졸브는 콘텐츠(2420×1668) 안에서만 */
#veil{
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
  z-index: 50;
}

/* =========================
   Bottom UI (inside 2420×1668)
   ========================= */
#btmBar{
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 0;

  /* ✅ 여백/라운드 제거(밀착) */
  padding: 0;
  border-radius: 0;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.25);
}

#btmLeft{
  display: flex;
  align-items: center;

  /* ✅ 높이/두께 줄이기 */
  gap: 12px;
  padding: 8px 14px;

  color: #fff;
  white-space: nowrap;
}

/* 텍스트 */
#btmTitle{
  font-size: 28px;   /* 필요하면 여기만 조절 */
  line-height: 1.1;
  font-weight: 300;
}

#btmCount{
   font-size: 28px;
  line-height: 1.1;
  font-weight: 300;
  opacity: .9;
}

#btmSep{
  display:none;
}

/* 버튼 영역 */
#btmBtns{
  display: flex;
  align-items: center;

  /* ✅ 버튼 영역도 얇게 */
  gap: 0;
  padding: 5px 20px;
}

/* 아이콘 버튼 */
button.ico{
  /* ✅ 버튼 크기 줄여서 간격 좁히기 */
  width: 45px;
  height: 45px;

  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

button.ico::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

/* 비활성(없을 때 30%) */
button.ico.is-disabled{
  opacity: .3;
  cursor: default;
}

/* 아이콘(파일이 아닌 “inline svg”를 js에서 주입할 거라 여기서는 비워둠) */
