/* Override WordPress default link styles for video player controls */
.epicise-tv-container a {
    color: inherit;
    text-decoration: none;
}

/* Ensure proper video aspect ratio on all devices */
#epicise-video-player {
    max-width: 100%;
    display: block;
}

/* Stream error message styling */
.stream-error-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(20, 20, 20, 0.95);
    border: 2px solid #e50914;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    z-index: 100;
}

.stream-error-message .error-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.stream-error-message h3 {
    color: #e50914;
    font-size: 24px;
    margin: 0 0 15px 0;
}

.stream-error-message p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.try-another-btn {
    background: #e50914;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.try-another-btn:hover {
    background: #f40612;
    transform: scale(1.05);
}

/* Additional utility classes */
.epicise-hidden {
    display: none !important;
}

.epicise-visible {
    display: block !important;
}
