* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0b0b0b;
  font-family: sans-serif;
  direction: rtl;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: white;
}

/* 🐆 قاب leopard با تصویر واقعی */
.menu-frame {
  width: 100%;
  /* max-width: 420px; */
  height: 100vh;
  padding: 14px;
  /* border-radius: 20px; */
  position: relative;

  background: url("./assets/leopard.jpg") repeat;
  background-size: 200px 200px; /* اندازه pattern */

  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3), 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* فقط محتوا اسکرول می‌شود */
.menu-content {
  height: 100%;
  background: rgb(0, 0, 0);
  border-radius: 12px;
  padding: 20px;
  overflow-y: auto;
  backdrop-filter: blur(1px);
}

/* اسکرول بار ظریف */
.menu-content::-webkit-scrollbar {
  width: 2px;
}

.menu-content::-webkit-scrollbar-thumb {
  background: #8b0000;
  border-radius: 4px;
}

.menu-title {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #111;
}

.menu-section {
  margin-bottom: 28px;
}

.menu-section h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 6px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 4px;
  border-bottom: 1px dashed #ccc;
  font-size: 0.95rem;
}
