/* New styles for the game menu grid */
.menu-grid {
  display: grid;
  /* icon များ သေးငယ်မသွားစေရန် column တစ်ခုစီ၏ အကျယ်ကို အနည်းဆုံး 90px သတ်မှတ်ပြီး 
    နေရာအကျယ်အလိုက် အလိုအလျောက် ချိန်ညှိပေးမည့် layout ဖြစ်သည် 
  */
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 15px; /* icon များကြား အကွာအဝေး */
  padding: 0 10px;
}

.menu-grid .menu-btn {
  /* icon နှင့် စာကို အပေါ်အောက် ဒေါင်လိုက်စီပေးသည် */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  color: #FFFFFF; /* တောင်းဆိုချက်အရ စာသားအရောင်ကို အဖြူရောင်သို့ ပြောင်းထားပါသည် */
  font-weight: 600;
  font-size: 14px;
  background-color: transparent;
  border: none;
  padding: 0;
  /* စာသားအရောင်ဖြူအတွက် ပိုမိုထင်ရှားစေရန် shadow အနည်းငယ်ထည့်နိုင်သည် (optional) */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.menu-grid .menu-btn img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1; /* ပုံကို လေးထောင့်ဖြစ်စေသည် */
  margin-bottom: 8px; /* ပုံနှင့် စာသားကြား အကွာအဝေး */
}

.menu-grid .menu-btn span {
  text-align: center;
}

