
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  background: #000;
  font-family: 'Press Start 2P', cursive;
}

/* الخلفية */
.menu-scene {
  width: 100%;
  height: 100%;
  background-image: url("https://media.discordapp.net/attachments/1397597330521329816/1462992189515759881/ec907b175dcae8cc76d01e1b5d98acdc.png?ex=69703527&is=696ee3a7&hm=38e34e3014c04dd27f2a7ec6f4d13b29ef6601db0bcde55824bb6ecd51d1cb3a&=&format=webp&quality=lossless&width=1784&height=1184");
  background-size: cover;
  background-position: center;
  position: relative;
}

/* الشكل البيضاوي */
.menu-panel {
  position: absolute;
  right: -80px;
  top: 0;
  width: 500px;
  height: 100%;
  background: rgba(48, 46, 46, 0.599);
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  padding: 80px 40px;
  text-align: left;
}

/* العنوان */
.menu-panel h1 {
  font-size: 14px;
  color: white;
  margin-bottom: 20px;
  text-shadow: 2px 2px rgb(255, 138, 105);
  padding-left: 100px;
  padding-top: 55px;
}

/* الأزرار */
.menu-btn {
  display: block;
  margin-bottom: 20px;
  color: white;
  text-decoration: none;
  font-size: 12px;
  padding-left: 170px;
  padding-top: 70px;
  transition: 0.3s;
}

.menu-btn:hover {
  color: rgb(246, 210, 31);
  transform: translateX(10px);
}