/* 색깔 정리 — 형제 게임들의 헤더·푸터·오버레이 구조를 그대로 쓰고, 판만 갈았다. */
:root {
  --bg-top: #232a4a;
  --bg-bottom: #10142a;
  --pill: #d5dcf5;
  --pill-ink: #2a3050;
  --ink: #e6eaff;
  --dim: #9aa3cc;
  --accent: #8fa0ff;

  /* 색상환에서 최대한 벌리고 **명도도 서로 다르게** 잡았다.
     (무늬는 유저 요청으로 뺐다 — 색과 명도만으로 간다.) */
  --c0: #ff6b6b;
  --c1: #4dd2ff;
  --c2: #ffd93d;
  --c3: #7bed9f;
  --c4: #c77dff;
  --c5: #ff9f43;
  --c6: #5f7bff;
  --c7: #ff7ac6;
  --c8: #2ec4b6;
  --c9: #f4f1de;
  --c10: #9c6644;
  --c11: #b8ff5c;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  background-color: var(--bg-bottom);
  color: var(--ink);
  font: 700 16px/1.4 system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  overscroll-behavior: none;
  touch-action: manipulation;
}

body {
  display: flex;
  flex-direction: column;
  padding: env(safe-area-inset-top) 0 env(safe-area-inset-bottom);
  background-image: radial-gradient(120% 80% at 50% 0%, var(--bg-top), var(--bg-bottom) 70%);
}

/* 배경 그림은 배경색과 따로 선언한다 — 이 규칙이 통째로 실패해도 화면은 남는다. */
body {
  background-image:
    linear-gradient(rgba(16, 20, 42, .5), rgba(16, 20, 42, .78) 45%, rgba(16, 20, 42, .5)),
    url("../assets/bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

header {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: 1rem 1.2rem .4rem;
  color: var(--dim);
  font-variant-numeric: tabular-nums;
}
#level, #left, #tokens {
  padding: .4rem .8rem;
  border-radius: 999px;
  background: rgba(213, 220, 245, .12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
  font-size: .85rem;
}
#level { color: var(--ink); }
#stars {
  flex-basis: 100%;
  margin-top: .3rem;
  color: #ffd76a;
  font-size: .78rem;
  font-weight: 600;
  text-align: center;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .8rem;
}

/* ---- 판: 통을 늘어놓는다. 개수가 5~16 으로 변해서 줄바꿈에 맡긴다 ---- */
#board {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: .7rem .5rem;
  width: min(94vw, 30rem);
  /* 한 줄에 몇 개를 놓을지는 app.js 가 통 개수를 보고 정한다.
     고정 폭으로 두면 5통 레벨에서 통이 쓸데없이 작아진다. */
  --per-row: 7;
  padding: .4rem;
  transition: transform .25s;
}
#board.cleared { transform: scale(1.04); }

.tube {
  position: relative;
  /* 통 하나의 폭 — 한 줄에 --per-row 개가 들어가게 나눈다. */
  --w: min(calc((92vw - .5rem * (var(--per-row) - 1)) / var(--per-row)), 4.4rem);
  width: var(--w);
  /* 높이는 스프라이트 비율(224x544)을 그대로 따른다. 안 맞추면 유리 테두리 타원이 눌린다. */
  height: calc(var(--w) * 2.43);
  border: 0;
  padding: 0;
  background: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transform-origin: 50% 88%; /* 부을 때 통이 기우는 축 */
  transition: transform .12s;
}
.tube.picked { transform: translateY(-.5rem); }
.tube.pouring {
  transition: none; /* 옮기는 애니메이션과 싸우지 않게 */
  z-index: 4; /* 다른 병 위로 지나가야 한다 */
}

/* 유리 반사는 그림 한 장을 통 위에 덮어 쓴다. 없으면 아래 .liquid 만으로도 통은 보인다.
   screen 합성이라 **밝은 부분만 얹힌다** — 어두운 유리 몸통이 칸 색을 탁하게 만들지 않는다. */
.glass {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: .9;
  z-index: 2;
}

/* 색이 담기는 **유리 안쪽** 영역. 숫자는 scripts/make-art.py 가 스프라이트를 재서 찍어 준다
   (몸통 가로 8.5~91.0% · 세로 8.3~70.4%). 여기에 벽 두께와 둥근 바닥만큼을 더 물렸다.
   눈대중으로 맞추면 색이 유리 밖으로 삐져나온다 — 실제로 그렇게 나왔다. */
.liquid {
  position: absolute;
  inset: 12% 14.5% 3.5% 14.5%;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.cell {
  flex: 1;
  border-radius: .12rem;
  transition: transform .12s;
}
.cell.filled {
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .22), inset 0 2px 0 rgba(255, 255, 255, .3);
}
/* 맨 아래 칸만 통 바닥을 따라 둥글게 */
.liquid .cell:last-child.filled { border-radius: .12rem .12rem 48% 48% / .12rem .12rem 40% 40%; }
/* 고른 통의 맨 위 덩어리가 떠오른다 — 무엇이 옮겨질지 보여 준다 */
.cell.lift { transform: translateY(-.3rem); }

