/* أنماط AFB Celebrate */
.afb-celebrate-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none; /* هذا السطر يمنع التفاعل مع المؤثرات */
    z-index: 999999;
    display: none; /* نبدأ مخفية حتى يتم تفعيلها */
}

.afb-confetti-canvas {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* هذا السطر يمنع التفاعل مع المؤثرات */
    z-index: 999999;
}

/* منع أي تفاعل مع المؤثرات */
.afb-celebrate-container * {
    pointer-events: none !important;
}

.afb-confetti-canvas {
    pointer-events: none !important;
}