/* Movie Info Box Styles - Redesigned v3 */

#movie-info-box {
    position: fixed;
    z-index: 9999;
    width: 380px;
    background-color: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: auto;
    color: #fff;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
    border: 1px solid #333;
    padding: 15px;
    gap: 15px;
    box-sizing: border-box;
    transform: translateY(10px);
}

#movie-info-box.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.mib-poster {
    width: 110px;
    flex-shrink: 0;
}

.mib-poster img {
    width: 100%;
    height: 165px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    display: block;
}

.mib-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.mib-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.mib-title {
    font-size: 16px; /* Smaller font size as requested */
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    margin-right: 10px;
}

.mib-quality-badge {
    background: #f5b50a; /* Yellow badge from screenshot */
    color: #000;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.mib-meta-bar {
    background: #fff; /* White bar from screenshot */
    color: #333;
    display: flex;
    justify-content: space-around;
    padding: 5px;
    border-radius: 4px;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: bold;
}

.mib-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.mib-info-line {
    font-size: 13px;
    margin-bottom: 4px;
    line-height: 1.4;
}

.mib-info-label {
    font-weight: bold;
    color: #fff;
}

.mib-info-value {
    color: #ccc;
}

.mib-synopsis-container {
    margin-top: 10px;
    margin-bottom: 15px;
}

.mib-synopsis-label {
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 4px;
    display: block;
}

.mib-summary {
    font-size: 12px;
    color: #bbb;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mib-watch-btn {
    background: #2fa36a;
    color: #fff !important;
    text-align: center;
    padding: 10px;
    border-radius: 4px;
    text-decoration: none !important;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    transition: background 0.2s;
    margin-top: auto;
    display: block;
}

.mib-watch-btn:hover {
    background: #268458;
}

/* Responsive adjustments */
@media (max-width: 840px) {
    #movie-info-box {
        display: none !important;
    }
}
