.best-series-section {
    padding: 40px 0;
    background: #1a1a1a;
}

.best-series-section .section-header {
    margin-bottom: 30px;
}

.best-series-section .section-title {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.best-series-section .section-title i {
    color: #ffd700;
}

.best-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 30px;
}

.best-content-column {
    display: flex;
    flex-direction: column;
}

.column-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffd700;
}

.best-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.best-item {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 10px;
    transition: background 0.3s ease;
}

.best-item:hover {
    background: rgba(255,255,255,0.1);
}

.best-item .rank {
    font-size: 18px;
    font-weight: bold;
    color: #ffd700;
    width: 30px;
    text-align: center;
    margin-right: 15px;
}

.item-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    flex: 1;
}

.best-item img {
    width: 50px;
    height: 75px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
}

.item-info {
    flex: 1;
}

.item-info h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.item-info .meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #ccc;
}

.item-info .rating {
    color: #ffd700;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .best-content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .best-item {
        padding: 8px;
    }
    
    .best-item img {
        width: 40px;
        height: 60px;
    }
    
    .item-info h3 {
        font-size: 14px;
    }
    
    .item-info .meta {
        font-size: 12px;
    }
}