fyeheadheather69 trish stratus naked nude
אתגר הסופגניות – רמת קושי גבוהה
/* איפוס כללי */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
user-select: none;
}
body {
font-family: 'Rubik', sans-serif;
background: #f7fafc;
padding: 10px;
overflow-x: hidden;
}
/* אנימציות */
@keyframes donutFloat {
0%, 100% { transform: translateY(0) rotate(0deg); }
50% { transform: translateY(-15px) rotate(5deg); }
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}
@keyframes confetti {
0% { transform: translateY(-100px) rotate(0deg); opacity: 1; }
100% { transform: translateY(500px) rotate(360deg); opacity: 0; }
}
/* קונטיינר ראשי */
.hanukkah-game-container {
width: 100%;
max-width: 900px;
height: 550px;
margin: 0 auto;
position: relative;
direction: rtl;
overflow: hidden;
background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
border-radius: 20px;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
border: 6px solid #d69e2e;
}
/* כותרת */
.game-header {
position: absolute;
top: 0;
left: 0;
width: 100%;
padding: 15px 20px;
background: linear-gradient(90deg, rgba(45, 55, 72, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
border-bottom: 3px solid #d69e2e;
z-index: 1000;
display: flex;
justify-content: space-between;
align-items: center;
backdrop-filter: blur(10px);
}
.game-title h2 {
color: #facc15;
font-size: 22px;
font-weight: 700;
margin-bottom: 5px;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.game-title p {
color: #cbd5e1;
font-size: 14px;
}
.score-display {
background: rgba(255, 255, 255, 0.1);
padding: 10px 20px;
border-radius: 15px;
border: 2px solid #ecc94b;
}
.score-display span {
color: white;
font-weight: bold;
font-size: 18px;
}
.score-value {
color: #facc15 !important;
font-size: 24px !important;
margin-right: 5px;
}
.difficulty-badge {
background: rgba(245, 101, 101, 0.2);
color: #fed7d7;
padding: 5px 12px;
border-radius: 10px;
font-size: 12px;
font-weight: bold;
border: 1px solid #f56565;
margin-right: 10px;
}
/* אזור משחק */
.game-area {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at center, #fbbf24 0%, #d97706 60%, #92400e 100%);
z-index: 1;
overflow: hidden;
}
/* סופגניות */
.donut {
position: absolute;
width: 80px;
height: 80px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 48px;
background: radial-gradient(circle at 30% 30%, #fde68a, #d97706);
border-radius: 50%;
box-shadow:
0 6px 15px rgba(0, 0, 0, 0.3),
inset 0 -8px 16px rgba(0, 0, 0, 0.2),
inset 0 8px 16px rgba(255, 255, 255, 0.2);
border: 3px solid rgba(255, 255, 255, 0.3);
animation: donutFloat 3s ease-in-out infinite;
z-index: 100;
transition: transform 0.3s ease, opacity 0.3s ease;
user-select: none;
touch-action: manipulation;
}
.donut:hover {
animation: donutFloat 2s ease-in-out infinite, pulse 1s ease-in-out infinite;
}
/* מסך התחלה */
.start-screen {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(26, 32, 44, 0.95) 0%, rgba(45, 55, 72, 0.95) 100%);
z-index: 2000;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 20px;
}
.start-button {
background: linear-gradient(135deg, #ecc94b 0%, #d69e2e 100%);
color: #744210;
font-size: 28px;
font-weight: 800;
padding: 20px 50px;
border: none;
border-radius: 60px;
cursor: pointer;
box-shadow:
0 8px 25px rgba(236, 201, 75, 0.4),
0 4px 0 #b7791f;
transition: all 0.3s ease;
font-family: 'Rubik', sans-serif;
text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
position: relative;
overflow: hidden;
z-index: 1;
touch-action: manipulation;
}
.start-button:before {
content: ";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
z-index: -1;
}
.start-button:hover {
transform: translateY(-3px);
box-shadow:
0 12px 30px rgba(236, 201, 75, 0.6),
0 6px 0 #b7791f;
}
.start-button:active {
transform: translateY(1px);
box-shadow:
0 4px 15px rgba(236, 201, 75, 0.4),
0 2px 0 #b7791f;
}
.start-hint {
color: #cbd5e1;
margin-top: 25px;
font-size: 16px;
text-align: center;
line-height: 1.5;
}
.difficulty-info {
background: rgba(245, 101, 101, 0.2);
border: 2px solid #f56565;
border-radius: 15px;
padding: 15px;
margin-top: 20px;
max-width: 500px;
text-align: center;
}
.difficulty-info h3 {
color: #fed7d7;
margin-bottom: 10px;
font-size: 18px;
}
.difficulty-info ul {
color: #e2e8f0;
text-align: right;
list-style: none;
padding-right: 20px;
}
.difficulty-info li {
margin-bottom: 8px;
position: relative;
}
.difficulty-info li:before {
content: '✓';
color: #f56565;
position: absolute;
right: -20px;
}
/* מודל שאלות */
.game-modal {
display: none;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.92);
justify-content: center;
align-items: center;
padding: 20px;
z-index: 3000;
backdrop-filter: blur(5px);
}
.modal-content {
background: white;
padding: 30px;
border-radius: 20px;
width: 100%;
max-width: 400px;
text-align: center;
border: 5px solid #ecc94b;
box-shadow:
0 25px 50px -12px rgba(0, 0, 0, 0.5),
inset 0 0 30px rgba(236, 201, 75, 0.1);
position: relative;
}
.close-modal {
position: absolute;
top: 15px;
left: 20px;
width: 40px;
height: 40px;
background: #f7fafc;
border: 2px solid #cbd5e0;
border-radius: 50%;
font-size: 28px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
color: #718096;
transition: all 0.3s ease;
touch-action: manipulation;
}
.close-modal:hover {
background: #edf2f7;
transform: rotate(90deg);
}
.question-badge {
background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
color: #9a3412;
padding: 8px 20px;
border-radius: 50px;
font-size: 14px;
font-weight: 800;
display: inline-block;
margin-bottom: 20px;
border: 2px solid #fdba74;
}
.question-text {
margin: 25px 0;
font-size: 20px;
font-weight: 700;
color: #1a202c;
line-height: 1.4;
min-height: 60px;
}
.answers-container {
display: flex;
flex-direction: column;
gap: 12px;
margin-bottom: 20px;
}
.answer-button {
width: 100%;
padding: 16px;
background: #f8fafc;
border: 3px solid #e2e8f0;
border-radius: 12px;
cursor: pointer;
text-align: right;
font-weight: 700;
color: #4a5568;
font-size: 17px;
transition: all 0.3s ease;
font-family: 'Rubik', sans-serif;
touch-action: manipulation;
}
.answer-button:hover {
background: #edf2f7;
transform: translateX(-5px);
}
.feedback {
height: 30px;
font-weight: 800;
font-size: 16px;
display: flex;
align-items: center;
justify-content: center;
}
/* אפקטים נוספים */
.game-message {
position: absolute;
bottom: 20px;
left: 0;
width: 100%;
text-align: center;
color: #e2e8f0;
font-size: 14px;
z-index: 10;
}
/* קונפטי */
.confetti {
position: absolute;
width: 15px;
height: 15px;
background: #facc15;
border-radius: 50%;
opacity: 0;
pointer-events: none;
}
/* רספונסיביות */
@media (max-width: 768px) {
.hanukkah-game-container {
height: 500px;
border-radius: 15px;
}
.game-title h2 {
font-size: 18px;
}
.score-display {
padding: 8px 15px;
}
.score-display span {
font-size: 16px;
}
.score-value {
font-size: 20px !important;
}
.donut {
width: 70px;
height: 70px;
font-size: 42px;
}
.start-button {
font-size: 24px;
padding: 18px 40px;
}
.modal-content {
padding: 25px;
max-width: 350px;
}
.question-text {
font-size: 18px;
}
.answer-button {
padding: 14px;
font-size: 16px;
}
.difficulty-info {
padding: 12px;
margin: 15px;
}
.difficulty-info h3 {
font-size: 16px;
}
}
@media (max-width: 480px) {
.hanukkah-game-container {
height: 450px;
}
.game-header {
padding: 12px 15px;
}
.game-title h2 {
font-size: 16px;
}
.donut {
width: 60px;
height: 60px;
font-size: 36px;
}
.start-button {
font-size: 22px;
padding: 16px 35px;
}
.modal-content {
padding: 20px;
max-width: 320px;
}
.difficulty-info {
padding: 10px;
margin: 10px;
}
}
// הגדרות המשחק עם שאלות ברמת מומחה
const Game = {
score: 0,
donuts: [],
usedQuestionIndexes: new Set(), // סט כדי לעקוב אחרי שאלות שכבר הוצגו
questions: [
// שאלות היסטוריות מאתגרות
{
q: "מה שמה היווני של ירושלים בתקופת אנטיוכוס הרביעי?",
options: ["אַנְטִיוכְיָה", "סֵלֶווְקִיָה", "יוֹפִי", "אֵילִיָה קַפִּיטוֹלִינָה"],
correct: 3,
category: "היסטוריה"
},
{
q: "מי מבין החשמונאים לא היה בנו של מתתיהו החשמונאי?",
options: ["יהודה המכבי", "יונתן הוופסי", "שמעון התרסי", "יוחנן הורקנוס"],
correct: 3,
category: "היסטוריה"
},
{
q: "כמה שנים נמשכה מלחמת החשמונאים נגד היוונים?",
options: ["3 שנים", "5 שנים", "7 שנים", "25 שנים"],
correct: 2,
category: "היסטוריה"
},
{
q: "באיזה מקום בדיוק התרחש נס פך השמן לפי התלמוד?",
options: ["בית המקדש השני", "בית המקדש הראשון", "בבית הכנסת במודיעין", "במערה במודיעין"],
correct: 0,
category: "היסטוריה"
},
// שאלות הלכתיות מורכבות
{
q: "מה דינו של נר חנוכה שהדליקו לפני זמנו (לפני השקיעה)?",
options: ["כשר ואין צריך להדליק שוב", "לא יצא וחייב להדליק שוב", "כשר רק אם הדליק ללא ברכה", "תלוי אם הדליק בתוך ביתו או בחוץ"],
correct: 1,
category: "הלכה"
},
{
q: "האם מותר להשתמש לאור נרות חנוכה?",
options: ["מותר ללא הגבלה", "אסור לחלוטין", "מותר רק ל-30 דקות אחרי ההדלקה", "מותר רק לצורך קיום מצווה אחרת"],
correct: 2,
category: "הלכה"
},
{
q: "מה דין הדלקת נרות חנוכה במקום ללא שמש?",
options: ["אסור להדליק", "מדליקים ללא ברכה", "מדליקים רק נר אחד", "מדליקים כרגיל עם כל הברכות"],
correct: 3,
category: "הלכה"
},
{
q: "האם גוי יכול להדליק נרות חנוכה עבור יהודי?",
options: ["כן, ללא הגבלה", "רק אם היהודי נוכח", "לא, כי 'מצווה בו יותר מבשלוחו'", "רק אם הגוי התגייר"],
correct: 2,
category: "הלכה"
},
// שאלות על ספרים וטקסטים
{
q: "באיזה ספר לא קיים תיאור של נס חנוכה?",
options: ["מגילת אנטיוכוס", "ספר מכבים א'", "ספר מכבים ב'", "ספר יוסיפון"],
correct: 3,
category: "ספרים"
},
{
q: "מי חיבר את הפיוט 'מעוז צור'?",
options: ["רבי שלמה אלקבץ", "רבי משה אִבְּן עֶזְרָא", "מחבר אלמוני מתקופת הצלבנים", "רבי יהודה הלוי"],
correct: 2,
category: "ספרים"
},
{
q: "איפה מופיעה הברכה 'שעשה נסים לאבותינו' לראשונה?",
options: ["במשנה", "בגמרא מסכת שבת", "בסידור רס"ג", "במחזור ויטרי"],
correct: 1,
category: "ספרים"
},
// שאלות על מנהגים מיוחדים
{
q: "מה מקור המנהג לאכול מאכלי חלב בחנוכה?",
options: ["זכר לסופגניות עם ריבה", "זכר לגבינה שאכלה יהודית", "לחיזוק הגוף בחורף", "מנהג אשכנזי בלבד"],
correct: 1,
category: "מנהגים"
},
{
q: "מהו 'שבת חנוכה' המיוחדת?",
options: ["שבת ראשונה של חנוכה", "שבת שחלה בערב חנוכה", "שבת שחלה ביום האחרון של חנוכה", "שבת שקוראים בה את פרשת מקץ"],
correct: 3,
category: "מנהגים"
},
{
q: "מה מקור המנהג של 'דמי חנוכה'?",
options: ["מתן צדקה לעניים בחנוכה", "חלוקת כסף לילדים ללמוד תורה", "זכר למטבעות החשמונאים", "כל התשובות נכונות"],
correct: 3,
category: "מנהגים"
},
// שאלות על ארכיאולוגיה והיסטוריה מאוחרת
{
q: "איפה נמצאה הכתובת 'בית הכנסת של אלעזר' מהתקופה החשמונאית?",
options: ["מודיעין", "גמלא", "קומראן", "ירושלים"],
correct: 1,
category: "ארכיאולוגיה"
},
{
q: "מתי נקבע חג החנוכה באופן רשמי?",
options: ["מיד לאחר הנס", "בזמן המשנה", "בזמן הגמרא", "רק בתקופת הגאונים"],
correct: 0,
category: "היסטוריה"
},
{
q: "מה היה שמו של הכהן הגדול האחרון מבית חשמונאי?",
options: ["הורקנוס השני", "אריסטובולוס השני", "מתתיהו אנטיגונוס", "הורדוס"],
correct: 2,
category: "היסטוריה"
},
// שאלות על חנוכה בתרבות ובאמנות
{
q: "מי צייר את התמונה המפורסמת 'יהודה המכבי'?",
options: ["מארק שאגאל", "גוסטב דורה", "רמברנדט", "מיכאלאנג'לו"],
correct: 1,
category: "אמנות"
},
{
q: "באיזה סרט ישראלי מופיע שיר חנוכה מפורסם?",
options: ["חגיגה בסנוקר", "גבעת חלפון אינה עונה", "הלהקה", "אסקימו לימון"],
correct: 0,
category: "תרבות"
},
{
q: "מי חיבר את השיר 'אנו נושאים לפידים'?",
options: ["אלתרמן", "לאה גולדברג", "אהרון זאב", "חיים נחמן ביאליק"],
correct: 2,
category: "תרבות"
},
// שאלות פילוסופיות על החג
{
q: "מה מסמל המאבק בין יוון ליהודה לפי הרב קוק?",
options: ["מאבק בין גוף לנפש", "מאבק בין חומר לרוח", "מאבק בין תורה לחכמה", "כל התשובות נכונות"],
correct: 3,
category: "פילוסופיה"
},
{
q: "למה דומה נס פך השמן לפי ספרות הקבלה?",
options: ["לנשמה בגוף", "לאור הגנוז", "לשמן המשחה", "למנורה שבנפש"],
correct: 1,
category: "קבלה"
},
{
q: "מה מסמל הסביבון לפי הפרשנות החסידית?",
options: ["גורל האדם", "השגחה פרטית", "התהפוכות בחיים", "הקשר בין שמים לארץ"],
correct: 2,
category: "חסידות"
}
],
activeDonut: null,
gameInterval: null,
// פונקציה לקבלת שאלה אקראית שלא הוצגה
getRandomQuestion: function() {
// אם כל השאלות כבר הוצגו, נאפס את הרשימה
if (this.usedQuestionIndexes.size >= this.questions.length) {
this.usedQuestionIndexes.clear();
}
// ניצור רשימה של אינדקסים של שאלות שלא הוצגו
const availableIndexes = [];
for (let i = 0; i this.startGame());
startBtn.addEventListener('touchend', (e) => {
e.preventDefault();
this.startGame();
});
}
if (closeBtn) {
closeBtn.addEventListener('click', () => this.closeModal());
closeBtn.addEventListener('touchend', (e) => {
e.preventDefault();
this.closeModal();
});
}
// קליק על רקע המודל סוגר אותו
document.getElementById('gameModal').addEventListener('click', (e) => {
if (e.target === document.getElementById('gameModal')) {
this.closeModal();
}
});
},
// התחלת משחק
startGame: function() {
document.getElementById('startScreen').style.display = 'none';
this.score = 0;
document.getElementById('gameScore').textContent = '0';
this.usedQuestionIndexes.clear(); // מאפס את רשימת השאלות שהוצגו
this.generateDonuts(6);
if (this.gameInterval) clearInterval(this.gameInterval);
this.gameInterval = setInterval(() => {
if (this.donuts.length {
e.stopPropagation();
this.handleDonutClick(donut);
});
// תמיכה במובייל
donut.addEventListener('touchstart', (e) => {
e.preventDefault();
e.stopPropagation();
this.handleDonutClick(donut);
}, { passive: false });
gameArea.appendChild(donut);
this.donuts.push(donut);
return donut;
},
// יצירת מספר סופגניות
generateDonuts: function(count) {
const gameArea = document.getElementById('gameArea');
if (gameArea) {
gameArea.innerHTML = ";
this.donuts = [];
for (let i = 0; i {
this.createDonut();
}, i * 300);
}
}
},
// טיפול בלחיצה על סופגניה
handleDonutClick: function(donut) {
if (document.getElementById('gameModal').style.display === 'flex') {
return;
}
this.activeDonut = donut;
const randomQuestion = this.getRandomQuestion();
this.showQuestion(randomQuestion);
},
// הצגת שאלה
showQuestion: function(question) {
const modal = document.getElementById('gameModal');
const questionEl = document.getElementById('modalQuestion');
const answersEl = document.getElementById('modalAnswers');
const feedbackEl = document.getElementById('modalFeedback');
questionEl.textContent = question.q;
answersEl.innerHTML = ";
feedbackEl.textContent = ";
feedbackEl.style.color = ";
question.options.forEach((option, index) => {
const button = document.createElement('button');
button.className = 'answer-button';
button.textContent = option;
button.addEventListener('click', () => {
this.checkAnswer(index, question.correct, button);
});
button.addEventListener('touchend', (e) => {
e.preventDefault();
this.checkAnswer(index, question.correct, button);
});
answersEl.appendChild(button);
});
modal.style.display = 'flex';
},
// בדיקת תשובה
checkAnswer: function(selected, correct, button) {
const feedbackEl = document.getElementById('modalFeedback');
const scoreEl = document.getElementById('gameScore');
if (selected === correct) {
// תשובה נכונה
button.style.background = 'linear-gradient(135deg, #48bb78 0%, #38a169 100%)';
button.style.color = 'white';
button.style.borderColor = '#2f855a';
feedbackEl.textContent = 'מצוין! אתה באמת מומחה! +10 נקודות 🎓';
feedbackEl.style.color = '#2f855a';
this.score += 10;
scoreEl.textContent = this.score.toString();
// אפקט קונפטי
this.createConfetti();
if (this.activeDonut) {
this.activeDonut.style.transform = 'scale(0)';
this.activeDonut.style.opacity = '0';
setTimeout(() => {
if (this.activeDonut && this.activeDonut.parentNode) {
this.activeDonut.remove();
this.donuts = this.donuts.filter(d => d !== this.activeDonut);
}
}, 300);
}
setTimeout(() => {
this.closeModal();
}, 1200);
} else {
// תשובה שגויה
button.style.background = 'linear-gradient(135deg, #f56565 0%, #e53e3e 100%)';
button.style.color = 'white';
button.style.borderColor = '#c53030';
// הצגת התשובה הנכונה
const correctBtn = document.querySelectorAll('.answer-button')[correct];
correctBtn.style.background = 'linear-gradient(135deg, #48bb78 0%, #38a169 100%)';
correctBtn.style.color = 'white';
correctBtn.style.borderColor = '#2f855a';
feedbackEl.textContent = 'לא מדויק. זו הזדמנות ללמוד משהו חדש! 📚';
feedbackEl.style.color = '#c53030';
setTimeout(() => {
this.closeModal();
}, 1500);
}
// השבתת כפתורים אחרים
document.querySelectorAll('.answer-button').forEach(btn => {
if (btn !== button) {
btn.disabled = true;
btn.style.opacity = '0.6';
btn.style.cursor = 'not-allowed';
}
});
},
// יצירת אפקט קונפטי
createConfetti: function() {
const gameArea = document.getElementById('gameArea');
const colors = ['#facc15', '#ecc94b', '#d69e2e', '#b7791f'];
for (let i = 0; i {
if (confetti.parentNode) {
confetti.remove();
}
}, 3000);
}
},
// סגירת מודל
closeModal: function() {
const modal = document.getElementById('gameModal');
modal.style.display = 'none';
// החזרת כפתורים למצב רגיל
document.querySelectorAll('.answer-button').forEach(btn => {
btn.disabled = false;
btn.style.opacity = '1';
btn.style.cursor = 'pointer';
btn.style.background = ";
btn.style.color = ";
btn.style.borderColor = ";
});
this.activeDonut = null;
}
};
// התחלת המשחק כשהדף נטען
document.addEventListener('DOMContentLoaded', function() {
Game.init();
// גם אם וורדפרס שינה דברים, ננסה שוב אחרי חצי שניה
setTimeout(() => {
if (!document.getElementById('startButton').onclick) {
Game.bindEvents();
}
}, 500);
});
// גיבוי: אם משהו נכשל, אפשר להתחיל עם לחיצה על המסך
document.addEventListener('click', function(e) {
if (e.target.id === 'startScreen' ||
(e.target.className === 'start-hint' && document.getElementById('startScreen').style.display !== 'none')) {
Game.startGame();
}
});

אתגר הסופגניות – רמת מומחה 🕎
תפסו סופגניה וענו על שאלות חנוכה מאתגרות!
רמה: מומחה
ניקוד: 0
אתגר סופגניות לידעני חנוכה – שאלות ברמת מומחה!
🎯 אתגר רמת מומחה:
- שאלות חנוכה מאתגרות ומעמיקות
- שום שאלה לא תחזור על עצמה פעמיים
- 10 נקודות על כל תשובה נכונה
- שאלות משלימות: היסטוריה, הלכה ומנהגים
שאלת מומחה לחנוכה
?
אתגר חנוכה לידענים – כמה אתה באמת יודע על החג? 🎓
כמות צפיות בפוסט: 104