body {
  font-family: 'Cairo', sans-serif;
  margin: 0;
  padding: 0;
  cursor: none;
  overflow: hidden;
  background: #111; 
}

/* لودر */
#loader {
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: 0.5s;
}
#loader h1 {
  color: white;
  font-size: 48px;
  letter-spacing: 4px;
}

/* بانر كامل الصفحة */
.banner {
  position: fixed;
  top:0; left:0;
  width:100%;
  height:100%;
  background: url("images/banner2.jpg") center/cover no-repeat;
  z-index: -1;
  filter: brightness(0.6);
}

/* الكارد */
.container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.card {
  background: rgba(40,40,40,0.6);
  backdrop-filter: blur(8px);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  color: #ccc; 
}

.logo-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.site-logo {
  width: 90px;
  border-radius: 50%; /* لوجو دائري */
  border: 2px solid #fff;
}

.bio {
  margin-top: 15px;
  font-size: 14px;
  color: #aaa;
  text-align: center;
  line-height: 1.6;
}

.buttons-inline {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.button-img-small {
  width: 45px;
  filter: grayscale(100%);
  cursor: pointer;
  transition: 0.3s;
}

.button-img-small:hover {
  transform: scale(1.15);
  filter: grayscale(0%);
}

/* مؤشر ماوس */
.custom-cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  background: url("images/cursor.png") center/contain no-repeat;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10000;
  filter: drop-shadow(0 0 6px #aaa);
}

/* زر الصوت */
.audio-panel {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(60,60,60,0.8);
  padding: 8px 12px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
  z-index: 10001;
  opacity: 0; /* يظهر بعد اللودر */
  pointer-events: none;
  transition: opacity 0.5s;
}

.audio-panel img {
  width: 28px;
  cursor: pointer;
  filter: invert(100%); /* أبيض */
  transition: 0.3s;
}

.audio-panel img:hover {
  transform: scale(1.1);
}

#volume-control {
  width: 90px;
  accent-color: white; /* لون الشريط أبيض */
}
