.mrs-player-container {
    width: 100%;
    max-width: 400px; 
    aspect-ratio: 1 / 1; 
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Ombra suau a la base per contrastar el botó */
.mrs-player-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.mrs-play-button {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    width: 65px;
    height: 65px;
	scale: 0.5;
    margin-bottom: -10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000; /* Color de la icona SVG */
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.mrs-play-button:hover {
    transform: scale(1.00);
    background-color: #f8f8f8;
}

.mrs-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
	scale: 1.5;
}

/* Correcció visual específica pel triangle de play */
.mrs-icon svg {
    display: block;
}