.tube.done .liquid { filter: drop-shadow(0 0 .35rem rgba(255, 215, 106, .75)); }

/* 색만 쓴다. 명도가 서로 달라 흑백으로 봐도 어느 정도는 갈린다.
   (무늬는 유저 요청으로 뺐다.) */
.c0 { background-color: var(--c0); }
.c1 { background-color: var(--c1); }
.c2 { background-color: var(--c2); }
.c3 { background-color: var(--c3); }
.c4 { background-color: var(--c4); }
.c5 { background-color: var(--c5); }
.c6 { background-color: var(--c6); }
.c7 { background-color: var(--c7); }
.c8 { background-color: var(--c8); }
.c9 { background-color: var(--c9); }
.c10 { background-color: var(--c10); }
.c11 { background-color: var(--c11); }

/* 부어지는 물줄기. 판 위에 겹쳐 그린다. */
#board { position: relative; }
.pour {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 3;
}
.pour path {
  fill: none;
  stroke-linecap: round;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .45));
}

#tip {
  color: var(--dim);
  font-size: .88rem;
  font-weight: 600;
  text-align: center;
  padding: 0 1.5rem;
  min-height: 2.6em;
}
#tip.warn { color: #ffb27a; }

footer {
  display: flex;
  gap: .6rem;
  padding: .8rem 1.2rem 1.4rem;
}
footer button {
  flex: 1;
  padding: .9rem 0;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #eef1ff, var(--pill));
  color: var(--pill-ink);
  font: inherit;
  font-size: .88rem;
  cursor: pointer;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, .9), inset 0 -3px 0 #adb6dd, 0 3px 6px rgba(0, 0, 0, .35);
}
footer button:disabled { opacity: .3; cursor: default; }
footer button:active:not(:disabled) {
  transform: translateY(2px);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, .9), inset 0 -1px 0 #adb6dd;
}

/* ---- 설명 오버레이 (형제 게임들과 공통 구조) ---- */
#help-open {
  padding: .4rem .7rem;
  border: 0;
  border-radius: 999px;
  background: rgba(213, 220, 245, .12);
  color: var(--dim);
  font: inherit;
  font-size: .85rem;
  cursor: pointer;
}
.overlay {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
  background: rgba(6, 9, 22, .82);
}
.overlay[hidden] { display: none; }
.sheet {
  width: 100%;
  max-width: 22rem;
  max-height: 100%;
  overflow-y: auto;
  background: linear-gradient(180deg, #2a3157, #1b2140);
  border-radius: 1.4rem;
  padding: 1.5rem 1.3rem;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, .12), 0 1rem 2rem rgba(0, 0, 0, .5);
}
.sheet h1 { font-size: 1.15rem; margin-bottom: 1rem; color: var(--ink); }
.sheet > div {
  background: rgba(0, 0, 0, .28);
  border-radius: .9rem;
  padding: .6rem;
}
.sheet ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--dim);
  margin: 1.1rem 0 1.3rem;
}
.sheet li b { color: var(--ink); }
.sheet button {
  width: 100%;
  padding: .95rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #c3ccff, var(--accent));
  color: #171c38;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, .8), inset 0 -3px 0 #6474d8;
}
.sheet button.ghost {
  margin-bottom: .6rem;
  background: linear-gradient(180deg, #eef1ff, var(--pill));
  color: var(--pill-ink);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, .9), inset 0 -3px 0 #adb6dd;
}
.sheet button.ghost[hidden] { display: none; }

.result-sheet { text-align: center; }
.result-sheet h1 { margin-bottom: .35rem; }
#result-stars {
  color: #ffd76a;
  font-size: 2.4rem;
  letter-spacing: .18rem;
  text-shadow: 0 0 1.2rem rgba(255, 215, 106, .55);
}
#result-best {
  display: block;
  min-height: 1.4rem;
  margin: .2rem 0 .45rem;
  color: var(--accent);
  font-size: .86rem;
}
#result-summary {
  margin-bottom: 1.1rem;
  color: var(--dim);
  font-size: .9rem;
  font-weight: 600;
}

/* 세로 전용. 실제 앱은 AndroidManifest 의 screenOrientation="portrait" 로도 막는다. */
#rotate { display: none; }
@media (orientation: landscape) and (max-height: 520px) {
  header, main, footer, .overlay { display: none !important; }
  #rotate {
    display: flex;
    position: fixed;
    inset: 0;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: var(--dim);
    font-size: 1.05rem;
    line-height: 1.6;
  }
}

header, footer { width: 100%; max-width: 26rem; margin-inline: auto; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
