body {
  margin: 0;
  padding: 0;
  font-family: 'Karla', sans-serif;
  background-color: #0c122c;
  background-image: url('bg-desktop.png');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: cover; /* ← دي المهمة */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center; 
  gap: 30px;
}




/* العلبة اللي فيها الشعار والأيقونات */
.f1 {
  background-color: hsl(228, 56%, 26%);
  padding: 20px;
  border-radius: 10px 10px 100px 10px;
  display: flex;
  gap: 20px;
  width: 320px;
  margin-bottom: 20px;
}

.m1 img {
  width: 100px;
}

.m2 img {
  background-color: hsl(229, 57%, 11%);
  padding: 10px;
  border-radius: 10px;
  margin-right: 8px;
}

/* الصندوق اللي فيه البار والبالونة */
.f2 {
  background-color: hsl(228, 56%, 26%);
  padding: 20px;
  border-radius: 10px;
  width: 320px;
  position: relative;
  text-align: left;
}

.f2 p {
  font-size: 14px;
  margin-bottom: 10px;
}

/* الشريط */
.progress-bar-container {
  background-color: #141b39;
  height: 16px;
  border-radius: 50px;
  overflow: hidden;
  width: 100%;
  margin: 10px 0;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  width: 81.5%;
  background: linear-gradient(to right, #ff8c9b, #ff3e91);
  border-radius: 50px;
}

/* الأرقام تحت الشريط */
.storage-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-top: 5px;
  color: #c0c3d0;
}

/* البالونة */
.bubble {
  background-color: white;
  color: #0c122c;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 14px;
  position: absolute;
  top: -35px;
  right: 10px;
}

.bubble::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid white;
} 
