// embed.scss — compact dark theme for the MuseHub iframe embed player. // Compiled separately to static/embed.css (not imported into app.scss). // No chrome, no auth form — just the player widget. * { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background: var(--bg-base); color: #c9d1d9; height: 100vh; display: flex; align-items: center; justify-content: center; } .player { width: 100%; max-width: 100%; padding: 16px 20px; background: var(--bg-surface); border: 1px solid #30363d; border-radius: 8px; display: flex; flex-direction: column; gap: 12px; } .player-header { display: flex; align-items: center; gap: 12px; } .logo-mark { font-size: 20px; flex-shrink: 0; } .track-info { flex: 1; overflow: hidden; } .track-title { font-size: 14px; font-weight: 600; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .track-sub { font-size: 11px; color: var(--text-secondary); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .controls { display: flex; align-items: center; gap: 10px; } .play-btn { width: 36px; height: 36px; border-radius: 50%; background: #238636; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; color: #fff; transition: background 0.15s; &:hover { background: #2ea043; } &:disabled { background: #30363d; cursor: not-allowed; } } .progress-wrap { flex: 1; display: flex; flex-direction: column; gap: 4px; } .progress-bar { width: 100%; height: 4px; background: #30363d; border-radius: 2px; cursor: pointer; position: relative; overflow: hidden; } .progress-fill { height: 100%; width: 0%; background: var(--color-accent); border-radius: 2px; transition: width 0.1s linear; pointer-events: none; } .time-row { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-secondary); } .footer-link { display: flex; justify-content: flex-end; align-items: center; } .footer-link a { font-size: 11px; color: var(--color-accent); text-decoration: none; display: flex; align-items: center; gap: 4px; &:hover { text-decoration: underline; } } .status { font-size: 12px; color: var(--text-secondary); text-align: center; padding: 8px 0; } .status.error { color: var(--color-danger); }