/* DR001 播放页公共样式（从 play.html.php / play_async.html.php 提取） */
.dr001-player-wrap,
.dr001-async-player { 
    background: #000; 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0 8px 32px rgba(0,0,0,.5);
    width: 100%;
    height: 50vh;
    min-height: 280px;
    margin-bottom: 20px;
    position: relative;
}
@media (min-width: 768px) { 
    .dr001-player-wrap,
    .dr001-async-player { height: 70vh; min-height: 450px; } 
}
.dr001-player-wrap iframe,
.dr001-player-wrap #dplayer,
.dr001-async-player iframe,
.dr001-async-player #dplayer { width: 100%; height: 100%; border: none; }
.dr001-play-container,
.dr001-async-container { max-width: 1024px; margin: 0 auto; padding: 0 16px; }
.dr001-info-box,
.dr001-async-info { background: var(--bg2, #1e1e2e); border-radius: 12px; padding: 20px; margin-bottom: 20px; }
.dr001-title { font-size: 18px; font-weight: 700; color: var(--text, #fff); margin-bottom: 16px; line-height: 1.4; }
@media (min-width: 768px) { .dr001-title { font-size: 22px; } }
.dr001-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; font-size: 13px; color: var(--text2, #aaa); margin-bottom: 16px; }
.dr001-tag { background: var(--bg3, #2a2a3e); color: var(--text2, #aaa); padding: 4px 12px; border-radius: 4px; }
.dr001-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.dr001-section { margin-bottom: 16px; }
.dr001-section-title { color: var(--text2, #aaa); margin-right: 8px; }
.dr001-link { display: inline-block; padding: 4px 12px; background: var(--bg3, #2a2a3e); color: var(--accent, #3b82f6); border-radius: 20px; font-size: 13px; margin-right: 8px; margin-bottom: 8px; transition: background .2s; text-decoration: none; }
.dr001-link:hover { background: var(--bg4, #3a3a4e); }
.dr001-magnet-box,
.dr001-async-magnets { background: var(--bg2, #1e1e2e); border-radius: 12px; padding: 20px; margin-bottom: 20px; }
.dr001-async-magnets { display: none; }
.dr001-async-magnets.show { display: block; }
.dr001-magnet-item { display: flex; align-items: center; justify-content: space-between; padding: 12px; background: var(--bg3, #2a2a3e); border-radius: 8px; margin-bottom: 8px; }
.dr001-magnet-info { flex: 1; min-width: 0; margin-right: 16px; }
.dr001-magnet-title { font-size: 13px; color: var(--text2, #aaa); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dr001-magnet-size { font-size: 12px; color: var(--text3, #666); }
.dr001-magnet-btn { display: inline-block; padding: 6px 16px; background: var(--accent, #3b82f6); color: #fff; border-radius: 4px; font-size: 13px; font-weight: 500; text-decoration: none; }
.dr001-magnet-btn:hover { opacity: 0.9; }
.dr001-loading,
.dr001-async-skeleton { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--text2, #aaa); }
.dr001-async-skeleton { flex-direction: column; }
.dr001-async-spinner { width: 48px; height: 48px; border: 4px solid var(--accent, #3b82f6); border-top-color: transparent; border-radius: 50%; animation: dr001-spin 1s linear infinite; margin-bottom: 16px; }
@keyframes dr001-spin { to { transform: rotate(360deg); } }
.dr001-async-pulse { background: var(--bg3, #2a2a3e); border-radius: 4px; animation: dr001-pulse 1.5s ease-in-out infinite; }
@keyframes dr001-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.dr001-async-title { font-size: 16px; font-weight: 700; color: var(--text, #fff); margin-bottom: 16px; }
