@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

html {
    box-sizing: border-box;
    background: linear-gradient(to top, #232526, #0b0b0b);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
  }
  
  *, *:before, *:after {
    box-sizing: inherit;
  }
  
  body {
    margin: 0;
    padding: 0;
    display: flex;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
  }
  
  /* Curtains */
  
  .curtain {
    position: absolute;
    top: -10%;
    height: 120%;
    width: 50vw;
    z-index: 100;
    transition: all 3s ease-out 0s;
    transform: rotate(0deg);
  }
  .curtain.-left {
    left: 0px;
    background: linear-gradient(to left, rgba(0, 0, 0, 0), #660000, #8B0000, #660000), linear-gradient(to left, #8B0000, #4A0000, #8B0000);
    background-size: 17% 17%, 14% 14%;
  }
  .curtain.-right {
    right: 0px;
    background: linear-gradient(to left, rgba(0, 0, 0, 0), #660000, #8B0000, #660000), linear-gradient(to left, #8B0000, #4A0000, #8B0000);
    background-size: 17% 17%, 14% 14%;
  }
  .open-curtains .curtain.-left {
    left: -16vw;
    width: 10vw;
    transform: rotate(7deg);
  }
  .open-curtains .curtain.-right {
    right: -16vw;
    width: 10vw;
    transform: rotate(-7deg);
  }
  
  /* Stage Container */
  .stage-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    overflow: hidden;
  }
  
  .stage-image {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    display: block;
  }
  
  .stage-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transform: translateY(-10%);
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
  }
  
  /* Logo */
  .logo {
    margin-bottom: 30px;
  }
  
  .logo img {
    max-height: 100px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
  }
  
  /* Stage Text */
  .stage-text {
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    opacity: 1;
    transform: translateY(0);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }
  
  .stage-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }
  
  .stage-text p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.6;
    font-weight: 400;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .logo img {
      max-height: 60px;
    }
    
    .stage-text h1 {
      font-size: 1.8rem;
    }
    
    .stage-text p {
      font-size: 1rem;
    }
    
    .stage-content {
      padding: 15px;
    }
  }
  
  @media (max-width: 480px) {
    .stage-text h1 {
      font-size: 1.5rem;
    }
    
    .stage-text p {
      font-size: 0.9rem;
    }
    
    .stage-content {
      padding: 10px;
    }
  }
  
  /* Mobile viewport fix */
  @media screen and (max-width: 768px) {
    body {
      width: 100vw;
      height: 100vh;
      overflow: hidden;
      position: fixed;
    }
    
    .stage-container {
      width: 100vw;
      height: 100vh;
      overflow: hidden;
    }
    
    .stage-image {
      width: 100vw;
      height: 100vh;
    }
  }