body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    background: #1a1a1a;
    position: relative;
    overflow-x: hidden;
  }

  /* Background with vignette */
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      /* linear-gradient(
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.3)
      ), */
      url('eid-mubarak.svg') no-repeat center center;
    background-size: cover;
    z-index: -1;
  }

  .social-buttons {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px 0;
  }

  .social-buttons a {
    display: inline-block;
    margin: 0 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: transform 0.3s ease;
  }

  .social-buttons a:hover {
    transform: scale(1.1);
  }

  .social-buttons img {
    width: 100%;
    height: 100%;
  }

  .ad-spaces {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    z-index: 2;
    display: none; /* Hidden by default until ads are live */
  }

  .ad-space {
    width: 728px;
    height: 90px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
  }

  .countdown-container {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 40px 20px;
  }

  .title {
    font-family: 'Lobster', cursive;
    color: #ffffff;
    font-size: 48px;
    margin-bottom: 40px;
    text-shadow: 0 0 10px #fdf25b ;
  }

  .countdown {
    font-size: 82px;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0 15px;
  }

  .countdown span {
    display: inline-block;
    font-family: 'Lobster', 'Pirata One', cursive;
    position: relative;
    padding: 0 10px;
  }

  .countdown .number {
    /* background: linear-gradient(45deg, #FFD700 0%, #fdd523 20%, #f7ee44 40%, #e6f826 60%, #edda0f 80%, #dad720 100%); */
    background: url('Images/text-image0.jpg') no-repeat center center;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
    font-size: 92px;
    position: relative;
    transform: translateY(-5px);
  }

  .countdown .number::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 166, 255, 0.2), transparent);
    z-index: 1;
    pointer-events: none;
  }

  .countdown .unit {
    font-family: 'Lobster', cursive;
    font-size: 32px;
    background: url('Images/text-image0.jpg') no-repeat center center;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin: 0 20px;
    opacity: 1;
    transform: translateY(20px);
  }

  .message, .website {
    font-family: 'Lobster', cursive;
    color: #ffffff;
    text-shadow: 0 0 10px #fdf25b;
  }

  .message {
    font-size: 48px;
    margin-top: 20px;
    text-shadow: 0 0 10px #fdf25b;
  }

  .website {
    font-size: 24px;
    opacity: 0.8;
    margin-top: 20px;
  }

  #particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
  }

  /* Prevent text selection */
  * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .eid-buttons {
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 20px 0;
  }

  .eid-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 10px;
    text-decoration: none;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    font-family: 'Lobster', cursive;
    font-size: 1.2em;
  }

  .eid-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
  }

  /* Hamburger Menu Styles */
  .hamburger-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
  }

  .menu-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }

  .menu-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
  }

  .menu-icon i {
    color: #fff;
    font-size: 20px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: right 0.3s ease;
    z-index: 1001;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu.active {
    right: 0;
  }

  .menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu-logo {
    width: 30px;
    height: 30px;
  }

  .close-menu {
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s ease;
  }

  .close-menu:hover {
    color: #fdf25b;
  }

  .nav-menu ul {
    list-style: none;
    padding: 20px;
    margin: 0;
  }

  .nav-menu ul li {
    margin-bottom: 15px;
  }

  .nav-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .nav-menu ul li a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
  }

  .nav-menu ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fdf25b;
  }

  .menu-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu-footer p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 14px;
  }

  /* Language Selector */
  .language-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .language-selector i {
    color: #ffd700;
    font-size: 1.2em;
  }

  .language-selector select {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
    width: 100%;
  }

  .language-selector select:focus {
    outline: none;
    border-color: #ffd700;
  }

  .language-selector select option {
    background-color: #1a1a1a;
    color: white;
  }

  
  /* RTL Language Support */
  [lang="ar"], [lang="ur"] {
    direction: rtl;
    text-align: right;
  }

  [lang="ar"] .countdown,
  [lang="ur"] .countdown {
    direction: ltr;
    text-align: center;
  }

  [lang="ar"] .nav-menu ul li a,
  [lang="ur"] .nav-menu ul li a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  [lang="ar"] .nav-menu ul li a i,
  [lang="ur"] .nav-menu ul li a i {
    margin-left: 12px;  /* Add space between icon and text for RTL languages */
    margin-right: 0;
  }

  [lang="ar"] .language-selector,
  [lang="ur"] .language-selector {
    flex-direction: row-reverse;
  }

  /* Adjust font sizes for Chinese characters */
  [lang="zh"] {
    font-size: 1.1em;
  }

  .language-notification {
    position: fixed;
    top: 20px;
    right: 70px;
    background-color: rgba(26, 26, 26, 0.95);
    color: #ffd700;
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.3);
    z-index: 1000;
    cursor: pointer;
    animation: slideIn 0.5s ease-out, float 2s ease-in-out infinite;
    backdrop-filter: blur(5px);
  }

  .language-notification i {
    font-size: 1.2em;
  }

  .language-notification span {
    font-size: 0.95em;
    white-space: nowrap;
  }

  .language-notification .fa-arrow-right {
    animation: bounceRight 1s infinite;
  }

  @keyframes slideIn {
    from {
      transform: translateX(100px);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }

  @keyframes bounceRight {
    0%, 100% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(5px);
    }
  }

  /* RTL support for language notification */
  [lang="ar"] .language-notification,
  [lang="ur"] .language-notification {
    right: auto;
    left: 70px;
  }

  [lang="ar"] .language-notification .fa-arrow-right,
  [lang="ur"] .language-notification .fa-arrow-right {
    transform: scaleX(-1);
  }
  
  /* Mobile Styles */
  @media screen and (max-width: 768px) {
    .nav-menu {
      width: 100%;
      right: -100%;
    }
  }

  /* Responsive Design */
  @media screen and (max-width: 1200px) {
    .countdown .number {
      font-size: 72px;
    }
    .countdown .unit {
      font-size: 28px;
    }
    .title, .message {
      font-size: 42px;
    }
  }

  @media screen and (max-width: 768px) {
    .countdown .number {
      font-size: 56px;
    }
    .countdown .unit {
      font-size: 24px;
      margin: 0 10px;
    }
    .title, .message {
      font-size: 36px;
    }
    .website {
      font-size: 20px;
    }
    .social-buttons a {
      width: 35px;
      height: 35px;
    }
  }

  @media screen and (max-width: 480px) {
    .countdown .number {
      font-size: 42px;
    }
    .countdown .unit {
      font-size: 20px;
      margin: 0 5px;
    }
    .title, .message {
      font-size: 32px;
    }
    .website {
      font-size: 18px;
    }
    .social-buttons a {
      width: 30px;
      height: 30px;
      margin: 0 3px;
    }
    .countdown-container {
      padding: 20px 10px;
    }
  }

  @media screen and (max-width: 320px) {
    .countdown .number {
      font-size: 36px;
    }
    .countdown .unit {
      font-size: 16px;
    }
    .title, .message {
      font-size: 28px;
    }
    .website {
      font-size: 16px;
    }
  }