@import url(https://fonts.googleapis.com/earlyaccess/opensanshebrew.css);
@import url(https://fonts.googleapis.com/earlyaccess/opensanshebrewcondensed.css);



html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
}

/* בדיקת  CSS */
/* ---- Base Styles ---- */
body {
  background: #0f0f12;
  color: #e0e0e0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* ---- Banner / Hero Section ---- */
.hero {
  position: relative;
  background: url('hero-bg.jpg') center / cover no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffd700;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.hero h1 {
  position: relative;
  font-size: 3rem;
  z-index: 1;
  text-shadow: 0 0 10px #ffd700;
}

/* ---- Widget Cards ---- */
.widget {
  background: rgba(20, 20, 30, 0.8);
  border: 1px solid #333;
  border-radius: 0px;
  padding: 20px;
  margin-bottom: 0px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease, border 0.3s ease;
}
.widget:hover {
  transform: translateY(-5px);
  border-color: #000000;
}


.widget-title i {
  font-size: 1.4rem;
}

/* ---- Sections Grid ---- */
.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
}

/* CSS - ניתן להכניס בקובץ סטייל גלובלי או בתוך <style> ב־<head> */
.top-panel .menu {
  position: relative; /* חשוב כדי שהתפריט המופשט יתיישב יחסית אליו */
}

.menu .dropdown {
  position: relative;
}

/* תפריט משנה מוסתר כברירת מחדל */
.menu .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1a1a1a;      /* רקע כהה שתואם לפאנל עליון */
  list-style: none;
  margin: 0;
  padding: 0.3em 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
  z-index: 100;
  min-width: 150px;
}

/* עיצוב הקישורים בתפריט המשנה */
.menu .dropdown .dropdown-menu li a {
  display: block;
  padding: 0.5em 1em;
  color: #fff;
  text-decoration: none;
}

/* אפקט מעבר על קישור בתפריט המשנה */
.menu .dropdown .dropdown-menu li a:hover {
  background: #333;
}

/* הצגת תפריט משנה ב-hover */
.menu .dropdown:hover .dropdown-menu {
  display: block;
}

/* החץ הקטן ליד הטקסט */
.menu .dropdown .arrow {
  font-size: 0.8em;
  margin-left: 0.2em;
  vertical-align: middle;
}


/* ---- Stats Badges ---- */
.badge {
  background: #1f2025;
  color: #0f0f12;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}
.mu-israel-bar {
   /* height: 16px;
    /*background: url(../img/line-server.png) repeat-x;*/
	margin-top: -7px;
	margin-left: -14px;
	height: 4px;
	background: url(../img/online-bar-counter.webp) no-repeat;
    display: block;
    position: relative;
    z-index: 1;
}

.mu-israel-bar-txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    font-weight: bold;
    color: gold;
    text-shadow: 1px 1px 2px black;
    z-index: 2;
    white-space: nowrap;
    pointer-events: none;
}

.progress-bar {
  position: relative;
  height: 16px;
  border-radius: 10px;
  overflow: hidden;
  background: url('https://fxpmu.com/assets/muforest/images/online-bar-bg.webp') center center / cover no-repeat;
  margin: 8px 0;
}

.progress-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: url('https://fxpmu.com/assets/muforest/images/online-bar-counter.webp') repeat-x;
  background-size: contain;
  background-position: left 5px bottom;
  margin-top: px;
  transition: width 0.5s ease;
  position: relative;
  z-index: 1;
}


/* ---- Tables Styling ---- */
table.sidebar_rank,
table.cs-registered {
  width: 100%;
  border-collapse: collapse;
}
table th,
table td {
  padding: 12px;
  border-bottom: 1px solid #444;
}
table th {
  background: #1c1c25;
  color: #ffd700;
}
table tr:hover td {
  background: #222;
}

/* ---- Crew / Guild Members Cards ---- */
.member-card {
  background: #1a1a24;
  border: 1px solid #444;
  padding: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s;
}
.member-card:hover {
  background: #2a2a38;
}
.member-card img {
  width: 30px;
  height: 30px;
}

/* ---- Countdown Timer Style ---- */
.castle-countdown {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
  text-align: center;
  margin: 10px 0;
}

/* ---- Discord Embed Wrapper ---- */
.discord-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

