
📋 תוכן עניינים
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, ‘Segoe UI’, ‘Heebo’, Arial, sans-serif;
line-height: 1.7;
color: #2c3e50;
background: #f8f9fa;
}
.container {
max-width: 1100px;
margin: 0 auto;
padding: 40px 20px;
}
h1 {
font-size: 2.5rem;
color: #107c10;
margin-bottom: 20px;
text-align: center;
font-weight: 700;
}
.intro {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
margin-bottom: 40px;
font-size: 1.1rem;
line-height: 1.8;
}
h2 {
font-size: 2rem;
color: #107c10;
margin: 50px 0 25px 0;
padding-bottom: 12px;
border-bottom: 3px solid #107c10;
}
.tier-grid {
display: grid;
grid-template-columns: 1fr;
gap: 30px;
margin: 40px 0;
}
.tier-card {
background: white;
border-radius: 16px;
padding: 35px;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
transition: transform 0.3s, box-shadow 0.3s;
position: relative;
overflow: hidden;
}
.tier-card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.tier-card::before {
content: ”;
position: absolute;
top: 0;
left: 0;
right: 0;
height: 6px;
}
.tier-essential::before {
background: linear-gradient(90deg, #0078d4, #00bcf2);
}
.tier-premium::before {
background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}
.tier-ultimate::before {
background: linear-gradient(90deg, #107c10, #16a34a);
}
.tier-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
flex-wrap: wrap;
gap: 15px;
}
.tier-name {
font-size: 1.8rem;
font-weight: 700;
color: #1a1a1a;
}
.tier-price {
font-size: 2rem;
font-weight: 700;
color: #107c10;
}
.tier-price small {
font-size: 1rem;
color: #666;
font-weight: 400;
}
.tier-desc {
color: #666;
font-size: 1.05rem;
margin-bottom: 25px;
font-style: italic;
}
.features {
background: #f8f9fa;
border-radius: 12px;
padding: 25px;
margin: 25px 0;
}
.features h4 {
color: #107c10;
font-size: 1.3rem;
margin-bottom: 15px;
font-weight: 600;
}
.features ul {
list-style: none;
}
.features li {
padding: 12px 0;
padding-right: 30px;
position: relative;
font-size: 1.05rem;
}
.features li::before {
content: ‘✓’;
position: absolute;
right: 0;
color: #107c10;
font-weight: bold;
font-size: 1.3rem;
}
.alert-box {
background: #fff3cd;
border: 2px solid #ffc107;
border-radius: 12px;
padding: 20px;
margin: 20px 0;
}
.alert-box strong {
color: #856404;
}
.cta-button {
display: inline-block;
background: linear-gradient(135deg, #107c10, #16a34a);
color: white;
padding: 16px 36px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s;
box-shadow: 0 4px 12px rgba(16,124,16,0.3);
margin-top: 20px;
text-align: center;
}
.cta-button:hover {
transform: scale(1.05);
box-shadow: 0 6px 16px rgba(16,124,16,0.4);
color: white;
}
.comparison-section {
background: white;
padding: 40px;
border-radius: 16px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
margin: 50px 0;
}
.comparison-table {
width: 100%;
border-collapse: collapse;
margin: 30px 0;
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.comparison-table thead {
background: linear-gradient(135deg, #107c10, #16a34a);
}
.comparison-table th {
padding: 18px 15px;
text-align: center;
color: white;
font-weight: 600;
font-size: 1.1rem;
}
.comparison-table td {
padding: 16px 15px;
text-align: center;
border-bottom: 1px solid #e5e7eb;
}
.comparison-table tbody tr:hover {
background: #f0fdf4;
}
.comparison-table .feature-name {
text-align: right;
font-weight: 600;
color: #374151;
}
.highlight-ultimate {
background: #f0fdf4;
font-weight: 600;
}
.check {
color: #107c10;
font-size: 1.4rem;
font-weight: bold;
}
.cross {
color: #dc2626;
font-size: 1.4rem;
}
.games-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
margin: 30px 0;
}
.game-category {
background: white;
border-radius: 12px;
padding: 25px;
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
border-right: 4px solid #107c10;
}
.game-category h4 {
color: #107c10;
margin-bottom: 15px;
font-size: 1.2rem;
}
.game-category ul {
list-style: none;
}
.game-category li {
padding: 8px 0;
color: #4b5563;
}
.tips-section {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
margin: 40px 0;
}
.tip-card {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
border-top: 4px solid #107c10;
}
.tip-card h3 {
color: #107c10;
margin-bottom: 15px;
font-size: 1.4rem;
}
.tip-card ul {
list-style: none;
}
.tip-card li {
padding: 10px 0;
padding-right: 25px;
position: relative;
}
.tip-card li::before {
content: ‘→’;
position: absolute;
right: 0;
color: #107c10;
font-weight: bold;
}
.faq {
background: white;
padding: 40px;
border-radius: 16px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
margin: 50px 0;
}
.faq-item {
margin: 25px 0;
padding: 20px;
background: #f8f9fa;
border-radius: 8px;
}
.faq-question {
font-weight: 700;
color: #107c10;
font-size: 1.2rem;
margin-bottom: 10px;
}
.final-cta {
background: linear-gradient(135deg, #107c10, #16a34a);
color: white;
padding: 50px;
border-radius: 16px;
text-align: center;
margin: 50px 0;
}
.final-cta h2 {
color: white;
border: none;
margin: 0 0 20px 0;
}
.final-cta p {
font-size: 1.2rem;
margin: 20px 0;
}
.cta-buttons {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
margin-top: 30px;
}
.cta-white {
background: white;
color: #107c10;
padding: 18px 40px;
border-radius: 50px;
text-decoration: none;
font-weight: 700;
font-size: 1.15rem;
transition: all 0.3s;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.cta-white:hover {
transform: scale(1.05);
box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
h1 {
font-size: 2rem;
}
h2 {
font-size: 1.6rem;
}
.tier-header {
flex-direction: column;
align-items: flex-start;
}
.comparison-table {
font-size: 0.9rem;
}
.comparison-table th,
.comparison-table td {
padding: 12px 8px;
}
}
🎮 Xbox Game Pass – המדריך המלא
Xbox Game Pass הוא שירות המנויים המוביל של מיקרוסופט לגיימרים, המאפשר גישה למאות משחקים איכותיים במחיר חודשי קבוע. במקום לקנות כל משחק בנפרד, תוכלו להוריד ולשחק במשחקים כמה שתרצו – בקונסולת Xbox, במחשב או בשניהם.
השירות כולל משחקים חדשים שמתווספים באופן קבוע, כותרים בלעדיים של מיקרוסופט ביום ההשקה, ומבחר עצום של משחקים מכל הז’אנרים – מ-AAA ועד אינדי. זה בדיוק כמו נטפליקס, רק למשחקים!
📦 סוגי המנויים – בחרו את המתאים לכם
✨ מה כלול במנוי?
- 50+ משחקים למחשב וקונסולה
- משחקים מקוונים – Multiplayer ללא הגבלה
- הטבות בלעדיות במשחקי Free-to-Play
- הנחות חודשיות על משחקים
👥 מתאים לכם אם:
- • אתם שחקנים מזדמנים
- • רוצים לשחק אונליין עם חברים
- • לא חייבים משחקים חדשים ביום ההשקה
- • מחפשים ערך מקסימלי במחיר נמוך
✨ מה כלול במנוי?
- 200+ משחקים למחשב וקונסולה (פי 4!)
- כל מה שיש ב-Essential + הרבה יותר
- משחקי Xbox Studios תוך שנה מההשקה
- הנחות גדולות יותר על משחקים חדשים
👥 מתאים לכם אם:
- • רוצים ספריית משחקים ענקית
- • מוכנים לחכות למשחקים חדשים
- • מחפשים איזון מחיר-ערך מושלם
- • Call of Duty לא משנה לכם
חבילת Premium זמינה ישירות דרך Xbox – אין עדיין קישור ייעודי באתר
✨ כל מה שיש ב-Premium + התוספות הבלעדיות:
- 200+ משחקים כמו Premium
- 75+ משחקי Day 1 בשנה! כל משחקי Xbox ביום ההשקה
- Call of Duty: Black Ops 6 כלול! (וכל ה-COD הבאים)
- Ubisoft+ Classics – כל משחקי Ubisoft בחינם
- Fortnite Crew – מנוי מלא כלול (שווה 46 ₪/חודש!)
- EA Play – מאות משחקי EA נוספים
- Xbox Rewards משודרג – פי 4 נקודות על כל קנייה
🎮 משחקים שזמינים עכשיו ב-Day 1:
- Call of Duty: Black Ops 6 ⭐
- Indiana Jones and the Great Circle
- Starfield
- Forza Motorsport
- ו-70+ משחקים נוספים השנה!
👥 מתאים לכם אם:
- • חייבים לשחק במשחקים החדשים מיד!
- • שחקני Call of Duty מושבעים
- • אוהבים Fortnite (חוסכים 46 ₪/חודש על Crew)
- • רוצים את כל משחקי Ubisoft
- • רוצים את החוויה הכי מלאה שיש
📊 טבלת השוואה מהירה
| 🖥️ PC Game Pass | ₪40 | מאות משחקי PC |
| 🏆 Ultimate | ₪70 | הכל! Xbox + PC + Cloud Gaming + EA Play |
🎥 Xbox Game Pass – סקירה מקיפה
🎯 טיפים – איך להפיק את המקסימום מ-Game Pass
- השתמשו ב-Xbox App במחשב – חווית משתמש מעולה, התקנה מהירה
- Cloud Gaming = חובה! (Ultimate) – שחקו ממכשיר כלשהו, אפילו טלפון
- תכננו מה לשחק – עם מאות משחקים, קל ללכת לאיבוד. תעשו רשימה!
- נצלו Day One releases – כל משחק של Microsoft Studios ביום השחרור
- EA Play כלול ב-Ultimate – FIFA, Battlefield, Apex ועוד
❓ שאלות נפוצות – Xbox Game Pass 2026
שאלה: האם Xbox Game Pass כדאי?
תשובה: מאוד כדאי! במחיר של משחק אחד בשנה (Ultimate), אתם מקבלים מאות משחקים. אם אתם משחקים 2-3 משחקים בחודש – זה משתלם מטורף!
שאלה: מה ההבדל בין Ultimate ל-Core?
תשובה:
Core: 25+ משחקים, מולטיפלייר (₪35/חודש)
Ultimate: 500+ משחקים, PC, Cloud Gaming, EA Play, Day One releases (₪70/חודש)
המלצה: Ultimate שווה את התוספת אם אתם גיימרים פעילים!
שאלה: האם אפשר לשחק גם ב-PC?
תשובה: כן! עם PC Game Pass (₪40) או Ultimate (₪70) – כל המשחקים זמינים גם ב-PC דרך Xbox App.
שאלה: מתי משחקים נכנסים/יוצאים מהשירות?
תשובה: Microsoft מודיעה 2 שבועיים מראש על משחקים שעוזבים. יש תמיד מבצעים של 20% הנחה לחברי Game Pass אם תרצו לקנות לפני שהם עוזבים.
שאלה: האם יש תקופת ניסיון חינם?
תשובה: כן! בדרך כלל יש חודש ראשון ב-₪5 או ₪10 למצטרפים חדשים. שווה לנצל!
🔗 מאמרים נוספים שיעניינו אותכם
-
🎮 משחקי מחשב 2026 – המדריך המלא
המשחקים הטובים ביותר ל-2026 – סקירות ומחירים
-
🎮 PlayStation Plus 2026 – המדריך המלא
PS Plus vs Game Pass – השוואה מלאה
-
🎮 קודים ל-GTA V 2026
קודים, טיפים וטריקים למשחק הפופולרי
-
💻 Windows 11 Pro 2026 – למשחקים
המערכת המושלמת לגיימינג
🎮 מוכנים להתחיל?
הצטרפו ל-Xbox Game Pass עכשיו!
- ✅ מאות משחקים ביום השחרור
- ✅ משחקי AAA חדשים כל חודש
- ✅ Cloud Gaming על כל מכשיר
- ✅ EA Play כלול ב-Ultimate
💰 החל מ-₪35 בחודש | חודש ראשון במבצע!
{
“@context”: “https://schema.org”,
“@type”: “FAQPage”,
“mainEntity”: [
{
“@type”: “Question”,
“name”: “מה ההבדל בין Game Pass Premium ל-Ultimate?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “Ultimate כולל יותר משחקים (500+), משחקים ביום השקה, Ubisoft+ Classics, וגם Cloud Gaming. Premium מתמקד בספרייה איכותית של 200+ משחקים במחיר נמוך יותר, ללא משחקים ביום השקה.”
}
},
{
“@type”: “Question”,
“name”: “האם Game Pass Premium כולל משחקים ביום השקה?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “לא. משחקים חדשים מגיעים ל-Premium בדרך כלל תוך שנה מההשקה. רק Ultimate מקבל משחקים ביום ההשקה.”
}
},
{
“@type”: “Question”,
“name”: “האם אפשר לשחק ב-Game Pass גם ב-PC?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “כן! Premium ו-Ultimate כוללים גישה מלאה למשחקים הזמינים גם ב-Xbox וגם ב-PC דרך אפליקציית Xbox.”
}
},
{
“@type”: “Question”,
“name”: “כמה משחקים יש ב-Game Pass?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “Essential מציע 50+ משחקים, Premium מציע 200+ משחקים, ו-Ultimate מציע 500+ משחקים מכל הז’אנרים.”
}
}
]
}



