body {
    margin: 0;
    background: #ffd6e8;
    font-family: "Hiragino Mincho Pro", serif;
}

.hidden {
    display: none;
}

.fade {
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Menu */
#menu {
    text-align: center;
    padding: 40px;
}

#menu button {
    display: block;
    margin: 10px auto;
    padding: 12px 20px;
    background: #ff7fb3;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
}

/* Game container */
#game {
    max-width: 700px;
    margin: auto;
    padding: 10px;
    position: relative;
}

/* Decorations */
.deco {
    position: absolute;
    pointer-events: none;
}

.deco.top {
    top: 0;
    left: 0;
    width: 100%;
}

.deco.bottom {
    bottom: 0;
    left: 0;
    width: 100%;
}

.deco.sparkle {
    top: 0;
    right: 0;
    width: 120px;
    opacity: 0.8;
}

/* Sprite */
#sprite {
    text-align: center;
    margin-top: 40px;
}

#sprite img {
    width: 230px;
    border-radius: 16px;
    border: 6px solid #ffb6d9;
    background: white;
}

/* Textbox */
#textbox {
    margin-top: 20px;
    padding: 18px;
    background: #fff0f7;
    border-radius: 14px;
}

#name {
    font-weight: bold;
    color: #d63384;
    margin-bottom: 8px;
}

#text {
    line-height: 1.7;
    white-space: pre-line;
}

button.choice {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    background: #ff7fb3;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}
#top-ui {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

#menuBtn {
  width: auto;
  padding: 6px 12px;
  font-size: 12px;
  background: #d66a8c;
}

#affectionDisplay {
  font-size: 12px;
  color: #5a2a3a;
}

/* ⬇️ LOWERS DIALOGUE FRAME */
#game {
  padding-bottom: 100px; /* increase if you want it lower */
}
