/**
 * Eporner Player Frontend Styles
 * Responsive video container
 */

/* Magic Box - Responsive 16:9 Video Container */
.eporner-responsive-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    margin-bottom: 20px;
}

.eporner-responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video Tags (Hashtag Links) */
.video-tags {
    margin-top: 15px;
    padding: 10px 0;
    line-height: 1.8;
}

.video-tags a {
    display: inline-block;
    color: #0073aa;
    text-decoration: none;
    padding: 4px 8px;
    margin: 2px 4px 2px 0;
    border-radius: 3px;
    background: #f0f0f0;
    font-size: 14px;
    transition: all 0.2s ease;
}

.video-tags a:hover {
    background: #0073aa;
    color: #fff;
    text-decoration: none;
}