/* ---- Glass Effect Section ---- */
.glass {
  background: rgba(15, 15, 20, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

/* ---- Responsive Adjustments ---- */
@media (max-width: 768px) {
  .hero {
    height: 250px;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .widget {
    padding: 15px;
  }
  .widget-title {
    font-size: 1.3rem;
  }
  .btn, .custom_button {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}
/* בדיקת  CSS */
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
body {
    line-height: 1;
}
ol,
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    width: 100%;
    background: url(../images/fon-bg-top.jpg) center top no-repeat,
        url(../images/fon-bg-bottom.jpg) center bottom no-repeat,
        url(../images/fon-bg-repeat.jpg) center repeat-y;
    background-color: #eaecff;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #eee;
    line-height: 1;
    min-height: 100vh;
    overflow-x: hidden;
    background-size: 100%;
}
.package-lists {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    flex-flow: wrap;
}






/* Reset בסיסי */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* משתני צבעים */
:root {
  --box-bg: #1E0A02;
  --gold-fade-bg: linear-gradient(180deg, #FFD333 0%, #140000 90%);
  --text-primary-color: #ffffff;
  --text-secondary-color: #9A8787;
  --gold-color: #FFD333;
  --highlight-green: #00ff00;
}

/* עיצוב הסקשן הכללי */
section[data-nav="vip"] {
  /* רקע: תמונת power_bg_red.webp מכסה את כל הסקשן */
  background: url("https://mudream.online/assets/bg/power_bg_red.webp") center top / cover no-repeat, #140000;
  padding: 20px 0;
  font-family: sans-serif;
}

/* כותרת עליונה */
.ShopPage_block-title__VjiEh {
  text-align: center;
  margin-bottom: 20px;
}
.ShopPage_block-title__VjiEh h4 {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary-color);
}
.ShopPage_block-title__VjiEh h4 img {
  width: 36px;
  height: 36px;
  margin-right: 8px;
}
.ShopPage_block-title__VjiEh p {
  font-size: 1.2rem;
  color: var(--text-primary-color);
  margin-top: 6px;
}

/* עוטף הקופסאות */
.ShopSubscriptions_wrapper__SMFFY {
  width: 100%;
}
.ShopSubscriptions_subs-wrapper__vf6Fi {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  justify-content: center;
  overflow-x: auto;
  padding: 10px 0;
}

/* קופסת VIP בודדת */
.ShopSubscriptions_sub-box__ITINe {
  position: relative; /* מאפשר מיקום אבסולוטי בתוך הקופסה */
  background: var(--box-bg);
  border-radius: 8px;
  width: 220px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  text-align: center;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* רקע זהב שמשתנה לשחור עבור חבילות מוזהבות */
.ShopSubscriptions_gold__Vi7Qt {
  background: var(--gold-fade-bg);
}

/* כותרת הקופסה (אייקון + שם) */
.ShopSubscriptions_title-block__c6ZHH {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
}
.ShopSubscriptions_title-img__NIsNt {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}
.ShopSubscriptions_name__pv3dV {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-primary-color);
}

.ShopSubscriptions_main-price__1WNOz {
  position: absolute;
  top: 140px;
  right: 10px;            /* ניתן לשנות כדי להזיז יותר ימינה */
  width: 205px;           /* גודל קבוע של התג */
  height: 45px;           /* גובה קבוע */
  background: url("https://mudream.online/assets/shapes/sub_price_gold.webp") no-repeat center;
  background-size: contain;
  
  /* מרכז את הטקסט אנכית (line-height שווה לגובה) */
  line-height: 45px;
  
  /* הורדנו את ה-padding-left המוגזם */
  padding-left: 100px;     /* תוכל לשנות לפי הצורך */
  text-align: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 0;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
footer.footer {
  width: 100%;            /* עדיף 100% במקום 1100% */
  background-color: #181818;
  color: #bbb;
  font-family: Arial, sans-serif;
  padding: 20px 0;        /* במקום 40px 0, הקטןנו ל-20px למעלה ולמטה */
  margin-top: 20px;       /* דוחף את הפוטר עוד 20px כלפי מטה */
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0 20px;
}

.footer-links,
.footer-social {
  flex: 1;
  min-width: 250px;
  margin: 10px 0;
}

.f-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.f-menu li {
  margin-right: 15px;
}

.footer-links a,
.footer-bottom a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: #f39c12;
}

.footer-social a {
  margin: 0 5px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 13px;
  padding: 20px 20px 0;
  background: none;
}

  /* משנה את כל האלמנטים עם המחלקה flex-s-c (footer-block-t ו־footer-block-b) למרכז תכנים */
  footer.footer .flex-s-c {
    width: 100%;
    justify-content: center !important;
  }

  /* הופך את רשימת הקישורים לרשימה גמישה וריווח בין הפריטים */
  footer.footer .f-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  footer.footer .footer-logo {
  width: 100%;
  text-align: center;
  background-color: #ccc;      /* צבע רקע אפור */
  overflow: hidden;            /* חותך תוכן שמעלה על גבי הגובה */
  /* לגבוה: שנה כאן לפי הטעם */
  max-height: 80px;            /* מקסימום גובה לפוטר האפור */
  padding: 5px 0;              /* ריווח מלמעלה ומלמטה */
}

/* –– הלוגו עצמו –– */
footer.footer .footer-logo img {
  display: inline-block;
  /* אם תרצה לקבוע גובה מדויק */
  max-height: 70px;            /* מקסימום גובה לתמונה */
  width: auto;                 /* רוחב יחסית למגבלת הגובה */
  object-fit: contain;
}

  /* ממרכז את בלוק הרשתות החברתיות */
  footer.footer .soc-block {
    display: flex;
    gap: 10px;
    margin-top: 10px;
  }
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .f-menu {
    justify-content: center;
  }
}

/* איקון המטבע בתוך המחיר */
.Currency_cur__njfXW {
  margin-left: 4px;
  font-size: 0.9rem;
}

/* רשימת יתרונות */
.ShopSubscriptions_info__czLsg {
  list-style: none;
  margin: 50px 0 0 0; /* 10px מרווח למעלה */
  padding: 0;
  text-align: left;
  font-size: 0.8rem;
  color: var(--text-primary-color);
  margin-bottom: 16px;
}
.ShopSubscriptions_option__ZUGB3 {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-bottom: 6px;
  margin-bottom: 6px;
}
.ShopSubscriptions_option__ZUGB3 label {
  color: var(--text-secondary-color);
  margin-right: 6px;
}
.ShopSubscriptions_option__ZUGB3 b {
  color: var(--highlight-green);
}

/* פסי הפרדה: קו דק לבן שמתחלף לשחור */
.ShopSubscriptions_option__ZUGB3:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #ffffff, #000000);
  opacity: 0.7;
}

/* כפתור רכישה */
.buyVipBtn {
  display: inline-block;
  background: #8b501c;
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 1.1rem;
  text-decoration: none;
  margin-top: auto;
  transition: background 0.2s ease;
}
.buyVipBtn:hover {
  /* אפקט זהב נוצץ עם גרדיאנט ותנועה */
  background: linear-gradient(90deg, #FFD333, #FFD700, #FFD333);
  background-size: 200% 200%;
  animation: shimmer 1.5s ease infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.package-lists .packages {
    text-align: center;
    background: rgb(0 0 0 / 21%);
    border-radius: 5px;
    margin: 0 auto;
    margin-left: 1.5rem;
    margin-bottom: 2rem;
    width: 25%;
    display: inline-block;
    color: white;
}

.package-lists .packages .image {
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #1c1e38;
}

/* סגנון כללי לטבלה */
#character-info {
  width: 100%;
  border-collapse: collapse; /* ביטול רווח כפול בין תאים */
  background: #222;          /* רקע כללי כהה */
  color: #fff;              /* טקסט בהיר */
  font-family: "Segoe UI", Tahoma, sans-serif; /* לדוגמה */
}

/* שורת כותרת אם יש thead */
#character-info thead tr th {
  background: #444;    /* רקע כותרת */
  color: #fff;
  text-transform: uppercase; /* לדוגמה: להפוך לטקסט באותיות גדולות */
  padding: 12px;
}

/* ריווח בין תאים ושורות בגוף הטבלה */
#character-info tbody tr td {
  background: #333;    /* מה שכבר ציינת */
  padding: 10px 12px;  /* ריווח פנימי — מרווח יפה לקריאה */
  border-bottom: 1px solid #444; /* קו תחתון דק */
}

/* הסרת הקו התחתון מהשורה האחרונה */
#character-info tbody tr:last-child td {
  border-bottom: none;
}

/* אפקט ריחוף */
#character-info tbody tr:hover td {
  background-color: #3a3a3a; /* גוון קצת יותר בהיר */
  transition: background-color 0.2s;
}


.box-style4 .title {
    box-shadow: none;
    padding: 0;
    color: #efefef;
    text-shadow: none;
    font-family: "Arial";
    font-size: 18px;
    margin: 0;
}

.package-lists .packages h5 {
    font-size: 1.25em;
}

.fa {
    
}

.package-lists .packages .image img {
    width: 100px;
    height: 100px;
}

.package-lists .packages .fag-btn {
    width: 80%;
    display: block;
    margin: 0 auto;
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    color: white;
    text-decoration: none;
    transition: 0.2s all ease;
    line-height: 20px;
}
/* ======== CSS (scoped under #cs) ======== */

/* Widget Container (red-light background) */
#cs .widget.red-light {
  background:
    url('../images/red-light-top-bg.webp')    center top    no-repeat,
    url('../images/red-light-bottom-bg.webp') center bottom no-repeat,
    url('../images/red-light-bg.jpg')         center repeat-y;
  border: 1px solid #000;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 20px;
}

/* Header (title + crown) */
#cs .widget.red-light .widget-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  color: #ffd700;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  background: none;
}
#cs .widget.red-light .widget-title span {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url('../templates/forest/img/crown.png') no-repeat center center;
  background-size: contain;
}

/* Body Panel */
#cs .panel-castle-siege {
  background-color: rgba(34,34,34,0.9);
  padding: 0 12px 12px;
}

/* Siege Winner Flex Layout */
#cs .siege-winner {
  display: flex;
  align-items: center;
  margin: 10px 0;
}
#cs .mark_siege img {
  width: 80px;
  height: 80px;
  border: 1px solid #000;
  border-radius: 4px;
  background: #111;
}
#cs .guild_siege {
  margin-left: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#cs .guild_siege .info-row {
  margin-bottom: 4px;
}
#cs .guild_siege .label {
  color: #ccc;
  font-size: 14px;
  margin-right: 6px;
}
#cs .guild_siege .value {
  color: #fff;
  font-weight: bold;
}
#cs .guild_siege .value a {
  color: #fff;
  text-decoration: none;
}

