        body {
            margin: 0;
            font-family: poppins, sans-serif;
            user-select: none;
        }
 
        .player-container {
      background-color: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      text-align: center;
      width: 90%;
      max-width: 800px;
      box-sizing: border-box;
    }
    /* Estilos para el contenedor del reproductor de Shaka UI */
    .shaka-player-container {
        position: relative;
        width: 100%;
        /* Establece la relación de aspecto para el área del reproductor (16:9) */
        padding-top: 56.25%; /* 9 / 16 * 100 */
        margin-top: 20px;
        background-color: black;
    }
    .shaka-player-container video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

        .material-symbols-outlined {
            font-variation-settings:
            'FILL' 1,
            'wght' 400,
            'GRAD' 0,
            'opsz' 24
        }

        .material-icons {
            font-variation-settings:
            'FILL' 1,
            'wght' 400,
            'GRAD' 0,
            'opsz' 24
        }

        .header {
            width: 100%;
            height: 50px;
            background: #000;
            text-align: center;
        }

        .favicon {
            display: flex;
            justify-content: center;
        }

        .cropped-favicon {
            width: 50px;
            height: 50px;
            object-fit: cover;
            background-size: cover;
        }

        main {
            display: flex;
            justify-content: center;
        }

        .content-mp3 {
            width: 90%;
            margin-top: 1rem;
            border: 1px solid rgb(0 0 0 / 13%);
            border-radius: .25rem;
        }

        .title-mp3 {
            text-align: center;
            font-size: 8px;
            font-weight: 900;
            margin-left: 20px;
            margin-right: 20px;
        }

        .cover-mp3 {
            margin-top: 10px;
            margin-bottom: 10px;
            display: flex;
            justify-content: center !important;
        }

        .image-mp3{
            width: 300px;
            height: 300px;
            object-fit: cover;
            background-size: cover;
            border-radius: 10px;
            box-shadow: 0 5px 6px rgb(0 0 0 / 40%);
            animation: cover-animation 1s linear infinite alternate;
            background-position: center;
        }

        .buttons-mp3 {
            margin-top: 1rem;
            margin-bottom: 1rem;
            text-align: center;
        }

        .btn-mp3 {
            background-color: #eeee00;
            box-shadow: 0 .125rem .25rem rgb(0 0 0 / 30%) !important;
            display: inline-block;
            line-height: 1.5;
            text-align: center;
            text-decoration: none;
            vertical-align: middle;
            cursor: pointer;
            user-select: none;
            border: 1px solid transparent;
            padding: .375rem .75rem;
            font-size: 1rem;
            font-weight: 800;
            min-height: 39px;
            min-width: 140px;
            margin: 5px 10px;
            color: #000;
            border-radius: .25rem;
            box-sizing: border-box;
            transition: 0.5s;
        }

        .btn-mp3:hover, .btn-mp3:focus {
            background-color: #d7d700;
            color: #000;
        }

        @keyframes rotar {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        .text-btn {
            display: flex;
        }

        .text-count {
            margin-top: 1rem;
            margin-bottom: 1rem;
            text-align: center;
        }

        .count-downloads {
            background-color: #eeee00;
            color: #000;
            display: inline-block;
            padding: .35em .65em;
            font-size: .75em;
            font-weight: 700;
            line-height: 1;
            text-align: center;
            white-space: nowrap;
            vertical-align: baseline;
            border-radius: .25rem;
        }

        .footer {
            width: 100%;
            background: #fff;
            text-align: center;
            color: #fff;
            padding-top: 5px;
            padding-bottom: 5px;
        }

        .text-copyright {
            font-weight: 700;
        }

        .anuncio-ads{
            width:100%;
            display:flex;
            justify-content:center;
            align-items:center;
            margin-bottom:5px;
            margin-top:5px;
        }

        .ads-kings-music {
            width: 320px;
            height: 50px;
        }

        @media(min-width: 500px) {
            .image-mp3 {
                width: 300px;
                height: 300px;
            }

            .content-mp3 {
                width: 65%;
            }

            .ads-kings-music {
                width: 468px;
                height: 60px;
            }

        }

        @media(min-width: 800px) {
            .image-mp3 {
                width: 400px;
                height: 400px;
            }

            .content-mp3 {
                width: 65%;
            }

            .btn-mp3{
                min-width: 156px;
                margin: 0 10px;
            }

            .ads-kings-music {
                width: 728px;
                height: 90px;
            }
        }