/* Intro Video Screen */
.intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease;
  }
  
  .intro-screen.visible {
    display: block;
    opacity: 1;
  }
  
  .intro-screen.hidden {
    opacity: 0;
    pointer-events: none;
  }
  
  .intro-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .skip-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(1, 22, 39, 0.7);
    color: var(--light);
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    transition: background-color 0.3s ease;
  }
  
  .skip-button:hover {
    background-color: rgba(255, 107, 53, 0.7);
  }
  
  /* Main Content */
  .main-content {
    display: none;
    opacity: 0;
    transition: opacity 1s ease;
    background-color: var(--light);
    color: var(--dark);
  }
  
  .main-content.visible {
    display: block;
    opacity: 1;
  }