/* Custom styles for PWA */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Video player responsive container */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 0.5rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Progress bar customization */
progress[value] {
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    border-radius: 4px;
}

progress[value]::-webkit-progress-bar {
    background-color: #e2e8f0;
    border-radius: 4px;
}

progress[value]::-webkit-progress-value {
    background-color: #3b82f6;
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Offline notice */
.offline-notice {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #ef4444;
    color: white;
    border-radius: 0.375rem;
    z-index: 50;
    display: none;
}