.heatScene{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}
@media(min-width:900px){
  .heatScene{
    grid-template-columns: 1.1fr .9fr;
    align-items:center;
  }
}

/* glass container */
.glass{
  position:relative;
  width:260px;
  height:340px;
  margin:0 auto;
  border-radius: 26px 26px 22px 22px;
  border:2px solid rgba(15,23,42,.18);
  background: rgba(255,255,255,.65);
  overflow:hidden;
  box-shadow: 0 18px 40px rgba(15,23,42,.12);
}

.glassRim{
  position:absolute;
  top:10px; left:16px; right:16px;
  height:10px;
  border-radius:999px;
  background: rgba(15,23,42,.08);
}

.water{
  position:absolute;
  left:0; right:0;
  bottom:0;
  height:62%;
  background: linear-gradient(
    to top,
    rgba(59,130,246,.42),
    rgba(147,197,253,.28)
  );
}

.waterShine{
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.30), transparent 60%);
  pointer-events:none;
}

/* temp inside glass */
.tempInGlass{
  position:absolute;
  left:14px;
  top:16px;
  padding:10px 12px;
  border-radius:14px;
  background: rgba(255,255,255,.58);
  border:1px solid rgba(15,23,42,.12);
  box-shadow: 0 10px 20px rgba(15,23,42,.08);
  backdrop-filter: blur(4px);
}

.tempLabel{
  font-size:11px;
  font-weight:1000;
  color:#334155;
  opacity:.9;
}
.tempValue{
  font-size:18px;
  font-weight:1000;
}

/* kalburo rocks group */
.kalburo{
  position:absolute;
  top:34px;
  right:18px;
  width:120px;
  height:140px;
  pointer-events:none;
  transform: translateY(0);
  transition: transform .9s cubic-bezier(.2,.9,.2,1);
}
.kalburo.drop{
  transform: translateY(140px);
}

.rock{
  position:absolute;
  width:26px;
  height:20px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(71,85,105,.95), rgba(148,163,184,.85));
  border:1px solid rgba(15,23,42,.16);
  box-shadow: 0 10px 18px rgba(15,23,42,.12);
}
.r1{ left:8px; top:10px; transform: rotate(-12deg); }
.r2{ left:48px; top:18px; transform: rotate(10deg); }
.r3{ left:22px; top:48px; transform: rotate(-6deg); }
.r4{ left:60px; top:56px; transform: rotate(14deg); }

/* bubble field */
.bubbleField{
  position:absolute;
  inset:0;
  pointer-events:none;
}
.bub{
  position:absolute;
  bottom:10px;
  width:10px;
  height:10px;
  border-radius:999px;
  background: rgba(255,255,255,.92);
  animation: rise 1.9s ease-out forwards;
}
@keyframes rise{
  from{ transform: translateY(0) scale(.8); opacity:1; }
  to{ transform: translateY(-160px) scale(1.4); opacity:0; }
}

/* steam */
.steam{
  position:absolute;
  inset:0;
  opacity:0;
  pointer-events:none;
  transition: opacity .25s ease;
}
.steam.active{ opacity:1; }

.steam::before,
.steam::after{
  content:"";
  position:absolute;
  left:0; right:0;
  height:120px;
  top:20px;
  background:
    radial-gradient(circle at 20% 70%, rgba(255,255,255,.45), transparent 55%),
    radial-gradient(circle at 55% 40%, rgba(255,255,255,.38), transparent 60%),
    radial-gradient(circle at 80% 60%, rgba(255,255,255,.42), transparent 55%);
  filter: blur(1px);
  animation: steamMove 2.2s ease-in-out infinite;
}
.steam::after{
  top:40px;
  opacity:.7;
  animation-duration: 2.6s;
}
@keyframes steamMove{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-12px); }
}

/* heat glow overlay */
.heatGlow{
  position:absolute;
  inset:-30px;
  opacity:0;
  pointer-events:none;
  transition: opacity .25s ease;
  background: radial-gradient(circle at 55% 70%, rgba(251,191,36,.0), transparent 60%);
}
.heatGlow.hot{
  opacity:1;
  background: radial-gradient(circle at 55% 70%, rgba(251,191,36,.25), transparent 62%);
}

/* readouts right */
.readouts{
  border-radius:16px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.65);
  padding:14px;
  box-shadow: 0 16px 34px rgba(15,23,42,.10);
}

.readTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}

.badgeHeat{
  padding:8px 12px;
  border-radius:999px;
  font-weight:1000;
  font-size:12px;
  background: rgba(59,130,246,.14);
  color:#1d4ed8;
  border:1px solid rgba(59,130,246,.18);
}
.badgeHeat.warm{
  background: rgba(251,191,36,.18);
  color:#92400e;
  border-color: rgba(251,191,36,.22);
}
.badgeHeat.hot{
  background: rgba(239,68,68,.16);
  color:#991b1b;
  border-color: rgba(239,68,68,.22);
}

.legend{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:12px;
  font-size:12px;
  color: var(--rr-muted);
  font-weight:900;
}

/* info box same style pattern */
.infoBox{
  margin-top:14px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.7);
  padding:10px 12px;
}
.infoRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:6px 0;
  border-bottom:1px dashed rgba(15,23,42,.10);
}
.infoRow:last-child{ border-bottom:0; }

.tag{
  font-size:12px;
  font-weight:1000;
  color:#334155;
  background: rgba(15,23,42,.05);
  border:1px solid rgba(15,23,42,.08);
  padding:6px 10px;
  border-radius:999px;
}
.val{
  font-size:13px;
  color: var(--rr-muted);
  font-weight:800;
}
