* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Tahoma", sans-serif;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden; /* بدون سكرول */
}

/* خلفية افتراضية لو ما فيه ملف */
body {
  background: linear-gradient(135deg,
    #d6a874,
    #e8cfa3,
    #cfa26b,
    #e6c38a
  );
}

/* فيديو الخلفية */
#bgVideo {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  display: none;
}

/* زر تسجيل الدخول */
#loginBtn {
  position: fixed;
  top: 20px;
  left: 20px;
  padding: 10px 20px;
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  backdrop-filter: blur(5px);
}

/* العنوان */
.title {
  text-align: center;
  margin-top: 60px;
  color: #3b250e;
}

.title h1 {
  font-size: 40px;
}

.title h2 {
  margin-top: 10px;
  opacity: 0.8;
}

/* الألعاب */
.games {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-top: 60px;
  flex-wrap: wrap;
}

/* كرت اللعبة */
.game {
  width: 170px;
  height: 170px;
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255,255,255,0.35);
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease;
}

.game:hover {
  transform: scale(1.05);
}

/* صورة أو فيديو داخل الكرت */
.game img,
.game video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
