/* styles.css */
body {
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
  }
  
  .container {
    text-align: center;
    width: 90%;
    max-width: 1200px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
  }
  
  h1 {
    margin-bottom: 20px;
    font-size: 28px;
  }
  
  .video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 450px;
    margin: 0 auto;
    border-radius: 10px;
    background: black;
    overflow: hidden;
  }
  
  video,
  canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  #loading {
    margin: 20px 0;
    font-size: 16px;
    color: #ffeb3b;
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    h1 {
      font-size: 24px;
    }
  
    .video-container {
      height: 300px;
    }
  }
  
  @media (max-width: 480px) {
    h1 {
      font-size: 20px;
    }
  
    .video-container {
      height: 250px;
    }
  }
  