#evc-player-container {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 0;
  width: 100%;
  z-index: 99999;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}

#evc-player-styled-wrapper {
  width: 100%;
  max-width: 1440px;
  height: 350px;
  flex-shrink: 0;
  border-radius: 30px;
  border: 2px solid #999;
  background: linear-gradient(134deg, rgba(73, 73, 92, 0.56) -9.81%, #17172F 69.56%), rgba(23, 23, 47, 0.42);
  background-blend-mode: normal, multiply;
  box-shadow: 0 4px 7.6px 7px rgba(0, 0, 0, 0.25);
  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;
}

#evc-player-styled-wrapper td-player {
  width: 100%;
  height: 100%;
  display: block;
}

#evc-player-close-btn {
  position: absolute;
  top: 10px;
  right: 40px;
  background: #fff;
  color: #17172F;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 20px;
  font-weight: bold;
  line-height: 28px;
  text-align: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

@media (max-width: 1440px) {
  #evc-player-container {
    padding: 0 20px;
    bottom: 10px;
  }
   #evc-player-close-btn {
    right: 25px;
    top: 5px;
  }
}

@media (max-width: 768px) {
  #evc-player-styled-wrapper {
    height: 250px; 
    padding: 15px;
  }
  #evc-player-close-btn {
    right: 15px;
    top: -10px;
  }
}

.evc-default-button-style {
  display: inline-block;
  padding: 12px 25px;
  background-color: #18a7e0;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.evc-default-button-style:hover {
  background-color: #1385b3;
  color: #ffffff;
}