/* === BOX BREATHING PAGE === */

/* Breathing visual */
.breathing-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
}

.box-visual {
  position: relative;
  width: 300px;
  height: 300px;
}

.box-visual svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Phase display */
.phase-display {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 68%;
  pointer-events: none;
}

.phase-name {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 4px;
  min-height: 2rem;
  transition: opacity 0.3s;
}

.phase-count {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--green-dark);
  line-height: 1;
  letter-spacing: -0.04em;
  min-height: 4rem;
}

.phase-hint {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 8px;
  height: 2.8rem;
  overflow: hidden;
  line-height: 1.4;
}

/* Cycle counter row */
.cycle-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.cycle-dot.active { background: var(--green-dark); }

/* Steps list (info section) */
.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.steps-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.step-num {
  width: 26px;
  height: 26px;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 480px) {
  .box-visual { width: 240px; height: 240px; }
  .phase-count { font-size: 2.6rem; min-height: 3.2rem; }
  .phase-name  { font-size: 1.3rem; }
  .breathing-stage { gap: 20px; margin-bottom: 24px; }
  .cycle-info { margin-bottom: 20px; }
  main { padding-top: 24px; }
  .page-header { margin-bottom: 28px; }
}
