*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-image: url("images/background.png");
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding-top: 90px;
}
.mySwiper{
    width: 100%;
    max-width: 980px;
    margin: 24px auto 32px;
    padding-bottom: 40px;
}
.swiper-slide{
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.18);
    box-shadow: 0 15px 30px rgba(0,0,0,0.35);
    border-radius: 18px;
    width: 240px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform .3s ease;
}
.swiper-slide:hover img{
    transform: scale(1.03);
}
.swiper-pagination-bullet{
    background: rgba(255,255,255,0.5);
    opacity: 1;
}
.swiper-pagination-bullet-active{
    background: #ed1d24;
}
/* --- Navbar Professional Styles --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 75px;
    background: rgba(15, 15, 15, 0.85); /* خلفية داكنة شفافة */
    backdrop-filter: blur(12px); /* تأثير ضبابي عصري */
    border-bottom: 3px solid #ed1d24; /* خط مارفل الأحمر */
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* دفع العناصر للأطراف */
    align-items: center;
}

/* تصميم الشعار (Marvel Style) */
.logo-brand {
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 900;
    display: flex;
    align-items: center;
}

.marvel-tag {
    background: #ed1d24;
    color: white;
    padding: 0 6px;
    margin-left: 4px;
}

.studio-tag {
    color: white;
    letter-spacing: 1px;
}

/* روابط التنقل */
.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-item {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.8rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    right: 0;
    background-color: #ed1d24;
    transition: width 0.3s ease;
}

.nav-item:hover {
    color: #ed1d24;
}

.nav-item:hover::after {
    width: 100%;
}

/* زر الأفلام المتميز */
.btn-movies {
    background: #ed1d24;
    color: white;
    border: none;
    padding: 8px 20px;
    font-weight: 800;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
    box-shadow: 0 4px 15px rgba(237, 29, 36, 0.2);
}

.btn-movies:hover {
    background: white;
    color: #ed1d24;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 29, 36, 0.4);
}

/* استجابة الهاتف */
@media (max-width: 768px) {
    .nav-container {
        width: 95%;
    }
    .nav-links {
        gap: 12px;
    }
    .nav-item {
        font-size: 0.85rem;
    }
}
/*slide*/
html,
    body {
      position: relative;
      height: 100%;
    }

    body {
      background: #000;
      font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
      font-size: 14px;
      color: #fff;
      margin: 0;
      padding: 0;
    }

    .swiper {
      width: 100%;
      padding-top: 36px;
      padding-bottom: 36px;
    }

    .swiper-slide {
      background-position: center;
      background-size: cover;
      width: 220px;
      height: 260px;
      border-radius: 16px;
      overflow: hidden;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 16px;
    }
/*information*/
#button{
  display: block;
  margin: 28px auto 16px;
  border-radius: 999px;
  background: linear-gradient(45deg, #ed1d24, #ff3b43);
  color: #fff;
  padding: 12px 26px;
  border: none;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: .4px;
  box-shadow: 0 8px 20px rgba(237,29,36,.35);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
#button:hover{
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 12px 28px rgba(237,29,36,.5);
}

#information.eventes{
  width: min(900px, 92vw);
  margin: 18px auto 40px;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255,255,255,.14);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.55);
  padding: 24px 20px;
  direction: rtl;
  line-height: 1.9;
  color: #f0f0f0;
  animation: infoFadeIn .6s ease-out both;
}
#information.eventes p{
  margin: 0;
  font-size: 1rem;
  white-space: pre-line;
}

@keyframes infoFadeIn{
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px){
  #information.eventes{
    padding: 18px 16px;
    line-height: 1.8;
  }
  #button{
    padding: 10px 22px;
  }
}
.eventes_hidden{
    opacity: 0;
    visibility: hidden;
}
.eventes{
    opacity: 1;
    visibility: visible;
}
