/**
 * CDA TV Public - Stili generali
 */

/* Generale */
.cda-tv-container {
    max-width: 100%;
    margin: 0 auto;
}

/* Loading Spinner */
.cda-tv-loading {
    text-align: center;
    padding: 40px;
}

.cda-tv-spinner {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #0073aa;
    border-radius: 50%;
    animation: cda-tv-spin 1s linear infinite;
}

@keyframes cda-tv-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error Messages */
.cda-tv-error {
    padding: 20px;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin: 20px 0;
}

/* Success Messages */
.cda-tv-success {
    padding: 20px;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    margin: 20px 0;
}

/* Shortcode Styles */
.cda-tv-shortcode-container {
    margin: 20px 0;
}

/* Video Single */
.cda-tv-single-video {
    max-width: 1200px;
    margin: 0 auto;
}

.cda-tv-video-player {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
    margin-bottom: 30px;
}

.cda-tv-video-player iframe,
.cda-tv-video-player video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cda-tv-video-info {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cda-tv-video-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #23282d;
}

.cda-tv-video-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.cda-tv-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
}

.cda-tv-meta-item .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
    color: #0073aa;
}

.cda-tv-video-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

.cda-tv-video-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cda-tv-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cda-tv-button:hover {
    background: #005582;
    color: #fff;
}

.cda-tv-button-secondary {
    background: #f0f0f0;
    color: #333;
}

.cda-tv-button-secondary:hover {
    background: #e0e0e0;
    color: #333;
}

/* Related Videos */
.cda-tv-related {
    margin-top: 50px;
}

.cda-tv-related-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #23282d;
}

.cda-tv-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.cda-tv-related-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.cda-tv-related-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.cda-tv-related-thumb {
    position: relative;
    padding-bottom: 56.25%;
    background: #f0f0f0;
}

.cda-tv-related-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cda-tv-related-info {
    padding: 15px;
}

.cda-tv-related-item-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #23282d;
    line-height: 1.3;
}

.cda-tv-related-item-meta {
    font-size: 14px;
    color: #666;
}

/* Format Archive */
.cda-tv-format-header {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.cda-tv-format-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #23282d;
}

.cda-tv-format-description {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.cda-tv-format-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.cda-tv-format-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cda-tv-format-meta-item strong {
    color: #333;
}

/* Seasons Navigation */
.cda-tv-seasons {
    margin-bottom: 40px;
}

.cda-tv-seasons-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cda-tv-season-tab {
    padding: 10px 24px;
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 30px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cda-tv-season-tab:hover {
    border-color: #0073aa;
    color: #0073aa;
}

.cda-tv-season-tab.active {
    background: #0073aa;
    border-color: #0073aa;
    color: #fff;
}

/* Episodes Grid */
.cda-tv-episodes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.cda-tv-episode {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.cda-tv-episode:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.cda-tv-episode-number {
    font-size: 32px;
    font-weight: 700;
    color: #0073aa;
    width: 50px;
    text-align: center;
}

.cda-tv-episode-info {
    flex: 1;
}

.cda-tv-episode-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #23282d;
}

.cda-tv-episode-meta {
    display: flex;
    gap: 15px;
    color: #666;
    font-size: 14px;
}

/* Live Page */
.cda-tv-live-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cda-tv-live-player {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
    margin-bottom: 30px;
}

.cda-tv-live-player iframe,
.cda-tv-live-player video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cda-tv-live-indicator {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ff0000;
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
    z-index: 10;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.cda-tv-live-info {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cda-tv-live-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #23282d;
}

.cda-tv-live-schedule {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.cda-tv-schedule-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cda-tv-schedule-item .dashicons {
    font-size: 20px;
    color: #0073aa;
}

/* Social Share */
.cda-tv-share {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.cda-tv-share-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #23282d;
}

.cda-tv-share-buttons {
    display: flex;
    gap: 10px;
}

.cda-tv-share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cda-tv-share-button:hover {
    transform: scale(1.1);
}

.cda-tv-share-facebook {
    background: #3b5998;
}

.cda-tv-share-twitter {
    background: #1da1f2;
}

.cda-tv-share-whatsapp {
    background: #25d366;
}

.cda-tv-share-email {
    background: #ea4335;
}

/* Responsive */
@media (max-width: 768px) {
    .cda-tv-video-title {
        font-size: 24px;
    }
    
    .cda-tv-video-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .cda-tv-video-actions {
        flex-direction: column;
    }
    
    .cda-tv-button {
        width: 100%;
        justify-content: center;
    }
    
    .cda-tv-related-grid {
        grid-template-columns: 1fr;
    }
    
    .cda-tv-format-header {
        padding: 20px;
    }
    
    .cda-tv-format-title {
        font-size: 28px;
    }
    
    .cda-tv-episodes {
        grid-template-columns: 1fr;
    }
    
    .cda-tv-episode {
        flex-direction: column;
        text-align: center;
    }
    
    .cda-tv-episode-number {
        width: auto;
        margin-bottom: 10px;
    }
    
    .cda-tv-live-schedule {
        flex-direction: column;
        gap: 15px;
    }
}

/* Print Styles */
@media print {
    .cda-tv-video-player,
    .cda-tv-live-player,
    .cda-tv-video-actions,
    .cda-tv-share {
        display: none;
    }
    
    .cda-tv-video-info,
    .cda-tv-live-info {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
