html, body {
    height: 100%;
    margin: 0; 
    background-color: #2e4d34 !important;
    color: white;
  }
  
  body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;  /* 确保没有额外的 padding */
  }
  
  .container {
    text-align: center;
  }
  
  .title {
    font-family: Playwrite HR Lijeva, regular;
    font-size: 5rem;
    margin-bottom: 50px;
    color: #fffdde;
  }
  
  .windows {
    display: flex;
    gap: 20px;
  }
  
  .window {
    background-color: #1f3325;
    border-radius: 15px;
    padding: 20px 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    min-width: 250px;
  }
  
  .window h2 {
    font-family: Playwrite HR Lijeva, Light;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fffdde;
  }
  
  .window p {
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
    margin: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items:center;
    color: #e7e3cb;
  }
  
  .key {
    text-align: left;
    flex-grow: 1;
  }
  
  .value {
    text-align: right;
    font-weight: bold;
    min-width: 100px;
  }
  

  .setting-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    font-family: "Outfit", sans-serif;
    color: #e7e3cb;
  }
  
  .setting-row label {
    font-size: 1rem;
    font-family: "Outfit", sans-serif;
    color: #e7e3cb;
  }
  
  input[type="checkbox"] {
    transform: scale(1.5);
  }
  
  input[type="range"] {
    width: 100px;
  }

  #videoContainer {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    border: none;
    margin-top: 30px;
    overflow: hidden;
    border-radius: 10px;
    background-color: #0f100fdc;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.fullscreen-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.fullscreen-active #videoContainer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border-radius: 0;
}

.fullscreen-active canvas {
    width: 100% !important;
    height: 100% !important;
}