@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Tajawal", sans-serif;
}

body {
  overflow: hidden;
  height: 100vh;
}

.video-background video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(60%);
}

.welcome-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.start-btn {
  display: inline-block;
  background-color: #f9b233;
  color: white;
  padding: 12px 35px;
  border-radius: 30px;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.start-btn:hover {
  background-color: #ffcc00;
  transform: scale(1.05);
}
/* تصميم القائمة الجانبية الجديدة */
.sidebar {
  position: fixed;
  right: 0;
  top: 0;
  width: 220px;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
}

/* الروابط داخل القائمة */
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: center;
}

.sidebar ul li {
  margin: 25px 0;
}

.sidebar ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  font-family: "Cairo", sans-serif;
  transition: 0.3s;
}

/* تأثير الإضاءة عند المرور */
.sidebar ul li a:hover {
  color: #ffd700;
  text-shadow: 0 0 8px #ffd700, 0 0 20px #fff;
  transform: scale(1.1);
}

/* عناصر فيها وميض */
.special a {
  animation: glow 2s infinite alternate;
}

/* حركة الوميض */
@keyframes glow {
  from {
    text-shadow: 0 0 5px #ffd700;
  }
  to {
    text-shadow: 0 0 25px #ffdd33, 0 0 50px #fff;
  }
}

 