/* Registered Guilds Table */
#cs .cs-registered {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
}
#cs .cs-registered thead th {
  background-image: linear-gradient(180deg, #330000, #1a0000);
  color: #ffd700;
  font-size: 14px;
  padding: 6px 0;
  text-align: center;
  border: 1px solid #000;
}
#cs .cs-registered tbody tr td {
  background-image: linear-gradient(180deg, #330000, #1a0000);
  padding: 6px 0;
  text-align: center;
  color: #fff;
  border-top: 1px solid #000;
}
#cs .cs-registered td a {
  color: #fff;
  text-decoration: none;
}
#cs .cs-registered td img {
  vertical-align: middle;
  margin-left: 5px;
  height: 21px;
}

/* Countdown */
#cs .castle-siege-countdown {
  text-align: center;
  margin-top: 10px;
}
#cs .title-castle-battle {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  display: block;
  margin-bottom: 4px;
}
#cs .castle-countdown {
  font-size: 25px;
  font-weight: bold;
  color: #fff;
  font-family: 'Times New Roman', serif;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
  animation: csMoveDown 2s linear infinite;
}
#cs .castle-countdown span {
  color: #ffd700;
}

/* Keyframes */
@keyframes csMoveDown {
  0%   { transform: translateY(-8px); }
  50%  { transform: translateY(0); }
  100% { transform: translateY(8px); }
}


/* אפקט של זמן יורד כמו שעון עתיק */
@keyframes moveDown {
    0% {
        transform: translateY(-10px); /* התחלה ממקום גבוה יותר */
    }
    50% {
        transform: translateY(0); /* בזמן השיא הטקסט במרכז */
    }
    100% {
        transform: translateY(10px); /* סיום בתנועה כלפי מטה */
    }
}



.package-lists .packages .fag-btn.purple {
    border: 2px solid #2c337b;
    background: #6772e5 none repeat scroll 0 0;
}
.package-lists .packages .fag-btn {
    border: 2px solid #309bff;
    background: #309bff none repeat scroll 0 0;
}
.package-lists .packages .fag-btn:hover {
    filter: brightness(120%);
}
.package-lists .packages .credits {
    font-size: 18px;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #1c1e38;
    padding-top: 1rem;
}

.package-lists .packages .details {
    padding-top: 0.5rem;
    float: unset;
    display: block;
    height: auto;
    padding: 0;
    color: white;
}

a {
    transition: all 0.3s ease;
    color: #efefef;
    text-decoration: none;
}
.sticky-fxp a:hover img {
    filter: brightness(120%);
}
.sticky-fxp a img {
    transition: 0.2s all ease;
}
.sticky-fxp a img {
    width: 50px;
}
.sticky-fxp {
    position: fixed;
    bottom: 50%;
}

p {
    margin-bottom: 15px;
}
h1,
h2,
h3 {
    color: #eee;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 600;
}
h1 {
    font-size: 20px;
}
h2 {
    font-size: 18px;
}
h3 {
    font-size: 16px;
}
table {
    width: 100%;
}
table td {
    border-collapse: collapse;
    padding: 4px;
    border: 1px solid #c09074;
}
table tr:nth-child(odd) {
    background-color: rgba(87, 87, 87, 0.2);
}
caption {
    margin-bottom: 15px;
}
input,
textarea {
    background: url(../images/red-light-bg.jpg);
    border-radius: 30px;
    border: 1px solid #9b666e;
    color: #fff;
    padding: 8px 18px;
    position: relative;
}

.box-style1 .title {
    padding: 0;
    color: #eee;
    text-shadow: none;
}

button,
.button {
    transition: all 0.3s ease;
    cursor: pointer;
     background: url(../images/mu-israel-button.png) no-repeat; 
    height: 40px;
    /* width: 110px; */
    border: none;
    color: #fff !important;
    position: relative;
    z-index: 1;
    text-align: center;
    text-transform: uppercase;
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    background-size: 110px;
    text-decoration: none;
    line-height: 30px;
}

.widget button {
    background-size: 95px;
    width: 110px;
    height: 33px;
}

button:hover,
.button:hover {
    filter: brightness(120%);
}
.button-border:after {
    content: "";
    border-radius: 8px;
    border: 3px solid rgba(80, 72, 57, 0.5);
    left: -3px;
    top: -3px;
    height: 100%;
    width: 100%;
    position: absolute;
    display: none;
}

:focus {
    outline: none;
}
::-webkit-input-placeholder {
    color: #c37289;
}
::-moz-placeholder {
    color: #c37289;
}
:-moz-placeholder {
    color: #c37289;
}
:-ms-input-placeholder {
    color: #c37289;
}
.wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 20;
    padding: 10px;
    box-sizing: border-box;
}

.container {
    min-height: 1300px;
    display: flex;
    position: relative;
}

.flex {
    display: flex;
}
.flex-s {
    display: flex;
    justify-content: space-between;
}
.flex-s-c {
    display: flex;
    justify-content: space-between;
}
.flex-c-c {
    display: flex;
    justify-content: center;
    align-items: center;
}
.top-panel {
    width: 100%;
    height: 80px; /* גובה התפריט, תוכל לשנות לפי הצורך */
    position: absolute;
    top: 0;
    background-color: #1a1a1a; /* רקע אפור כהה */
    background-image: url(../images/MuIsrael-fon-menu.jpg);
    background-repeat: repeat-x;
    background-position: center top;
    border-bottom: 2px solid #A99B47;
    z-index: 50;
}
.header-playnow a {
    display: inline-block;
    padding: 15px 70px;
    font-size: 24px;
    font-weight: bold;
    font-family: "Open Sans Hebrew", sans-serif;
    color: #fff;
    text-decoration: none;
    text-shadow: 1px 1px 2px #000;
    background: linear-gradient(to bottom, #c11d1d, #960000);
    border-radius: 5px;
    border: 2px solid #910000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: 0.2s all ease;
    
    /* הזזה למטה ולימין */
    margin-top: 400px;
    margin-left: 490px;
    
    /* נדרשים לאפקט נוצץ */
    position: relative;
    overflow: hidden;
}

.header-playnow a:hover {
    background: linear-gradient(to bottom, #d81f1f, #a30b0b);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
    transform: scale(1.03);
}

/* יצירת אפקט נוצץ עם pseudo-element */
.header-playnow a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    opacity: 0;
}

/* בעת ריחוף – הפעלת האנימציה */
.header-playnow a:hover::after {
    animation: sparkle 0.75s forwards;
}

/* הגדרת keyframes לאפקט הנוצץ */
@keyframes sparkle {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        left: 50%;
        opacity: 1;
    }
    100% {
        left: 200%;
        opacity: 0;
    }
}


.menu li a:before {
    content: "";
    position: absolute;
    background: none;
    height: 7px;
    width: 7px;
    border: 1px solid #333;
    border-radius: 50%;
    left: -11px;
    top: 28px;
    box-shadow: 0px 0px 5px #3768ff;
}
.menu li:first-child a:before {
    display: none;
}

.menu {
    height: 66px;
}
.menu li {
    margin: 0px 8px;
}
.menu a {
    color: #efefef;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0px 26px;
    font-weight: 600;
    display: block;
    height: 66px;
    line-height: 66px;
    position: relative;
}

.menu a:after {
    content: "";
    transition: 0.3s;
    height: 0px;
    width: 0px;
}

.menu a:hover {
    color: #fbf6b6;
}

.menu a:hover:after {
    content: "";
    height: 2px;
    width: 100%;
    bottom: -2px;
    left: 0px;
    position: absolute;
    background: #fbf6b6;
}
.menu .active a {
    color: #fbf6b6;
    border-bottom: 2px solid #fbf6b6;
    bottom: -2px;
}

