#main-content.main-content-animation {
    transition: opacity 0.5s ease-in-out;
  }
  #main-content {
    opacity: 0;
  }
  #main-content.main-content-visible {
    opacity: 1;
  }
  
  #animation-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    z-index: 1000;
  }
  #animation-container.animation-container-hidden {
    opacity: 0;
    pointer-events: none;
  }
  
  #animation-container #skip-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(102, 102, 102, 0.7);
    font-family: "Cairo", sans-serif;
    font-size: 1rem; /* 16px for desktop */
    cursor: pointer;
    z-index: 1001;
    opacity: 0;
    transition:
      opacity 0.5s ease-in-out,
      color 0.3s ease;
    animation: fadeInButton 0.5s ease-in-out 1s forwards; /* Fade in after 1.5s */
  }
  #animation-container #skip-button:hover {
    color: #333333;
    opacity: 1;
  }
  @keyframes fadeInButton {
    from {
      opacity: 0;
    }
    to {
      opacity: 0.7;
    }
  }
  /* Responsive font size for mobile */
  @media (max-width: 768px) {
    #animation-container #skip-button {
      font-size: 0.875rem; /* Smaller font for mobile */
    }
  }
  