.podcast-page{min-height:100vh;display:flex;align-items:center;justify-content:center;background:var(--color-bg-subtle);padding:var(--space-4)}.podcast-page .podcast-player{max-height:none}.podcast-page-loading{min-height:100vh;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:var(--space-4);background:var(--color-bg-subtle);color:var(--color-text-secondary)}.podcast-page-spinner{width:40px;height:40px;border:3px solid var(--color-gray-200);border-top-color:var(--color-text-primary);border-radius:50%;animation:podcast-spin .8s linear infinite}@keyframes podcast-spin{to{transform:rotate(1turn)}}.podcast-page-error{min-height:100vh;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:var(--space-4);padding:var(--space-6);background:var(--color-bg-subtle);text-align:center}.podcast-page-error h2{margin:0;font-size:var(--font-size-3xl);font-weight:var(--font-weight-semibold);color:var(--color-text-primary)}.podcast-page-error p{margin:0;color:var(--color-text-secondary);max-width:400px}.podcast-page-error button{padding:var(--space-3) var(--space-6);background:var(--color-text-primary);color:var(--color-text-on-color);border:none;border-radius:var(--radius-md);font-size:var(--font-size-base);font-weight:var(--font-weight-medium);cursor:pointer;transition:opacity .2s}.podcast-page-error button:hover{opacity:.9}