.menu-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 12px;
  margin-bottom: 30px;
}

.menu-button {
  display: flex;
  align-items: center;
  background-color: #ffffff;  
  border-radius: 0.5rem;
  padding: 12px 12px;
  text-align: left;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
  -webkit-box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
  transition: background-color 0.1s;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.menu-button:active {
  background-color: #FFF9DD;
}

.menu-button img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}

.menu-text {
  display: flex;
  flex-direction: column;
}

.menu-subtitle {
  font-size: 1.1rem;
  color: #777;
  margin-bottom: 0.2rem;
}

.menu-title {
  font-size: 1.45rem;
}

.title-section { 
  padding: 0 16px;
  padding-top: 18px;
}

.game-zone-divider {
  width: 100%;
  text-align: center;
  margin: 18px 0 12px;
}
.game-zone-divider::before,
.game-zone-divider::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 1px;
  background: #ccc;
  vertical-align: middle;
  margin: 0 10px;
}
.game-zone-divider span {
  font-size: 1rem;
  font-weight: bold;
  color: #888;
  letter-spacing: 0.05em;
}

.game-zone-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

/* 跟農場 item-cell 一樣的風格 */
.game-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 6px;
  border-radius: 12px;
  border: 2px solid #eee;
  background: white;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, background 0.15s;
}
.game-cell:active {
  border-color: #d4a373;
  background: #fff8f0;
}
.game-cell img {
  width: 60%;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}
.game-cell-subtitle {
  font-size: 0.9rem;
  color: #aaa;
  text-align: center;
  pointer-events: none;
}
.game-cell-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #97805b;
  text-align: center;
  pointer-events: none;
}


.mybook-menu-button {
 display: flex;
    align-items: center;
    background-color: #ffffff;  
    border-radius: 14px;
    padding: 12px 12px;
    text-align: left;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1.5px solid #d6e0ec;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    transition: background-color 0.1s;
}
.mybook-menu-button:active {
    background-color: #FFF9DD;
}

.mybook-menu-button img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
}
.mybook-menu-text {
    display: flex;
    flex-direction: column;
}
.mybook-menu-subtitle {
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 0.2rem;
}
.mybook-menu-title {
    font-size: 1.35rem;
  color: #4d5567;
 
}
