body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #1e1e2f;
    color: #fff;
  }
  
  button {
    background: #ff4757;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s ease;
  }
  
  button:hover {
    background: #ff6b81;
  }
  
  #movie-info {
    margin-top: 20px;
    text-align: center;
    max-width: 600px;
  }
  
  #movie-info img {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 10px;
  }
  
  .loading {
    font-size: 18px;
    margin-top: 20px;
  }
  