  * {
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
  }

  .custom-controls {
    transition: opacity 0.3s ease;
    opacity: 1;

    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 1.3));
  }

  #player-container {
    width: 100%;
    height: 100%;
    position: relative;
  }

  #player-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
  }


  .custom-controls:not(.activo) {
    opacity: 0;
    pointer-events: none;
  }

  body {
    margin: 0;
    background: black;
    color: white;
    overflow: hidden;
    user-select: none;
  }

  #player-wrapper {
    position: fixed;
    inset: 0;
    background: black;

  }


  #player-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
  }

  #custom-controls {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 1;
    transition: opacity 0.4s ease;
  }

  #custom-controls1 {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 1;
    transition: opacity 0.4s ease;
  }

  #custom-controls2 {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 1;
    transition: opacity 0.4s ease;
  }



  #status {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85em;
  }

  .btn-play {
    font-size: 1.8em;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }

  #progress {
    flex: 1;
    height: 12px;
    margin: 0 15px;
    background: #333;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
  }

  #progress-bar {
    height: 100%;
    background: #e50914;
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 3px;
  }

  #progress-dot {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background: white;
    border-radius: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  #progress:hover #progress-dot {
    transform: translate(-50%, -50%) scale(1.2);
    background: #000000;
  }

  #time {
    min-width: 90px;
    font-size: 0.9em;
    color: #ccc;
  }

  .btn {
    background-color: #33333328;
    border-radius: 100%;
    border: none;
    width: clamp(40px, 5vw, 80px);
    height: clamp(40px, 5vw, 80px);
    display: flex;
    justify-content: center;
    align-items: center;
  }

   .btn1 {
    background-color: #33333328;
    border-radius: 100%;
    border: none;
    width: 70px;
    height: 70PX;
    display: flex;
    justify-content: center;
    align-items: center;
  }


  #nametitlecontrols {
    font-size: clamp(12px, 1.8vw, 20px);
    text-align: center;
    color: white;
    line-height: 1.4;
  }


  .btn:hover {
    background-color: #33333365;

  }

  #custom-controls1{
    z-index: 3;
  }

  #custom-controls,
  #custom-controls1,
  #custom-controls2 {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  #player-wrapper:hover #custom-controls,
  #player-wrapper:hover #custom-controls1,
  #player-wrapper:hover #custom-controls2 {
    opacity: 1;
    pointer-events: auto;
  }