.languages a {
    margin-left: 10px;
}

.languages a:hover {
    -webkit-filter: brightness(140%);
    filter: brightness(140%);
    margin-left: 10px;
}

.side-promotion {
    width: 186px;
    height: 346px;
    overflow: hidden;
    position: fixed;
    top: 130px;
    right: 30px;
    z-index: 6;
    transition: top 0.5s ease, right 0.5s ease;
    background: url(images/bg_side_banner_default.png) 50% 100% no-repeat;
}
body,
a {
    cursor: url(../images/MU.cur), auto;
}
a:hover {
    cursor: url(../images/MU2.cur), auto;
}
.side-promotion__title {
    line-height: 1.5;
    font-size: 14px;
    font-style: italic;
    color: #fff;
    max-width: 100%;
    width: 100%;
    /* top: 25px; */
    align-self: flex-end;
    text-overflow: ellipsis;
    word-wrap: break-word; /* Ensure long words break to avoid overflow */
    white-space: normal; /* Allow text to wrap normally */
    overflow: hidden;
}

.header-buttons {
    position: relative;
    top: 50%;
    margin: 0 auto;
    text-align: center;
    width: 50%;
    z-index: 20;
}

.header-buttons a {
    display: block;
    width: 60%;
    margin: 0 auto;
    font-weight: 600;
    font-family: "Open Sans Hebrew";
    font-size: 24px;
    text-shadow: 0px 0px 8px #fff;
    background: url("../images/header-button.jpg") no-repeat center center;
    height: 60px;
    line-height: 60px;
    box-shadow: 5px 5px 30px 5px #333;
    transition: 0.2s all ease;
    border-radius: 5px;
}

.header-buttons a:hover {
    filter: brightness(120%);
}

.side-promotion__info {
    position: absolute;
    width: 72%;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    word-wrap: break-word; /* Ensure long words break to avoid overflow */
    white-space: normal; /* Allow text to wrap normally */
}

