/*.blur-panel{
  position:fixed;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  width:min(1100px,92%);
  height:88px;
  padding:14px 18px 12px;
  z-index:9999;
  overflow:hidden;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(18px);
  border-radius:28px;
  box-shadow:0 8px 30px rgba(0,0,0,.18);
  transition:height .38s ease, background .35s ease, border-color .35s ease;
  position:relative;
}

.blur-panel.menu-open{
  height:360px;
}

.panel-menu{
  max-height:0;
  opacity:0;
  overflow:hidden;
  transform:translateY(8px);
  transition:max-height .34s ease, opacity .24s ease, transform .24s ease;
  margin-bottom:0;
}

.blur-panel.menu-open .panel-menu{
  max-height:220px;
  opacity:1;
  transform:translateY(0);
  margin-bottom:12px;
}*/

.menu-items{
  list-style:none;
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  margin:0;
  padding:0;
}

.menu-items button,
.menu-items a{
  width:100%;
  border:none;
  text-align:center;
  border-radius:16px;
  padding:13px 16px;
  cursor:pointer;
  color:#fff;
  background:rgba(255,255,255,.06);
  transition:transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.menu-items button:hover,
.menu-items a:hover{
  background:rgba(255,255,255,.13);
  transform:translateY(-1px);
  box-shadow:0 0 16px rgba(255,255,255,.08);
}

.theme-switch{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 12px;
  border-radius:16px;
  background:rgba(255,255,255,.05);
}

.switch{
  position:relative;
  display:inline-block;
  width:54px;
  height:30px;
}

.switch input{
  opacity:0;
  width:0;
  height:0;
}

.slider{
  position:absolute;
  inset:0;
  cursor:pointer;
  background:linear-gradient(180deg,#0b4cff,#ff7a00);
  transition:.24s ease;
  border-radius:999px;
}

.slider::before{
  content:"";
  position:absolute;
  height:22px;
  width:22px;
  left:4px;
  top:4px;
  background:#fff;
  border-radius:50%;
  transition:.24s ease;
}

.switch input:checked + .slider{
  background:linear-gradient(180deg,#f3f3f3,#c9c9c9);
}

.switch input:checked + .slider::before{
  transform:translateX(24px);
}

/*.panel-row{
  position:absolute;
  left:18px;
  right:18px;
  bottom:12px;          /* چسبیدن به کف پنل */
  height:64px;          /* ارتفاع ثابت برای ردیف دکمه‌ها */

  /*display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}*/

/*.panel-right,
.panel-center,
.panel-left{
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:72px;
}

.panel-right{
  justify-content:flex-end;
}

.panel-left{
  justify-content:flex-start;
}

.panel-right img{
  width:58px;
  height:58px;
  object-fit:contain;
  cursor:pointer;
  display:block;
}

.btn-glow{
  border:none;
  cursor:pointer;
  padding:13px 24px;
  border-radius:16px;
  font-weight:700;
  color:#111;
  background:linear-gradient(180deg,#fefefe 0%,#cfcfcf 22%,#ffffff 46%,#8f8f8f 70%,#ffffff 100%);
  background-size:200% 200%;
  box-shadow:0 0 16px rgba(255,255,255,.12);
  animation:titaniumFlow 7s linear infinite;
  transition:transform .22s ease, box-shadow .22s ease;
}

.btn-glow:hover{
  transform:translateY(-2px);
  box-shadow:0 0 22px rgba(255,255,255,.18);
}

.icon-btn{
  width:52px;
  height:52px;
  border:none;
  border-radius:14px;
  cursor:pointer;
  color:#fff;
  background:rgba(255,255,255,.08);
  font-size:24px;
  line-height:1;
  transition:transform .28s ease, background .22s ease;
}

.icon-btn:hover{
  background:rgba(255,255,255,.14);
}

.menu-toggle-rotate{
  transform:rotate(180deg);
}

body.light .blur-panel{
  background:rgba(255,255,255,.78);
  border-color:rgba(0,0,0,.05);
}

body.light .menu-items button,
body.light .menu-items a,
body.light .theme-switch,
body.light .icon-btn{
  color:#111;
}

body.light .menu-items button,
body.light .menu-items a{
  background:rgba(0,0,0,.04);
}

body.light .icon-btn{
  background:rgba(0,0,0,.05);
}

body.light .btn-glow{
  color:#111;
}