/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    direction: rtl;
  }

  body {
    background: linear-gradient(135deg, #0dbf73, #28c497);
    color: white;
    text-align: center;
    padding: 50px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .container {
    height: 87vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    font-size: 2rem;
    font-weight: bold;
    animation: fadeInDown 1s ease-in-out;
  }

  .logo img {
    width: 200px;
  }

  .content {
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
  }

  .coming {
    font-size: 4.2rem;
    font-weight: 700;
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 75px;
    letter-spacing: 15px;
    animation: fadeInUp 1.2s ease-in-out;
  }

  .subtitle {
    font-size: 1.7rem;
    animation: fadeInUp 1.4s ease-in-out;
    font-family: 'Cairo', sans-serif;
  }

  .date {
    font-size: 2.5rem;
    font-weight: bold;
    font-family: 'Segoe UI';
    animation: zoomIn 1.6s ease-in-out;
    line-height: 85px;
    background: linear-gradient(135deg, #38ef7d, #11998e);
    -webkit-background-clip: text;   /* يخلي الخلفية تتقص على شكل النص */
    -webkit-text-fill-color: transparent; /* يخلي النص شفاف ويظهر اللون اللي وراه */
  }
  
  .date>span {
    font-size: 6rem;
    color: #fff;
  }

  .note {
    font-size: 2.1rem;
    animation: fadeIn 1.8s ease-in-out;
    font-family: 'Cairo', sans-serif;
  }

  .website {
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    margin-bottom: 40px;
    display: inline-block;
    animation: fadeIn 2s ease-in-out;
  }

  .social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
    animation: fadeInUp 2.2s ease-in-out;
    direction: ltr;
  }

  .social a {
    color: white;
    font-size: 2.5rem;
    transition: transform 0.3s ease;
  }

  .social a:hover {
    transform: scale(1.2);
    color: #00ca6c;
    background: linear-gradient(135deg, #38ef7d, #11998e);
    -webkit-background-clip: text;   /* يخلي الخلفية تتقص على شكل النص */
    -webkit-text-fill-color: transparent; /* يخلي النص شفاف ويظهر اللون اللي وراه */
  }

  .video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* يخلي الفيديو يتمدد من غير ما يتقطع */
    z-index: -2; /* يخليه ورا كل العناصر */
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* طبقة سودة شفافة */
    z-index: -1; /* فوق الفيديو بس تحت النص */
  }
  

  /* Animations */
  @keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes zoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* Responsive */
  @media (max-width: 768px) {
    .coming {
      font-size: 3.5rem;
    }
    .date {
      font-size: 4rem;
    }
    .logo {
      font-size: 1.5rem;
    }
  }