body {
  background: #0a001f;
}

.container {
  width: 80px;
  height: 100px;
  margin: 100px auto;
  margin-top: calc(100vh / 2 - 50px);
}

.block {
  position: relative;
  box-sizing: border-box;
  float: left;
  margin: 0 10px 10px 0;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: #FFF;
}

.block:nth-child(4n+1) { animation: wave 2s ease .0s infinite; }
.block:nth-child(4n+2) { animation: wave 2s ease .2s infinite; }
.block:nth-child(4n+3) { animation: wave 2s ease .4s infinite; }
.block:nth-child(4n+4) { animation: wave 2s ease .6s infinite; margin-right: 0; }

@keyframes wave {
  0%   { top: 0;     opacity: 1; }
  50%  { top: 30px;  opacity: .2; }
  100% { top: 0;     opacity: 1; }
}

body {
  margin: 0;
  padding: 0;
  background: #000826;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start; /* لضبط المحاذاة العلوية */
}

.coming-soon {
  position: absolute;
  top: 33%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 48px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  font-family: 'Arial', sans-serif;
  transition: opacity 1.5s ease, filter 1.5s ease;
}

.coming-soon:hover {
  opacity: 0; /* تلاشي النص */
  filter: blur(8px); /* إضافة تأثير البلور */
}

/* إضافة Media Query لشاشات الموبايل */
@media (max-width: 768px) {
  .coming-soon {
    font-size: 30px; /* تقليل حجم الخط على شاشات الموبايل */
    top: 25%; /* تعديل موضع النص ليتناسب مع الشاشات الأصغر */
  }
}

@media (max-width: 480px) {
  .coming-soon {
    font-size: 24px; /* تقليل حجم الخط أكثر على شاشات الموبايل الصغيرة */
    top: 20%; /* تعديل موضع النص بشكل أكبر */
  }
}
