.itw-player {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    color: var(--text);
    max-width: 720px;
    margin: 0 auto;
}

.itw-player-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    background: linear-gradient(135deg, rgba(140, 206, 217, 0.25), rgba(232, 122, 30, 0.25));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}
.itw-player-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='50,5 93,27.5 93,72.5 50,95 7,72.5 7,27.5' fill='none' stroke='%23E87A1E' stroke-width='1'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 160px 160px;
    opacity: 0.35;
    transition: opacity 0.3s;
}
.itw-player-cover:hover::before { opacity: 0.55; }
.itw-cover-icon {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    color: rgba(240, 244, 248, 0.85);
    transition: transform 0.3s, opacity 0.3s;
}
.itw-player.is-playing .itw-cover-icon { opacity: 0; transform: scale(0.7); }
.itw-big-play {
    position: absolute;
    inset: 0;
    margin: auto;
    z-index: 2;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: none;
    background: var(--orange);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s, transform 0.3s, background 0.3s;
    box-shadow: 0 10px 30px rgba(232, 122, 30, 0.35);
}
.itw-player-cover:hover .itw-big-play,
.itw-player.is-playing .itw-big-play { opacity: 1; transform: scale(1); }
.itw-big-play:hover { background: var(--orange-light); }
.itw-big-play i { width: 32px; height: 32px; }

.itw-player-body { padding: 24px 32px 28px; }

.itw-player-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}
.itw-player-badge {
    background: rgba(232, 122, 30, 0.12);
    color: var(--orange-light);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.itw-player h3 {
    font-size: 1.35rem;
    margin: 0 0 6px;
    line-height: 1.35;
    color: var(--text);
}
.itw-player-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 20px;
}

.itw-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.itw-play {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--orange);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.1s;
}
.itw-play:hover { background: var(--orange-light); }
.itw-play:active { transform: scale(0.95); }
.itw-play i { width: 20px; height: 20px; }
.itw-player.is-playing .itw-play .icon-play,
.itw-player:not(.is-playing) .itw-play .icon-pause { display: none; }

.itw-progress-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}
.itw-progress {
    position: relative;
    height: 6px;
    background: rgba(140, 206, 217, 0.15);
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
}
.itw-progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    background: linear-gradient(90deg, var(--hellblau), var(--orange));
    border-radius: 3px;
    transition: width 0.1s linear;
}
.itw-time {
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
}

.itw-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.itw-actions a,
.itw-actions button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
}
.itw-actions a:hover,
.itw-actions button:hover {
    border-color: var(--hellblau);
    color: var(--hellblau);
}
.itw-actions i { width: 16px; height: 16px; }

@media (max-width: 640px) {
    .itw-player-body { padding: 20px 20px 24px; }
    .itw-controls { gap: 10px; flex-wrap: wrap; }
    .itw-progress-wrap { order: 3; width: 100%; flex-basis: 100%; }
    .itw-player h3 { font-size: 1.1rem; }
}
