/* أنماط مخصصة للعبة دمج الفواكه */
* {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
  box-sizing: border-box;
}

body {
  touch-action: manipulation;
  font-family: 'Cairo', system-ui, -apple-system, sans-serif;
  background-color: #FFE8D6;
}

/* إخفاء شريط التمرير */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* تحريك وميض البوب اب */
@keyframes popIn {
  0% { transform: scale(0.85); opacity: 0; }
  70% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.animate-pop {
  animation: popIn 0.28s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* تأثير لمعان الوعاء الزجاجي */
#gameCanvas {
  background: linear-gradient(180deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.45) 85%, rgba(230,215,200,0.6) 100%);
  border-left: 6px solid #B07D62;
  border-right: 6px solid #B07D62;
  border-bottom: 12px solid #8C5E45;
  box-shadow: 0 10px 25px -5px rgba(74, 46, 24, 0.15), inset 0 0 20px rgba(255,255,255,0.6);
}

/* تأثير نبض الخط الخطر */
@keyframes dangerGlow {
  0%, 100% { opacity: 0.65; }
  50% { opacity: 1; }
}

.danger-active {
  animation: dangerGlow 0.6s infinite ease-in-out;
}