#psa-player {
margin: 0 0 2rem;
font-family: inherit;
}
.psa-inner {
background: #f7f7f7;
border: 1px solid #e0e0e0;
border-radius: 6px;
padding: 1rem 1.25rem 0.9rem;
} .psa-header {
display: flex;
align-items: center;
gap: 11px;
margin-bottom: 0.85rem;
}
.psa-icon {
width: 32px;
height: 32px;
flex-shrink: 0;
color: #222;
opacity: 0.7;
}
.psa-header-text {
display: flex;
flex-direction: column;
gap: 1px;
}
.psa-title {
font-size: 14px;
font-weight: 700;
color: #111;
letter-spacing: 0.01em;
line-height: 1.2;
}
.psa-subtitle {
font-size: 12px;
color: #777;
line-height: 1.3;
} .psa-controls {
display: flex;
align-items: center;
gap: 9px;
}
.psa-btn {
display: flex;
align-items: center;
justify-content: center;
width: 34px;
height: 34px;
background: transparent;
border: 1px solid #ccc;
border-radius: 50%;
cursor: pointer;
color: #333;
flex-shrink: 0;
padding: 0;
transition: background 0.12s, border-color 0.12s;
}
.psa-btn svg {
display: block;
width: 15px;
height: 15px;
}
.psa-btn:hover {
background: #ebebeb;
border-color: #aaa;
}
.psa-btn:active {
transform: scale(0.95);
}
.psa-btn--primary {
width: 42px;
height: 42px;
background: #111;
border-color: #111;
color: #fff;
}
.psa-btn--primary svg {
width: 17px;
height: 17px;
}
.psa-btn--primary:hover {
background: #333;
border-color: #333;
} .psa-progress-wrap {
flex: 1;
display: flex;
flex-direction: column;
gap: 4px;
min-width: 0;
}
.psa-bar-bg {
position: relative;
height: 6px;
background: #ddd;
border-radius: 6px;
cursor: pointer; padding: 8px 0;
margin: -8px 0;
box-sizing: content-box;
} .psa-bar-bg::before {
content: '';
position: absolute;
left: 0; right: 0;
top: 8px;
height: 6px;
background: #ddd;
border-radius: 6px;
pointer-events: none;
}
.psa-bar-fill {
position: absolute;
left: 0;
top: 8px;
height: 6px;
background: #111;
border-radius: 6px;
width: 0%;
transition: width 0.35s linear;
pointer-events: none;
} .psa-scrub-thumb {
position: absolute;
top: 8px;
width: 14px;
height: 14px;
background: #111;
border: 2px solid #fff;
border-radius: 50%;
box-shadow: 0 0 0 1px #aaa;
transform: translate(-50%, -4px);
left: 0%;
pointer-events: none;
transition: left 0.35s linear;
opacity: 0;
} .psa-bar-bg:hover .psa-scrub-thumb,
.psa-bar-bg:focus .psa-scrub-thumb,
#psa-player.psa-active .psa-scrub-thumb {
opacity: 1;
}
.psa-bar-bg:focus {
outline: 2px solid #555;
outline-offset: 3px;
} .psa-time-row {
display: flex;
justify-content: space-between;
font-size: 11px;
color: #888;
margin-top: 10px;
} .psa-status {
font-size: 12px;
color: #888;
margin: 0.45rem 0 0;
min-height: 16px;
line-height: 1.4;
} @media (max-width: 480px) {
.psa-subtitle { display: none; }
.psa-inner { padding: 0.85rem 1rem; }
.psa-btn { width: 30px; height: 30px; }
.psa-btn--primary { width: 38px; height: 38px; }
}