// كود لون الخلفية الكريمي الدافئ المستوحى من المتاجر الفاخرة
const storeWarmBackground = document.createElement('style');
storeWarmBackground = `
body {
background-color: #FFFDF0 !important;
}
`;
document.head.appendChild(storeWarmBackground);
// كود لون الخلفية الكريمي الدافئ المستوحى من المتاجر الفاخرة
const storeWarmBackground = document.createElement('style');
storeWarmBackground = `
body {
background-color: #FFFDF0 !important;
}
`;
document.head.appendChild(storeWarmBackground);
// كود لون الخلفية الكريمي الدافئ المستوحى من المتاجر الفاخرة
const storeWarmBackground = document.createElement('style');
storeWarmBackground = `
body {
background-color: #FFFDF0 !important;
}
`;
document.head.appendChild(storeWarmBackground);
/* Add custom CSS styles below */
/* تأثير عصا سحرية تتبع الماوس */
document.addEventListener('mousemove', function(e) {
const wand = document.createElement('div');
wand.innerHTML = '✨🪄'; // نجوم وعصا سحرية
wand.style.position = 'fixed';
wand.style.left = e.clientX + 'px';
wand.style.top = e.clientY + 'px';
wand.style.pointerEvents = 'none';
wand.style.fontSize = '20px';
wand.style.transition = '0.1s';
document.body.appendChild(wand);
setTimeout(() => wand.remove(), 500);
});
/* تأثير نجوم تتصاعد ببطء في الخلفية */
const starContainer = document.createElement('div');
starContainer.style.position = 'fixed';
starContainer.style.top = '0';
starContainer.style.left = '0';
starContainer.style.width = '100%';
starContainer.style.height = '100%';
starContainer.style.pointerEvents = 'none';
document.body.appendChild(starContainer);
setInterval(() => {
const star = document.createElement('div');
star.innerHTML = '✨';
star.style.position = 'absolute';
star.style.left = Math.random() * 100 + '%';
star.style.top = '100%';
star.style.fontSize = Math.random() * 20 + 'px';
star.style.animation = 'rise 5s linear forwards';
starContainer.appendChild(star);
setTimeout(() => star.remove(), 5000);
}, 800);
const style = document.createElement('style');
style.innerHTML = `@keyframes rise { to { transform: translateY(-100vh); opacity: 0; } }`;
document.head.appendChild(style);
/* Add custom JS code below */
// كود لون الخلفية الكريمي الدافئ المستوحى من المتاجر الفاخرة
const storeWarmBackground = document.createElement('style');
storeWarmBackground = `
body {
background-color: #FFFDF0 !important;
}
`;
document.head.appendChild(storeWarmBackground);