.side-promotion__banner {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.wz-nav__quick {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.wz-nav__quick--facebook img,
.wz-nav__quick--discord img,
.wz-nav__quick--youtube img {
    width: 24px;
    height: 24px;
}

.slider__paging__list {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: -50px;
}

.slider__paging__item {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.slider__paging__item.selected {
    background: #f00;
}

@media (max-width: 768px) {
    .side-promotion {
        width: 150px;
        height: 300px;
    }

    .side-promotion__info {
        width: 80%;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .side-promotion {
        width: 120px;
        height: 240px;
        top: 60px;
    }

    .side-promotion__info {
        width: 90%;
        right: 10px;
    }

    .side-promotion__title {
        font-size: 12px;
    }
}

/* Container styling */
.promo-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 100px;
    margin-left: -1500px;
    
}

/* Card styling */
.promo-card {
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent white */
    border-radius: 15px;
    width: 150px;
    padding: 15px;
    text-align: center;
    color: #f3f3f3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.promo-card:hover {
    transform: scale(1.05); /* Scale effect on hover */
}

/* Icon styling */
.promo-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

/* Text styling */
.promo-text h3 {
    font-size: 15px;
    font-weight: bold;
    color: #ffd700; /* Gold color for title */
    margin: 0;
    line-height: 1.2;
}

.promo-text p {
    font-size: 14px;
    color: #f3f3f3; /* Light text for description */
    margin-top: 5px;
}




/* Header
-----------------------------------------------------------------------------*/
.header {
    height: 550px;
    position: relative;
}
.logo {
    display: block;
    position: relative;
    margin: 0 auto;
    bottom: 5px;
    text-align: center;
    top: 50%;
    z-index: 2;
    transition: 0.3s;
}
.mu-israel-renders {
    position: absolute;
    top: 100px; /* מזיז את התמונה 50px למטה - שנה לפי הצורך */
    left: 80%;
    transform: translateX(-50%); /* ממרכז את התמונה לרוחב */
    width: 2350px; /* או % אם אתה רוצה לשלוט בגודל */
    height: auto; /* לא מגביל את הגובה */
    z-index: 0; /* שומר שהתמונה תהיה מעל האלמנטים האחרים */
}
.logo-small {
  width: 120px; /* שנה את הערך לפי הגודל הרצוי */
  height: auto; /* שומר על יחס גובה-רוחב */
}


.mu-israel-renders img {
  width: 70%;
  max-width: 400px;
  height: auto;
  display: block;
}
.downloads-video {
    position: absolute;
    top: 62%; /* מיקום הווידאו במרכז */
    left: 50%;
    transform: translate(-50%, -50%); /* ממרכז את הווידאו */
    width: 80%; /* גודל הווידאו (שנה לפי הצורך) */
    max-width: 900px; /* מקסימום רוחב */
    height: auto;
    z-index: -1; /* מאחורי כל האלמנטים האחרים, מעל הרקע */
    border-radius: 10px; /* מוסיף פינות מעוגלות */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); /* צל עדין */
}



.logo a {
    display: block;
    height: 200px;
    width: 50%;
    margin: 0 auto;
}

.form input:not([type="checkbox"]):not([type="number"]),
.form select,
.form textarea {
    border: 1px solid #333;
    box-shadow: none;
}

.logo a img {
    width: calc(100% - 150px);
}

.logo:hover {
    -webkit-filter: brightness(120%);
    filter: brightness(120%);
}

.countdown-block {
    position: absolute;
    bottom: 74px;
    text-align: center;
    width: 100%;
}
.countdown-block h3 {
    color: #5a2824;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: bold;
}
.countdown li {
    margin: 0px 7px;
    position: relative;
}
.countdown li:after {
    content: ":";
    position: absolute;
    right: -12px;
    top: 8px;
    font-size: 38px;
    color: #3b0c16;
}
.countdown li:first-child:after {
    display: none;
}
.countdown li:last-child:after {
    display: none;
}
.countdown span {
    display: block;
    background: rgba(120, 40, 62, 0.5);
    border-radius: 6px;
    height: 60px;
    width: 60px;
    font-size: 32px;
    color: #fff;
    text-align: center;
    line-height: 60px;
    margin-bottom: 7px;
}
.countdown p {
    font-size: 12px;
    margin-bottom: 0px;
    font-weight: bold;
    color: #5a2823;
    text-transform: uppercase;
}

.leaves-left-1 {
    background: url(../images/leaves-left-1.png) no-repeat;
    width: 120px;
    height: 133px;
    position: absolute;
    left: 50px;
    top: -300px;
    animation: leaves-left-1 12s infinite linear;
}
@keyframes leaves-left-1 {
    0% {
        top: -300px;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 750px;
        transform: rotate(-200deg);
        left: -250px;
        opacity: 0;
    }
}
.leaves-left-2 {
    background: url(../images/leaves-left-2.png) no-repeat;
    width: 160px;
    height: 72px;
    position: absolute;
    left: 50px;
    top: -200px;
    animation: leaves-left-2 12s infinite linear;
    animation-delay: 6s;
}
@keyframes leaves-left-2 {
    0% {
        top: -200px;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 750px;
        opacity: 1;
        transform: rotate(-150deg);
        left: -250px;
        opacity: 0;
    }
}
.leaves-left-3 {
    background: url(../images/leaves-left-3.png) no-repeat;
    width: 120px;
    height: 88px;
    position: absolute;
    left: 50px;
    top: -200px;
    animation: leaves-left-3 12s infinite linear;
    animation-delay: 9s;
}
@keyframes leaves-left-3 {
    0% {
        top: -200px;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 750px;
        transform: rotate(-250deg);
        left: -250px;
        opacity: 0;
    }
}
.leaves-left-4 {
    background: url(../images/leaves-left-4.png) no-repeat;
    width: 120px;
    height: 106px;
    position: absolute;
    left: 50px;
    top: -300px;
    animation: leaves-left-4 12s infinite linear;
    animation-delay: 3s;
}
@keyframes leaves-left-4 {
    0% {
        top: -250px;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 750px;
        transform: rotate(-150deg);
        left: -250px;
        opacity: 0;
    }
}
.leaves-left-5 {
    background: url(../images/leaves-left-5.png) no-repeat;
    width: 170px;
    height: 108px;
    position: absolute;
    left: 50px;
    top: -300px;
    animation: leaves-left-5 12s infinite linear;
    animation-delay: 7s;
}
@keyframes leaves-left-5 {
    0% {
        top: -250px;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 750px;
        transform: rotate(-250deg);
        left: -250px;
        opacity: 0;
    }
}
.leaves-right-1 {
    background: url(../images/leaves-right-1.png) no-repeat;
    width: 200px;
    height: 115px;
    position: absolute;
    right: 200px;
    top: -250px;
    animation: leaves-right-1 12s infinite linear;
    animation-delay: 1s;
}
@keyframes leaves-right-1 {
    0% {
        top: -250px;
    }
    90% {
        transform: rotate(-200deg);
        opacity: 1;
    }
    100% {
        top: 850px;
        transform: rotate(-200deg);
        right: -250px;
        opacity: 0;
    }
}
.leaves-right-2 {
    background: url(../images/leaves-right-2.png) no-repeat;
    width: 140px;
    height: 55px;
    position: absolute;
    right: 200px;
    top: -250px;
    animation: leaves-right-2 12s infinite linear;
    animation-delay: 3s;
}
@keyframes leaves-right-2 {
    0% {
        top: -250px;
    }
    90% {
        transform: rotate(-100deg);
        opacity: 1;
    }
    100% {
        top: 850px;
        transform: rotate(-120deg);
        right: -250px;
        opacity: 0;
    }
}
.leaves-right-3 {
    background: url(../images/leaves-right-3.png) no-repeat;
    width: 160px;
    height: 74px;
    position: absolute;
    right: 100px;
    top: -250px;
    animation: leaves-right-3 12s infinite linear;
    animation-delay: 6s;
}
@keyframes leaves-right-3 {
    0% {
        top: -250px;
    }
    90% {
        transform: rotate(150deg);
        opacity: 1;
    }
    100% {
        top: 850px;
        transform: rotate(170deg);
        right: -250px;
        opacity: 0;
    }
}
.leaves-right-4 {
    background: url(../images/leaves-right-4.png) no-repeat;
    width: 59px;
    height: 110px;
    position: absolute;
    right: 200px;
    top: -250px;
    animation: leaves-right-4 12s infinite linear;
    animation-delay: 9s;
}
@keyframes leaves-right-4 {
    0% {
        top: -250px;
    }
    90% {
        transform: rotate(150deg);
        opacity: 1;
    }
    100% {
        top: 850px;
        transform: rotate(170deg);
        right: -250px;
        opacity: 0;
    }
}
.leaves-right-5 {
    background: url(../images/leaves-right-5.png) no-repeat;
    width: 110px;
    height: 65px;
    position: absolute;
    right: 250px;
    top: -250px;
    animation: leaves-right-5 12s infinite linear;
    animation-delay: 2s;
}
@keyframes leaves-right-5 {
    0% {
        top: -250px;
    }
    90% {
        transform: rotate(150deg);
        opacity: 1;
    }
    100% {
        top: 850px;
        transform: rotate(170deg);
        right: -250px;
        opacity: 0;
    }
}
/* Left Sidebar
// Forum

-----------------------------------------------------------------------------*/
:root {
  --bg-main:      #1f1f1f;
  --bg-item:      #2a2a2a;
  --bg-content:   #353535;
  --clr-title:    #ffd700;
  --clr-text:     #ddd;
  --clr-muted:    #bbb;
  --spacing:      10px;
  --radius:       6px;
}

/* כללי הווידג’ט */
.forum-threads-widget {
  background: var(--bg-main);
  border-radius: var(--radius);
  padding: var(--spacing);
  margin: 0 auto 16px;
  max-width: 300px;       /* רוחב מצומצם */
}

/* כותרת הווידג’ט */
.forum-threads-widget .main-title {
  color: var(--clr-title);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 6px;
}

/* קו מפריד מתחת לכותרת */
.forum-threads-widget .widget-header-divider {
  border-color: #444;
  margin-bottom: 8px;
}

/* רשימת הפריטים */
.forum-threads-widget .conversation-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* פריט בודד */
.forum-threads-widget .b-post-sm {
  display: flex;
  align-items: flex-start;
  background: var(--bg-item);
  border-radius: var(--radius);
  padding: 6px 8px;      /* מצומצם */
  margin-bottom: 6px;
  transition: background 0.2s, transform 0.2s;
}
.forum-threads-widget .b-post-sm:hover {
  background: #3a3a3a;
  transform: translateY(-1px);
}

/* אבטאר */
.forum-threads-widget .avatar.small {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-left: 8px;
  flex-shrink: 0;
  border: 2px solid #444;
}

/* תוכן הפריט */
.forum-threads-widget .b-post-sm__content {
  flex: 1;
  padding: 6px 8px;
  background: var(--bg-item);
  border-radius: var(--radius);
  color: var(--clr-text);
  font-size: 13px;
  line-height: 1.3;
  margin-left: 6px;
}

/* כותרת אשכול */
.forum-threads-widget .b-post-sm__title {
  background: #444;
  display: inline-block;
  padding: 3px 6px;
  border-radius: 4px;
  margin-bottom: 6px;
  font-size: 15px;
  position: relative;
}
.forum-threads-widget .b-post-sm__title a {
  color: var(--clr-title);
  font-weight: 600;
  text-decoration: none;
}
/* האייקון לפני הכותרת */
.forum-threads-widget .b-post-sm__title a::before {
  content: "📣";
  position: absolute;
  left: -22px;
  top: 0;
  font-size: 16px;
  line-height: 1;
}

/* מחבר האשכול */
.forum-threads-widget .b-post-sm__author {
  font-size: 11px;
  color: var(--clr-muted);
  margin-bottom: 6px;
}

/* תקציר התוכן */
.forum-threads-widget .b-post-sm__post-content {
  background: var(--bg-content);
  border: 1px solid #444;
  border-radius: 4px;
  padding: 6px 8px;
  font-size: 12px;
  line-height: 1.4;
  color: #eee;
  margin-bottom: 8px;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* רק 2 שורות */
  overflow: hidden;
}

/* Footer – ערוץ וזמן */
.forum-threads-widget .channel_text a,
.forum-threads-widget .b-post-sm__date {
  font-size: 10px;
  color: var(--clr-muted);
}

/* כפתור “הצג הכל” */
.forum-threads-widget .widget-footer {
  text-align: center;
  margin-top: 8px;
}
.forum-threads-widget .widget-footer .b-button {
  display: inline-block;
  padding: 5px 12px;
  font-size: 13px;
  background: var(--bg-item);
  border: 1px solid #555;
  border-radius: 4px;
  color: var(--clr-title);
  text-decoration: none;
}
.forum-threads-widget .widget-footer .b-button:hover {
  background: #333;
}

.download-block a.download-button {
    background: url(../images/muisrael-download-button.jpg) center;
    height: 90px;
    font-size: 14px;
    color: #fff;
}

.download-block a.download-button:hover {
    -webkit-filter: brightness(120%);
    filter: brightness(120%);
}

.download-block b {
    text-shadow: 1px 1px 1px rgb(145, 145, 145);
}

.download-block a.download-button span {
    padding-left: 50px;
}

.download-block a.download-button b {
    font-weight: 400;
    display: block;
    color: #efefef;
    font-size: 12px;
    margin-top: 5px;
}

.widget {
    padding: 10px;
    padding-bottom: 40px;
    padding-top: 31px;
    min-height: 305px;
}
.widget-title {
    text-transform: uppercase;
    font-weight: 600;
    color: #fff578;
    font-size: 14px;
    margin-bottom: 28px;
    position: relative;
    text-shadow: 1px 3px 3px rgba(25, 23, 23, 0.85), 0 0 5px #fff578, 0 0 10px #fff578; /* אפקט זוהר דק בצבע זהב */
}

.widget-title a:hover {
    text-decoration: underline;
}
.widget-title span {
    display: block;
    margin-top: 9px;
}
.widget-title:after {
    content: "";
    background: url(../images/muisrael-widget-title-bg.png) center right no-repeat;
    width: 117px;
    height: 69px;
    position: absolute;
    right: -22px;
    top: -26px;
}
.widget-title span,
.widget-title a {
    text-transform: none;
    font-size: 12px;
    color: #efefef;
    font-weight: 400;
}
.l-input {
    width: 100%;
    height: 65px;
    border: none;
    padding: 18px 51px 15px 50px;
    position: relative;
}
.l-input input {
    background: none;
    border: none;
    padding: 5px 15px;
    width: 170px;
}
.select-hidden {
    display: none;
    visibility: hidden;
}
.select {
    cursor: pointer;
    display: block;
    position: relative;
    width: 170px;
    height: 30px;
}
.select-styled {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: all 0.2s ease-in;
    color: #fff;
    padding: 7px 15px;
    width: 170px;
}
.select-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: -50px;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    background: linear-gradient(to bottom, #2a1c14, #573b2b);
    border: 1px solid #6a4411;
    width: 235px;
}

.select-options li {
    margin: 0;
    list-style: none !important;
    margin: 0px !important;
    padding: 10px 10px;
    border-bottom: 1px solid #744906;
    -moz-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    -webkit-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
    color: #fff;
}
.select-options li:hover {
    background: rgba(255, 255, 255, 0.1);
}

.select-options li[rel="hide"] {
    display: none;
}

.login-block p {
    margin-bottom: 5px;
}
.login-block a:hover {
    text-decoration: underline;
}
.login-block .lost a {
    color: #fff;
    font-size: 12px;
    line-height: 18px;
}

.login {
    background: url(../images/muisrael-login-input.png) no-repeat;
}
.pass {
    background: url(../images/muisrael-password-input.png) no-repeat;
}
.select-s {
    background: url(../images/muisrael-select_server.png) no-repeat;
}
.select-s-page {
    background: url(../images/muisrael-select_server-page.png) no-repeat;
}
.buttons {
    margin-top: 10px;
}
.top-block {
    width: 100%;
    color: #ffffff;
}
.top-block span {
    /* display: block; */
    /* padding-bottom: 1px; */
    
}
.top-block .top-number {
    width: 35px;
}
.top-block .top-flag {
    width: 25px;
    padding-top: 2px;
}

.top-block .top-name {
    width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.top-block .top-lvl {
    width: 55px;
}
.top-block .top-lvl sup {
    font-size: 10px;
    color: #ff0000;
}
.top-list {
    height: 36px;
    display: flex;
    align-items: center;
    padding: 0px 10px;
    font-size: 12px;
    border-bottom: 1px dashed #62441b;
    transition: 0.3s;
}
.top-list a {
    color: #fff;
}
.top-list:hover {
    background: url(../images/muisrael-fon-hover.jpg) repeat;
    margin: -1px -30px 0px -30px;
    padding: 0px 28px 0px 28px;
    box-shadow: 0em 0.5em 10px rgba(0, 0, 0, 0.5);
    height: 37px;
    color: #ffd562;
    position: relative;
    z-index: 5;
}

.top-list:hover a {
    color: #ffd562;
}
.top-title {
    height: 37px;
    display: flex;
    align-items: center;
    padding: 0px 10px;
    background: #1a100a;
    font-size: 13px;
    border-bottom: 1px solid #412a0b;
}
.no-reset {
    text-align: right;
    margin-top: 15px;
}
.no-reset a {
    color: #ffd562;
    font-size: 12px;
}
.gallery {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.gallery li {
    position: relative;
}
.gallery li img {
    outline: 1px solid rgba(255, 255, 255, 0.3);
    outline-offset: -1px;
    width: 113px;
    height: 75px;
}
.gallery li:first-child {
    margin-bottom: 8px;
}
.gallery li:first-child img {
    width: 235px;
    height: 145px;
    outline: 1px solid #ffffff;
}
.gallery li:first-child a {
    width: 235px;
    height: 145px;
}
.gallery li:first-child a:after {
    content: "";
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0px 50px 80px 5px rgba(0, 0, 0, 0.7);
}
.gallery li:first-child a:before {
    content: "";
    background: url(../images/play-icon.png) no-repeat;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -23px;
    margin-top: -20px;
    width: 46px;
    height: 46px;
    z-index: 2;
}
.gallery li a {
    display: block;
    cursor: pointer;
}
/* Middle
-----------------------------------------------------------------------------*/
.content {
    width: 630px;
    line-height: 1.3;
    background: url(../images/muisrael-fon-all-news-bg.png) repeat-y;
    position: relative;
}
.content-page {
    background: none;
    min-height: 50px;
    padding: 20px;
    line-height: 1.6;
}
.content-page img {
    max-width: 590px;
}
.content-page ul {
    padding-left: 20px;
    margin-bottom: 20px;
}
.content-page ul li {
    list-style: circle;
    margin: 5px 0px;
}
.sidebar {
    width: 285px;
    padding-top: 58px;
}

.slider-effect {
    content: "";
    position: absolute;
    width: 136px;
    height: 104px;
    background: url(../images/muisrael-slider-effect.png) no-repeat;
    top: 520px;
    left: 253px;
    z-index: 1;
}

.slider {
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 100px;
    width: 630px;
    height: 280px;
}



.slider .slides {
    position: relative;
    transition: 1s;
}
.slider .slides .slide {
    float: left;
    display: block;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 700px;
    width: 630px;
    height: 280px;
    border: 1px solid #373022;
}

.slider .slides .slide:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    box-shadow: inset 0 0 80px black;
}
.slider .slides .slide-info {
    position: relative;
    padding: 40px 35px 35px 35px;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 4;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.slider .slides .slide-info h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 25px;
}
.slider .slides .slide-info .slide-text {
    background: linear-gradient(
        to bottom,
        rgba(36, 32, 27, 0.8) 70%,
        rgba(0, 0, 0, 0)
    );
    color: #fff;
    line-height: 1.7;
    padding: 15px 35px;
    width: 470px;
    margin-left: -35px;
    margin-bottom: 15px;
    position: relative;
}
.slider .slides .slide-info .slide-text:before {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    background: #ffc500;
    top: -2px;
    left: 0;
}
.slider .slides .slide-info .slide-i {
    width: 100%;
}
.slider .slides .slide-info p {
    margin-bottom: 0px;
}
.slider .slides .slide-info .slide-date {
    font-size: 14px;
    color: #38352f;
    font-family: Candara, Arial, sans-serif;
}
.slider .slides .slide-info .slide-date span {
    color: #38352f;
    font-size: 18px;
}
.slider .slides .active .slide-info {
    transition: all 2s ease;
    opacity: 1;
}
.slider .arrows {
    position: absolute;
    height: 33px;
    width: 33px;
    top: 125px;
    z-index: 10;
    cursor: pointer;
    opacity: 0;
}
.slider .next {
    background: url(../images/arrow-right.png) no-repeat;
    right: 1px;
}
.slider .prev {
    background: url(../images/arrow-left.png) no-repeat;
    left: 1px;
}
.slider .navigation {
    position: absolute;
    bottom: 20px;
    left: 0px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.slider .navigation .dot {
    width: 2px;
    height: 2px;
    cursor: pointer;
    background-color: #fff;
    margin: 0px 10px;
}
.slider:hover .next,
.slider:hover .prev {
    opacity: 1;
    transition: all 0.7s ease;
}
.slider .navigation .active {
    border-radius: 50%;
    width: 7px;
    height: 7px;
    margin: 0px 5px;
    background-color: #ffc103;
    position: relative;
}
.slider .navigation .active:after {
    content: "";
    position: absolute;
    left: -2px;
    top: -2px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    padding: 1px;
    border: 1px solid rgba(240, 71, 71, 0.3);
    box-shadow: 0px 0px 8px 0px rgba(240, 71, 71, 0.6);
}

.content-title {
    background: url(../images/content-title-bg.png) no-repeat;
    height: 74px;
    position: relative;
    z-index: 2;
    padding: 19px 39px 0px 39px;
}

.content-title a {
    color: #fff;
    font-size: 12px;
}

.content-title h1,
.content-title h2,
.content-title h3 {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-weight: 400;
}
.block {
    min-height: 110px;
}
.news-block {
    margin-top: -20px;
}

.news .news-img img {
    display: block;
}
.news .news-info {
    width: 100%;
    padding: 24px 20px;
}
.news .news-info p {
    line-height: 1.6;
    margin-left: -15px;
    height: 120px;
    overflow: hidden;
}

.news-date-page {
    font-family: Candara, Arial, sans-serif;
    color: #efefef;
    font-size: 14px;
    padding-top: 20px;
}

.news-date-page span {
    color: #efefef;
}

.news-date {
    font-family: Candara, Arial, sans-serif;
    color: #efefef;
    font-size: 14px;
}
.news-date {
    color: #efefef;
    margin-left: -15px;
    padding-top: 14px;
}

.news-i .button {
}
.news-date span {
    color: #736c10;
}

.top-news-block .news-info {
    position: relative;
    z-index: 2;
    color: #efefef;
}
.top-news-block .news-info h2 {
    border-bottom: 1px solid #333;
    margin: 5px -10px 29px -80px;
    padding: 0px 20px 20px 0px;
}
.top-news {
    background-position: left;
    background-repeat: no-repeat;
    height: 304px;
    padding-left: 265px;
    position: relative;
}
.top-news:after {
    content: "";
    display: none;
    position: absolute;
    background: url(../images/muisrael-fon-news-bg.png) no-repeat;
    width: 630px;
    height: 304px;
    left: 0px;
    top: 0px;
    z-index: 1;
}

.pagination {
    padding-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
}
.page-numbers {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;
    text-align: center;
    line-height: 30px;
    border-radius: 5px;
    border: 1px solid #d3c9b1;
    color: #8d7951;
    text-decoration: none !important;
    font-size: 12px;
    margin: 0px 7px;
}
.page-numbers.active {
    background: radial-gradient(#d3c846, #b4a814);
    color: #fff;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}

.page-numbers:hover {
    background: radial-gradient(#e9e08b, #d1c876);
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2),
        inset 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.page-numbers.prev,
.page-numbers.next {
    background: radial-gradient(#d3c846, #b4a814);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
    font-size: 0px;
}
.page-numbers.prev:hover,
.page-numbers.next:hover {
    background: radial-gradient(#e9e08b, #d1c876);
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
}
.page-numbers.prev {
    margin: 0px 25px 0px 0px;
}
.page-numbers.next {
    margin: 0px 0px 0px 25px;
}
.page-numbers.prev:after {
    content: "";
    position: absolute;
    background: url(../images/prev-p.png) no-repeat;
    width: 12px;
    height: 16px;
    margin-left: -8px;
    margin-top: -7px;
    left: 50%;
    top: 50%;
    z-index: 2;
}
.page-numbers.prev:hover:after {
    background: url(../images/prev-p.png) no-repeat;
}
.page-numbers.next:after {
    content: "";
    position: absolute;
    background: url(../images/next-p.png) no-repeat;
    width: 12px;
    height: 16px;
    margin-right: -8px;
    margin-top: -7px;
    right: 50%;
    top: 50%;
}
.page-numbers.next:hover:after {
    background: url(../images/muisrael-next-p.png) no-repeat;
}
/* Right Sidebar
-----------------------------------------------------------------------------*/
.status-block {
    position: relative;
    background: url(../images/muisrael-status-bg.jpg) no-repeat;
    height: 120px;
    padding-left: 90px;
}

.status-logo-right {
    position: absolute;
    top: 50px; /* 🔼 אפשר לשנות ל-middle או bottom */
    right: 190px;
    height: 35px; /* 👈 גובה הלוגו הקטן */
    z-index: 3;
    opacity: 0.9;
}

.status-block:after {
    content: "";
    display: none;
    position: absolute;
    background: url(../images/muisrael-img-server-left.png) no-repeat;
    width: 106px;
    height: 154px;
    left: 0px;
    top: -16px;
}

.status-block:before {
    content: "";
    position: absolute;
    background: url(../images/muisrael-img-server-right.png) no-repeat;
    width: 128px;
    height: 91px;
    right: -20px;
    top: -16px;
    display: none;
}

.server {
    width: 160px;
    font-size: 14px;
}
.server .server-name {
    color: #ffde00;
}
.server .status-online {
    color: #58c526;
    float: right;
}
.server .status-online b {
    font-weight: 400;
    color: #58c526;
}
.progress-bar {
    height: 22px;
    margin: 21px -12px 5px -11px;
    position: relative;
}
.progress-bar:after {
    display: none;
    content: "";
    position: absolute;
    background: linear-gradient(to right, #010240, #3134d9);
    width: 100%;
    height: 13px;
    top: 6px;
    left: -14px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 0;
}
/*
.progress-bar span {
    height: 13px;
    background: linear-gradient(to right, #010240, #3134d9);
    display: block;
    position: relative;
    z-index: 1;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 0;
}
*/
.desc {
    color: #a79376;
    font-size: 11px;
    text-decoration: underline;
}
.desc:hover {
    text-decoration: none;
}
.top-block.guild .top-number {
    width: 60px;
}
.top-block.guild .top-number img {
    margin-bottom: -2px;
}
.top-block.guild .top-name {
    width: 105px;
}
.top-block.guild .score {
    width: 60px;
}
.events {
    line-height: 1.2;
}
.events li {
    border-bottom: 1px dashed #62441b;
    padding: 15px 0px;
    transition: 0.5s;
}
.events li:hover {
    background: url(../images/fon-hover.jpg) repeat;
    margin: -1px -30px 1px -35px;
    padding: 15px 35px 15px 25px;
    box-shadow: 0em 0.5em 10px rgba(0, 0, 0, 0.5);
    color: #ffd562;
    z-index: 2;
    position: relative;
}

.events li:hover a {
    color: #ffd562;
}
.events li:hover span {
    color: #a79255;
}
.events li a {
    display: block;
    margin-bottom: 4px;
    color: #fff;
}
.events li span {
    color: #bfb5ae;
    font-size: 11px;
}

/* Footer
-----------------------------------------------------------------------------*/
.footer {
    height: 310px;
    position: relative;
}

.footer:after {
    content: "";
    position: absolute;
    width: 1200px;
    left: 0;
    top: 73px;
}
.footer-block-t {
    position: absolute;
    width: 1200px;
    bottom: 130px;
    left: 0;
}
.f-menu {
    display: flex;
}
.f-menu li {
    margin: 0px 25px;
}
.f-menu li:first-child {
    margin: 0px 25px 0px 0px;
}
.f-menu li:last-child {
    margin: 0px 0px 0px 25px;
}
.f-menu li a {
    text-transform: uppercase;
    color: #cdae8e;
    font-size: 12px;
    padding: 0px 10px;
    display: block;
}

.f-menu li a:hover {
    color: #eee;
}

.f-menu li a:active {
    color: #eee;
}

.footer-block-l {
    width: 915px;
}
.footer-block-r {
    width: 260px;
    text-align: center;
}
.soc-block a {
    padding-top: 15px;
    display: inline-block;
    margin: -19px -6px 3px;
    background: url(../images/fon-icon-ss.png) no-repeat;
    height: 61px;
    width: 61px;
}
.soc-block a:hover {
    -webkit-filter: brightness(140%);
    filter: brightness(140%);
}
/*
.soc-block .facebook {
  background: url(../images/soc-icons.png) 7px 4px no-repeat;
}
.soc-block .twitter {
  background: url(../images/soc-icons.png) -32px 4px no-repeat;
}
.soc-block .twitch {
  background: url(../images/soc-icons.png) -72px 4px no-repeat;
}
.soc-block .youtube {
  background: url(../images/soc-icons.png) -113px 4px no-repeat;
}
*/

.footer-block-b {
    position: absolute;
    width: 1200px;
    top: 200px;
    padding-right: 30px;
}

.templstock:hover {
    -webkit-filter: brightness(120%);
    filter: brightness(120%);
}

.copyright p {
    font-size: 12px;
    color: #e0f0fd;
    margin-bottom: 25px;
}
.copyright p a {
    color: #eee;
}
.copyright span {
    color: #8b8b8c;
    text-transform: uppercase;
    font-size: 10px;
}

.sparks > div {
    position: absolute;
}

.sparks .spark_1 {
    background: url(../images/spark_1.png) no-repeat;
    width: 764px;
    height: 313px;
    right: 0;
    bottom: -120px;
    transform: scale(0.6);
    animation: spark-1 4s linear infinite;
    animation-delay: 1s;
}

@keyframes spark-1 {
    0% {
        bottom: -320px;
        transform: scale(0.6);
        opacity: 1;
    }
    25% {
        bottom: -240px;
        transform: scale(0.7);
        opacity: 1;
    }
    50% {
        bottom: -160px;
        transform: scale(0.8);
        opacity: 1;
    }
    75% {
        bottom: -80px;
        transform: scale(0.9);
        opacity: 0.5;
    }
    to {
        bottom: 0;
        transform: scale(1);
        opacity: 0;
    }
}

.sparks .spark_2 {
    background: url(../images/spark_2.png) no-repeat;
    width: 149px;
    height: 335px;
    right: 230px;
    bottom: -320px;
    transform: scale(0.6);
    animation: spark-1 4s linear infinite;
    animation-delay: 2s;
}

.sparks .spark_3 {
    background: url(../images/spark_3.png) no-repeat;
    width: 128px;
    height: 165px;
    right: 280px;
    bottom: -140px;
    transform: scale(0.6);
    animation: spark-3 4s linear infinite;
    animation-delay: 2s;
}

@keyframes spark-3 {
    0% {
        bottom: -140px;
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 1;
    }
    25% {
        bottom: -80px;
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
        opacity: 1;
    }
    50% {
        bottom: -20px;
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
        opacity: 1;
    }
    75% {
        bottom: 40px;
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0.5;
    }
    to {
        bottom: 100px;
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

.sparks .spark-big {
    background: url(../images/spark_4.png) no-repeat;
    width: 794px;
    height: 176px;
    right: 0;
    bottom: -180px;
    transform: scale(0.6);
    animation: spark-5 4s linear infinite;
}

.sparks {
    /* position: absolute; */
    /* margin-top: 50%; */
    width: 80%;
    filter: hue-rotate(150deg);
    margin-top: 20% !important;
    margin: 0 auto;
}

@keyframes spark-5 {
    0% {
        bottom: -180px;
        transform: scale(0.6);
        opacity: 1;
    }
    25% {
        bottom: -120px;
        transform: scale(0.7);
        opacity: 1;
    }
    50% {
        bottom: -60px;
        transform: scale(0.8);
        opacity: 1;
    }
    75% {
        bottom: 0;
        transform: scale(0.9);
        opacity: 0.5;
    }
    to {
        bottom: 60px;
        transform: scale(1);
        opacity: 0;
    }
}

.toTop-fon {
    background: url(../images/muisrael-fon-all-news-bottom-bg.png) center bottom
        no-repeat;
    display: flex;
    justify-content: center;
    height: 65px;
    padding-top: 25px;
    position: absolute;
    bottom: -55px;
    width: 630px;
    margin-left: -630px
}

.toTop {
    background: url(../images/muisrael-fon-circle.png) no-repeat;
    width: 98px;
    height: 98px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    z-index: 1;
    display: none !important;
}

.toTop-fon:after {
    content: "";
    position: absolute;
    background: url(../images/muisrael-slider-bottom-img.png) no-repeat;
    bottom: -25px;
    left: 50%;
    margin-left: -325px;
    width: 650px;
    height: 29px;
}

.toTop:hover {
    -webkit-filter: brightness(120%);
    filter: brightness(120%);
}

.red-light {
    background: url(../images/red-light-top-bg.webp) center top no-repeat,
        url(../images/red-light-bottom-bg.webp) center bottom no-repeat,
        url(../images/red-light-bg.jpg) center repeat-y;
}
.red-dark {
    background: url(../images/red-dark-top-bg.png) center top no-repeat,
        url(../images/red-dark-bottom-bg.png) center bottom no-repeat,
        url(../images/red-dark-line-bg.jpg) center repeat-y;
}

.modalx-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    cursor: pointer;
    overflow: auto;
    visibility: hidden;
    -webkit-transition: background 0.25s linear;
    -moz-transition: background 0.25s linear;
    transition: background 0.25s linear;
}
.modal_window {
    z-index: 9999;
    position: relative;
    cursor: auto;
    margin: 0 auto;
    display: none;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    transition: all 0.25s linear;
    margin-bottom: 20px;
    transform: scale(0.4);
    background: #000;
    width: 1000px;
    height: 540px;
    box-shadow: 0px 10px 63px 0px rgba(0, 0, 0, 0.5);
    background: url(../images/sidebar-bg.jpg);
}
.close-r {
    display: block;
    position: absolute;
    margin-top: -25px;
    width: 70px;
    height: 70px;
    right: -35px;
    background: url(../images/close_popup.png) no-repeat;
    filter: hue-rotate(50deg);
    -webkit-filter: hue-rotate(50deg);
}
.modal_window iframe {
    border: 0px;
}
/*# sourceMappingURL=style.css.map */
