body {
  background: #ffd1e7;
  min-height: 100vh;
  margin: 0;
  font-family: 'Merienda', cursive;
  color: #b30059;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.future-container {
  border-radius: 18px;
  box-shadow: 0 4px 24px #ff8fcf33;
  padding: 36px 28px 28px 28px;
  margin-top: 20px;
  max-width: 420px;
  width: 90%;
  text-align: center;
}

.back-btn {
  background: #ff8fcf;
  color: #fff;
  font-family: 'Cookie', cursive;
  font-size: 1.8em;
  border: none;
  border-radius: 18px;
  padding: 10px 28px;
  box-shadow: 0 2px 8px #0001;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.back-btn:hover {
  background: #b30059;
}

.future-title {
  font-family: 'Pacifico', cursive;
  font-size: 2.2em;
  margin-top: 24px;
  margin-bottom: 18px;
  color: #cf2d89;
}

.future-section {
  margin: 24px 0 18px 0;
}

.future-section h2 {
  font-size: 2.0em;
  color: #b30059;
  margin-bottom: 8px;
}

.future-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.future-list li {
  margin: 10px 0;
  font-size: 1.1em;
  position: relative;
  padding-left: 28px;
  text-align: left;
}

.future-list li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: #ff8fcf;
  font-size: 1.1em;
}