/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: black;
    font-family: monospace;
    overflow-y: auto;
  }
  
  /* Video Player Styles */
  .video-player {
    padding: 20px;
  }
  
  .video-thumbnail video {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-top: 20px;
  }
  
  /* Chapters Section Styles */
  .chapters {
    color: #fff;
    margin-top: 25px;
    font-family: monospace;
  }
  
  /* Paragraph Styles */
  p {
    font-family: monospace; /* Apply monospace font to all paragraphs */
  }
  
  /* Chapter List Styles */
  .chapter-list {
    display: grid;
    font-family: monospace;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 10px; /* Space between the chapter buttons */
      margin-top: 30px;
      justify-content: space-between;
      
  }
  
  /* Chapter Button Styles */
  .chapter {
    cursor: pointer;
    padding: 10px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box; /* Ensures padding and border are included in the element's total width and height */
    width: 100%; /* Ensure button fills its grid cell */
  }
  
  .chapter:hover {
    background-color: rgba(255, 255, 255, 0.699); /* Light background color on hover */
    border-color: rgb(245, 245, 243); /* Change border color on hover */
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); /* Add shadow on hover */
  }
  
  /* Back Button Styles */
  .back-button {
    font-family: monospace;
    width: 100px;
    height: 50px;
    border-radius: 15px;
    position: absolute;
    top: 20px;
    left: 18px;
    font-size: 20px;
    transition: 0.3s ease;
    background-color: rgb(6, 6, 141);
    color: white;
  }
  
  .back-button:hover {
    background-color: rgba(255, 255, 255, 0.699); /* Light background color on hover */
    border-color: rgb(245, 245, 243); /* Change border color on hover */
  }
  
  /* Background Animation Styles */
  .bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  