/* ===================================
   SatBroadcast Archive - Frontend Styles
   =================================== */

:root {
    --sat-primary: #2563eb;
    --sat-secondary: #7c3aed;
    --sat-dark: #1a1a1a;
    --sat-light: #f5f5f5;
    --sat-glass-bg: rgba(20, 20, 20, 0.65);
    --sat-border: rgba(255, 255, 255, 0.1);
    --sat-spacing: 20px;
}

/* Programs Archive Grid */
/* Programs Archive Grid */
.sat-archive-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.sat-archive-header {
    text-align: center;
    margin-bottom: 40px;
}

.sat-archive-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.sat-archive-header p {
    color: #666;
    font-size: 16px;
}

/* Category Tabs */
.sat-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e5e5e5;
}

.sat-category-tab {
    padding: 12px 24px;
    border: 2px solid #e5e5e5;
    background: #fff;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}

.sat-category-tab:hover {
    border-color: var(--sat-primary);
    color: var(--sat-primary);
}

.sat-category-tab.active {
    background: var(--sat-primary);
    border-color: var(--sat-primary);
    color: #fff;
}

.sat-category-tab .sat-count {
    font-weight: 400;
    opacity: 0.8;
    margin-left: 5px;
}

.sat-category-section {
    margin-bottom: 60px;
}

.sat-category-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.sat-category-description {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.sat-programs-grid {
    display: grid;
    gap: 30px;
    padding: 20px 0;
}

.sat-programs-grid.sat-cols-2 { grid-template-columns: repeat(2, 1fr); }
.sat-programs-grid.sat-cols-3 { grid-template-columns: repeat(3, 1fr); }
.sat-programs-grid.sat-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .sat-programs-grid.sat-cols-3,
    .sat-programs-grid.sat-cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .sat-programs-grid { grid-template-columns: 1fr !important; }
}

/* Program Card */
.sat-program-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sat-program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.sat-program-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.sat-program-thumb {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: #f0f0f0;
}

.sat-program-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sat-program-card:hover .sat-program-thumb img {
    transform: scale(1.05);
}

.sat-program-title {
    padding: 15px 20px;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* Back to Programs Button */
.sat-back-to-programs-wrapper {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 100;
}

.sat-back-to-programs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sat-back-to-programs:hover {
    background: rgba(0, 0, 0, 0.95);
    transform: translateX(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.sat-back-to-programs .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

/* RTL Back Button */
html[dir="rtl"] .sat-back-to-programs-wrapper,
.rtl .sat-back-to-programs-wrapper {
    left: auto;
    right: 20px;
}

html[dir="rtl"] .sat-back-to-programs:hover,
.rtl .sat-back-to-programs:hover {
    transform: translateX(5px);
}

html[dir="rtl"] .sat-back-to-programs .dashicons,
.rtl .sat-back-to-programs .dashicons {
    transform: rotate(180deg);
}

/* Single Program Layout */
.sat-single-program-container {
    display: flex;
    min-height: 100vh;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    position: relative;
}

.sat-single-program-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

/* Sidebar (Column 1) */
.sat-program-sidebar {
    width: 35%;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    background: var(--sat-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-inline-end: 1px solid var(--sat-border);
    z-index: 10;
    padding: 30px;
}

.sat-program-sidebar::-webkit-scrollbar {
    width: 8px;
}

.sat-program-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.sat-program-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.sat-program-featured-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.sat-program-info h1 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.sat-program-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}

.sat-related-staff {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--sat-border);
}

.sat-related-staff h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

/* Grid Layout for Staff Members */
.sat-staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.sat-staff-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    background: transparent;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.sat-staff-member:hover {
    transform: translateY(-5px);
}

.sat-staff-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.sat-staff-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.sat-staff-info h4 {
    color: #fff;
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 600;
}

.sat-staff-role {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin: 0;
}

/* Episodes Feed (Column 2) */
.sat-episodes-feed {
    width: 65%;
    padding: 30px;
    z-index: 5;
}

.sat-episodes-grid {
    display: grid;
    gap: 25px;
}

.sat-episodes-grid.sat-cols-2 { grid-template-columns: repeat(2, 1fr); }
.sat-episodes-grid.sat-cols-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 1200px) {
    .sat-episodes-grid.sat-cols-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .sat-single-program-container {
        flex-direction: column;
    }
    
    .sat-program-sidebar,
    .sat-episodes-feed {
        width: 100%;
        position: static;
        height: auto;
    }
    
    .sat-episodes-grid { grid-template-columns: 1fr !important; }
}

/* Episode Card */
.sat-episode-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sat-episode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.sat-episode-thumb {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    background: #f0f0f0;
}

.sat-episode-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sat-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
}

.sat-episode-card:hover .sat-play-icon {
    background: var(--sat-primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.sat-episode-title {
    padding: 15px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* Video Player Container */
.sat-video-player-container {
    background: rgba(0, 0, 0, 0.95);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.sat-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.sat-video-player-container h2 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 24px;
}

.sat-video-controls {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.sat-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sat-btn-primary {
    background: var(--sat-primary);
    color: #fff;
}

.sat-btn-primary:hover {
    background: #1d4ed8;
}

.sat-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sat-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Resume Watching Modal */
.sat-resume-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.95);
    padding: 30px;
    border-radius: 12px;
    z-index: 10000;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 400px;
    width: 90%;
}

.sat-resume-modal h3 {
    color: #fff;
    margin-bottom: 15px;
}

.sat-resume-modal p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.sat-modal-buttons {
    display: flex;
    gap: 10px;
}

.sat-modal-buttons .sat-btn {
    flex: 1;
}

/* Auto-play Next Overlay */
.sat-autoplay-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.sat-autoplay-content {
    text-align: center;
    color: #fff;
}

.sat-countdown-circle {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--sat-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    font-weight: 700;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.sat-next-episode-info {
    margin: 20px 0;
}

.sat-next-episode-info h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Social Share Buttons */
.sat-social-share {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.sat-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sat-share-telegram {
    background: #0088cc;
    color: #fff;
}

.sat-share-telegram:hover {
    background: #006699;
}

.sat-share-twitter {
    background: #1da1f2;
    color: #fff;
}

.sat-share-twitter:hover {
    background: #0d8bd9;
}

.sat-share-facebook {
    background: #1877f2;
    color: #fff;
}

.sat-share-facebook:hover {
    background: #0d65d9;
}

.sat-share-whatsapp {
    background: #25d366;
    color: #fff;
}

.sat-share-whatsapp:hover {
    background: #1da851;
}

.sat-share-copy {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sat-share-copy:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Live Badge */
.sat-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff0000;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.sat-live-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Loading Spinner */
.sat-loading {
    text-align: center;
    padding: 40px;
    color: #fff;
}

.sat-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--sat-primary);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

/* Search Bar */
.sat-search-container {
    position: relative;
    margin-bottom: 30px;
}

.sat-search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
    backdrop-filter: blur(10px);
}

.sat-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.sat-search-input:focus {
    outline: none;
    border-color: var(--sat-primary);
    background: rgba(255, 255, 255, 0.15);
}

.sat-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    margin-top: 10px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.sat-search-result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: background 0.3s ease;
}

.sat-search-result-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sat-search-result-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.sat-search-result-info h4 {
    color: #fff;
    margin: 0 0 5px 0;
    font-size: 16px;
}

.sat-search-result-type {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Notification Toast */
.sat-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Utility Classes */
.sat-hidden { display: none !important; }
.sat-text-center { text-align: center; }
.sat-mt-20 { margin-top: 20px; }
.sat-mb-20 { margin-bottom: 20px; }/* ===================================
   SatBroadcast Archive - Frontend Styles
   =================================== */

:root {
    --sat-primary: #2563eb;
    --sat-secondary: #7c3aed;
    --sat-dark: #1a1a1a;
    --sat-light: #f5f5f5;
    --sat-glass-bg: rgba(20, 20, 20, 0.65);
    --sat-border: rgba(255, 255, 255, 0.1);
    --sat-spacing: 20px;
}

/* Programs Archive Grid */
/* Programs Archive Grid */
.sat-archive-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.sat-archive-header {
    text-align: center;
    margin-bottom: 40px;
}

.sat-archive-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.sat-archive-header p {
    color: #666;
    font-size: 16px;
}

/* Category Tabs */
.sat-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e5e5e5;
}

.sat-category-tab {
    padding: 12px 24px;
    border: 2px solid #e5e5e5;
    background: #fff;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}

.sat-category-tab:hover {
    border-color: var(--sat-primary);
    color: var(--sat-primary);
}

.sat-category-tab.active {
    background: var(--sat-primary);
    border-color: var(--sat-primary);
    color: #fff;
}

.sat-category-tab .sat-count {
    font-weight: 400;
    opacity: 0.8;
    margin-left: 5px;
}

.sat-category-section {
    margin-bottom: 60px;
}

.sat-category-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.sat-category-description {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.sat-programs-grid {
    display: grid;
    gap: 30px;
    padding: 20px 0;
}

.sat-programs-grid.sat-cols-2 { grid-template-columns: repeat(2, 1fr); }
.sat-programs-grid.sat-cols-3 { grid-template-columns: repeat(3, 1fr); }
.sat-programs-grid.sat-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .sat-programs-grid.sat-cols-3,
    .sat-programs-grid.sat-cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .sat-programs-grid { grid-template-columns: 1fr !important; }
}

/* Program Card */
.sat-program-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sat-program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.sat-program-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.sat-program-thumb {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: #f0f0f0;
}

.sat-program-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sat-program-card:hover .sat-program-thumb img {
    transform: scale(1.05);
}

.sat-program-title {
    padding: 15px 20px;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* Back to Programs Button */
.sat-back-to-programs-wrapper {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 100;
}

.sat-back-to-programs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sat-back-to-programs:hover {
    background: rgba(0, 0, 0, 0.95);
    transform: translateX(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.sat-back-to-programs .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

/* RTL Back Button */
html[dir="rtl"] .sat-back-to-programs-wrapper,
.rtl .sat-back-to-programs-wrapper {
    left: auto;
    right: 20px;
}

html[dir="rtl"] .sat-back-to-programs:hover,
.rtl .sat-back-to-programs:hover {
    transform: translateX(5px);
}

html[dir="rtl"] .sat-back-to-programs .dashicons,
.rtl .sat-back-to-programs .dashicons {
    transform: rotate(180deg);
}

/* Single Program Layout */
.sat-single-program-container {
    display: flex;
    min-height: 100vh;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    position: relative;
}

.sat-single-program-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

/* Sidebar (Column 1) */
.sat-program-sidebar {
    width: 35%;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    background: var(--sat-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-inline-end: 1px solid var(--sat-border);
    z-index: 10;
    padding: 30px;
}

.sat-program-sidebar::-webkit-scrollbar {
    width: 8px;
}

.sat-program-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.sat-program-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.sat-program-featured-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.sat-program-info h1 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.sat-program-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}

.sat-related-staff {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--sat-border);
}

.sat-related-staff h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

/* Grid Layout for Staff Members */
.sat-staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.sat-staff-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    background: transparent;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.sat-staff-member:hover {
    transform: translateY(-5px);
}

.sat-staff-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.sat-staff-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.sat-staff-info h4 {
    color: #fff;
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 600;
}

.sat-staff-role {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin: 0;
}

/* Episodes Feed (Column 2) */
.sat-episodes-feed {
    width: 65%;
    padding: 30px;
    z-index: 5;
}

.sat-episodes-grid {
    display: grid;
    gap: 25px;
}

.sat-episodes-grid.sat-cols-2 { grid-template-columns: repeat(2, 1fr); }
.sat-episodes-grid.sat-cols-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 1200px) {
    .sat-episodes-grid.sat-cols-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .sat-single-program-container {
        flex-direction: column;
    }
    
    .sat-program-sidebar,
    .sat-episodes-feed {
        width: 100%;
        position: static;
        height: auto;
    }
    
    .sat-episodes-grid { grid-template-columns: 1fr !important; }
}

/* Episode Card */
.sat-episode-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sat-episode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.sat-episode-thumb {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    background: #f0f0f0;
}

.sat-episode-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sat-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
}

.sat-episode-card:hover .sat-play-icon {
    background: var(--sat-primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.sat-episode-title {
    padding: 15px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* Video Player Container */
.sat-video-player-container {
    background: rgba(0, 0, 0, 0.95);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.sat-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.sat-video-player-container h2 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 24px;
}

.sat-video-controls {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.sat-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sat-btn-primary {
    background: var(--sat-primary);
    color: #fff;
}

.sat-btn-primary:hover {
    background: #1d4ed8;
}

.sat-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sat-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Resume Watching Modal */
.sat-resume-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.95);
    padding: 30px;
    border-radius: 12px;
    z-index: 10000;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 400px;
    width: 90%;
}

.sat-resume-modal h3 {
    color: #fff;
    margin-bottom: 15px;
}

.sat-resume-modal p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.sat-modal-buttons {
    display: flex;
    gap: 10px;
}

.sat-modal-buttons .sat-btn {
    flex: 1;
}

/* Auto-play Next Overlay */
.sat-autoplay-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.sat-autoplay-content {
    text-align: center;
    color: #fff;
}

.sat-countdown-circle {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--sat-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    font-weight: 700;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.sat-next-episode-info {
    margin: 20px 0;
}

.sat-next-episode-info h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Social Share Buttons */
.sat-social-share {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.sat-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sat-share-telegram {
    background: #0088cc;
    color: #fff;
}

.sat-share-telegram:hover {
    background: #006699;
}

.sat-share-twitter {
    background: #1da1f2;
    color: #fff;
}

.sat-share-twitter:hover {
    background: #0d8bd9;
}

.sat-share-facebook {
    background: #1877f2;
    color: #fff;
}

.sat-share-facebook:hover {
    background: #0d65d9;
}

.sat-share-whatsapp {
    background: #25d366;
    color: #fff;
}

.sat-share-whatsapp:hover {
    background: #1da851;
}

.sat-share-copy {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sat-share-copy:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Live Badge */
.sat-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff0000;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.sat-live-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Loading Spinner */
.sat-loading {
    text-align: center;
    padding: 40px;
    color: #fff;
}

.sat-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--sat-primary);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

/* Search Bar */
.sat-search-container {
    position: relative;
    margin-bottom: 30px;
}

.sat-search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
    backdrop-filter: blur(10px);
}

.sat-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.sat-search-input:focus {
    outline: none;
    border-color: var(--sat-primary);
    background: rgba(255, 255, 255, 0.15);
}

.sat-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    margin-top: 10px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.sat-search-result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: background 0.3s ease;
}

.sat-search-result-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sat-search-result-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.sat-search-result-info h4 {
    color: #fff;
    margin: 0 0 5px 0;
    font-size: 16px;
}

.sat-search-result-type {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Notification Toast */
.sat-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Utility Classes */
.sat-hidden { display: none !important; }
.sat-text-center { text-align: center; }
.sat-mt-20 { margin-top: 20px; }
.sat-mb-20 { margin-bottom: 20px; }

/* Episodes Pagination */
.sat-episodes-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding: 20px 0;
    flex-wrap: wrap;
}

.sat-episodes-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.sat-episodes-pagination .page-numbers:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.sat-episodes-pagination .page-numbers.current {
    background: var(--sat-primary);
    border-color: var(--sat-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.sat-episodes-pagination .prev,
.sat-episodes-pagination .next {
    padding: 8px 20px;
    gap: 8px;
}

.sat-episodes-pagination .prev:hover,
.sat-episodes-pagination .next:hover {
    background: var(--sat-primary);
    border-color: var(--sat-primary);
}

.sat-episodes-pagination .prev .dashicons,
.sat-episodes-pagination .next .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    line-height: 1;
}

.sat-episodes-pagination .dots {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: default;
}

.sat-episodes-pagination .dots:hover {
    background: transparent;
    transform: none;
}

/* RTL Pagination */
html[dir="rtl"] .sat-episodes-pagination .prev .dashicons,
.rtl .sat-episodes-pagination .prev .dashicons {
    transform: rotate(180deg);
}

html[dir="rtl"] .sat-episodes-pagination .next .dashicons,
.rtl .sat-episodes-pagination .next .dashicons {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .sat-episodes-pagination {
        gap: 6px;
    }
    
    .sat-episodes-pagination .page-numbers {
        min-width: 40px;
        height: 40px;
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .sat-episodes-pagination .prev,
    .sat-episodes-pagination .next {
        padding: 6px 14px;
        font-size: 13px;
    }
}


/* AJAX Episodes Container */
#sat-episodes-ajax-container {
    transition: opacity 0.3s ease;
    min-height: 200px;
}

#sat-episodes-ajax-container.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Pagination Loading State */
.sat-episodes-pagination.loading .page-numbers {
    pointer-events: none;
    opacity: 0.6;
}
