body {
    background-color: black;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    font-family: Arial, sans-serif;
    text-align: center;
    color: white;
  }

    a {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    #logo {
      max-width: 300px;
      height: auto;
    }
  
  h1 {
    font-size: 48px;
    margin-top: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  }
  
  #miPlayer {
    width: 70%;
    margin: 30px auto;
    position: relative;
  }
  
  .jw-overlay-buttons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  
  .control-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: auto;
  }
  
  .control-btn img {
    width: 64px;
    height: 64px;
    opacity: 0.85;
    transition: opacity 0.2s;
    pointer-events: none;
  }
  
  .control-btn:hover img {
    opacity: 1;
  }
  
  #adelantar-btn { left: 20%; }
  #pausar-btn { left: 50%; transform: translate(-50%, -50%); }
  #retroceder-btn { right: 20%; }
  
  @media (max-width: 600px) {
    .control-btn img {
      width: 80px;
      height: 80px;
    }
    #adelantar-btn { left: 15%; }
    #retroceder-btn { right: 15%; }
  }
  
  #url-input {
    margin-top: 20px;
    padding: 10px;
    font-size: 16px;
    width: 50%;
  }
  
  #load-btn {
    margin-top: 10px;
    padding: 10px;
    font-size: 16px;
    background-color: #9b0000;
    color: white;
    border: none;
    cursor: pointer;
  }
  
  #load-btn:hover {
    background-color: #004085;
  }
  
