body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: url('back.png') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  
  .container {
    text-align: center;
    color: #fff;
    padding: 20px;
  }
  
  .logo {
    width: 180px;
    height: auto;
    margin-bottom: 0px;
  }
  
  h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .email-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #fff;
    color: #333;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .email-button:hover {
    background-color: #6bad6a;
    color: #fff;
    transform: translateY(-2px);
  }
  
  .play-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff6b35;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    border: 2px solid #fff;
  }
  
  .play-button:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
  }
  
  /* Torch effect styles */
  #torch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: radial-gradient(
      circle 150px at var(--mouse-x, 50%) var(--mouse-y, 50%),
      transparent 0%,
      rgba(0, 0, 0, 0.6) 70%,
      rgba(0, 0, 0, 0.8) 100%
    );
    transition: background 0.1s ease;
  }
  
  /* Hide torch effect on mobile devices */
  @media (max-width: 768px) {
    #torch-overlay {
      display: none;
    }
  }
  
  /* Optional: Add a subtle glow effect */
  #torch-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
      circle 80px at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
    pointer-events: none;
  }
  
  /* Side text styles */
  .side-text {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    color: #fff;
    z-index: 100;
    padding: 20px;
  }
  
  .left-text {
    left: 30px;
  }
  
  .right-text {
    right: 30px;
  }
  
  .side-content {
    background: rgba(0, 0, 0, 0.7);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .side-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ff6b35;
    font-weight: bold;
  }
  
  .side-content p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 20px;
    opacity: 0.9;
  }
  
  .side-content p:last-child {
    margin-bottom: 0;
  }
  
  /* Responsive design for side text */
  @media (max-width: 1200px) {
    .side-text {
      width: 200px;
      padding: 15px;
    }
    
    .side-content {
      padding: 20px;
    }
    
    .side-content h3 {
      font-size: 1.1rem;
    }
    
    .side-content p {
      font-size: 0.85rem;
    }
  }
  
  @media (max-width: 768px) {
    .side-text {
      position: static;
      width: 100%;
      padding: 15px;
      margin-top: 20px;
      transform: none;
    }
    
    .left-text, .right-text {
      left: auto;
      right: auto;
    }
    
    .side-content {
      margin: 0 15px;
    }
  }